@charset "utf-8";

/* 汎用クラス */

.flex{
    display: flex;
}

.wrapper{
    max-width: 1240px;
    width: 96%;
    margin: auto;
}

.inner-wrap{
    max-width: 1040px;
    width: 96%;
    margin: auto;
}

.top-s{
    margin-top: 90px;
}

.top-m{
    margin-top: 120px;
}

.top-l{
    margin-top: 160px;
}

.circle{
    border-radius: 10px;
}

.section-title{
    display: inline-block;
    font-size: 36px;
    border-bottom: 3px dotted #4F4238;
    font-weight: 700;
}

.circle{
    border-radius: 30px;
    object-position: 0 0;
}

/* ボタン */
.button{
    width: 350px;
    padding: 15px;
    background-color: #4F4238;
    border-radius: 30px;
    border: solid 2px rgba(0, 0, 0, 0);
    transition: .6s;
    display: block;
    text-align: center;
}

.button:hover{
    background-color: #F2ECDE;
    border: 2px solid #4F4238;
    color: #4F4238;
}

.body{
    background-color: #F2ECDE;
}

/* ナビ ボタン*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: fixed;
	background:#524137;
	cursor: pointer;
    width: 70px;
    height:70px;
	border-radius: 10px;
    top: 15px;
    right: 10px;
    z-index: 999;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    top: 5px;
    left: 20px;
    height: 2px;
    border-radius: 5px;
	background: #fff;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
	top:13px;	
}

.openbtn span:nth-of-type(2) {
	top:22px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:-5px;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 23px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 23px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top:5px;
	left:8px;
    z-index: 999;
}

#g-nav{
    position:fixed;
    z-index: 99;
	top:0;
    right: -120%;
	width:50%;
    height: 100vh;
	background:rgba(82, 65, 55, 80%);
	transition: all 0.9s;
    
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 99;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
    padding-top: 30px;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    text-align: center;
    transition: .6s;
}

#g-nav li a:hover{
    transform: scale(1.2);
}

/* メインビジュアル */
.mv{
    position: relative;
}

.slider {
    position:relative;
	z-index: 1;/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/* スライダー全体の縦幅を画面の高さいっぱい（100vh）にする */
} 

.slider-item01 {
    background-image:url(../img/mv-1.jpg);
}

.slider-item02 {
    background-image:url(../img/mv-2.jpg);
}

