@charset "utf-8";

/* =============================
common
============================== */
/* * {
  outline: 1px solid red;
} */

:root {
    --primary-orange: #FFCE8A;
    --primary-orabgeLow: #F3B45C;
    --primary-orangeHigh: rgba(255, 206, 138, 0.30);
    --primary-yellowHigh: rgba(250, 250, 153, 0.30);
    --primary-gray: #777777;
    --primary-white: #FEFEFB;
    --primary-black: #333a3a;
    --pure-white: #FDFDFD;
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Noto Sans JP",
        "Zen Maru Gothic",
        "Gamja Flower",
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-black, #333a3a);
    background-color: var(--primary-white, #FEFEFB);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title-ja {
    color: var(--primary-orabgeLow, #F3B45C);
    font-family: "Zen Maru Gothic";
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin: 0 auto;
    padding: 40px 0 32px 0;
}

.section-title {
    color: var(--primary-orange, #FFCE8A);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFCE8A;
    text-align: center;
    font-family: "Gamja Flower";
    font-size: 5.5rem;
    line-height: 1;
    margin: 0 auto;
    /* padding-bottom: 10px; */
    /* 150px */
}

.section-subtitle {
    color: var(--primary-gray, #777777);
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    padding-bottom: 30px;
    margin: 0 auto;
}

.section-read {
    display: flex;
    max-width: var(--contentWidth,91.4%);
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /* ← 上だけ 50px 空ける */
}

.section-txt {
    text-align: left;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    margin: 0 auto;
}

.cvbtn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: "Zen Maru Gothic";
    /* box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.15); */
    line-height: 1.5;
    border-radius: 100px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
    padding: 16px 32px;
    position: relative;
    transition: 0.4s;
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.15);
}

.cvbtn:hover {
    opacity: 0.5;
}

.back-orange {
    background: var(--primary-orange, #FFCE8A);
    color: var(--primary-white, #FEFEFB);
    
}

.back-orange.main-reserve {
    background: var(--primary-orange, #FFCE8A);
    color: var(--primary-white, #FEFEFB);
    margin: 50px auto 0 ;
}

.back-orange::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.15));
    background-image: url(../images/icon-arrow-wh.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.back-orange-insta {
    background: var(--primary-orange, #FFCE8A);
    color: var(--primary-white, #FEFEFB);
    letter-spacing: 4.8px;
}

.back-orange-insta::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url(../images/icon-link-wh.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.back-white {
    background: #fff;
    color: var(--primary-orabgeLow, #F3B45C);
    
}

.back-white::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icon-arrow-or.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
} 


.pc-only {
    display: none;
}


/* common pc */
@media screen and (min-width: 769px) {
    .pc-only {
        display: inline-flex;
    }

    .section-title-ja {  
        font-size: 5.5rem;
        padding: 50px 0;
    }

    .section-title {
        font-size: 15rem;
        line-height: 2;
    }

    .section-subtitle {
        font-size: 4rem;
        margin: -60px 0 80px 0;
    }

    .section-txt {
        font-size: 1.8rem;
        text-align: center;
    }

    .back-orange {
        width: 420px;
        height: 102px;
        font-size: 2.8rem;
        align-items: center;
        padding-left: 82px;
    }

    .back-orange::after {
        width: 28px;
        height: 28px;
    }

    .header__wave {
       position: relative;
    }

    .header__wave .wave__top--pc {
        position: absolute;
        top: -65px;
        left: 50%; 
        transform: translateX(-50%);
        display: block;
        width: 100%;
        margin: 0 auto;
        z-index: 50;

    }
    
} /* px 769px */




/* =============================
header
============================== */
.header{
    display: block;
    padding: 10px 2.6% 0;
    position: relative;
    /* overflow: hidden; */
}

.header.is-fixed {
    background-color: var(--primary-white,#FEFEFB);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

h1 {
    line-height: 1.5;
    font-family: "Zen Maru Gothic";
    font-size: 1.1rem;
    font-weight: 500;
    margin: 10px 3.7% 0px;
    z-index: 500;
    position: relative;
}

.h-logo,
.sp-logo {
    display: block;
    margin-right: auto;
    width: 44%;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    margin-left: 3.7%;
    position: relative;
    z-index: 50;
}

.header__wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;      /* 好みで調整 */
    pointer-events: none;
}

.header__sns {
    display: flex;
    align-self: center;
    gap: 16px;
    margin-right: 10px;
}

.header__sns .sns__item {
    width: 26px;
    height: 26px;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.header__btn,
.nav__btn {
    display: block;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin-right: 4.2%;
    align-self: center;
}

/* .nav初期表示 */

.nav {
    background: var(--primary-white, #FEFEFB); 
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s;
}

.nav p {
    line-height: 1.5;
    font-family: "Zen Maru Gothic";
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
    margin-left: 4.2%;
}

.nav__logo {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    padding: 0 0 0 4.2%;
}

.nav__menu {
    margin: 60px 0 50px;
}

.nav__item {
    color: var(--primary-black, #333a3a);
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 24px 6.4% 0px;
    display: flex;
    border-bottom: 0.3px solid #777;
}

.nav__item:last-of-type {
    display: none;
}

.nav__sns {
    width: fit-content;      /* ★ 中身サイズにする */
    margin: 28px auto 0;     /* ★ 画面中央 */
  
    display: flex;
    flex-direction: column;
    gap: 14px;
}


.nav__sns .sns__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;              /* ←行をカラムいっぱいに */
    justify-content: flex-start; 
}

.sns__item:hover {
    opacity: 0.5;
}


.nav__sns .sns__item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
  } 

.nav__sns .nav__sns-txt {
    display: inline-block;
    color: var(--primary-black, #333a3a);
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 600;
} 

.navbtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cvbtn__navbtn {
    display: flex;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: "Zen Maru Gothic";
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.15);
    line-height: 1;
    border-radius: 50px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
    padding: 16px 24px 16px 42px;
    position: relative;
    transition: 0.4s;
    margin-top: 50px;
    justify-self: center;
    width: 80%;
}

.cvbtn__navbtn:hover {
    opacity: 0.5;
}

.cvbtn__navbtn::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.15));
    background-image: url(../images/icon-arrow-wh.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.navbtn__txt {
    font-size: 1.3rem;

}

.beefamily {
    display: flex;
    justify-content: center;
    justify-self: center;
    width: 65%;
    flex-shrink: 0;
    aspect-ratio: 250.00/96.40;
    margin-top: 50px;  /* 下に固定する */
    margin-bottom: 40px;
} 

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}


/* header pc */
@media screen and (min-width: 769px) {
    .header.is-fixed {
       /* max-width: 1440px; */
        height: 123px;
        margin: 0 auto;
        width: 100%;
    }

    h1 {
        font-size: 1.6rem;
        margin-left: 0;
        padding-bottom: 6px;
    }

    .h-logo,
    .sp-logo {
        width: 29%;
    }

    .header__wrapper {
        max-width: 1440px;
        margin: 0 auto;
        z-index: 150;
    }
    
    .header__sns {
        gap: 0;
        margin: 0;
    } 

    .header__sns li:nth-of-type(1){
        padding-right: 25px;
        margin: 0;
    } 

    .header__sns li:nth-of-type(2){
        padding-right: 25px;
        margin: 0;
    } 

    .header__sns .sns__item {
        width: 45px;
        height: 45px;
    }

    .nav__header,
    .nav__sns,
    .cvbtn__navbtn,
    .beefamily,
    .header__btn {
        display: none;
    }

    .nav {
        background: transparent; 
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        flex-direction: column;
        overflow-y: visible;
        transform: translateX(0);
    }

    .nav__item {
       font-size: 1.8rem;
       line-height: 1.2;
       border-bottom: 0;
       margin: 0;
    }

    .nav__menu {
        display: flex;
        align-items: center;
        gap: 30px;
        margin: 0 32px 0 0;
    }


} /* px 769px */




/* Article hedaer */

.article__header {
    position: relative;
    overflow: hidden;
}

.wave__top--sp1 {
    position: absolute;
    top: 0px;          /* ← hero の上端 */
    left: 0;
    width: 100%;
    z-index: 10;
    display: block;
    pointer-events: none;
}

.hero-service-contents {
    height: 70vh;          /* 表示したい高さ */
    overflow: hidden;      /* はみ出た動画を隠す */
    display: flex;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-service-contents img {
    width: 100%;
    height: 100%;        /* ←ここ重要 */
    object-fit: cover;   /* ←はみ出しはトリミングして埋める */
    display: block;
    opacity: 0.3;
}

.article__header h2 {
    color: #F3B45C;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
    font-family: "Gamja Flower";
    font-size: 5.5rem;
    font-weight: 700;
    position: absolute;
    top: 120px;
    left: 50px;
    transform: translateX(10%);
    z-index: 10;
}

.article__header h3 {
    position: absolute;
    top: 190px;
    left: 110px;
    z-index: 10;
}

.section-title-ja:first-of-type {
    padding-top: 0px;
}

/* Article header pc */
@media screen and (min-width: 769px) {

    .article__header {
        line-height: 0;
        width: 100%;
        position: relative;
        background: #FEFEFB;
    }

    .article__header h2 {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-size: 12rem;
        left: 50%; 
        transform: translateX(-50%);
        top: 370px;
        margin: 0 auto;
    }

    .article__header h3 {
        position: absolute;
        top: 490px;
        left: 50%; 
        transform: translateX(-50%);
        z-index: 10;
    }


    .sp-only {
        display: none;
    }

    .wave__bottom--sp2.is-sp {
        display: none;
    }
    
    .wave__bottom--pc {
        position: absolute;
        left: 0;
        bottom: -81px;
        max-width: none;
        transform: none;
        display: block;
        margin: 0 auto;
        width: 100%;
    }

    


}/* px 769px */




/* concept */

.concept {
    padding-top: 20px;
    position: relative;
}

.concept .wave__bottom--sp2 {
    position: absolute;
    top: -60px;          /* ← hero の下端 */
    left: 0;
    width: 100%;
    z-index: 30;
    display: block;
    pointer-events: none;
}

.link-list {
    padding: 0 4.2% 60px;
}

.article__header .main__cv {
    position: absolute;
    right: 10px;
    bottom: 0px;
    z-index: 60;
}

.main__cv {
    width: 110px;
    height: auto;
    object-fit: contain;
}

.main__cv  img {
    width: 100%;
    height: 100%;
}

.main__cv:hover {
    opacity: 0.5;
}

.concept__visual {
    display: block;
    margin: 0 4.2%;
    padding: 30px 3%;
}


/* concept PC */
@media screen and (min-width: 769px) {
    .concept .wave__bottom--sp2 {
        display: none;
    }

    .concept .wave__bottom--pc {
        position: absolute;
        width: 100%;
        top: -100px;
        left: 50%; 
        transform: translateX(-50%);
    }

    .hero-service-contents {
        height: 90vh; 
    }
    
    .concept__visual {
        display: flex;
        width: 70%;
        justify-content: center;
        margin: 0 auto 50px;
    }

    .concept__visual img {
        width: 100%;
    }

    .concept .link-list {
        position: absolute;
        z-index: 200;
        font-size: 1.6rem;
    }

    .concept h3 {
        margin-top: 80px;
    }

      .main__cv {
        display: block;
        width: 230px;
        margin-right: 70px;
        position: absolute;
        bottom: 30px;
        right: 30px;
    }

}






/* service */
.service {
    /* background-color: var(--primary-yellowHigh,rgba(250, 250, 153, 0.30)); */
    padding: 20px 0 60px;
    position: relative;
    overflow: hidden;
}

.service .wave--bottom4 {
    position: absolute;
    top: -100px;          
    left: 0;
    width: 100%;
    z-index: 10;
    display: block;
    pointer-events: none; 
}

.service__topic {
    color: #777;
    font-family: "Gamja Flower";
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3; 
    display: inline-block;
    text-align: center;
}

.service__topic-ja {
    color: #FFCE8A;
    font-family: "Zen Maru Gothic";
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
}

.service__contents {
    background-color: var(--primary-yellowHigh,rgba(250, 250, 153, 0.30));
    padding: 100px 4.2% 120px;
    height: auto;
}

.service__contents-day {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: var(--primary-yellowHigh,rgba(250, 250, 153, 0.30));
    height: auto;
    padding: 120px 4.2% 120px;
    position: relative;
}

/* .service__contents-day::after {
  content: "";
  display: block;
  width: 80%;
  height: 0.5px;
  background-color: #9e9d9d;
  margin: 0 auto 20px; 
} */


.service-information__title-day {
    border-radius: 50px;
    background: #FFF;
    display: flex;
    padding: 8px 8.5% 12px;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 80%;
    margin: 0 auto 50px;
    position: relative;
    }

.service__contents .service__contents-night {
    position: relative;
    margin-top: 50px;
    height: auto;
    display: flex;
    z-index: 9999;       /* ←親にも付ける（超重要） */
    overflow: visible;
    padding-top: 20px;   /* ←線の居場所を確保 */
}

.service__contents-night {
    background: var(--primary-white,#FEFEFB);
    position: relative;
}


.service-information__title {
    border-radius: 50px;
    background: #FFF;
    display: flex;
    padding: 8px 8.5% 12px;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 80%;
    margin: 0 auto 50px;
    position: relative;
    }



.information__title {
    border-radius: 50px;
    background: #FFCE8A;
    display: inline-flex;
    padding: 0 8.5%;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 2; /* 28px */
    margin-bottom: 10px;
    width: fit-content;
}

.information__title-education {
    border-radius: 50px;
    background: #FFCE8A;
    display: inline-flex;
    padding: 6px 8.5%;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1.3; 
    margin-bottom: 10px;
    width: fit-content;
}

.information__txt {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    line-height: 2; /* 28px */
    margin-bottom: 36px
}

.service__contents .service__contents-stay {
    background: rgba(255, 206, 138, 0.30);
}

.add-cost {
    background-color: #FFF;
    border-radius: 30px;
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
}

.add-cost-topic {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2; /* 28px */
}




.accordion {
  margin: 24px 0 0;
  border-radius: 16px;
  background: #fff;
}

.accordion.is-esducation {
  margin: 24px 0 0;
  border-radius: 16px;
  background: var(--primary-yellowHigh);
  /* opacity:0.6; */
}

.accordion__title {
    color: #F3B45C;
    font-family: "Zen Maru Gothic";
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 2; /* 28px */
    padding: 16px 4.2% 16px 17%;
    cursor: pointer;
    position: relative;
    list-style: none; /* デフォルトの▶︎を消す */
}

.accordion__title::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    width: 28px;      /* ← 自由に調整できる */
    height: 28px;
    transform: translateY(-50%);
    background: url("../images/character_Hunny.svg") no-repeat center / contain;
    transition: transform .25s ease;
}

details[open] .accordion__title::before {
  transform: translateY(-50%) translateY(-10px);
}


/* デフォルト三角を消す（Safari対策） */
.accordion__title::-webkit-details-marker {
  display: none;
}

.accordion__content {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 1.3rem;
    line-height: 2.3; /* 28px */
    padding: 0 4.2% 20px 8%;
    line-height: 1.7;
}

/* 開いてるときの見た目 */
.accordion[open] .accordion__title {
  color: #F3B45C;
}

/* .accordion[open] .accordion__title.is-education-title {
  color: #FFF;
} */

.service__contents.service__contents-stay {
    background: rgba(255, 206, 138, 0.30);
    position: relative;
}

.service__contents.service__contents-stay .wave__top--sp-stay {
    position: absolute;
    width: 100%;
    top: -40px;
    left: 0;
}

.schedule__item {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.schedule dt {
    font-weight: 600;
}

.schedule ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
}

.schedule li {
    position: relative;
    padding-left: 1.2em;
    line-height: 1.6;
    list-style: none;
}

.schedule li::before {
    content: "∟";
    position: absolute;
    left: 0;
    top: 0;
}

.schedule {
    display: flex;
    flex-direction: column;
    position: relative;
}

.schedule__note {
    display: inline-block;
    padding: 12px 8%;
    background-color: #fff6c9;
    color: #F3B45C;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin: 16px 10% 12px;
    transform: translateX(-0.5rem);
}



/* .service__contents-stay {
  position: relative;
}

.service__contents-stay::after {
  content: "";
  display: block;
  width: 80%;
  height: 0.5px;
  background-color: #9e9d9d;
  margin: 32px auto 0;
} */

.service__contents-visit h5:last-of-type {
    margin-top: 36px;
}

.service__contents-visit {
    position: relative;
    padding-bottom: 100px;
}

.service__contents.service__contents-visit .wave__top--sp-visit {
    position: absolute;
    width: 100%;
    top: -40px;
    left: 0;
}

.service__contents.service__contents-childcare {
    background: rgba(255, 206, 138, 0.30);
    position: relative;
    padding-bottom: 100px;
}

.service__contents.service__contents-night .wave__top--sp-nightcare {
    position: absolute;
    width: 100%;
    top: -60px;
    left: 0;
}

.service__contents.service__contents-childcare .wave__top--sp-childcare {
    position: absolute;
    width: 100%;
    top: -40px;
    left: 0;
}

.service__contents.service__contents-education {
    background: var(--primary-white,#FEFEFB);
    position: relative;
    padding-bottom: 50px;

}

.service__contents.service__contents-education .wave__top--sp-education {
    position: absolute;
    width: 100%;
    top: -60px;
    left: 0;
}

.service-information__title.back-or {
    border-radius: 50px;
    background: #FFCE8A;
    display: flex;
    padding: 8px 8.5% 12px;
    flex-direction: column;
    align-items: center;
    height: auto;
    /* width: 80%; */
    margin: 0 auto 50px;
    position: relative;
    }

.service__topic-ja.is-white {
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
}

.service__contents-education h5:last-of-type {
    margin-top: 36px;
}

.cvbtn.back-white.big-cta {
   width: 90%;
}

.concept__visual.img-education {
    padding: 0 0 40px;
}

.concept__visual.img-education img {
    border-radius: 20%;
}

.wave--nightcare {
    position: relative;
    height: auto;
}

.wave__top--sp-visit.is-sp {
    position: absolute;
    bottom: -180px;
    left: 50%; 
    transform: translateX(-50%);
    display: block;
    width: 100vw;
    margin: 0 auto;
    z-index: 50;
    max-width: none;
}





@media screen and (min-width: 769px) {
    .service .wave--bottom4 {
        display: none;
    }

    .service {
        position: relative;
    }

    .service__contents {
        padding-top: 150px;
        padding-bottom: 225px;
    }

    .service .wave--bottom4.wave__top--pc {
        display: block;
        position: absolute;
        top: -450px;
        left: 50%; 
        transform: translateX(-50%);
    }

    .wave__top--pc-stay {
        display: block;
        position: absolute;
        top: -80px;
        left: 50%; 
        transform: translateX(-50%);
        width: 100vw;
    }

    
    .service-information__title-day:first-of-type {
        margin-top: 100px;
    }

    .service-information__title-day,
    .service-information__title {
        width: 40%;
        padding: 24px 0;
        justify-content: center;
        border-radius: 100px;
        margin-bottom: 100px;
    }

    .service__topic-ja {
        color: #F3B45C;
        font-size: 4.8rem;
        }

    .service__topic {
        font-size: 3.2rem;
        line-height: 1;
        }  
        
        
    .information__title {
        border-radius: 50px;
        padding: 0 32px;
        font-size: 3rem;
        font-weight: 700;
        line-height: 2;
    }   
    
    .information__txt {
        font-size: 1.8rem;
        margin-bottom: 70px;
    }

    .accordion__box {
        display: grid;
        grid-template-columns: repeat(2, 561px);
        gap: 40px;
        padding: 60px 0;
        margin: 0 auto;
        justify-content: center;
    }

    .accordion__title {
        font-size: 3rem;
    }

    .accordion__title::before {
        width: 48px;
        height: 48px;
    }

    .accordion__content {
        font-size: 1.8rem;
        line-height: 2;
    }

    .cvbtn {
        width: 450px;
        height: 102px;
        font-size: 2.8rem;
        padding-left: 60px;
    }

    .back-white::after {
        width: 22px;
        height: 22px;
        right: 60px;
    }

    .service__topic-ja.is-white {
        font-size: 4.8rem;
    }
 
    .service-information__title.back-or {
        padding-top: 24px;
        padding-bottom: 24px;
        border-radius: 100px;
        margin-bottom: 100px;
    }

    .wave__top--pc-nightcare {
        display: block;
        position: absolute;
        top: -80px;
        left: 50%; 
        transform: translateX(-50%);
        width: 100vw;
    }

    .service__contents.service__contents-visit {
        position: relative;
    }
  
    .wave__top--pc-visit.is-pc {
        display: block;
        position: absolute;
        bottom: -280px;
        left: 50%; 
        transform: translateX(-50%);
        width: 100vw;
        z-index: 50;
        max-width: none;
    }

    .wave__top--sp-visit.is-sp {
        display: none;
    }
    
    .service__contents.service__contents-childcare .wave__top--sp-childcare {
        top: -80px;
    }

    .service__contents.service__contents-childcare {
        padding-bottom: 200px;
    }

    .wave__top--pc-childcare.is-pc {
        display: none;
    }


    .service__contents.service__contents-education .wave__top--sp-education {
        top: -220px;
        z-index: 50;
    }

    .wave__top--pc-education.is-pc {
        display: none;
    }

    .information__title-education {
       font-size: 3rem; 
       margin-top: 80px;
       line-height: 2;
    }

}

    @media screen and (min-width: 1800px) {
        .service__contents {
        padding-top: 250px;
        }
}


/* guide */

.service__contents.guide {
    background: rgba(255, 206, 138, 0.30);
    position: relative;
    padding-bottom: 40px;
}

.service__contents.guide .wave__top--sp-guide {
    position: absolute;
    width: 100%;
    top: -40px;
    left: 0;
}

.service__contents.guide .wave__bottom--sp-guide {
    position: absolute;
    width: 100%;
    bottom: -40px;
    z-index: 30;
    left: 0;
}

.service__contents.guide .wave__bottom--sp-guide.under-wave {
    position: absolute;
    width: 100%;
    bottom: -40px;
    z-index: 10;
    left: 0;
}

.service-information__title.title-guide {
    width: 100%;
    padding: 20px 6.4% 20px;
}

.service__topic-ja.topic-guide {
    font-size: 2.4rem;
}


.guide__title {
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2; /* 28px */
    margin-bottom: 16px;
}

.guide__belonglist {
    padding: 0 8.5% 0;
    list-style: none;
    margin-bottom: 30px;
}

.guide__belonglist li {
    position: relative;
    padding-left: 32px; /* アイコン分の余白 */
}

.guide__belonglist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8em; /* 文字の中央あたり */
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 500%;
}

.guide__belonglist .belonglist__txt {
    color: #000;
    text-align: justify;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.5; /* 35px */
}

.guide__attention {
    padding: 0 8.5% 50px;
    position: relative;
}

.guide__attention::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.5px;
  background-color: #9e9d9d;
  margin: 50px auto 20px; /* 上だけ余白 */
}

.information__txt.guide-att {
    margin-bottom: 0;
}

.information__title.guide-cancel {
    border-radius: 50px;
    background: #FFF;
    display: inline-flex;
    padding: 0 8.5%;
    align-items: center;
    gap: 10px;
    color: #F3B45C;
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 2; /* 28px */
    margin-bottom: 10px;
    width: fit-content;
}

.cancel__rule {
    background-color: #FFF;
    padding: 16px 4.2%;
    margin: 20px 6.4%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: flex-start;

}

.cancel__rule p {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 2; /* 28px */
    }


@media screen and (min-width: 769px) {
    .service__contents.guide .wave__top--sp-guide {
        top: -80px;
    }

    .wave__top--pc-guide.is-pc {
        display: none;
    }

    .service-information__title.title-guide {
        width: 100%;
        padding: 40px 6.4% 40px;
    }

    .service__topic-ja.topic-guide {
        font-size: 4rem;
    }

    .guide__title {
        font-size: 1.8rem;
    }

    .guide__belonglist .belonglist__txt {
        font-size: 1.8rem;
    }

    .information__title.guide-cancel {
        font-size: 2.8rem;
        padding: 0 32px;
    }

    .cancel__rule p {
        font-size: 2.4rem;
    }

    .wave__bottom--pc-guide.is-pc.under-wave {
        display: none;
    }

    .service__contents.guide .wave__bottom--sp-guide.under-wave {
        bottom: -100px;
    }


    

    
    

    
}


/* reserve */

.reserve {
    background-color: var(--primary-yellowHigh,rgba(250, 250, 153, 0.30));
    padding: 80px 4.2% 50px;
    position: relative;
    overflow: hidden;
}

.reserve::after {
    content: "";
    display: block;
    width: 80vw;      /* ← ここで長さ制御 */
    height: 0.2px;
    background: #9e9d9d;
    margin: 60px auto 0;
}

.wave__top--sp1 {
    position: absolute;
    top: -20px;         
    left: 0;
    width: 100%;
    z-index: 10;
    display: block;
    pointer-events: none;
}

.reserve-link {
    display: block;
    position: relative;
}

.reserve-btn {
    width: 80%;
    height: 73px;
    display: flex;
    background: var(--primary-white, #FEFEFB);
    color: var(--primary-orabgeLow, #F3B45C);
    padding: 12px 8.5%;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.reserve-btn.cvbtn.reserve-visit {
    background: var(--primary-orange, #FFCE8A);
    color: var(--primary-white, #FEFEFB); 
}


.reserve__body {
    display: flex;
    position: relative;
    gap: 22px;
    justify-content: flex-start;
    align-items: center;
}

.cvbtn.back-orange.reserve-short {
    width: 80%;
}

.cvbtn.back-orange.reserve-short::after {
    width: 20px;
    height: 20px;
    right: 24px;
}




/* .reserve__body-contents.back-white.reserve-arrow::after {
    display: flex;
    position: absolute;
    justify-content: flex-end;
} */


.reserve__body .reserve-img1 {
    width: 19px;
    margin-left: 4%;
}

.reserve__body .reserve-img2 {
    width: 28px;
}

.reserve__topic {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    padding-bottom: 6px;
}

.reserve__txt {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1; /* 13px */ 
}

/* Reserve pc */
@media screen and (min-width: 769px) {
    .reserve {
        padding-top: 200px;
    }

    .reserve .wave__top--sp1 {
        display: none;
    }

    .reserve-link {
        display: flex;
        gap: 40px;
        justify-content: center;
        align-items: center;
        margin-bottom: 100px;
    }

    .reserve-btn {
        width: 418px;
        height: 118px;
        padding: 20px 60px;
    }

    .reserve-link .cvbtn {
        margin: 40px 0 0 0;
    }

    .reserve__topic {
        font-size: 2.4rem;
    }

    .reserve__txt {
        font-size: 1.6rem;
    }

    .reserve__body .reserve-img2 {
        width: 40px;
        margin-left: 42px;
    }

    .reserve .back-white::after {
        right: 50px;
    }

    .reserve-link {
       display: grid;
        grid-template-columns: repeat(2, 420px);
        column-gap: 40px;  /* 横の間 */
        row-gap: 16px; 
        justify-content: center; 
    }

    .cvbtn.back-orange.reserve-short{
        width: 100%;
        height: 118px;
    }

    .cvbtn.back-orange.reserve-short::after {
        right: 50px;
    }


}




/* access */
.access {
    margin-bottom: 0;
    padding:  0 4.2% 100px;
    align-items: center;
    align-self: stretch;
    position: relative;
    background-color: var(--primary-yellowHigh,rgba(250, 250, 153, 0.30));
}

.access__note {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.5; /* 42px */
    position: relative;
    padding-bottom: 38px;
}

.access__note li {
    margin-left: 18%;
    position: relative;
}

.access__note li::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-color: #F3B45C;
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: -25px
}

.access__note li::after {
    content: '';
    display: block;
    width: 230px;
    height: 10px;
    background-image: url(../images/under-bar1-OR.svg);
    position: absolute;
    top: 30px;
    left: -25px;
    background-repeat: no-repeat;   /* ← 追加 */
    background-size: contain;
}

.access__note li:nth-of-type(2)::after {
    width: 300px;
    height: 14px;
    background-image: url(../images/under-bar2-OR.svg);
    } 
  

.access__note img:first-of-type {
    position: absolute;
    display: block;
    top: 28px;
    left: 60px;
}

.access__note img:nth-of-type(2) {
    position: absolute;
    display: block;
    top: 62px;
    left: 60px;
}

.access__note img:last-of-type {
    position: absolute;
    display: block;
    top: 100px;
    left: 60px;
}

.access__map {
    margin-bottom: 16px;
    padding: 0;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.access__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
 
.access__right {
    display: bock;
    width: 65%;
    height: 153px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.access__right img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
}

.access__right address {
    margin: 0 auto;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    line-height: 2; /* 20px */
}

.access .wave__bottom--sp2 {
    position: absolute;
    bottom: 0px;          /* ← hero の下端 */
    left: 0;
    width: 100%;
    height: auto;
    display: block; 
}



/* accecss PC*/
@media screen and (min-width: 769px) {
    .access {
        position: relative;
        padding-bottom: 300px;
    }

    .access__contents {
        display: flex;
        gap: 60px;
        justify-content: center;
        align-items: center;
    }

    .access__left,
    .access__right {
        flex-shrink: 0;  
        margin: 0;
    }

    .access__map {
        margin: 0;
        padding: 0;
        width: 666px;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .access__right {
        display: bock;
        width: 470px;
        height: 361px;
        margin-left: -30px;
    }

    .access__note {
        font-size: 1.8rem;
        line-height: 2; /* 42px */
        position: relative;
    }

    .access__note li:nth-of-type(2)::after {
    width: 430px;
    height: 14px;
    background-image: url(../images/under-bar2-OR.svg);
    } 

    .access__note img:first-of-type {
        width: 200px;
        left: 200px;
    }

    .access__note img:nth-of-type(2) {
        width: 320px;
        left: 200px;
    }

    .access__note img:last-of-type {
        width: 220px;
        left: 200px;
    }

    .access .wave__bottom--sp2 {
        display: none;
    }

    .access__right address {
        font-size: 1.8rem;
    }
}   

/* footer */
.footer {
    padding: 30px 4.2% 20px;
    position: relative;
    padding-bottom: 100px;
}

.footer__Logo {
    display: block;
    width: 63%;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.footer__tel-link {
    display: block;
    color: #F3B45C;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1; /* 18px */ 
    text-align: center;
    margin: 0 auto;
}

.footer__tel-disc {
    color: #000;
    font-family: "Zen Maru Gothic";
    font-size: 1.2rem;
    line-height: 1.5; /* 12px */
    text-align: center;
    margin: 0 auto;
}

.f-nav__list {
    display: flex;
    padding: 32px 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
}

.f-nav__item {
    color: #000;
    font-family: "Zen Maru Gothic";
    font-size: 1.3rem;
    line-height: 1.5; /* 19.5px */
}

.f-sns {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    padding: 28px 0;
}

.sns--icon {
    align-self: center;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sns--icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.nav__list {
    display: flex;
    justify-content: space-evenly;
    gap: 25px;
    align-items: center;
}


/* .footer-menu-btn {
    display: flex;
    width: 80%;
    height: 60px;
    background: #ecc690;
    color: var(--primary-white, #FEFEFB);
    justify-content: space-between;
    align-items: center;
} */

.footer-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 16px;
  background: #fcd085; 
  border-radius: 16px;
  width: calc(100% - 32px);
  max-width: 420px;
  text-align: center;
  align-items: stretch;

  /* 初期は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.25s;
}

.footer-bar.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-bar__item {
     flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #FFF;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
    text-align: center;
    text-decoration: none;
    background: none;
    border: none;
    font-family: "Zen Maru Gothic";
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1; 
    height: auto;
    min-width: 0;
}

.footer-bar__item span {
    font-size: 1.2rem;
    line-height: 1;   
}

.footer-bar__item svg,
.footer-bar__item img {
    display: block;
}


.footer-bar__item .footer-bar-img1 {
    width: 24px;
    height: 24px;
}

/* footer PC */
@media screen and (min-width: 769px) {

    .footer {
        padding-bottom: 50px;
    }
   
    .footer-link {
        display: flex;
        justify-content: space-between;
    }

    .footer__Logo {
        width: 420px;
    }

    .f-nav__list {
        display: flex;
        flex-direction: inherit;
        gap: 30px;
    }

    .f-nav__item {
        font-size: 1.8rem;
    }

    .f-nav__list .is-pc {
        display: none;
    }

    .f-sns {
        justify-content: flex-end;
        padding: 0;
    }

    .sns--icon {
        width: 45px;
        height: 45px;
    }

    .copy {
        font-size: 1.8rem;
        padding-top: 123px;
    }

    .footer__tel-link {
        font-size: 3rem;
        padding-top: 6px;
    }

    .footer__tel-disc {
        font-size: 1.8rem;
        padding-top: 6px;
    }




}


/* スマホだけ表示 */
@media (max-width: 768px) {
  .footer-bar.is-show {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translate(-50%, 0);
    z-index: 9999;
  }

  
    .wave__top--pc,
    .wave__bottom--pc,
    .is-pc {
        display: none;
    }

    .header__sns .sns--icon-pc{
    display: none;
    } 

}

/* PCだけ表示 */
@media screen and (min-width: 769px) {
    .is-sp {
        display: none;
        }

       
}

.copy {
    margin-top: 35px;
    text-align: center;
}








/* SP：
.is-sp → 表示
.is-pc → 非表示

PC：
.is-pc → 表示
.is-sp → 非表示 */















