@charset "UTF-8";

/*
ベース
----------------------------------------------------------- */
:root {
    --black: #333;
    --white: #FFF;
    --brown: #4e342e;
    --green: #7E9D76;
    --pink: #D98C8C;
    --blue: #7fa9bb;
    --beige: #F5F0E8;
    --yellow: #FFFBEA;
    --news-item: #ddd;
    --footer-info: #555;
    --copyright: #888;
    --category-event: #FFE575;
    --category-notice: #7E9D76;
    --green-rgb: 126,157,118;
    --yellow-rgb: 255,229,117;
    --pink-rgb: 217,140,140;
    --blue-rgb: 127,169,184;
}

html,
body {
    overflow-x: clip;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--black);
    background: var(--beige);
    line-height: 1.8;
}
img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/*
コンテナ
----------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-inline: 15px;
}

/*
ヘッダー
----------------------------------------------------------- */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 600;
}
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(245,240,232,0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    z-index: -1;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-inline: 20px;
}
.header-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-logo-wrap img {
    height: 80px;
    width: auto;
}
.header-logo-wrap h1 {
    font-size: 22px;
    font-weight: bold;
    color: var(--black);
    margin: 0;
}
.header-nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-nav-link {
    color: var(--black);
    font-size: 15px;
    font-weight: bold;
    position: relative;
    padding-bottom: 4px;
}
.header-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    border-radius: 999px;
    transition: width 0.3s ease;
}
.header-nav-link:hover::after {
    width: 100%;
}

/*
ハンバーガーメニュー
----------------------------------------------------------- */
.menu {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 650;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 8px;
}
.menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: 0.3s;
}
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 500;
}
body.open .nav-overlay {
    display: block;
}

/*
ページトップボタン
----------------------------------------------------------- */
.pagetop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: 50%;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.pagetop::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(-45deg) translate(-1px, 1px);
}
.pagetop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/*
FV
----------------------------------------------------------- */
.fv {
    position: relative;
}
.fv-image img {
    width: 100%;
    height: auto;
    display: block;
}
.fv-copy {
    position: absolute;
    top: 50px;
    left: 250px;
    color: var(--white);
    z-index: 10;
}
.fv-copy h2 {
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,100,50,0.7);
}
.fv-copy p {
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-shadow: 3px 3px 8px rgba(255,214,79,1);
}

/*
セクション共通
----------------------------------------------------------- */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--brown);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.title-icon {
    width: 40px;
    height: auto;
    margin: 0 -4px;
}
.right-icon {
    transform: scaleX(-1);
}
.section-line {
    width: 90%;
    margin-top: 60px;
    margin-inline: auto;
    border: none;
    height: 1px;
    background: var(--yellow);
}
.section-btn {
    text-align: center;
    margin-top: 30px;
}

/*
ボタン
----------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    padding-top: 14px;
    padding-bottom: 14px;
    padding-inline: 60px;
    border-radius: 999px;
    transition: .3s;
}
.btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0,0,0,.15);
    filter: brightness(0.95);
}
.btn:active{
    transform: translateY(1px);
}
.btn-green {
    background: var(--green);
}
.btn-pink {
    background: var(--pink);
}

/*
コンセプト
----------------------------------------------------------- */
.concept {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.concept::before,
.concept::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background-image: url("../img/concept-02.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}
.concept::before {
    top: -300px;
    right: 10px;
    transform: rotate(-100deg);
}
.concept::after {
    top: -200px;
    left: -210px;
    transform: scaleX(-1) rotate(-20deg);
}
.concept-deco-bottom {
    position: absolute;
    right: -60px;
    bottom: -20px;
    width: 200px;
    height: 200px;
    background-image: url("../img/concept-03.png");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-70deg);
    opacity: 0.5;
}
.concept-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.concept-image {
    width: 250px;
    flex-shrink: 0;
}
.concept-image img {
    border-radius: 50%;
}
.concept-text {
    max-width: 450px;
}
.concept-text p {
    margin-bottom: 10px;
}
.concept-text .btn {
    margin-top: 30px;
}

/*
デイサロン
----------------------------------------------------------- */
.service {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.service::before {
    content: "";
    position: absolute;
    bottom: 600px;
    left: 0px;
    width: 150px;
    height: 150px;
    background-image: url("../img/service-05.png");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-30deg);
}
.service::after {
    content: "";
    position: absolute;
    top: 500px;
    right: 10px;
    width: 150px;
    height: 150px;
    background-image: url("../img/service-05.png");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(10deg);
}
.service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-item {
    text-align: center;
}
.service-item-img {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: visible;
}
.service-icon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    z-index: 10;
}
.service-icon img {
    width: 28px;
    height: auto;
}
.service-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.service-item:hover .service-item-img img {
    transform: scale(1.05);
}
.service-item h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 22px;
}
.service-item p {
    font-size: 14px;
}

