body {
    /* 英語のフォントが先 */
    font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    letter-spacing: 0.05em;
        color: #3c301e;
}

img {
    width: 100%;
}

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(241, 238, 228, 0.25);
    width: 100%;
    text-align: center;
    padding: 12px;
}

.header-logo {
    width: 200px;
    margin: 0 auto;
}

.header-nav {
    margin-top: 10px;
}

.header-nav-list {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.header-nav-link {
    color: #fff;
}

#toggle {
    position: relative;
}



.toggle-list {
    display: none;
    width: 95px;
    /*border: 1px solid rgba(43, 42, 41, 0.25);*/
    position: absolute;
    top: 37px;
     left: -20px;
    background-color: rgba(43, 42, 41, 0.4);
     color: #fff;
     padding-top: 20px;
}

.toggle-item {
    margin-bottom: 10px;
}

.toggle-item + .toggle-item {
   
}

/* 共通クラス */
.inner {
    padding: 0 40px;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading-l {
    color: #fff;
}

.section-heading-mein {
    display: block;
    font-size: 40px;
}

.section-heading-sub {
    display: block;
    font-size: 12px;
}


/* ファーストビュー */
.fv-picture img {
    width: 100%;
}

/* about */

.about{
    padding: 40px 0;
    background-color: #f1eee4;
}

.about-contents {
    
}

.about-text-contents {
    margin-top: 20px;
}

.about-text {
    font-size: 14px;
    line-height: 2;
}

.about-text + .about-text {
    margin-top: 16px;
}

/* menu */
.menu {
    background-color: #f1eee4;
    padding: 80px 0;
}

.menu-contents {

}

.menu-list {

}

.menu-item + .menu-item {
 margin-top: 62px;
}

.menu-img {

}

.menu-text-contents {
    text-align: center;
    padding: 16px 10px;
}

.menu-name {

}

.name-main {
    font-size: 18px;
    display: block;
}

.name-sub {
    font-size: 12px;
    color: #a98c5f;
    display: block;
    margin-top: 8px;
}

.menu-text {
    font-size: 14px;
    color: #a98c5f;
    margin-top: 16px;
}

/*モーダル*/
/* モーダル表示時に背景固定 */
body.fixed {
	position: fixed;
	margin: 0;
    padding: 0;
}
.content-modal {
	display: none;/* 初期状態 */
	position: fixed;
	top: 0;
	width: 100%;/* モーダルは画面いっぱいに */
	height: 100vh;/* モーダルは画面いっぱいに */
    margin: 0 auto;
}
.overlay {
	width: 100%;/* 黒背景も画面いっぱいに */
	height: 100vh;/* 黒背景も画面いっぱいに */
	background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
}
/* 配置関連。モーダル自体とは関係なし */
.modal {
	position: absolute;
	/*background-color: #fff;*/
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

}

/* shop */
.shop {
    background-image: url(../img/sp/bg-shop.png);
    background-position: center center;
    background-size: cover;
    padding: 80px 0;
}

.shop-inner {
    padding: 0 20px;
}

.shop-contents {

}

.shop-text {
    color: #fff;
    text-align: center;
    font-size: 14px;
    line-height: 2;
}

.form {
    margin-top: 40px;
}

.form-input {
    width: 100%;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    padding: 14px;
}

.form-input::placeholder {
   
}

.form-submit {
    border-radius: 4px;
    border: none;
    font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    display: block;
    margin: 10px auto 0;
    width: 120px;
    padding: 12px 10px;
    color: #fff;
    background-color: #a98c5f;

}

/*トップに戻る*/
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
    
  }
  .pagetop-arrow {
    display: block;
    height: 10px;
    width: 10px;
    margin-right: 14px;
    margin-bottom: 8px;
    /*border-top: 3px solid #000;
    border-right: 3px solid #000;*/
    transform: translateY(20%);
  }

/* footer */
.footer {
    background-color: #3c301e;
    text-align: center;
    padding-top: 46px;
    color: #fff;
}

.footer-logo {
    width: 200px;
    margin: 0 auto;
}

.footer-text {
    font-size: 12px;
}

.footer-nav-list {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 0 20px;
}

.sns-img {
    width: 56px;
}

.footer-nav-item {

}

.footer-nav-link {

}

.footer-nav-link-text {
    font-size: 12px;
    margin-top: 12px;
}

.footer-copy-wrapper {
    border-top: 1px solid rgba(241, 238, 228, 0.25);
    padding: 12px;
    margin-top: 46px;

}

.footer-copylight {
    font-size: 12px;
}

/* タブレット、PCサイズの表示 */
@media screen and (min-width: 768px) {
    .body {
        letter-spacing: 0.05em;
        color: #3c301e;
    }

    .header-inner {
        max-width: 1080px;
        padding: 0 40px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
    }

    .header {
        padding: 16px;
    }

    .header-logo {
        margin: 0;
    }

    .header-nav-list {
        gap: 40px;
    }

    .header-nav-link {
        transition: opacity 0.3s;
    }

    .header-nav-link:hover {
        opacity: 0.7;
    }

    .inner {
        max-width: 1080px;
        padding: 0 40px;
        margin: 0 auto;
    }

    .section-heading {
        
    }

    .section-heading-mein {
        font-size: 64px;
    }

    .about {
        padding: 100px 0;
    }

    .about-contents {
        display: flex;
        gap: 40px;
        align-items: center;

    }

    .about-text-contents {
        margin-top: 0;
    }

    .about-text {
        font-size: 15px;
    }

    .about-text + .about-text {
        margin-top: 30px;
    }

        .about-img {
            width: 300px;
        }

    .menu {
        padding: 0 0 100px;
    }
    
    .menu-list {
        display: flex;
        gap: 20px;
    }

    .menu-item + .menu-item {
        margin-top: 0;
    }

    .shop {
        background-image: url(../img/bg-shop.png);
        background-position: center center;
        background-size: cover;
        padding: 60px 0;
    } 

    .shop-inner {
        max-width: 600px;
        margin: 0 auto;
    }

    .form {
        display: flex;
        gap: 20px;
    }

    .form-submit {
        margin-top: 0;
        transition: opacity 0.3s;
    }

    .form-submit:hover {
        opacity: 0.7; 
    }

    .footer-text {
        margin-top: 12px;
    }

    .footer-nav-list {
        gap: 40px;
    }

    .footer-copylight {
        font-size: 13px;
    }
}