@charset "UFT-8";

/* ====================
common
====================== */
html{
    font-size: 62.5%;
}

body{
    font-family: 
        'Yu Gothic', 
        'YuGothic', 
        'Hiragino Kaku Gothic ProN',
        'Hiragino Sans', 
        'Meiryo', 
        sans-serif;
    font-style: normal;
    color: #000000;
    font-size: 1.6rem;
    line-height: 2.0;
}

img{
    max-width: 100%;
    height: auto;
}

.section__topic{
    padding: 30px 0 40px;
    font-family: "Gill Sans", "Gill Sans MT", sans-serif;
    color: #43399B;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
}

.section__title{
    font-size: 1.4rem;
    font-weight: 700;
    color: #514F61;
    line-height: 1.3;
    text-align: center;
}

.section__content{
    padding: 20px 8% 20px;
    line-height: 2.0;
    text-align: center;
    font-size: 1rem;
}

/* ===========
header
============== */
.header{
    padding: 24px 6.4% 16px; 
    position: relative;
}

.header__all{
    display: flex;
    align-items: center;
    justify-content: space-between;
} 

.header__inner{
    display: flex;
    align-items: center;
} 

.header__logo{
    display: block;
    width: 90px;
    height: 90px;
}

.line__btn{
    display: block;
    align-items: center;
    width: 110px;
    height: auto;
}

.header__btn{
    display: flex;
    align-items: center;
    width: 19px;
    height: 19px;
    margin-left: 16px;
}


