@charset "utf-8";

h2 {
    text-align: center; /* 見出しも中央へ */
    margin-bottom: 20px;
}
body {
	font-size: 16px;
}
/* ====================トップページここから ====================*/
/* ----------Headerここから---------- */

.logo-bottom {
    font-size: 10px;    /* 12px → 10px */
}
.logo-main {
    font-size: 38px;    /* 55px → 38px */
    margin-top: 18px;   /* 文字の間隔も少し詰めた */
}
.logo {
    padding: 5px 0;     /* 上下のパディングを少し削る */
}
/* ハンバーガーボタンの見た目 */
.toggle-menu-button {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.toggle-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff; /* 背景が暗い時は白 */
    position: absolute;
    left: 0;
    transition: all 0.3s;
}
.toggle-menu-button span:nth-child(1) { top: 4px; }
.toggle-menu-button span:nth-child(2) { top: 14px; }
.toggle-menu-button span:nth-child(3) { top: 24px; }

/* スクロール後のボタンの色 */
header.scrolled .toggle-menu-button span {
    background-color: #5d4037;
}
/* ナビゲーションメニューの初期状態（隠す） */
header nav {
    position: fixed;
    top: 0;
    right: -100%; /* 右側に隠す */
    width: 100%;
    height: 100vh;
    background-color: rgba(191, 173, 163, 0.95); /* Anuのブランドカラー */
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
/* メニューが開いた時 */
header.nav-open nav {
    right: 0;
}
/* ボタンが×になるアニメーション */
header.nav-open .toggle-menu-button span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
header.nav-open .toggle-menu-button span:nth-child(2) { opacity: 0; }
header.nav-open .toggle-menu-button span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* メニュー内のレイアウト調整 */
header nav ul {
    display: block;
    text-align: center;
    padding: 0;
}
header nav ul li {
    margin: 30px 0;
}
.sub-page-header {
    height: 200px; /* スマホでの高さ */
  }
  .sub-header-title {
    font-size: 1.2rem;
  }
/* ----------Headerここまで---------- */


/* ----------Main Visualここから---------- */
.main-visual {
        height: 80vh; /* スマホでは少し高さを抑えるとバランスが良いです */
    }
.main-copy {
    font-size: 8vw;
	font-size: clamp(1.2rem, 8vw, 2.5rem);
	white-space: nowrap;
	text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
	position: absolute;
    top: 20%;              /* 画面中央付近へ */
    left: 50%;
	transform: translateX(-50%);
    }
    /* 画像の表示位置を微調整したい場合（上から20%の位置を基準にする等） */
.main-visual-img img {
        object-position: 25% 20%;
    }
/* ----------Main Visualここまで---------- */


/* ----------Conceptここから---------- */
.concept-container {
    /* 縦並びにして、中身の順番を逆転（画像が上、文章が下）させる */
    flex-direction: column-reverse; 
    gap: 20px; /* 画像と文章の間の余白 */
}
.concept-text {
    width: 100%;
    text-align: center; /* スマホでは中央揃えがバランス良く見えます */
}
.concept-image {
    width: 100%;
}
.concept-image img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}
/* テキストの微調整 */
.concept-text .title-text,
.concept-text .sub-text {
    text-align: center;
    margin-bottom: 15px;
}
.concept p {
	font-size:16px
}
/* ----------Conceptここまで---------- */



/* ----------Menuここから---------- */
.menu-grid {
    display: flex;
    flex-direction: column; /* 縦並びに変更 */
    align-items: center;    /* 中央に寄せる */
    gap: 60px;              /* 縦に並んだ時の画像どうしの間隔 */
    margin-top: 40px;
}
.menu-item {
    width: 80%;             /* 画面幅の80%くらいに広げて見やすくする */
    max-width: 350px;       /* 大きくなりすぎないようにストッパーをかける */
}
.image-capsule {
    border-radius: 500px; 
}
.curve-text.left-side {
    top: -150px;  /* 画像の大きさに合わせて微調整 */
    left: -30px;
    width: 100px;
}
.curve-text text {
    font-size: 14px; /* 文字サイズもスマホ用に調整 */
}
.menu-item a:active {
    opacity: 0.6; /* タップした瞬間に少し薄くなる */
    transition: 0.1s;
}
.menu-item a:active .image-capsule {
    transform: scale(0.98); /* ほんの少しだけ凹むような演出 */
}

/* --- タップ（アクティブ）時の演出 --- */
.menu-item a:active .menu-link-text {
    opacity: 0.6;
}

.menu-item a:active .menu-link-text::before {
    width: 110%; /* 押した瞬間に線が少し伸びる演出 */
    transition: width 0.2s ease;
}
/* ----------Menuここまで---------- */




/* ----------Staffここから---------- */
.staff-grid {
	display: flex;
	flex-wrap: wrap;
        gap: 60px 4%; 
        justify-content: space-between;
    }
    .staff-item {
        width: 48%; 
        margin-bottom: 0;
    }
    .staff-info {
        bottom: -10px;
        right: -10px;
        padding: 8px 12px;
        min-width: 110px;
    }
    .staff-name {
        font-size: 0.85rem;
    }
    .staff-role {
        font-size: 0.7rem;
    }

/* ----------Staffここまで---------- */