/*
イベント
----------------------------------------------------------- */
.event-section {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}
.event-section::before,
.event-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
}
.event-section::before {
    top: -90px;
    right: 40px;
    background-image: url("../img/event-04.png");
    transform: rotate(60deg);
}
.event-section::after {
    top: -60px;
    left: 0px;
    background-image: url("../img/event-04.png");
    transform: rotate(-10deg);
}
.event-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.event-item {
    text-align: center;
}
.event-item-img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.event-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.event-item:hover .event-item-img img {
    transform: scale(1.05);
}
.event-item h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 18px;
}
.event-item p {
    font-size: 14px;
}

/*
お知らせ
----------------------------------------------------------- */
.news {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}
.news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/news.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: -1;
}
.news-box {
    width: 650px;
    margin: auto;
    background: var(--white);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-inline: 20px;
    margin-bottom: 30px;
}
.news-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid var(--news-item);
    color: var(--black);
    transition: letter-spacing 0.4s ease;
}
.news-item:hover {
    letter-spacing: 0.1em;
}
.news-date {
    width: 110px;
}
.news-category {
    display: inline-block;
    min-width: 90px;
    padding: 6px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}
.news-category.event {
    background-color: var(--category-event);
    opacity: 0.8;
}
.news-category.notice {
    background-color: var(--category-notice);
    opacity: 0.8;
}
.news-item p {
    margin: 0;
}

/*
CTA
----------------------------------------------------------- */
.cta {
    padding-top: 60px;
    padding-bottom: 60px;
    background: var(--yellow);
}
.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-house {
    width: 250px;
}
.cta-family {
    width: 250px;
}
.cta-center {
    text-align: center;
} 
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}
.cta-house img {
    width: 350px;
    max-width: none;
    height: auto;
}
.cta-family img {
    width: 250px;
    height: auto;
    transform: translateX(-90px);
}

/*
フッター
----------------------------------------------------------- */
.footer {
    padding-top: 60px;
    padding-bottom: 60px;
    background: var(--beige);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.footer-inner::before {
    content: "";
    position: absolute;
    left: calc(45% + 30px);
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--footer-info);
}
.footer-info {
    width: 45%;
}
.footer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}
.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo-wrap img {
    height: 60px;
    width: auto;
    margin: 0;
}
.footer-logo-wrap h2 {
    font-size: 22px;
    margin: 0;
    color: var(--black);
}
.footer-info p {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--footer-info);
}
.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
    width: 50%;
    padding-left: 50px;
}
.footer-nav a {
    display: block;
    color: var(--black);
    font-size: 15px;
    white-space: nowrap;
}
.footer-sns-map {
  margin-top: 20px;
}

.instagram-link {
  display: inline-block;
  margin-bottom: 16px;
}

.instagram-link img {
  width: 32px;
  height: 32px;
}

.footer-map {
  width: 280px;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 13px;
    color: var(--copyright);
}