/* .navの初期設定 */
.nav{
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    padding: 24px 6.4% 16px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav_active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.nav__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__inner{
    display: flex;
    align-items: center;
} 

.nav__list-pc{
    display: none;
}

.nav__logo{
    display: block;
    width: 90px;
    height: 90px;
}

.nav__btn{
    display: flex;
    align-items: center;
    width: 19px;
    height: 19px;
    margin-left: 16px;
}

.nav__list{
    margin-top: 72px;
}

.nav__item{
    font-size: 1.4rem;
    line-height: 1.3;
    color: #2E286A;
    margin-top: 52px;
    list-style: none;
    padding-left: 0;
    font-family: "Gill Sans", "Gill Sans MT", sans-serif;
}

.nav.active {
    transform: translateX(0);
}

/* header pc */
@media screen and (min-width:769px) {
    .header{
        max-width: 1440px;
        margin-top: 0 auto;
        padding: 23px 30px 27px;
    }

    .header__all{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header__logo{
        display: block;
        width: 110px;
        height: auto;
    }

    .line__btn{
        width: 150px;
        height: auto;
        margin-left: 120px;
    }

    .header__btn{
        display: none;
    }

    .nav__list-pc{
        display: block;
        display: flex;
    }
    
    .nav{
        display: none;
    }

    .nav__list{
        display: flex;
        margin: 0;
    }

    .nav__item{
        font-size: 1.5rem;
        line-height: 1.3;
        margin-left: 100px;
        margin-top: 0;
    }

}
/* pc */


/* ===========
main
=============== */
.article{
    position: relative;
    overflow: hidden;
}


.mainvisual{
    width: 100%;
    height: auto;
    display: block;
}

.mainTopics{
    padding: 10px 8% 30px;
    text-align: center;
}

.mainTopics__title{
    font-family: "Gill Sans", "Gill Sans MT", sans-serif;
    color: #43399B;
    font-size: 2rem;
}

.mainTopics__name{
    margin-top: 30px;
    font-weight: 700;
    font-size: 1.4rem;
}

.mainTopics__txt{
    line-height: 2.0;
    margin-top: 20px;
    font-size: 1rem;
}

/* main pc */
@media screen and (min-width:769px){
    .article__header{
        position: relative;
    }
   
    
    .mainvisual{
        max-width: 1440px;
        margin: 0 auto;
    }
    
    .mainTopics {
        padding: 64px 0px 96px;
        max-width: 1440px;
        margin: 0 auto;
    }
    
    .mainTopics__title{
        font-size: 3.0rem;
        margin-top: 250px;
    }
    
    .mainTopics__name{
        font-size: 2rem;
        margin-top: 80px;
    }
    
    .mainTopics__txt{
        font-size: 1.5rem;
        text-align: center;
        margin-top: 48px;
    }
}

/* about */

.about__item img{
    width: 75%;
    height: auto;
    display: block;
}

.about__list{
    position: relative;
}

.about__item:nth-child(even) img{
    margin-left: auto;
}

.about__txt{
    padding: 20px 11% 20px;
    font-size: 1rem;
    line-height: 2.0;
}

.section--about{
    position: relative;
    overflow: hidden;
    padding-bottom: 150px;
}



/* about pc */
@media screen and (min-width: 769px) {
    .section--about {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 0px 180px;
    }
    
    
    
    .about__list {
        display: flex;
        flex-direction: column;
        gap: 90px;
    }
    
    .about__item {
        display: flex;
        align-items: flex-start;
        gap: 6.3%;
        margin-bottom: 0;
        align-items: center;
    }
    
    .about__item img {
        width: 49%;
        height: auto;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .about__txt {
        width: 39%;
        padding: 0px 1.3%;
        font-size: 1.5rem;
        line-height: 2.0;
    }
    
    /* 2つ目だけ左右反転 */
    .about__item:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .about__item:nth-child(even) img {
        margin-left: 0;
    }
    
}

/* story */
.storyImg{
    display: block;
    width: 86%;
    height: auto;
    margin: 0 auto;
}

.story__txt{
    padding: 10px 6% 25px;
    font-size: 1rem;
}

.section--story{
    position: relative;
    overflow: hidden;
}

.pickup{
    display: flex;
    padding: 30px 6% 0px;
    align-items: center;
}

.pickupImg{
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.pickup__title{
    font-size: 1.4rem;
}

.border{
    display: block;
    width: 320px;
    margin: 0 auto;
}

.order__content{
    padding: 7px 7% 0;
    text-align: left;
    font-size: 1rem;
}

.shopImg{
    display: block;
    width: 85%;
    height: auto;
    margin: 0 auto;
    margin-top: 15px;
}

.order__btn1{
    display: block;
    width: 150px;
    height: auto;
    margin: 0 auto;
    margin-top: 40px;
}

/* story pc */
@media screen and (min-width:769px) {
    .storyImg{
        display: block;
        width: 100%;
        height: 75%;
        object-fit: cover;
    }
    
    .story__txt{
        font-size: 1.5rem;
        padding: 20px 20px 20px;
    }
    
    .story__item{
        flex: 1;
    }
    
    .story__list{
        margin-top: 30px;
        display: flex;
        gap: 40px;
    }
    
    
    .section__topic{
        font-size: 3.0rem;
        margin-top: 100px;
    }
    
    .section__title{
        font-size: 2rem;
        margin-top: 80px;
    }
    
    .section__content{
        font-size: 1.5rem;
        text-align: center;
        margin-top: 48px;
    }
    
    .pickup{
        margin-top: 200px;
    }
    
    .pickupImg{
        width: 90px;
        height: auto;
    }
    
    .pickup__title{
        font-size: 1.5rem;
    }
    
    .border{
        display: block;
        width: 420px;
        margin: 0 0 0 80px;
    }
    
    .order {
        position: relative;
        min-height: 640px;
        padding: 24px 0 0 55px;
    }
    
    .order__content{
        text-align: left;
        font-size: 1.5rem;
        margin: 0px 0 30px 0;
        margin-left: -50px;
    }
    
    .shopImg{
        display: block;
        width: 56%;
        height: auto;
        margin: 0;
        position: absolute;
        top: -150px;
        right: 0px;
    }
    
    .order__btn1{
        display: block;
        width: 200px;
        height: auto;
        margin: 200px auto 0 100px;
    }
}

/* menu */
.section__topic2{
    padding: 50px 0 40px;
    font-family: "Gill Sans", "Gill Sans MT", sans-serif;
    color: #43399B;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
}

.menuImg{
    display: none;
}

.section--menu{
    position: relative;
}


/* menu pc */
@media screen and (min-width:769px) {
    .section__topic2{
        font-size: 3.0rem;
        margin-top: 100px;
    }
    
    .menuImg{
        display: block;
        margin-top: 900px;
        width: 53%;
        height: auto;
    }
}

/* access */
.section--access{
    position: relative;
    overflow: hidden;
}

.section__topic3{
    padding: 300px 0 40px;
    font-family: "Gill Sans", "Gill Sans MT", sans-serif;
    color: #43399B;
    font-size: 2rem;
    line-height: 1.3;
    text-align: center;
}

.access__all{
    width: 100%;
    padding: 20px 6.4% 350px;
    position: relative;
    display: grid;
    overflow: hidden;
    box-sizing: border-box;
}

.map{
    display: block;
    width: 87%;
    height: auto;
    margin: 0 auto;
    order: 1;
}

.access__info {
    width: 320px;
    margin: 0 auto;
    order: 2;
}

.access__content{
    margin-top: 30px;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    border-left: 2px solid #C41F29;
    padding-left: 20px;
}

.access__item{
    margin-top: 15px;
}

.order__btn {
    display: block;
    width: 150px;
    height: auto;
    margin: 30px 80px 20px;
}


.end__message{
    padding: 0px 2% 39px;
    text-align: center;
    
    font-size: 1rem;
    font-family: "Gill Sans", "Gill Sans MT", sans-serif;
    color: #43399B;
}

/* access pc */
@media screen and (min-width:769px) {
    .section__topic3{
        font-size: 3.0rem;
    }
    
    .map{
        width: 42%;
        height: auto;
        order: 2;
    }
    
    .access__info {
        order: 1;
        border-left: 2px solid #C41F29;
        padding-left: 20px;
        margin-right: 0;
    }
    
    .access__content{
        margin-top: 30px;
        font-size: 1.5rem;
        display: flex;
        flex-direction: column;
        border-left: 0px solid #C41F29;
        padding-left: 0px;
    }
    
    .order__btn {
        display: block;
        width: 180px;
        height: auto;
        margin: 70px 20px 20px 0px;
    }
    
    .access__all{
        display: flex;
        width: 100%;
        max-width: 1440px;
        padding: 90px 0% 690px;
    }
    
    .end__message{
        padding: 0px 2% 39px;
        margin-top: -100px;
        text-align: center;
        
        font-size: 1.5rem;
        font-family: "Gill Sans", "Gill Sans MT", sans-serif;
        color: #43399B;
    }
}

/* =============-
footer
=============== */
.footer {
    background: #f7f7f7;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ロゴ＋SNSのまとまり */
.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* スマホでは brand を後ろに回す */
.footer__brand {
    order: 2;
    margin-top: 60px;
}

/* スマホでは nav を先に表示 */
.footer__nav {
    order: 1;
    width: 100%;
    
    font-family: "Gill Sans", "Gill Sans MT", sans-serif;
    font-size: 1rem;
}

/* メニューは縦並び */
.footer__menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__menu + .footer__menu {
    margin-top: 24px;
}

.footer__menu li + li {
    margin-top: 20px;
}

.footer__menu a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
}

/* ロゴ */
.footer__logoWrap {
    margin: 0;
}

.footer__logo {
    width: 105px;
    height: auto;
    display: block;
}

/* SNS */
.sns {
    margin-top: 15px;
}

.sns__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.sns__item img {
    width: 40px;
    height: auto;
    display: block;
}

/* footer pc */
@media screen and (min-width:769px){
    .footer {
        background: #f7f7f7;
        padding: 20px 24px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    /* スマホでは brand を後ろに回す */
    .footer__brand {
        order: 1;
        margin: 20px 0 0 20px;
    }
    
    /* スマホでは nav を先に表示 */
    .footer__nav {
        order: 2;
        display: flex;
        text-align: left;
        width: auto;
        margin: 0 130px 0 auto;
        font-size: 1.5rem;
    }
    
    .footer__menu + .footer__menu {
        margin-top: 0px;
    }
    
    .footer__menu li + li {
        margin-top: 0px;
    }
    
    .footer__menu li{
        margin: 20px 0 0 130px;
    }
    
    .footer__menu a {
        line-height: 3;
    }
}

/* =====================
擬似要素
========================- */
.article__header::before{
    content: "";
    display: inline-block;

    width: 35%;
    height: 60px;

    background-image: url('../img/cut01.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    vertical-align: middle;

    margin-top: 20px;
    margin-left: -18px;
}

/* 擬似要素　切り絵① */
.article::before{
    content: "";
    position: absolute;
    opacity: 0.2;
    z-index: -1;

    width: 98%;
    height: 608px;

    background-image: url('../img/bgKirie01.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    vertical-align: middle;

    top: 340px;
    transform: translateX(70px);
}

/* 擬似要素　切り絵③ */
.article::after{
    content: "";
    position: absolute;
    opacity: 0.2;
    z-index: -1;

    width: 179%;
    height: 660px;

    background-image: url('../img/bgKirie03.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    vertical-align: middle;

    top: 4000px;
    right: -350px;
}

.section--about::after{
    content: "";
    position: absolute;
    right: -20px;
    top: 980px;
    
    width: 133px;
    height: 95px;
    
    background-image: url('../img/cut02.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
}

/* 擬似要素　切り絵② */
.section--story::after{
    content: "";
    position: absolute;
    opacity: 0.2;
    z-index: -1;
    
    width: 639px;
    height: 630px;
    
    background-image: url('../img/bgKirie02.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    vertical-align: middle;
    
    top: -10px;
    left: -310px;
}

.order::after{
    content: "";
    display: inline-block;
    
    width: 390px;
    height: 100px;
    
    background-image: url('../img/cut03.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    vertical-align: middle;
    
    margin-right: 8px;
    margin-top: 50px;
}

.section--menu::before{
    content: "";
    position: absolute;
    
    width: 60%;
    height: 75%;
    
    background-image: url('../img/menu01.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    vertical-align: middle;
    
    left: 0px;
    top: 280px;
}

.section--menu::after{
    content: "";
    position: absolute;
    
    width: 29%;
    height: 120%;
    
    background-image: url('../img/menu02.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    vertical-align: middle;
    
    right: 0px;
    top: 370px;
}

.access__all::before{
    content: "";
    position: absolute;
    
    width: 245px;
    height: 156px;
    
    background-image: url('../img/cut04.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    vertical-align: middle;
    
    top: 520px;
    right: 0px;
}

.access__all::after{
    content: "";
    position: absolute;
    
    width: 120px;
    height: 52px;
    
    background-image: url('../img/kirie01.png'); 
    background-size: contain; 
    background-repeat: no-repeat;
    vertical-align: middle;
    
    top: 720px;
    left: 60%;
    transform: translateX(-50%);
}


/* 擬似要素　pc */
@media screen and (min-width:769px) {
    
    /* 擬似要素　切り絵① */
    .article::before{
        width: 75%;
        height: 1800px;
        
        top: 600px;
        right: -10%;
    }
    
    /* 擬似要素　切り絵③ */
    .article::after{
        content: "";
        position: absolute;
        opacity: 0.2;
        z-index: -1;
        
        width: 153%;
        height: 2168px;
        
        background-image: url('../img/bgKirie03.png'); 
        background-size: contain; 
        background-repeat: no-repeat;
        vertical-align: middle;
        
        top: 6000px;
        right: -73%;
    }
    
    
    .article__header::before{
        content: "";
        position: absolute;
        
        width: 32%;
        height: 180px;
        
        background-image: url('../img/cut01.png'); 
        background-size: contain; 
        background-repeat: no-repeat;
        vertical-align: middle;
        
        margin-top: 200px;
        margin-left: -40px;
    }

    .section--about::after {
        right: -50px;
        top: 1300px;
        
        width: 300px;
        height: 240px;
        background-size: 300px 240px;
    }

     /* 擬似要素　切り絵② */
    .section--story::after{
        width: 131%;
        height: 2090px;
        
        top: 40px;
        left: -60%;
    }
    .order::after{
        display: none;
    }

    .section--menu::before{
        content: "";
        position: absolute;
        
        width: 55%;
        
        background-image: url('../img/menu01.png'); 
        background-size: contain; 
        background-repeat: no-repeat;
        vertical-align: middle;
        top: 550px;
    }
    
    .section--menu::after{
        content: "";
        position: absolute;
        
        width: 23%;
        /* height: 430px; */
        
        background-image: url('../img/menu02.png'); 
        background-size: contain; 
        background-repeat: no-repeat;
        vertical-align: middle;
        
        right: 130px;
        top: 950px;
    }

    .access__all::before{
        width: 600px;
        height: 300px;
        
        top: 750px;
        right: -180px;
    }
    
    .access__all::after{
        width: 100px;
        height: 98px;
        
        top: 950px;
        left: 50%;
    }
}