* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

/* 画像がはみ出さないようにするお守り */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

body {
    width: 100%;
    background-color: #F9F7F2;
    color: #4A3C31;
    line-height: 1.8
}

.inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
h2 {
    font-size: 1.6em;
    text-align: center;
    letter-spacing: 0.08em;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.overlay{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.35);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
    z-index:999;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}
/* フォント */
/* --- 1. 基本（日本語：Noto Serif JP） --- */
body {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    line-height: 1.8;
    color: #4A3C31;
    letter-spacing: 0.05em;

}
/* --- 2. ロゴ・店名 (Montserrat 500) --- */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    letter-spacing: 0.15em;
}

/* --- 3. 英文字 (Montserrat 400) --- */
.slogan-1,
.nav,
.english,
.sub-title-contact,
.footer-sub-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    letter-spacing: 0.2em;
    color: #4A3C31;
}



/* ここからheader */
#header {
    width: 100%;
    background-color: rgba(142, 62, 62, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    /* 他の要素より上に表示 */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.hamburger{
    display:none;
}


.inner.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo-top img {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 15px;
    opacity: 0.6;
    /* 少し透明度を下げる */
}
.nav {
    display: flex;
}
.nav a {
    text-decoration: none;
    color: #F5EDDE;
    font-size: 0.95em;
    letter-spacing: 0.1em;
    transition: 0.3s;
    margin: 0 12px;
}
.nav a:hover {
    color: #F5EDDE;
    opacity: 0.6;
}
/* ページ内ジャンプした時にタイトルが隠れないようにするおまじない */
html {
    scroll-behavior: smooth;
    /* スルスルと滑らかにスクロール */
    scroll-padding-top: 100px;
    /* ジャンプした時の停止位置を少し下にする */
}


/* ここからconcept-1 */
#concept-1 {
    padding: 190px 0;
}
.concept-img {
    width: 55%;
}
.concept-img img {
    width: 100%;
    height: auto;
}
.concept-text {
    width: 45%;
}
.sub-title-concept {
    font-size: 1.0em;
}
.logo.concept-1 {
    font-size: 1.9em;
    text-align: left;
}
.slogan-1 {
    margin-top: 50px;
    font-size: 0.7em;
}
.slogan-2 {
    font-size: 1.15em;
    padding-bottom: 100px;
}
.concept-1.button {
    margin: 20px 0;
    text-align: left;
}
.concept-1.button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #8E3E3E;
    color: #F5EDDE;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: 0.3s;
    border-radius: 5px;
    padding: 5px 60px;
}
.concept-1.button a:hover {
    background-color: #6d2f2f;
    color: #F5EDDE;
    opacity: 0.9;
}


/* ここからconcept-2 */
.concept-2-title {
    margin: 30px 0 70px 0;
    padding: 20px 0 40px 0;
    font-size: 1.3em;
}
.concept-2-title .logo {
    font-size: 1.2em;
    margin: 0 5px;
    /* letter-spacing: 0.05em;   詰めるか迷ってる   */
}
.concept-2-sub-title span {
    margin-bottom: 20px;
    padding-bottom: 30px;
    font-size: 1.0em;
    /* letter-spacing: 0.05em; 　　　上と同じ迷ってる*/
}
.concept-2-sub-title2 {
    margin-bottom: 10px;
    padding: 20px 0;
    font-size: 1.0em;
    line-height: 2.4;
}
.concept-2-text {
    max-width: 1000px;
    width: 100%;
    margin-top: 55px;
    padding-bottom: 60px;
    font-size: 1.0em;
    line-height: 2.5;
}
.float-img {
    float: right;
    max-width: 35%;
    width: 100%;
    margin: 60px 75px 20px 30px;
}
.concept-2-float::after {
    /* floatを使う時に必ず必要 */
    content: "";
    display: block;
    clear: both;
}


/* ここからlesson */
#lesson-1 {
    background-color: #F5EDDE;
    padding-bottom: 110px;
}
.lesson-1-title {
    margin: 30px 10px;
    padding: 70px 10px 50px 10px;
}