/* ----------Salonここから---------- */
section.salon {
        padding: 80px 0; /* 左右を0にする */
    }
    /* タイトル（H2）と文字情報（details）は端に寄りすぎないよう余白を戻す */
    .salon h2, 
    .salon-details {
        padding: 0 5%; /* 左右に少し余白を作る */
    }
    /* 画像を幅いっぱいにする */
    .salon-visual {
        width: 100%;
        margin-bottom: 40px;
    }
    .salon-visual img {
        width: 100%;
        display: block;
    }
    /* マップを幅いっぱいにする */
    .salon-map {
        width: 100%;
        margin-top: 40px;
    }
    .salon-map iframe {
        height: 300px; /* スマホで見やすい高さに微調整 */
    }

/* ----------Salonここまで---------- */

/* ----------Footerここから---------- */
footer ul {
    display: block;
	text-align: center;
}
footer ul li {
	margin-top: 20px;
}
footer .logo {
    padding-top: 0;
}
/* ----------Footerここまで---------- */
/* ====================トップページここまで ====================*/


/* ====================Conceptページここから==================== */
.concept-sub-title {
    text-align: center;
    }
.thought-text {
		text-align: left;
}
.commitment-item,
.commitment-item.reverse {
	display: flex;
    flex-direction: column; /* 縦並びに強制 */
    gap: 0px;
    margin-bottom: 80px;    /* セクション間の余白 */
    }
.commitment-text {
	display: contents;
}
.commitment-text h3 {
    order: 1;
    text-align: center;
    }
.commitment-image {
    order: 2;
    width: 100%;
    }
.commitment-text p {
	order: 3;
	text-align: left;
	margin-top: 20px;
    }
/* ====================Conceptページここまで==================== */





/* ====================Menuページここから==================== */
/* メニューカードが入っているセクションの左右余白を 10% → 3% くらいに減らす */
.simultaneous-banner::after {
    position: absolute;
    right: -20px;         /* 右端に配置（少しはみ出させるとオシャレ） */
    bottom: -30px;        /* 下側に配置 */
    font-family: "Gwendolyn", cursive;
    font-size: 4rem;     /* かなり大きく */
    color: rgba(188, 170, 164, 0.08); /* 非常に薄い茶色（透明度0.1） */
    pointer-events: none; /* 文字がクリックの邪魔をしないようにする */
    white-space: nowrap;
    z-index: 1;           /* テキスト(z-index: 2)の下に潜り込ませる */
}
.menu-category-section {
    padding: 60px 5% !important; 
}
    /* コンテナ自体の左右余白も少し削る */
.menu-category-section .container {
    padding: 0 2%;
    max-width: none; /* スマホでは最大幅の制限を解除 */
}
.menu-page-content {
	text-align: center;
}
    .menu-intro {
        padding: 100px 5% 40px;
    	}
    .menu-intro h2 {
        font-size: 1.4rem;
    }
.simultaneous-banner {
        width: 100vw;
        /* 前回の「案1」で親要素に付けた左右余白を打ち消して端まで広げる */
        margin-left: calc(-50vw + 50%); 
        padding: 50px 0;
    }

    .banner-inner {
        padding: 0 8%; /* スマホでは文字が端に寄りすぎないよう調整 */
    }

    .banner-jp {
        font-size: 1.05rem;
        line-height: 1.6;
    }
.menu-card {
    flex-direction: column; /* 縦並びに変更 */
	display: flex;
    }
.menu-card.is-reverse {
    flex-direction: column;
    }
.category-title {
        order: 1; /* 1. 題名 */
        position: absolute;
        top: -60px;
        left: 10px;
        font-size: 1.6rem;
    }
    .category-description {
        order: 2; /* 2. サブテキスト(説明文) */
        margin-bottom: 10px;
    }
    .sub-image-group, .menu-image {
        order: 3; /* 3. 画像 */
        flex: 0 0 100%;
        padding: 20px 10px; /* 左右に余白 */
		width: 100% !important; /* 横幅いっぱい */ 
        aspect-ratio: 5 / 4 !important;
        height: auto !important;
        overflow: hidden;
		box-sizing: border-box;
    }
.menu-image img, 
.sub-image img {
	padding: 0 !important;
	aspect-ratio: auto;
}
.menu-image,
.sub-image-group {
        flex-direction: row; /* スマホでは画像が横に並ぶように */
        gap: 8px;
        overflow-x: auto; /* 画像が多い場合は横スクロール可能に */
    }
.sub-image {
        flex: 0 0 70%; /* 画像を少し大きめに見せる */
        aspect-ratio: 1 / 1;
		padding: 10px 10px; /* 左右に余白 */
		width: 100% !important; /* 横幅いっぱい */ 
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
    }
.menu-content {
        order: 4; /* 4. メニュー・料金 */
        flex: 0 0 100%;
		padding top: 20px !important;
    }
.menu-sub-content {
        margin-bottom: 30px; /* 50pxから30pxへ */
    }
.price-item dt {
        font-size: 0.85rem; /* スマホ用に少し文字を小さく */
    }
/* ====================Menuページここまで==================== */





/* ====================Staffページここから==================== */

.staff-photo {
        width: 90%; /* 親要素に対して少し小さくする */
        margin: 0 auto; /* 中央寄せ */
    }
.subpage-staff-name {
        font-size: 1.3rem; /* PC版（1.1rem）より大きく設定 */
        margin-top: 15px;
        padding-bottom: 5px;
    }
.insta-icon {
        width: 24px;
        height: 24px;
    }
/* ====================Staffページここまで==================== */



