@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;
    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: 66%;
    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::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: 0.2em;
}

.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: 20px;
    height: 20px;
    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 (min-width: 769px) and (max-width: 1024px){
    .cvbtn {
        width: 40%;
    }
    
}

@media screen and (min-width: 1025px) {
    .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: -70px;
        left: 50%; 
        transform: translateX(-50%);
    } */
} /* px 1025px */





/* =============================
header
============================== */

.header{
    width: 100%;
    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 {
    background: none ;
    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__wave img{
    display: block;
    width: 100%;
    height: auto;
} */

.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: 90;
    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 6.6%;
    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: 22px;
    height: 22px;
    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%);
}

.navbtn__txt {
    font-size: 1.3rem;
}

.navbtn__body {
    margin-left: 20px;
}

.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 (min-width: 425px) and (max-width: 460px){
    .wave__top--sp0 {
        position: absolute;
        bottom: 0;
        left: 50%; 
        transform: translateX(-50%);
    }
}

@media (min-width: 461px) and (max-width: 620px){
    .wave__top--sp0 {
        position: absolute;
        bottom: -20px;
    }
}

@media (min-width: 621px) and (max-width: 700px){
    .wave__top--sp0 {
        position: absolute;
        bottom: -30px;
    }
}

@media (min-width: 701px) and (max-width: 768px){
    .wave__top--sp0 {
        position: absolute;
        bottom: -45px;
        left: 50%; 
        transform: translateX(-50%);
    }
}

@media (min-width: 769px) and (max-width: 1024px){

    .wave__top--pc0 {
        position: absolute;
        bottom: 30px;
        left: 50%; 
        transform: translateX(-50%);
    }

    .wave__top--sp0 {
        display: none;
    }
}


@media screen and (min-width: 1025px) {
    .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;
    }

     .wave__top--sp0 {
        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;
    }

    .wave__top--pc0 {
        position: absolute;
        bottom: 10px;
        left: 50%; 
        transform: translateX(-50%);
    }

} /* px 1025px */



/* Article hedaer */

.article__header {
    position: relative;
    overflow: hidden;
}

.video-sp {
    height: 110vh;          /* 表示したい高さ */
    overflow: hidden;      /* はみ出た動画を隠す */
    position: relative;
}

.video__hero--sp {
    position: absolute;
    inset: 0;       
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 90%;
    margin-top: -60px; 
    z-index: 0;
}

.article__header h2 {
    color: #FFF;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
    font-family: "Zen Maru Gothic";
    font-size: 2.8rem;
    font-weight: 700;
    position: absolute;
    left: 25px;
    top: 200px;
    z-index: 10;
    }

    .main__cv {
        width: 140px;
        height: auto;
        object-fit: contain;
    }

    .main__cv  img {
        width: 100%;
        height: 100%;
    }

    .main__cv:hover {
        opacity: 0.5;
    }

    .article__header .main__cv {
        position: absolute;
        right: 10px;
        bottom: 100px;
        z-index: 10;
    }

    .article__header .wave__bottom--sp2 {
        position: absolute;
        bottom: 50px;          /* ← hero の下端 */
        left: 0;
        width: 100%;
        z-index: 30;
        display: block;
        pointer-events: none;
    }

    .section-title-ja:first-of-type {
        padding-top: 0px;
    }

    .concept__visual {
        position: relative;
        overflow: hidden;
        width: 100vw;
    }

    .concept__visual .wave__top--sp3 {
        position: absolute;
        top: -20px;          
        left: 50%; 
        transform: translateX(-50%);
        width: 100%;
        z-index: 10;
        display: block;
        pointer-events: none; 
    }

/* Article header pc */
@media (min-width: 425px) and (max-width: 768px){
    .article__header h2 {
        font-size: 2.8rem;
        left: 25px;
        top: 300px;
        z-index: 10;
    }


    .article__header .main__cv {
        width: 200px;
        position: absolute;
        right: 40px;
        bottom: 150px;
        z-index: 10;
    }

}



@media (min-width: 769px) and (max-width: 1024px){
    .video-pc {
        display: none;
    }

    .video-sp {
        height: 130vh; 
    }

    .article__header .main__cv {
        width: 180px;
        position: absolute;
        bottom: 150px;
        right: 30px;
    }

    .wave__bottom--sp2.is-sp {
        display: none;
    }

    .wave__bottom--pc {
        position: absolute;
        left: 50%; 
        transform: translateX(-50%);
        bottom: 30px;
        display: block;
        margin: 0 auto;
        width: 100%;
        z-index: 50;
    }

    .article__header h2 {
        font-size: 3.2rem;
        left: 25px;
        top: 300px;
        z-index: 10;
    }

    .concept__visual .wave__top--sp3 {
        display: none;
    }

}