/*
flowページ
----------------------------------------------------------- */
.flow-fv {
    width: 100%;
    overflow: hidden;
}
.flow-fv img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.flow {
    position: relative;
    padding: 80px 0 120px;
    background: var(--beige);
    overflow: hidden;
}
.flow .container,
.flow-heading,
.flow-list{
    position: relative;
    z-index: 2;
}
.flow::before{
    content:"";
    position:absolute;
    top: -50px;
    left: -35px;
    width: 180px;
    height: 180px;
    background: url("../img/flow-10.png") no-repeat center/contain;
    z-index: 1;
    pointer-events: none;
}
.flow::after{
    content:"";
    position:absolute;
    top: 200px;
    right: -40px;
    width: 230px;
    height: 230px;
    background: url("../img/concept-02.png") no-repeat center/contain;
    transform: rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}
.flow .container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.flow .container::before{
    content:"";
    position:absolute;
    left: -160px;
    bottom: -100px;
    width: 130px;
    height: 130px;
    background: url("../img/flow-12.png") no-repeat center/contain;
    transform: rotate(15deg);
    z-index: 1;
    pointer-events: none;
}
.flow .container::after{
    content:"";
    position:absolute;
    right: -170px;
    bottom: -120px;
    width: 260px;
    height: 180px;
    background: url("../img/flow-14.png") no-repeat center/contain;
    z-index: 1;
    pointer-events: none;
}
.flow-heading {
    position:relative;
    text-align: center;
    margin-bottom: 60px;
}
.flow-heading::before{
    content:"";
    position:absolute;
    top: -30px;
    left: -160px;
    width: 90px;
    height: 90px;
    background: url("../img/flow-11.png") no-repeat center/contain;
    z-index: 1;
    pointer-events: none;
}
.flow-heading::after{
    content:"";
    position:absolute;
    top: 20px;
    right: -250px;
    width: 130px;
    height: 130px;
    background: url("../img/concept-02.png") no-repeat center/contain;
    transform: rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}
.flow-heading h2 {
    position: relative;
    display: inline-block;
    font-size: 42px;
    color: var(--brown);
    margin-bottom: 35px;
    padding-bottom: 20px;
}
.flow-heading h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 420px;
    transform: translateX(-50%);
    border-bottom: 2px dotted #7E9D76;
}
.flow-rays{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 10px;
}
.flow-rays span{
    width: 2px;
    height: 18px;
    background: rgba(255,214,79,.6);
    border-radius: 999px;
}
.flow-rays span:nth-child(1){
    transform: rotate(-40deg);
}

.flow-rays span:nth-child(2){
    transform: rotate(-20deg);
}

.flow-rays span:nth-child(3){
    height: 24px;   /* 真ん中だけ少し長く */
}

.flow-rays span:nth-child(4){
    transform: rotate(20deg);
}

.flow-rays span:nth-child(5){
    transform: rotate(40deg);
}
.flow-heading-leaf {
    width: 40px;
    position: absolute;
    right: -60px;
    top: 5px;
}
.flow-heading p {
    color: var(--brown);
    line-height: 2;
    font-weight: bold;
}

