@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;
    object-position: 0 0;
}

.center{
    text-align: center;
}

.right{
    text-align: right;
}

/* タイトル */
.section-title{
    font-size: 36px;
    border-bottom: 3px dotted #4F4238;
    font-weight: 700;
}

.section-text{
    margin-top: 40px;
    width: 65%;
}

/* ボタン */




.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;
    background-image: url(../img/about-mv.jpg);
    height: 350px;
    width: 100%; 
}

.mv-text{
    position: absolute;
    z-index: 80;
    top: 3%;
    left: 3%;
    padding: 0px 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;
}

/* ロケーションについて */
.location-img-box{
    position: relative;
    height: 350px;
    justify-content: space-between;
    z-index: 50;
    margin: 80px auto;
}

.about-img{
    width: 60%;
}

.about-img-wrap{
    width: 30%;
}

.about-img-bottom{
    margin-top: 45px;
}

.about-circle-top{
    position: absolute;
    top: 80%;
    right: 5%;
}

.about-circle-middle{
    position: absolute;
    top: 120%;
    left: 0%;
}

.sp-img{
    display: none;
}

/* 食事について */
.food-inner-wrap{
    position: relative;
    justify-content: space-between;
    width: 98%;
    margin: 60px auto 0;
}

.food-section-text{
    width: 96%;
    margin: auto;
}

.sns-text-wrap{
    margin: 60px auto 0;
}

.sns-text-wrap li{
    text-align: center;
}

.sns-text-wrap li:last-child{
    width: 350px;
    margin: 10px auto;
    padding: 5px;
    text-align: center;
    border:2px solid #4F4238;
    border-radius: 30px;
    margin-top: 15px;
    transition: .6s;
}

.sns-text-wrap li:last-child:hover{
    background-color: #4F4238;
}

.sns-text-wrap li a:last-child:hover{
    color: #F2ECDE;
}

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

.macrobiotic{
    margin-top: 40px;
}

.about-women{
    text-align: center;
    margin-top: 30px;
}

.about-circle-bottom{
    position: absolute;
    top: 60%;
    left: 86%;
}

.balloon-wrap{
    width: 96%;
    margin: auto;
    text-align: center;
}

.balloon{
    position: relative;
    display: inline-block;
    width: 76%;
    padding: 3% 4%;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #fff;
    border-radius: 15px;
}

.balloon:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #fff;
}

.balloon-title{
    font-size: 20px;
    font-weight: 800;
}

.balloon-explanation{
    padding: 15px;
}

.balloon-text{
    font-weight: 800;
    text-align: center;
}

/* 予約・お問い合わせ */
.infomation-section-reserve{
    padding: 4% 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: 915px){

    /* 食事について */
    .sns-text-wrap {
    width: 92%;
    }

    .about-circle-bottom {
    top: 40%;
    left: 80%;
    }

    /* 予約 */
    .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: 768px){

    .title {
    font-size: 40px;
    }

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

    .mv {
    background-image: url(../img/about-mv.jpg);
    height: 250px;
    }

    /* ロケーションについて */
    .about-circle-top-sp {
    position: absolute;
    top: 80%;
    right: 0%;
    }

    .about-circle-top,.about-circle-middle{
        display: none;
    }

    .sp-img{
    display: block;
    }

    .about-circle-middle-sp {
    position: absolute;
    top: 115%;
    }

    /* 食事について */
    .food-inner-wrap{
        flex-direction: column;
    }

    .food-section-text{
        width: 100%;
    }

    .sns-text-wrap li{
        text-align: center;
    }

    .macrobiotic {
    margin: 30px auto;
    }

    .about-circle-bottom {
    top: 78%;
    left: 60%;
    }

    /* 予約 */
    .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){

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

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

    .mv-text {
    padding: 3%;
    }

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

    .section-text{
    width: 100%;
    }

    /* ロケーションについて */
    .location-img-box{
    flex-direction: column;
    height: auto;
    }
    
    .about-img {
    width: 100%;
    }

    .about-img-wrap {
    width: 100%;
    margin: 30px auto 0;
    }

    .about-img-wrap p{
    text-align: center;
    }

    .about-circle-middle-sp {
    top: 170%;
    }

    /* 食事について */

    /* フッター */
    .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){
.about-circle-top-sp {
    top: 90%;
}
}

@media screen and (max-width: 440px){
.about-circle-top-sp {
    top: 95%;
}
}

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

    .title {
    font-size: 28px;
    }

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

    .wrapper {
    margin: 70px auto 0;
    }

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

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

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

    .sp-text{
    display: block;
    }

    .openbtn {
    top: 25px;
    }

    /* ロケーションについて */
    .about-circle-middle-sp {
    top: 155%;
    }

    .location-img-box {
    margin: 40px auto;
    }

    /* 食事について */
    .food-section{
    margin-top: 60px;
    }

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

    .sns-text-wrap {
    margin: 20px auto 0;
    }

    .sns-text-wrap li {
    font-size: 16px;
    }

    .sns-text-wrap li:last-child {
    width: 300px;
    }

    .about-circle-bottom{
    display: none;
    }

    .balloon {
    width: auto;
    }

    .about-women {
    margin-top: 20px;
    }

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

    .reserve-button {
    width: 340px;
    }

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

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

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

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