#lesson-2 {
    padding: 80px 0;
}
.title-flex {
  display: flex;       /* 横並びにする */
  align-items: center; /* 上下の中心を揃える */
  gap: 10px;           /* 画像と文字の間の隙間（お好みで調整） */
  margin-bottom: 10px; /* 下のテキストとの距離 */
}
.new{
    width: 60px;
    max-width: 60px;
    padding-bottom: 0;
}
.lesson-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.lesson-item--reverse{
    flex-direction:row-reverse;
}

.lesson-text{
    width:40%;
    padding:40px 20px 40px 30px;
    letter-spacing:0.25em;
}

.lesson-img{
    width:60%;
    padding:0 40px;
}

.lesson-img img{
    width:100%;
    height:auto;
    border-radius:7px;
}

.lesson-text h3{
    font-size:1.4em;
    margin-bottom:20px;
    padding-bottom:10px;
    letter-spacing:0.05em;
}

.lesson-text p{
    line-height:2.2;
    margin-bottom:8px;
}

.lesson-text strong{
    font-size:1.4em;
    font-weight:500;
}
/* ここからcake */
#cake,
#faq {
    background-color: #F7F2E9;
    padding: 80px 0 100px;
}
.cake-title-top {
    margin: 50px 10px 40px 10px;
    padding: 70px 10px 20px 10px;
}
.cake-sub {
    text-align: center;
    margin: 20px 10px 50px 10px;
    padding: 10px 0 30px 0;
    letter-spacing: 0.15em;
}
.flex-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px 30px;
}
.flex-3 figure {
    width: calc((100% - 60px) / 3);
    /* 3等分の計算 */
    margin: 0;
    /* figure特有の余白をリセット */
    text-align: center;
}
.flex-3 img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 50%;
}
.english {
    font-size: 0.7em;
    letter-spacing: 0.2em;
}
.cake-title {
    font-size: 1.0em;
    font-weight: 700;
    letter-spacing: 0.2em;
}
.star {
    font-size: 0.9em;
}
.star span {
    color: #8E3E3E;
    font-size: 1.4em;
}



/* ここからaccess */
.access-title {
    margin: 50px 10px;
    padding: 50px 10px;
}
.map {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    /* 16:9の比率で高さを確保 */
}
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.access p {
    margin: 30px 5px 100px 5px;
    padding: 10px 5px;
    letter-spacing: 0.21em;
}
.access .logo {
    font-size: 1.1em;
}



/* ここからFAQ */

/* FAQ */
#faq {
    background-color: #F7F2E9;
    padding: 80px 0 100px;
}

.inner.faq {
    max-width: 900px;
}

.faq-title {
    margin: 0 10px 50px;
    padding: 0 10px;
    text-align: center;
}

.q,
.a {
    line-height: 2.2;
    letter-spacing: 0.08em;
    margin: 0;
}

.q {
    font-weight: 700;
    margin-top: 38px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(74, 60, 49, 0.15);
}

.a {
    margin-top: 12px;
    margin-left: 0;      /* ← 消す */
    padding-left: 0;     /* ← 消す */
    color: #4A3C31;
    opacity: 0.9;
}
/* ここからconcact */
.sub-title-contact {
    padding-top: 10px;
    margin-top: 90px;
    text-align: center;
}

.contact-title {
    margin-bottom: 30px;
    padding-bottom: 40px;
}

.contact-text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    letter-spacing: 0.2em;
}

.form-item {
    margin-bottom: 40px;
}

.form-item label {
    font-size: 1.0em;
}

.form-item input,
.form-item select,
.form-item textarea {
    display: block;
    margin-left: 70px;
    padding: 12px;
    border: 1px solid#ccc;
    border-radius: 5px;
    box-sizing: border-box;
    /* paddingを含めた幅計算にする（超重要！） */
}

.form-item input {
    width: 550px;
}

.form-item select {
    max-width: 300px;
    width: 100%;
}

.form-item textarea {
    max-width: 900px;
    width: 100%;
}

.form-btn p {
    font-size: 0.9em;
    letter-spacing: 0.2em;
    margin: 90px 0 15px 0;
}