/* リスト全体 */
.flow-list {
    position:relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.flow-list::before{
    content:"";
    position:absolute;
    left: -190px;
    bottom: -10px;
    width: 90px;
    height: 90px;
    background: url("../img/flow-13.png") no-repeat center/contain;
    transform: rotate(15deg);
    z-index: 1;
    pointer-events: none;
}
.flow-list::after{
    content:"";
    position:absolute;
    right: -140px;
    bottom: -30px;
    width: 90px;
    height: 90px;
    background: url("../img/flow-11.png") no-repeat center/contain;
    z-index: 1;
    pointer-events: none;
}

/* 1項目 */
.flow-item {
    display: flex;
    align-items: stretch;
    gap: 35px;
}

/* 時間 */
.flow-time {
    width: 95px;
    flex-shrink: 0;
    position: relative;
}
.flow-time span {
    width: 90px;
    height: 90px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.flow-time::after {
    content: "";
    position: absolute;
    top: 90px;
    left: 45px;
    height: calc(100% + 28px);
    border-left: 3px dotted #7E9D76;
}
.flow-item:last-child .flow-time::after {
    display: none;
}
.time-rays{
    position: absolute;
    top: -8px;
    left: -8px;
    transform: rotate(-25deg);
    display: flex;
    gap: 8px;
}
.time-rays span{
    width: 2px;
    height: 12px;
    background: rgba(255,229,117,.8);
    border-radius: 999px;
}
.time-rays span:nth-child(1){
    transform: rotate(-35deg);
}
.time-rays span:nth-child(2){
    height:16px;
}
.time-rays span:nth-child(3){
    transform: rotate(35deg);
}

/* カード */
.flow-card {
    flex: 1;
    display: grid;
    grid-template-columns: 100px 260px 1fr;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--yellow);
    border-radius: 12px;
    padding: 20px 35px;
    min-height: 80px;
}

/* アイコン */
.flow-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.flow-icon img {
    width: 42px;
    height: auto;
}

/* アイコン背景色 */
.pickup .flow-icon{
    background: rgba(var(--green-rgb),0.5);
}
.health .flow-icon{
    background: rgba(var(--yellow-rgb),0.5);
}
.greeting .flow-icon{
    background: rgba(var(--pink-rgb),0.5);
}
.recreation .flow-icon{
    background: rgba(var(--blue-rgb),0.5);
}
.lunch .flow-icon{
    background: rgba(var(--pink-rgb),0.5);
}
.exercise .flow-icon{
    background: rgba(var(--green-rgb),0.5);
}
.outing .flow-icon{
    background: rgba(var(--yellow-rgb),0.5);
}
.snack .flow-icon{
    background: rgba(var(--blue-rgb),0.5);
}
.review .flow-icon{
    background: rgba(var(--pink-rgb),0.5);
}

/* 項目タイトル */
.flow-item-title {
    padding: 0 30px;
    border-right: 2px dotted #FFE575;
}
.flow-item-title h3 {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--brown);
    font-weight: bold;
    padding-bottom: 10px;
}
.flow-item-title h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90px;
    height: 4px;
    border-radius: 999px;
}

/* タイトル下線色 */
.pickup .flow-item-title h3::after{
    width:80px;
    background: rgba(var(--green-rgb),0.5);
}
.health .flow-item-title h3::after{
    width:100px;
    background: rgba(var(--yellow-rgb),0.5);
}
.greeting .flow-item-title h3::after{
    width:120px;
    background: rgba(var(--pink-rgb),0.5);
}
.recreation .flow-item-title h3::after{
    width:180px;
    background: rgba(var(--blue-rgb),0.5);
}
.lunch .flow-item-title h3::after{
    width:80px;
    background: rgba(var(--pink-rgb),0.5);
}
.exercise .flow-item-title h3::after{
    width:40px;
    background: rgba(var(--green-rgb),0.5);
}
.outing .flow-item-title h3::after{
    width:180px;
    background: rgba(var(--yellow-rgb),0.5);
}
.snack .flow-item-title h3::after{
    width:50px;
    background: rgba(var(--blue-rgb),0.5);
}
.review .flow-item-title h3::after{
    width:100px;
    background: rgba(var(--pink-rgb),0.5);
}

/* 説明文 */
.flow-desc {
    padding-left: 35px;
}
.flow-desc p {
    color: var(--brown);
    line-height: 1.8;
    font-size: 14px;
    font-weight: bold;
}

/*
comingsoonページ
----------------------------------------------------------- */
.home-visit {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}
.home-visit .section-title {
    margin-bottom: 30px;
}
.home-visit-text {
    text-align: center;
    line-height: 2;
    margin-top: 20px;
}

/*
ドロワーナビ
----------------------------------------------------------- */
body.open .header-nav {
    transform: translateX(0);
}
body.open .menu span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
body.open .menu span:nth-child(2) {
    opacity: 0;
}
body.open .menu span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/*
タブレット版
----------------------------------------------------------- */
@media screen and (max-width: 1199px) {

.header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--beige);
    z-index: 600;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding-top: 80px;
    padding-inline: 30px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.08);
}
.header-nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.header-nav-list li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.header-nav-link {
    display: block;
    padding-top: 16px;
    padding-bottom: 16px;
}
.header-nav-link::after {
    display: none;
}
.menu {
    display: flex;
}

