@font-face {
    font-family: 'Montserrat';
    src: url("../font/Montserrat-Bold.woff") format("truetype");
}
/* ---------------------------------
共通パーツ
--------------------------------- */
html{
    scroll-behavior: smooth;
}
body{
    color: #473636;
    text-align: center;
    /* PC/NotoSansJP_p */
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
}
._title {
    color: #B21316;
    text-align: center;
    /* PC/NotoSerifJP_H2 */
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 64px */
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
._title::after{
    content: '';
    display: block;
    background-image: url(../img/text-decoration1.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 24px;
    margin-top: 16px;
}
._red{
    color: #B21316;
}
._rhombus{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 8px;
}
._rhombus::before{
    content: '';
    display: block;
    position: relative;
    width: 12px;
    height: 12px;
    background: #C20237;
    transform: rotate(45deg);
}
._btn::before{
    content: '';
    width: 28px;
    height: 28px;
    background-image: url(../img/strawberry.png);
    background-position: center;
    background-size: cover;
}
.cta-btn{
    /* text */
    color:#B21316;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;

    /* btn */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 90%;
    max-width: 702px;
    height: 100px;
    padding: 0 24px 0 40px;
    margin: 80px auto 120px;
    background: #fff;
    border: 2px solid #C20237;
    border-radius: 50px;
    box-sizing: border-box;
}
.m-list .cta-btn{
    margin: 80px auto 40px;
}
.cta-btn::after{
    content: '→';
    font-size: 28px;
    color: #fff;
    background: #C20237;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-position: center;
    background-size: cover;
}
/*====================================*/
/* ----header---- */
/*====================================*/
.header {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    height: 90px;
    width: 100vw;
    background: linear-gradient(90deg, #C20237 0%, #D75052 37%, #EE517C 100%);
    display: flex;
    align-items: center;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    transition-timing-function:linear;
}
.header-wrap{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.header__inner {
    position: relative;
}

.logo {
    width: 120px;
}

.nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 2%;
}
.nav__item{
    text-decoration: none;
    line-height: 150%;
    position: relative;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    transition-timing-function:linear;
}
.nav__item::after{
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translate(50%,-50%);
    display: block;
    width: 5px;
    height: 5px;   
    background: #fff;
    border-radius: 50%;
}
.nav__item a{
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    transition-timing-function:linear;
}
.nav__item span{
    color:  #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
}
.nav-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    width: 230px;
    height: 60px;
    border-radius: 50px;
}
.nav-btn p{
    color: #B21316;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    white-space: nowrap;
}
@media only screen and (max-width: 1200px) {
    .header-wrap{
        width: 90%;
    }
}
@media only screen and (max-width: 1090px) {
    .nav {
        position: fixed;
        right: -100%;
        /* 右から出てくる */
        top: 0;
        width: 100%;
        /* スマホに収まるサイズ */
        height: 100vh;
        padding-top: 60px;
        background-color: #fff;
        transition: all .6s;
        z-index: 200;
        overflow-y: auto;
        display: block;
        /* メニューが多くなったらスクロールできるように */
    }
    .logo{
        width: 100px;
    }

    .hamburger {
        position: absolute;
        right: 15px;
        top: 50%;
        width: 60px;
        /* クリックしやすい幅 */
        height: 40px;
        /* クリックしやすい高さ */
        cursor: pointer;
        z-index: 300;
        transform: translateY(-50%);
    }

    .nav__list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav__item {
        text-align: center;
        padding: 0 14px;
    }

    .nav__item a {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        color: #333;
    }
    .nav__item span{
        color: #333; 
    }

    .nav__item a:hover {
        background-color: #eee;
    }

    .hamburger_border {
        position: absolute;
        left: 11px;
        width: 80%;
        height: 2px;
        background-color: #fff;
        transition: all .6s;
    }

    .hamburger_border_top {
        top: 10%;
    }

    .hamburger_border_center {
        top: 50%;
    }

    .hamburger_border_bottom {
        top: 90%;
    }

    .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        background-color: #333;
        opacity: 0;
        visibility: hidden;
        transition: all .6s;
        cursor: pointer;
    }

    /* 表示された時用のCSS */
    .nav-open .nav {
        right: 0;
    }
    .nav-open .nav-btn{
        border:2px solid #B21316;
        margin: 20px auto 0;
    }

    .nav-open .black_bg {
        opacity: .8;
        visibility: visible;
    }

    .nav-open .hamburger_border{
        background-color: #333;
    }

    .nav-open .hamburger_border_top {
        transform: rotate(45deg);
        top: 20px;
        
    }

    .nav-open .hamburger_border_center {
        width: 0;
        left: 50%;
    }

    .nav-open .hamburger_border_bottom {
        transform: rotate(-45deg);
        top: 20px;
    }
}

/* sp */

@media only screen and (min-width: 1089px) {

    .header__inner {
        max-width: 980px;
        width: 80%;
        padding: 15px 30px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: flex-end;
    }


    .nav__list {
        display: flex;
        /* gap: 3rem; */
        text-align: center;
        width: 80%;
        justify-content: flex-end;
        gap: 32px;
        margin-right: 32px;
    }
}

/* ---------------------------------
MV
--------------------------------- */
section.mv{
    width: 100vw;
    height: auto;
    background: #FFD6D0;
    margin-top: 80px;
    overflow-x: hidden;
}
.m-background{
    width: 100%;
    height: 624px;
    background-image: url(../img/mv.png);
    background-position-x: center;
    background-position-y: bottom;
    background-size: cover;
    padding-top: 48px;
}
.m-background-box{
    position: relative;
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.m-logo{
    width: 20%;
    max-width: 142px;
    margin-top: 32px;
}
.m-textimg{
    width: 70%;
}
._mv-absolute{
    position: absolute;
}
.m-background-img{
    right: 0;
    bottom: 0;
    transform: translateY(32%);
    width: 50%;
    max-width: 550px;
    z-index: 2;
}
.mv-bottom{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}
.m-bottom-img{
    position: relative;
    left: 10%;
    z-index: 1;
    margin-top: -10%;
}

/* ---------------------------------
title
--------------------------------- */
section.title{
    background: #FFD6D0;
    padding:120px 0 32px;
}
.t-title{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.t-title::before{
    position: absolute;
    transform: translate(-50%, -50%);
    top: 0;
    left: 50%;
    z-index: -1;
    content: 'STRAWBERRY BLOOM';
    display: block;
    width: 100%;
    color:  #FFE8E4;
    /* PC/Montserrat_H1 */
    font-family: Montserrat;
    font-size:clamp(32px, 6vw, 100px); 
    font-style: normal;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}
.t-title h2{
    color: #B21316;
    text-align: center;
    /* PC/NotoSerifJP_H2 */
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    margin-bottom: 24px;
}
.t-text{
    position: relative;
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.t-text-decoration{
    width: 20%;
}
.t-text::before{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translatex(-50%);
    content: '';
    background-image: url(../img/text-decoration2.png);
    display: block;
    background-position: center;
    background-size: cover;
    width: 34px;
    height: 40px;
}
.t-text p{
    padding-top: 72px;
}

/* ---------------------------------
overview
--------------------------------- */
section.overview{
    background: url(../img/overview-bg.png) lightgray 50% / cover no-repeat;
    mix-blend-mode: overlay;
    padding: 80px 0;
}
.o-content{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 40px 90px;
    border-radius: 40px;
    background-color: rgba(255, 255, 255, .6);
}
.o-content ._title{
    margin-bottom: 24px;
}
.o-flex{
    display: flex;
    justify-content: space-between;
    align-items: start;
    text-align: right;
    /* PC/NotoSansJP_H3 */
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    padding-bottom: 16px;
    margin-bottom: 16px;
    position: relative;
}
.o-flex::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,#473636 4px ,transparent 0px);
    background-size: 10px 1px;
    background-repeat: repeat-x;
    bottom: 0;
}
.o-flex:last-child::after{
    display: none;
}

/* ---------------------------------
menu
--------------------------------- */
section.menu{
    background: #FFD6D0;
    padding:160px 0 24px ;
    position: relative;
    z-index: 3;
    overflow-x: hidden;
}
section.menu::before{
    content: '';
    background-image:url(../img/menu-decoration1.png) ;
    background-position: right;
    background-size: cover;
    display: block;
    width: 35%;
    height: 670px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.m-content{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}
.m-content ._title{
    margin-bottom: 80px;
}
.m-contents-flex{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 24px;
    width: 100%;
    margin-bottom: 64px;
    position: relative;
}
.m-contents-flex::after{
    content: '';
    background-size: cover;
    display: block;
    position: absolute;
    z-index: -1;
}
.m-contents-flex._flex2::after{
    background-image: url(../img/menu-decoration2.png);
    right:clamp(-27rem, 40% - 50vw , -4.8rem) ;
    width: 35vw;
    top: 50%;
    transform: translateY(-40%);
    height: 740px;
}
.m-contents-flex._flex3::after{
    background-image: url(../img/menu-decoration3.png);
    left:clamp(-27rem, 40% - 50vw , -4.8rem) ;
    width: 35vw;
    top: 50%;
    transform: translateY(-40%);
    height: 740px;
    background-position: right;
}
.m-contents-flex:last-child{
    margin-top: 150px;
}
.m-contents-flex img{
    width: 50%;
}
.m-contents-text{
    width: 50%;
}
.m-contents-text h3{
    color: #FFF;
    /* PC/Montserrat_H1 */
    font-family: Montserrat;
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 128px */
    text-align: left;
}
.m-contents-text p{
    color: #473636;
    /* PC/NotoSansJP_H3 */
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 48px */
    text-align: left;
    padding-bottom: 24px;
    position: relative;
}
.m-contents-text p::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #C20237 4px, transparent 0px);
    background-size: 10px 1px;
    background-repeat: repeat-x;
}
.m-contents-item .m-contents-text p::after{
    display: none;
}
.m-contents-item{
    width: 50%;
}
.m-contents-item img{
    width: 100%;
}
.m-contents-item .m-contents-text{
    width: 100%;
}

/* m-list */
section.menu{
    position: relative;
}
section.menu::after{
    content:'';
    display: block;
    background-image: url(../img/wabe.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 94px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.m-list{
    width: 80%;
    max-width: 1080px;
    margin: 120px auto 0;
    background: #fff;
    box-sizing: border-box;
    padding: 32px 48px;
    border-radius: 32px;
}
._m-list-wrap{
    padding:24px 0;
    text-align: left;
    position: relative;
}
._m-list-wrap::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #C20237 4px, transparent 0px);
    background-size: 10px 1px;
    background-repeat: repeat-x;
}
._m-list-wrap:last-child::after{
    display: none;
}
._m-list-wrap h3{
    color: #B21316;
    /* PC/NotoSansJP_p */
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; /* 32px */
    text-align: left;
    margin-bottom: 16px;
}
._m-list-wrap h3 span{
    color:#FFBEC2;
    /* PC/Montserrat_p */
    font-family: Montserrat;
}
.m-list-flex{
    display: flex;
    justify-content: space-between;
}
._2-column{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.m-list-item{
    text-align: left;
}
.m-list-middle2 .m-list-box{
    width: 50%;
}
.m-list-attention{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}
.attention-text{
    text-align: left;
}

/* ---------------------------------
info
--------------------------------- */
section.info{
    background:#FFBEC2 ;
    padding: 120px 0 240px;
    position: relative;
}
section.info::before{
    content:'SPECIAL INFORMATION';
    white-space: pre;
    display: block;
    transform-origin: 0 0;
    transform: rotate(90deg);
    position: absolute;
    text-align: left;
    font-family: Montserrat;
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    transform-origin: 0 100%;
    color: #fff;
    left: 5%;
    top: 0;
    z-index: 2;
}
section.info::after{
    content: '';
    background-image: url(../img/info-decoration.png);
    background-position: left top;
    background-size: cover;
    display: block;
    width: 280px;
    height:1600px ;
    position: absolute;
    transform-origin: 0 0;
    right: 5%;
    bottom: 0;
    z-index: 2;
}
.i-wrap{
    width: 100%;
    position: relative;
}
.info ._title{
    margin-bottom: 64px;
}
.i-content{
    display: flex;
    align-items: start;
    gap: 24px;
    width: 80%;
    max-width: 1080px;
    margin:  0 auto;
    box-sizing: border-box;
    padding: 24px 24px 32px;
    background: #fff;
    border-radius: 32px;
    text-align: left;
    margin-bottom: 32px;
    position: relative;
    z-index: 3;
}
.i-content img{
    width: 50%;
}
.i-content-text h3{
    color: #B21316;
    /* PC/NotoSansJP_H3 */
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%;
    margin-bottom: 16px;
}

#move-top {
  position: fixed;
  bottom: 40px;
  right: 16px;
  z-index: 10;
}
#move-top img {
  width: 54px;
  border: 2px solid #B21316;
  border-radius: 50px;
}

/* ---------------------------------
footer
--------------------------------- */
.footer-bg{
    background-image: url(../img/footer-bg.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 354px;
    padding-top:80px;
    padding-bottom: 48px;
    box-sizing: border-box;
}
.footer-bg img{
    width: 30%;
}
.footer-flex{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.f-info{
    width: 50%;
}
.f-insta{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #fff;
    text-decoration: none;
    gap: 8%;
    border-radius: 16px;
    border: 3px solid #FFF;
    padding: 20px 40px;
    box-sizing: border-box;
}
.f-insta img{
    width: 80px;
}
.f-insta::after{
    content: '〉';
    font-size: 16px;
    font-weight: bold;
    margin-left: 2%;
}
.f-adress{
    width: 100%;
    display: flex;
    justify-content: space-between;align-items: start;
    color: #fff;
    text-decoration: none;
    text-align: left;
    color:#FFF;
    /* PC/NotoSansJP_p */
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 200%; 
    margin-top: 32px;
}
.copyright{
    width: 100%;
    height: 52PX;
    background: #C20237;
    display: flex;
    justify-content: center;
    align-items: center;
}
.copyright p{
    color:  #FFF;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%
}
._sp-only{
    display: none;
}
@media screen and (max-width:768px) {
    ._sp-only{
        display: block;
    }
    ._pc-only{
        display: none;
    }
    .m-background-box{
        width: 90%;
    }
    .m-logo{
        width:50%;
        margin-bottom: 20px;
    }
    .m-textimg{
        width: 100%;
    }
    .m-background-img{
        width: 60%;
    }
    .cta-btn{
        font-size: 18px;
        height: 80px;
        padding:0 16px 0 16px;
        margin: 60px auto 100px;
    }
    .cta-btn::after{
        width: 48px;
        height: 48px;
    }
    .header{
        height: 72px;
    }
    .logo{
        width: 160px;
    }
    section.mv{
        margin-top: 64px;
    }
    .m-background{
        height: 320px;
        background-position-x: 53%;
        background-size: 330%;
    }
    .mv-bottom{
        width: 100%;
    }
    .m-bottom-img {
        left: 3%;
        margin-top: 10%;
    }
    .m-background-img {
        top: 48%;
        width: 70%;
    }



    section.title{
        padding: 80px 0 32px;
        overflow-x: hidden;
    }
    .t-title{
        width: 90%;
    }
    .t-title::before{
        width: auto;
        top: 5%;
    }
    .t-title h2{
        font-size: 24px;
    }
    .t-text{
        width: 90%;
        display: block;
    }
    .t-text p{
        position: relative;
    }
    .t-text p::before,.t-text p::after{
        content: '';
        background-repeat:repeat;
        background-size: contain;
        display: none;
        width: 20%;
        height: 500px;
        position: absolute;
    }
    .t-text p::before{
        top: 72px;
        left: -12%;
        transform: translate(-50%);
        background-image:url(../img/title2.png) ;
    }
    .t-text p::after{
        top: 72px;
        right: -12%;
        transform: translate(50%)
        rotateY(180deg);
        background-image:url(../img/title2.png) ;
    }
    .t-text-decoration{
        display: none;
    }

    .o-content{
        width: 90%;
        padding: 20px 32px;
    }
    .o-flex{
        flex-direction: column;
        text-align: left;
        font-size: 20px;
    }


    section.menu{
        padding-top: 80px;
    }
    .m-content{
        width: 90%;
    }
    .m-contents-flex{
        flex-direction: column;
        gap: 16px;
        margin-bottom: 48px;
    }
    .m-contents-flex._flex2{
        flex-direction: column-reverse;
    }
    .m-contents-flex img{
        width: 100%;
    }
    .m-contents-text{
        width: 100%;
    }
    .m-contents-text h3{
        font-size: 44px;
        line-height: 120%;
        margin-bottom: 16px;
    }
    .m-contents-item{
        width: 100%;
    }
    .m-contents-flex:last-child{
        margin-top: 0px;
    }
    ._2-column{
        grid-template-columns: 1fr;
    }
    ._m-list-wrap{
        padding: 12px 0;
    }

    .m-list{
        width: 90%;
        padding: 32px 20px;
    }
    .m-list-flex{
        flex-direction: column;
    }
    ._rhombus{
        align-items: start;
    }
    ._rhombus::before{
        width: 10px;
        height: 10px;
        margin-top: 10px;
    }
    .m-list-middle2 .m-list-box{
        width: 100%;
    }
    .m-list-attention{
        width: 90%;
        margin: 40px auto 0;
    }

    section.info{
        padding-bottom: 120px;
    }
    .i-content{
        width: 90%;
        flex-direction: column;
    }
    .i-content:nth-of-type(2){
        flex-direction: column-reverse;
    }
    .i-content img{
        width: 100%;
    }
    section.info::before{
        display: none;
    }
    section.info::after{
        display: none;
    }
    .i-content-text h3{
        font-size:20px ;
    }

    .footer-flex{
        flex-direction: column;
        width: 90%;
    }
    .footer-bg{
        height: auto;
    }
    .footer-bg img{
        width: 50%;
        margin: 0 auto 20px;
    }
    .f-info{
        width: 100%;
    }
    .f-insta{
        padding: 16px 20px;
        align-items: center;
    }
    .f-insta img{
        width: 40px;
        margin-bottom: 0;
    }
    .f-adress{
        flex-direction: column;
    }
}