.form-btn button {
    background-color: #8E3E3E;
    color: #F9F7F2;
    max-width: 900px;
    width: 100%;
    margin-bottom: 170px;
    margin-left: 70px;
    border: none;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0px 60px;
    font-size: 1.8em;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.55em;
}

.form-btn strong {
    font-size: 1.9em;
}

.form-btn button:hover {
    background-color: #a84c4c;
    /*ボルドーの明るめの色*/
    transform: translateY(-2px);
    /*浮き上げ*/
}

#contact input,
#contact textarea,
#contact button {
    font-family: "Noto Serif JP", serif;
    font-size: 0.75em;
    outline: none;
    color: #4A3C31;
}

#contact button {
    font-family: "Noto Serif JP", serif;
    color: #F9F7F2;
    outline: none;
    font-size: 1.1em;
}

#contact select {
    font-family: "Noto Serif JP", serif;
    font-size: 0.8em;
    font-weight: 600;
    color: #4A3C31;
    letter-spacing: 0.25em;
}

/* ここからfooter */
#footer {
    width: 100%;
    margin: 0;
    background-color: #4A3C31;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 0px auto;
    color: #F9F7F2;
}

.footer-sub-title {
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.footer-logo {
    margin-bottom: 25px;
    text-align: center;
}

.footer-logo img {
    width: 330px;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0.9;
    /* 少し透明度を下げる */
}

.footer-address {
    font-size: 12px;
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
}

/* 電話とメールを横に並べる（PC時） */
.footer-contact span {
    display: inline-block;
}

.footer-contact .line {
    margin: 0 15px;
    opacity: 0.5;
}

.parking {
    margin-top: 15px;
    font-size: 1.2em;
    line-height: 1.8;
    letter-spacing: 0.35em;
    color: #F7F2E9;
    /* 少し明るい色にした */

}

.copyright {
    display: block;
    margin-top: 20px;
    font-size: 0.5em;
    letter-spacing: 0.1em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F9F7F2;
}



/* ここからレスポンシブ */

.tab,
.sp {
    display: none;
}

/* タブレットサイズ＿768-1024 */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        font-size: 0.9em;
        padding: 60px 15px 0 15px;
        background-color: #F9F7F2;
        color: #4A3C31;
    }

    /* ヘッダー周り：ナビ折り返す */
    .inner.header {
        height: auto;
        flex-direction: column;
        padding: 10px 0;
    }

    .nav {
        gap: 15px;
        margin-top: 10px;
    }


    /* concept1部分 */
    #concept-1 {
        padding: 70px 0;
    }
    .concept-text,.concept-1.button a{
        font-size: 1.3vw;
    }
    .logo.concept-1 {
        margin-bottom: 30px;
    }

    .slogan-1 {
        margin-top: 0px;
    }
    .slogan-2 {
        padding-bottom: 50px;
    }


    /* concept2部分 */
    .tab {
        display: inline;
        /* brタグはインライン要素なのでinlineを指定 */
    }

    .lesson-1-title {
        margin: 20px 10px 0 10px;
        padding: 40px 10px 0px 10px;
    }

    .lesson-1-text h3,
    .lesson-2-text h3 {
        margin-bottom: 5px;
    }

    .lesson-1-text,
    .lesson-2-text {
        font-size: 0.9em;
        margin: 0 auto;
    }

    .lesson-1-img,
    .lesson-2-img {
        width: 80%;
        max-width: 100%;
        margin: 0 10px;
        padding: 10px 0;
    }

    /* Cakeセクション：3列から2列（または1列）へ */
    .flex-3 figure {
        /* (100% - 隙間30px) / 2列 */
        width: calc((100% - 30px) / 2);
    }
    /* faq部分 */
    #faq {
        padding: 60px 0 80px;
    }

    .faq-title {
        margin: 0 0 40px;
        padding: 0;
    }

    .q {
        margin-top: 30px;
        font-size: 1em;
        line-height: 2;
    }

    .a {
        margin-top: 10px;
        font-size: 0.95em;
        line-height: 2;
    }

    /* コンタクトフォームの修正（重要！） */
    .form-item input,
    .form-item select,
    .form-item textarea,
    .form-btn button {
        width: 100% ;
        max-width: 100%;
        margin-left: 0 ;
    }
    
    .form-item label {
        display: block;
        margin-bottom: 5px;
    }

    /* フッター */
    .footer-contact span {
        display: block;
        /* 電話とメールを縦並びに */
        margin-bottom: 10px;
    }

    .footer-contact .line {
        display: none;
        /* 区切り線を消す */
    }

}