/* CTA */
.cta-inner {
    gap: 15px;
}
.cta-house {
    width: 200px;
}
.cta-family {
    width: 200px;
}
.cta-house img {
    width: 300px;
}
.cta-family img {
    width: 200px;
    transform: translateX(0);
}
.cta-center h2,
.cta-center p {
    text-shadow: 0 0 8px rgba(255,255,255,0.9), 0 0 20px rgba(255,255,255,0.8);
}
.btn {
    padding-inline: 30px;
}

}

/*
スマホ版
----------------------------------------------------------- */
@media screen and (max-width: 767px) {

.container {
    width: 90%;
    padding: 0;
}

/* ヘッダー */
.header-inner {
    padding: 8px 16px;
}

/* FV */
.fv-copy {
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
}
.fv-copy h2 {
    font-size: 15px;
    line-height: 1.5;
}
.fv-copy p {
    font-size: 10px;
    line-height: 1.6;
}

/* セクション共通 */
.section-title {
    font-size: 24px;
    margin-bottom: 40px;
}
.title-icon {
    width: 24px;
}
.section-line {
    margin-top: 30px;
}

/* コンセプト */
.concept {
    padding: 60px 0;
}
.concept::before {
    width: 120px;
    height: 120px;
    top: -90px;
    right: -10px;
    opacity: 0.8;
}
.concept::after {
    width: 120px;
    height: 120px;
    top: -50px;
    left: -60px;
    opacity: 0.8;
}
.concept-deco-bottom {
    width: 80px;
    height: 80px;
    right: -20px;
    bottom: 20px;
    opacity: 0.5;
}
.concept-inner {
    flex-direction: column;
    gap: 25px;
}
.concept-image {
    width: 70%;
    margin: 0 auto;
}
.concept-text {
    max-width: 100%;
    text-align: left;
}
.concept-text .btn {
    display: block;
    text-align: center;
    margin-inline: auto;
}

/* デイサロン */
.service {
    padding: 60px 0;
}
.service::before,
.service::after {
    display: block;
    width: 70px;
    height: 70px;
    opacity: 0.45;
    background-size: contain;
    background-repeat: no-repeat;
}
.service::before {
    left: -5px;
    top: -30px;
}
.service::after {
    right: -20px;
    top: 1350px;
}
.service .section-title {
    margin-bottom: 70px;
}
.service-list {
    grid-template-columns: 1fr;
    gap: 70px;
}
.service-item {
    width: 100%;
}

/* イベント */
.event-section {
    padding: 60px 0;
}
.event-section::before {
    width: 100px;
    height: 100px;
    top: -65px;
    right: 20px;
    transform: rotate(65deg);
}
.event-section::after {
    width: 100px;
    height: 100px;
    top: -50px;
    left: 10px;
    transform: rotate(-10deg);
}
.event-list {
    grid-template-columns: 1fr;
    gap: 30px;
}
.event-item {
    width: 100%;
}

/* お知らせ */
.news {
    padding-top: 60px;
    padding-bottom: 60px;
}
.news-box {
    width: 100%;
}
.news-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
    padding: 14px 0;
}
.news-date {
    width: auto;
}
.news-category {
    font-size: 12px;
    padding: 4px 10px;
}

/* お問い合わせ */
.cta-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    align-items: center;
}
.cta-buttons {
    flex-direction: column;
    gap: 10px;
}
.cta-house {
    position: static;
    width: 80%;
    margin: 0 auto;
}
.cta-family {
    display: flex;
    justify-content: center;
    margin-top: 0;
}
.cta-house img {
    width: 100%;
    height: auto;
}
.cta-family img {
    width: 170px;
    height: auto;
    transform: none;
}

/* フッター */
.footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.footer-inner::before {
    display: none;
}
.footer-info {
    width: 100%;
}
.footer-logo-wrap {
    justify-content: center;
}
.footer-nav {
    width: 100%;
    padding-left: 0;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}