.slider-item03 {
    background-image:url(../img/mv-3.jpg);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.mv-text{
    position: absolute;
    z-index: 80;
    top: 3%;
    left: 3%;
    padding: 10px 40px;
    background-color: rgba(255, 255, 255, 70%);
    color: #524137;
}

.title{
    font-size: 48px;
    font-weight: 700;
}

.main-text{
    font-size: 28px;
}

.sp-text{
    display: none;
}

/* ママンについて */
.about-section{
    justify-content: space-between;
}

.about-section-img ,.about-section-text{
    width: 50%;
}

.about-img{
    width: 60%;
    margin: auto;
}

.maman-text{
    width: 70%;
    padding: 2em 0;
}

/* メニュー */
.menu-section{
    position: relative;
}

.menu-innerwrap{
    width: 98%;
    margin: 90px auto;
}

.menu-wrap{
    justify-content: space-between;
    width: 80%;
    margin: auto;
    padding: 4% 0%;
    border-bottom: 3px dotted #524137;
}

.menu-wrap-last{
    border-bottom: none;
}

.menu-img img{
    width: 450px;
    height: 250px;
    object-fit: cover;
    object-position: 0% 100%;
}

.menu-coffee-img img{
    object-position: 0% 55%;
}

.menu-takeout-img img{
    object-position: 0% 85%;
}

.menu-title{
    font-family: "terfens", sans-serif;
    font-size: 60px;
    color: #C6AB81;
}

.menu-text{
    width: 410px;
}

.coffee{
    position: absolute;
    top: 0%;
    left: 80%;
}

.menu-button a{
    margin: auto;
}

/*お知らせ */
.news-section{
    position: relative;
}

.news-img{
    position: absolute;
    bottom: 70%;
}

.section-title-wrap{
    text-align: center;
}

.news-wrap{
    width: 85%;
    margin: 70px auto 0;
    justify-content: space-around;
}

.news-list-img{
    padding: 25px 25px 35px 25px;
}

.news-title{
    text-align: center;
}

.news-list-wrap{
    width: 35%;
}

.news-list{
    width: 93%;
    margin: auto;
    text-align: center;
}

/* 店舗情報 */
.infomation-section {
    position: relative;
    background-image: url(../img/back.jpg);
    background-size: cover;
    background-position: center;
    height: 65vw;
    padding: 3vw;
}

.infomation-section::after{
    content: "";
    position: absolute;
    background-color: rgba(49, 39, 31, .8);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* padding: 4% 8%; */
}

.infomation-section-wrap{
    position: absolute;
    z-index: 10;
    color: #fff;
    justify-content: space-between;
}

.infomation-section-text,.infomation-section-map{
    width: 45vw;
    padding: 2vw;
}

.infomation-section-map iframe{
    width: 45vw;

}

.infomation-title{
    border-bottom: 3px dotted #fff;
}

.map{
    text-align: right;
    /* width: 490px; */
}

.map-sp{
    display: none;
}

.map a{
    transition: .6s;
}

.map a:hover{
    border-bottom: 1px solid #fff;
}

.sns-text-wrap li:last-child{
    text-align: center;
    border:2px solid #fff;
    margin-top: 1vw;
}

.sns-text-wrap li a:last-child{
    display: block;
    text-align: center;
}

/* 予約・お問い合わせ */
.infomation-section-reserve{
    padding: 6% 4%;
}

.reserve-text{
    width: 40%;
    text-align: center;
    margin: auto;
}

.reserve-button-wrap{
    justify-content: space-around;
    margin-top: 60px;
}

.reserve-button{
    width: 400px;
    padding: 10px;
    border-radius: 30px;
    background-color: #4F4238;
    font-size: 28px;
    transition: .3s;
}

.reserve-button span{
    margin-right: 20px;
}

.reserve-button-phone{
    background-color: #478345;
}

.reserve-button a{
    display: block;
    text-align: center;
    align-items: center;
}

.reserve-button:hover{
    transform: scale(1.1);
}

/* フッター */
.footer{
    overflow: hidden;
}

.footer-img{
    margin: -30px auto -10px;
    display: block;
}

.footer-wrap{
    background: #524137;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    height: 450px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    color: #fff;
} 

.footer-innerwrap{
    padding: 3% 3.5% 2%;
}

.footer-name{
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.footer-content{
    justify-content: space-between;
    margin: 60px auto;
}

.footer-content-infomation,.footer-nav{
    width: 50%;
}

.footer-nav{
    justify-content: space-around;
}

.copyright{
    text-align: center;
}

/* レスポンシブ */
@media screen and (max-width: 1080px){

    /* ママンについて */
    .welcome {
    top: 109%;
    }

    .about-button{
        margin: 60px auto 0; 
    }

    /* メニュー */
    .menu-wrap {
    justify-content: space-between;
    width: auto;
    }

    .text-wrap {
    margin: 1vw;
    }

    .sns-text-wrap {
    width: 87%;
    }

}

@media screen and (max-width: 915px){

    /* 店舗情報 */
    .section-map {
    width: 56%;
    }

    .infomation-section-map{
        display: none;
    }

    .infomation-section-text{
    width: auto;
    }

    .infomation-section-wrap {
    flex-direction: column;
    }

    .map-sp{
        display: inline-block;
        border-bottom: 1px solid #fff;
    }

    /* .sns-text-wrap {
    width: 55%;
    } */

    /* 予約 */
    /* .reserve-text {
    width: 50%;
    } */

    .reserve-button{
        margin: auto;
    }

    .reserve-button-phone{
        margin: 20px auto;
    }

    .reserve-button-wrap {
    flex-direction: column;
    }

}

@media screen and (max-width: 865px){
    /* ママンについて */
    .about-section-img, .about-section-text {
    width: 96%;
    margin: auto;
    }
}

@media screen and (max-width: 768px){

    .title {
    font-size: 40px;
    }

    .main-text {
    font-size: 24px;
    }

    .section-title {
    font-size: 24px;
    }

    /* ママンについて */
    .welcome {
    top: 105%;
    }

    .section-title {
    font-size: 28px;
    }

    .maman-text {
    padding: 1em 0;
    }

    .about-img {
    width: 90%;
    }

    /* メニュー */
    .menu-innerwrap {
    margin: 50px auto;
    }

    .menu-title {
    font-size: 48px;
    }

    .menu-img img {
    width: 400px;
    }

    .menu-text {
    margin-left: 20px;
    width: 96%;
    }

    .menu-button {
    margin: auto;
    }

    /* お知らせ */
    .news-section{
    margin-top: 60px;
    }

    .news-img {
    bottom: 75%;
    }

    .news-wrap {
    width: 98%;
    margin-top: 40px;
    }

    .news-list-wrap {
    width: 44%;
    }

    .news-list{
    width: 100%;
    }

    .news-list-img {
    padding: 2%;
    }

    /* 予約 */
    .reserve-button-phone {
    margin-top: 30px;
    }

    /* フッター */
    .footer-content {
    margin: 40px auto;
    }
}

@media (min-width: 751px) {

    /* 予約TEL */
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}

@media screen and (max-width: 580px){

    .button{
        margin: auto;
    }

    /* MV */
    .title {
    font-size: 32px;
    }

    .main-text {
    font-size: 20px;
    }

    .mv-text {
    padding: 3%;
    }

    /* ママンについて */
    .about-section {
    flex-direction: column;
    margin-top: 60px;
    }

    .about-section-img, .about-section-text {
    width: 100%;
    }

    .about-section-text {
    margin: 10px auto 0;
    }

    .maman-text{
    width: 100%;
    }

    .about-button {
    margin: 20px auto 0;
    }

    /* メニュー */
    .menu-section{
    margin-top: 60px;
    }

    .menu-innerwrap {
    margin: 20px auto;
    }

    .order1{
        order: 2;
    }

    .order2{
        order: 1;
    }

    .menu-wrap{
        flex-direction: column;
    }

    /* お知らせ */
    .news-wrap{
        flex-direction: column;
    }

    .news-list-wrap {
    width: 70%;
    margin: auto;
    }

    .news-list-wrap img{
        text-align: center;
    }


    .news-img{
        display: none;
    }

    /* 店舗情報 */
    .text-wrap{
        width: auto;
    }


    /* フッター */
    .footer-wrap {
    height: 550px;
    margin-left: -230px;
    margin-right: -230px;
    padding-left: 250px;
    padding-right: 250px;
    }

    .footer-content {
    margin: 30px auto;
    flex-direction: column;
    }

    .footer-content-infomation, .footer-nav {
    width: 100%;
    }

    .footer-nav{
    justify-content: space-between;
    margin-top: 30px;
}
}

@media screen and (max-width: 580px){
    /* お知らせ */
    .news-list-wrap{
        width: 96%;
        margin: auto;
        text-align: center;
    }

    .news-list-wrap-bottom{
        margin-top: 15px;
    }
}

@media screen and (max-width: 420px){

    /* 店舗情報 */
    .infomation-section{
        margin-top: 60px;
        height: 100vw;
    }

        /* 予約 */
.reserve-button {
    width: 340px;
    }


}

@media screen and (max-width: 400px){

    .title {
    font-size: 28px;
    }

    .section-title {
    font-size: 24px;
    }

    /* ナビ */
    #g-nav {
    width: 80%;
    }

    #g-nav ul{
        font-size: 16px;
    }

    #g-nav li a{
        font-size: 4vw;
    }

    .sp-text{
        display: block;
    }

    .openbtn {
    top: 25px;
    }

    /* ママンについて */
    .button {
    width: 300px;
    }

    .about-img {
    width: 80%;
    }

    .about-section{
    margin-top: 60px;
    }

    .about-section-text {
    margin: 30px auto 0;
    }

    /* メニュー */
    .menu-title {
    font-size: 32px;
    }

    /* お知らせ */
    .news-section {
    margin-top: 60px;
    }

    .news-wrap {
    margin: 30px auto 0;
    }

    /* 店舗情報 */
    .text-wrap,.sns-text-wrap {
    width: 100%;
    }

    .text-wrap li,.sns-text-wrap li{
        font-size: 4vw;
    }

    /* 予約 */
    .reserve-text {
    width: 100%;
    }

    /* フッター */
    .footer-wrap {
    height: 500px;
    }

    .footer-content-infomation,.footer-nav{
    font-size: 16px;
    }

    .footer-nav{
    margin: 30px auto;
    }

    .copyright{
    font-size: 14px;
    }
}