/* スマホ767 */
/* スマホ767px以下 */
@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }

    /* ヘッダー */
    .inner.header {
        height: 80px;
        display: flex;
        flex-direction: row;          /* ← columnをやめる */
        justify-content: space-between;
        align-items: center;
        position: relative;           /* ← navの基準位置 */
        padding: 0 20px;
    }

    .logo-top img {
        max-width: 250px;
        margin: 0;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 32px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: auto;            /* ← 右寄せ */
        z-index: 1002;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #F5EDDE;    /* ヘッダー色に合わせて見やすく */
        border-radius: 2px;
        transition: 0.3s;
    }
    /* ハンバーガー → × アニメーション */

    .hamburger span {
        transition: 0.3s;
        height: 3px;
    }

    /* 上の線 */
    .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    /* 真ん中の線 */
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    /* 下の線 */
    .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    .hamburger.active span {
    background-color: #8E3E3E;
}
    #nav{
    position: fixed;
    top: 0;
    right: -260px;   /* 最初は画面外 */
    width: 260px;
    height: 100vh;
    background: rgba(249,247,242,0.9);
    padding: 120px 30px 40px;
    transition: 0.3s;
    z-index: 1002;
}

    #nav.active {
        display: block;
        right: 0;
    }

    #nav .nav {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin: 0;
    }

    #nav li {
        text-align: center;
    }

    .nav a {
        font: size 1em;
        margin: 0;
        color: #4A3C31;
    }
    .nav a:hover{
    opacity:0.6;
    }
    /* Concept-1 */
    #concept-1 {
        padding: 100px 0 40px 0;
    }

    .concept-1.flex {
        flex-direction: column;
    }

    .concept-img,
    .concept-text {
        width: 100%;
    }

    .concept-text {
        text-align: center;
        margin-top: 20px;
    }

    .logo.concept-1 {
        text-align: center;
        font-size: 1.5em;
    }

    .slogan-2 {
        font-size: 1em;
        padding-bottom: 30px;
    }

    .concept-1.button {
        text-align: center;
    }

    .concept-1.button a {
        padding: 10px 30px;
        font-size: 0.9em;
        width: 100%;
    }

    /* Concept-2 */
    .float-img {
        float: none;
        max-width: 100%;
        margin: 0 0 20px 0;
    }

    .concept-2-title {
        font-size: 1.1em;
        margin: 20px 0;
    }

    .sp {
        display: inline;
    }

    /* lesson */
    .lesson-item,
    .lesson-item--reverse {
        flex-direction: column;
    }

    .lesson-text,
    .lesson-img {
        width: 100%;
        padding: 10px 0;
    }

    .lesson-text {
        text-align: center;
        letter-spacing: 0.1em;
    }

    .lesson-img img {
        width: 100%;
        height: auto;
        border-radius: 7px;
    }

    .title-flex {
        justify-content: center;
    }

    .new {
        width: 60px;
        padding-bottom: 0;
    }

    /* Cake */
    .flex-3 figure {
        width: 100%;
        margin-bottom: 40px;
    }

    /* Contact */
    .form-item input,
    .form-item select,
    .form-item textarea {
        width: 100%;
        margin-left: 0;
    }

    .form-btn button {
        width: 100%;
        margin-left: 0;
        font-size: 1.2em;
        letter-spacing: 0.2em;
    }

    /* Footer */
    .footer-logo img {
        width: 200px;
    }

    .footer-contact span {
        display: block;
        margin: 5px 0;
    }

    .footer-contact .line {
        display: none;
    }
}

.page-top{
position:fixed;
bottom:30px;
right:30px;
width:50px;
height:50px;
background:#8E3E3E;
color:#fff;
text-decoration:none;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:20px;
z-index:999;
}
.page-top:hover{
transform: translateY(-3px);
transition:0.3s;
}