/* フロー */
.time-rays {
    display: none;
}
.flow-rays {
    display: none;
}
.flow-fv-list {
    grid-template-columns: repeat(5, 1fr);
}
.flow-fv-list img {
    height: 70px;
}
.flow {
    padding: 60px 0 80px;
}
.flow::before{
    width:90px;
    height:90px;
    top:-10px;
    left:-15px;
}
.flow::after{
    width:130px;
    height:130px;
    top:80px;
    right:-35px;
}
.flow-heading::before{
    width:30px;
    height:30px;
    left:10px;
    top:-10px;
}
.flow-heading::after{
    width:70px;
    height:70px;
    right:-50px;
    top:-50px;
}
.flow-heading h2 {
    font-size: 28px;
}
.flow-heading h2::after {
    width: 260px;
}
.flow-heading-leaf {
    width: 30px;
    right: -40px;
}
.flow-heading p {
    font-size: 13px;
    line-height: 1.8;
}
.flow .container::before{
    width:70px;
    height:70px;
    left:-20px;
    bottom:-100px;
}
.flow .container::after{
    width:120px;
    height:90px;
    right:-40px;
    bottom:-80px;
}
.flow-list::before{
    width:55px;
    height:55px;
    left:-25px;
    bottom:-50px;
}
.flow-list::after{
    width:30px;
    height:30px;
    right:-30px;
    bottom:-30px;
}
.flow-item {
    gap: 18px;
}
.flow-time {
    width: 70px;
}
.flow-time span {
    width: 64px;
    height: 64px;
    font-size: 13px;
}
.flow-time::after {
    top: 64px;
    left: 32px;
}
.flow-card {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 20px;
}
.flow-icon {
    width: 60px;
    height: 60px;
}
.flow-icon img {
    width: 34px;
}
.flow-item-title {
    padding: 0;
    border-right: none;
}
.flow-desc {
    padding-left: 0;
}
.flow-desc p {
    font-size: 13px;
}

/* シングル記事 */
.post-single {
    padding-top: 30px;
    padding-bottom: 30px;
}
.post-article {
    padding: 24px;
}
.post-title {
    font-size: 22px;
}
}

/*
シングル記事
----------------------------------------------------------- */
.post-single {
    padding-top: 60px;
    padding-bottom: 60px;
}
.post-article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
}
.post-title {
    font-size: 32px;
    color: var(--brown);
    line-height: 1.5;
    margin-bottom: 20px;
}
.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    color: var(--footer-info);
    font-size: 14px;
}
.post-category a {
    color: var(--green);
}
.post-category a:hover {
    text-decoration: underline;
}
.post-thumbnail {
    margin-bottom: 30px;
}
.post-thumbnail img {
    width: 100%;
}
.post-content p {
    margin-bottom: 1.5em;
}
.post-content h2 {
    font-size: 24px;
    color: var(--brown);
    margin: 2em 0 1em;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--yellow);
}
.post-content h3 {
    font-size: 20px;
    color: var(--brown);
    margin: 1.5em 0 0.75em;
}
.post-content a {
    color: var(--green);
    text-decoration: underline;
}
.post-content a:hover {
    opacity: 0.7;
}
.post-content ul,
.post-content ol {
    margin: 0 0 1.5em 1.5em;
}
.post-content ul {
    list-style: disc;
}
.post-content ol {
    list-style: decimal;
}
.post-content img {
    margin: 1.5em auto;
}
.post-content blockquote {
    margin: 1.5em 0;
    padding: 16px 20px;
    background: var(--beige);
    border-left: 4px solid var(--green);
}
.post-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--news-item);
}
.tags-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tags-links li a {
    display: inline-block;
    padding: 4px 14px;
    background: var(--beige);
    color: var(--black);
    font-size: 13px;
}
.tags-links li a:hover {
    background: var(--category-notice);
    color: var(--white);
}

/*
JSアニメーション
----------------------------------------------------------- */
.js-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fade.is-show {
    opacity: 1;
    transform: translateY(0);
}