@media screen and (min-width: 1025px) {

    .article__header {
        line-height: 0;
        width: 100%;
        position: relative;
        background: #FEFEFB;
    }

    .video-pc {
        height: 95vh;          /* 表示したい高さ */
        overflow: hidden;      /* はみ出た動画を隠す */
        position: relative;
        min-height: 100vh;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        max-width: none;
    }

    .video__hero--pc {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        
        /* clip-path: inset(6% 0 6% 0); */
    }

    .article__header h2 {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-size: 4.8rem;
        right: 0px;
        top: 490px;
        margin: 0 auto;
    }

    .sp-only {
        display: none;
    }

    .wave__bottom--sp2.is-sp {
        display: none;
    }
    
    .wave__bottom--pc {
        position: absolute;
        left: 50%; 
        transform: translateX(-50%);
        bottom: -78px;
        display: block;
        margin: 0 auto;
        width: 100%;
    }

    .concept__img.concept__img--pc.pc-only {
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .main__cv {
        display: block;
        width: 230px;
        position: absolute;
        right: 100px;
        margin-right: 70px;
    }

    


}/* px 1025px */

/* Concept header pc */
@media screen and (min-width: 1025px) {
    
    .concept {
        padding-top: 100px;
    }
    
    /* .wave__top--pc {
        position: absolute;
        top: 0;
        left: 50%; 
        transform: translateX(-50%);
        width: 100%;
    } */

    .wave__top--sp3.sp-only {
        display: none;
    }

}/* px 1025px */









/* service */
.service {
    background-color: var(--primary-yellowHigh,rgba(250, 250, 153, 0.30));
    padding: 80px 4.2% 100px;
    position: relative;
    overflow: hidden;
}

.service .wave--bottom4 {
    position: absolute;
    top: -100px;          
    left: 50%; 
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
    display: block;
    pointer-events: none; 
}

/* .service .wave--bottom4.wave__top--pc {
    display: none;
} */

.service__item {
    border-radius: 80px 70px 60px 60px;
    background: #FFF;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    height: auto;
    padding: 20px 6.4%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    /* gap: 16px; */
    /* align-self: stretch; */
}

.service__item a {
    display: flex;
    flex-direction: column;
    align-items: center;  
    text-align: center;
    width: 100%;
}

.service__topic {
    color: #777;
    font-family: "Gamja Flower";
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
    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;
    padding-bottom: 16px;
}

.service__img {
    width: 100%;
    height: auto;
    padding-bottom: 16px;
}

.service__img img {
    width: 100%;
    height: 100%;
}

.service__txt {
    margin-bottom: 20px;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    text-align: left;
    line-height: 2; /* 28px */
}

.service__cv {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2; /* 28px */
    display: block;       /* flexじゃなくてもOK */
    margin-left: auto;
    width: fit-content;
    padding-right: 10px;
    position: relative;
    margin-bottom: 20px;
}  

.service__cv::after {
    content: "";
    position: absolute;
    left: 44%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 120px;
    height: 14px;
    background: url("../images/under-bar-OR.svg") no-repeat center / contain; 
}

.service__cv:hover {
   transform: translateX(20px);
   transition: 0.4s;
}

.service__item-B {
    border-radius: 70px 80px 60px 80px;
    background: #FFF;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.15);
    display: flex;
    padding: 16px 10.6%;
    flex-direction: column;
    justify-content: center;
    position: relative;
    align-items: flex-start;
}

.service__item-B .service__topic-ja.B-btn::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: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.service__item-B p {
    padding-left:11%;
}

.service-card li {
    margin-bottom: 24px;
}

/* .service-card li:last-of-type {
    margin-bottom: 74px;
} */

.service__item:hover {
  transform: translateY(-2px);
  transition: .2s;
}

.service__item-B:hover {
  transform: translateY(-2px);
  transition: .2s;
}

/* Service pc */

@media (min-width: 425px) and (max-width: 768px){
    .service .wave.wave--bottom4 {
        top: -230px;
    }

    .service .section-title {
        padding-top: 100px;
    }
}

@media (min-width: 769px) and (max-width: 1024px){
    .service .wave--bottom4.is-sp {
        display: none;
    }

    .service .wave--bottom4.wave__top--pc {
        position: absolute;
        top: -262px;
        left: 50%; 
        transform: translateX(-50%);
        z-index: 100;
    }

    .service-card {
        display: grid;
        grid-template-columns: repeat(2, 330px);
        column-gap: 25px;  /* 横の間 */
        row-gap: 16px; 
        justify-content: center;
        margin-bottom: 156px;
    }
}

@media screen and (min-width: 1025px) {
    .service {
        padding-top: 200px;
    }

    .wave.wave--bottom4.is-sp {
        display: none;
    }

    .service .wave--bottom4.wave__top--pc {
        position: absolute;
        top: -400px;
        left: 50%; 
        transform: translateX(-50%);
        z-index: 100;
    }

    .service-card {
        display: grid;
        grid-template-columns: repeat(2, 561px);
        column-gap: 40px;  /* 横の間 */
        row-gap: 16px; 
        justify-content: center;
        margin-bottom: 156px;
    }
    
    .service-card li {
        margin-bottom: 0x;
    }

    .service {
        padding-bottom: 300px;
    }

    .service__topic {
        font-size: 3.2rem;
    }

    .service__topic-ja {
        font-size: 3rem;
    }

    .service__txt {
        font-size: 1.8rem;
        padding-bottom: 40px;
    }

    .service__cv {
        font-size: 2rem;
        margin-bottom: 40px;
    }  

    .service__cv::after {
        left: 44%;
        width: 180px;
    }

    .service__item-B .service__topic-ja.B-btn::after {
        width: 26px;
        height: 26px;
        right: 60px;
    }   
}/* px 1025px */


@media screen and (min-width: 1650px) {
    .wave.wave--bottom4.wave__top--pc {
        position: absolute;
        top: -650px;
    }
}



/*  about */
.about {
    position: relative;
    padding-top: 50px;
    padding-bottom: 100px;
}

.about .wave__bottom--sp5 {
    position: absolute;
    top: -50px;          /* ← hero の下端 */
    left: 0;
    width: 100%;
    z-index: 200;
    display: block;
    pointer-events: none;
}

.bee--chebee {
    position: absolute;
    bottom: 180px;
    left: 30px;
    /* transform: rotate(14.514deg); */
}

.about__main {
    padding-bottom: 80px;
}

.about__logo {
    width: 117px;
    height: 101px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center; /* 中のimgを中央 */
    margin: 0 auto; /* 親の中で中央 */
}

.about__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.about__items {
    padding: 0 6.4% 80px;
    display: block;
    margin: 50px auto 0;
    position: relative;
}

.bee--mebee {
    position: absolute;
    top: -50px;
    right: 30px;
    transform: rotate(-10.948deg);
}

.bee--sebi {
    position: absolute;
    top: -80px;
    left: 30px;
    transform: rotate(14.514deg);
}

.bee--hunny {
    position: absolute;
    top: -80px;
    right: 30px;
}

.about__items .about__topic {
    color: #F3B45C;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 2; /* 32px */
}

.about__items .about__txt {
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8; /* 25.2px */
}

.bee-wrap {
    display: inline-block;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    width: 82px;
    height: 82px;
}

.bee-wrap.is-peep{
  animation: peepDiag 420ms cubic-bezier(.2,.9,.2,1);
}

@keyframes peepDiag{
  0%   { transform: translate(0,0) rotate(0deg); }
  40%  { transform: translate(14px,-10px) rotate(3deg); } /* ←斜め */
  100% { transform: translate(0,0) rotate(0deg); }
}

.bee-wrap .about__illust--bee{
  display:block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: floatBee 4s ease-in-out infinite;
}

.bee1 .about__illust--bee{ animation-duration: 3.5s; animation-delay: -0.2s; }
.bee2 .about__illust--bee{ animation-duration: 4.5s; animation-delay: -1.1s; }
.bee3 .about__illust--bee{ animation-duration: 5.0s; animation-delay: -2.0s; }
.bee4 .about__illust--bee{ animation-duration: 2.0s; animation-delay: -2.0s; }

@keyframes floatBee{
  0%   { transform: translate(0,0) rotate(0deg); }
  50%  { transform: translate(6px,-12px) rotate(3deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

.about__items:last-of-type {
    padding-bottom: 30px;
}


/* Aboutous pc */

@media (min-width: 425px) and (max-width: 540px){
    .about .wave__bottom--sp5 {
        top: -70px;
        z-index: 300;
    }

    .wave__bottom--pc5 {
        display: none;
    }
}


@media (min-width: 541px) and (max-width: 700px){
    .about .wave__bottom--sp5 {
        top: -100px;
        z-index: 300;
    }

    .wave__bottom--pc5 {
        display: none;
    }
}

@media (min-width: 701px) and (max-width: 768px){
    .about .wave__bottom--sp5 {
        top: -130px;
        z-index: 300;
    }

    .wave__bottom--pc5 {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px){
    .wave__bottom--pc5 {
        display: none;
    }

    .about .wave__bottom--sp5 {
        top: -130px;
    }

    .about__items {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding-bottom: 80px;
    }

     .about__items:nth-of-type(3) {
        .about__img { order: 2; }
        .anout__contents { order: 1; }
    }

    .about__items .about__img { 
        width: 40%;
        height: auto;
    }

    /* .about__contents {
        width: 29%;
        height: auto;
        position: relative;
    } */

    .about__illust--tears {
        display: none;
    }

    .about__items .about__topic {
        text-align: left;
    }

    


    .tears--right1 {
        position: absolute;
        top: 0;
        right: -100px;
    }

    .tears--right2 {
        position: absolute;
        top: 70px;
        right: 30px;
    }
}



@media screen and (min-width: 1025px) {

    .wave__bottom--sp5.is-sp {
        display: none;
    }

    .wave__bottom--pc5 {
        position: absolute;
        top: -120px;
        left: 50%; 
        transform: translateX(-50%);
        width: 100%;
    }

    .about__logo {
        width: 240px;
        height: 207px;
        display: flex;
        position: absolute;
        left: 140px;
        top: 34.499px;
    }
    
    .about__items {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        padding-bottom: 120px;
    }

    .about__items:nth-of-type(3) {
        .about__img { order: 2; }
        .anout__contents { order: 1; }
    }

    .about__items .about__img { 
        width: 40%;
        height: auto;
    }

    .about__contents {
        width: 38%;
        height: auto;
        position: relative;
    }

    .about__items .about__topic {
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 2; /* 48px */
    } 

    .about__items .about__txt {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 2; 
        text-align: justify;
    }

    .about__illust--tears {
        width: 137px;
    }

    .tears--right1 {
        position: absolute;
        top: 0;
        right: -100px;
    }

    .bee-wrap {
        width: 120px;
        height: 120px;
    }

    .bee--mebee {
        position: absolute;
        top: 0px;
        right: 50px;
        transform: rotate(-10.948deg);
    }

    .bee--sebi {
        position: absolute;
        top: -80px;
        left: 200px;
        transform: rotate(14.514deg);
    }

    .tears--right2 {
        position: absolute;
        top: 180px;
        right: 80px;
    }

    .bee--hunny {
        position: absolute;
        top: 10px;
        right: 80px;
    }

    .tears--left1 {
        position: absolute;
        bottom: 30px;
        left: 200px;        
    }

    .bee--chebee {
        position: absolute;
        bottom: 250px;
        left: 200px;
        z-index: 50;
        /* transform: rotate(14.514deg); */
    }

    .about {
        padding-bottom: 200px;
    }
   
}/* px 1025px */


/* banner */
.nicotto-links {
    background-color: var(--primary-yellowHigh,rgba(250, 250, 153, 0.30));
    padding: 120px 4.2% 100px;
    position: relative;
}

.nicotto-links .wave__top--sp6 {
    position: absolute;
    top: 0px;          
    left: 0;
    width: 100%;
    z-index: 10;
    display: block;
    pointer-events: none; 
}

.nicotto-links__item a {
    height: 145px;
    background-color: #FFF;
    display: flex;
    padding: 35px 10.7%;
    margin-bottom: 30px;
    border-radius: 35px;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.15);
    align-items: center;
}

.nicotto-links__body {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.nicotto-links__item img {
    width: 27%;
    height: auto;
}

.nicotto-links__label {
    color: #777;
    font-family: "Zen Maru Gothic";
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5; /* 22.5px */ 
}

.nicotto-links__title {
    color: #F3B45C;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5; /* 27px */
}

.nicotto-links__card .nicotto-links__icon {
    width: 10%;
    height: auto;
    margin-left: 13.3%;
}

.nicotto-links .wave__bottom--sp5 {
    position: absolute;
    bottom: -1px;          /* ← hero の下端 */
    left: 0;
    width: 100%;
    z-index: 30;
    display: block;
    pointer-events: none;
}

/* banner pc */

@media (min-width: 769px) and (max-width: 1024px){
    .nicotto-links__list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .nicotto-links {
        position: relative;
        padding: 200px 0;
    }

    .nicotto-links__item a {
        width: 300px;
        height: auto;
    }

    .nicotto-links .wave__top--pc {
        display: none;
    }
}



@media screen and (min-width: 1025px) {
    .nicotto-links {
        position: relative;
        padding: 300px 0;
    }

    .nicotto-links .wave__top--sp6 {
        display: none;
    }

    .nicotto-links__list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }

    .nicotto-links__item a {
        width: 520px;
        height: auto;
    }
    
    .nicotto-links__label {
        font-size: 2rem;
    }

    .nicotto-links__title {
        font-size: 2.4rem;
    }

    .nicotto-links__card .nicotto-links__icon {
        margin-left: 28%;
    }

}



/* galleries */
.galleries {
    padding-bottom: 70px;
}

.gallery {
  /* 画面端に少し余白。好みで調整 */
  padding: 0 4.2%;
}

.gallery__list {
  display: flex;
  gap: 16px;

  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; /* iPhoneでヌルっと */
  scroll-behavior: smooth;
   
  /* リストのデフォルト消す */
  list-style: none;
  padding: 0;
  margin: 0;

}

/* スクロールバーを目立たなく（任意） */
.gallery__list::-webkit-scrollbar {
  display: none;
}

.gallery__list {
  scrollbar-width: none; /* Firefox */
}

/* 各アイテムは縮まない */
.gallery__item {
  flex: 0 0 auto;
}

/* 画像のサイズ（ここが一番触るところ） */
.gallery__item img {
  display: block;
  width: 180px;        /* 画像幅：好みで */
  height: 180px;       /* 画像高さ：好みで */
  object-fit: cover;
  border-radius: 10px;
}

.is-small-left,
.is-small-right {
  transform: scale(0.85);
  opacity: 0.6;
}

.is-medium-left,
.is-medium-right {
  transform: scale(0.95);
  opacity: 0.8;
}

.is-center {
  transform: scale(1);
  opacity: 1;
}

.gallery__list {
  scroll-snap-type: x mandatory;
}
.gallery__item {
  scroll-snap-align: center;
}

.back-orange-insta {
    display: flex;
    width: 272px;
    height: 48px;
    padding: 12px 16px 12px 0;
    justify-content: center;
    align-items: center;
}


/* galleries PC*/

@media (min-width: 769px) and (max-width: 1024px){
    .gallery__item img {
    width: 250px;        /* 画像幅：好みで */
    height: 250px;    
}
}


@media screen and (min-width: 1025px) {
    .nicotto-links {
        position: relative;
    }

    .gallery__item img {
        width: 400px;        /* 画像幅：好みで */
        height: 400px;       /* 画像高さ：好みで */
        margin-bottom: 100px;
    }

    .back-orange-insta {
        display: flex;
        width: 436px;
        height: 85px;
        padding: 20px 24px;
        font-size: 3rem;
        justify-content: flex-start;
        padding-left: 80px;
    }

    .galleries .back-orange-insta::after {
        width: 40px;
        height: 40px;
        right: 60px;
        }

    .nicotto-links .wave__bottom--sp5 {
        display: none;
    }    

    .nicotto-links .wave__top--pc {
        width: 100%;
        position: absolute;
        top: -35px;
    }
    
}

/* reserve */

.reserve {
    background-color: var(--primary-yellowHigh,rgba(250, 250, 153, 0.30));
    padding: 50px 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 (min-width: 769px) and (max-width: 1024px){

   .reserve {
    padding-top: 150px;
   }

    .reserve-btn {
        width: 45%;
        padding: 12px 5.5%;
    }

    .cvbtn.back-orange.reserve-short {
        width: 45%;
    }

    .ipad-cvbtn {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

}





@media screen and (min-width: 1025px) {
    .reserve {
        padding-top: 200px;
    }

    .reserve .wave__top--pc {
        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: 16px;
    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: auto;
    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 (min-width: 769px) and (max-width: 1024px){
    .access {
        position: relative;
        padding-bottom: 250px;
    }

    .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: 400px;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .access__right {
        display: bock;
        width: 250px;
        height: auto;
        margin-left: -30px;
    }

}



@media screen and (min-width: 1025px) {
    .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::after {
        height: 15px
    }

    .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 (min-width: 769px) and (max-width: 1024px){
    .footer-bar {
        max-width: none;
        justify-content: center;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1025px) {

    .footer {
        padding-bottom: 50px;
    }
   
    .footer-link {
        display: flex;
        justify-content: space-between;
        max-width: 1440px;
        margin: 0 auto;
    }

    .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: 1025px) {
    .is-sp {
        display: none;
        }

       
}


.copy {
    margin-top: 35px;
    text-align: center;
}





/* SP：
.is-sp → 表示
.is-pc → 非表示

PC：
.is-pc → 表示
.is-sp → 非表示 */
