/*
Theme Name: Salon Refre Theme
Theme URI: https://example.com
Author: Salon Refre Web Team
Description: 宇都宮市「ファシア整体サロンリフレ」様専用オリジナルテーマ
Version: 1.6.0
Text Domain: salon-refre
*/

/* ==========================================================================
   0. Table of Contents
   ==========================================================================
   1. Variables & Base Styles
   2. Utilities (Container, Markers)
   3. Header & Navigation (PC & Mobile)
   4. Front Page - Concept (Voice, Cycles, Accordion/MFJN)
   5. Front Page - Flow & Refund
   6. Front Page - Director
   7. Front Page - Access
   8. Front Page - Reservation (Buttons)
   9. Relaxation Page Styles
   10. General Page & Post Styles
   11. Footer & Sticky Elements
   12. Unused / Legacy Styles
   ========================================================================== */

/* ==========================================================================
   1. Variables & Base Styles
   ========================================================================== */
:root {
    --color-primary: #006D77;   /* ティール */
	--color-medium: #409999;    /* プライマリーとセカンダリーの中間色 */
	--color-secondary: #83C5BE; /* ライトティール */
    --color-accent: #E29578;    /* アクセントオレンジ */
    --color-bg: #EDF6F9;        /* ベースカラー */
    --color-text: #2B2D42;      /* テキスト色 */
	--header-height: 50px;
	--container-width: 1000px;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
	scroll-padding-top: calc(var(--header-height) + 20px);
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.3s, color 0.3s;
}

a:hover { opacity: 0.8; }

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	line-height: 1.2;
    font-weight: 700;
}

ul, ol { margin: 0; padding-left: 0; list-style: none; }

/* ==========================================================================
   2. Utilities (Container, Markers)
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
@media screen and (max-width: 768px) {
	.container { padding: 0 10px; }
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.bg-gray { background-color: #f7f9fa; }
.bg-beige { background-color: #fffcf4; }
.bg-relax { background-color: #f7f4fc; }

/* マーカー・強調 */
.marker { background: linear-gradient(transparent 50%, #ffbb99 99%); font-weight: bold; }

.highlight { color: var(--color-accent); border-bottom: 3px solid var(--color-accent); }
.highlight-text {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-accent);
    margin-bottom: 10px;
    line-height: 1.6;
}

/* 共通セクションスタイル */
section { padding: 50px 0 30px; }
@media screen and (max-width: 768px) {
	section { padding: 40px 0 20px; }
}

.section-header { text-align: center; margin-bottom: 30px; }
.section-title { font-size: 2rem; margin-bottom: 5px; color: var(--color-primary); }
.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    font-family: "Times New Roman", serif;
    position: relative;
    padding-bottom: 10px;
}
.section-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    margin: 5px auto 0;
}

/* ==========================================================================
   3. Header & Navigation (PC & Mobile)
   ========================================================================== */
.site-header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* 背景色の切り替え設定 */
.site-header.header-seitai { background: rgba(237, 246, 249, 0.98); }
.site-header.header-relax { background: rgba(247, 244, 252, 0.98); }

/* PC用のレイアウト */
.header-upper {
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
    width: 100%;
    max-width: 1000px; 
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img { height: 32px; width: auto; }
.site-logo a { color: var(--color-text); font-size: 1.3rem; font-weight: bold; }

/* PC Nav */
.pc-nav ul { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
    margin: 0; 
}
.pc-nav a { color: var(--color-text); font-weight: 500; font-size: 0.9rem; }

/* 予約ボタン (PC header) */
.nav-btn a {
    background: linear-gradient(to bottom, #4CD137, #44BD32);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    transition: opacity 0.3s;
    font-weight: bold;
    font-size: 0.85rem;
    border: 1px solid #44BD32;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}
.nav-btn a:hover { opacity: 0.8; }

/* Header Mobile Nav (スマホ用固定ナビ) */
.header-mobile-nav { display: none; }

@media (max-width: 900px) {
    .header-upper { display: none; }
    
    :root { --header-height: 55px; }
    
    .header-mobile-nav {
        display: flex;
        width: 100%;
        height: var(--header-height);
        background: #fff;
        border-bottom: 0;
        position: fixed;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .h-nav-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        color: #555;
        border-right: 1px solid #eee;
        font-size: 10px;
        background: #fcfcfc;
    }

    /* HOME & ACCESS */
    .h-nav-item:nth-child(1),
    .h-nav-item:nth-child(2) {
        flex: 0 0 16%;
        max-width: 16%;
    }

    /* LINE & TEL */
    .h-nav-item:nth-child(3),
    .h-nav-item:nth-child(4) {
        flex: 0 0 34%;
        max-width: 34%;
        border-right: none;
        flex-direction: row; 
        align-items: center;
        justify-content: center;
        gap: 4px;
        padding: 0 2px;
    }

    .h-nav-icon svg { margin-bottom: 2px; fill: #555; }
    .h-nav-text { font-weight: bold; line-height: 1; font-size: 12px; }

    /* LINE Button */
    .h-nav-item.h-nav-line {
        background: linear-gradient(to bottom, #06c755, #00b900);
        color: #fff;
    }
    .h-nav-item.h-nav-line .h-nav-icon svg {
        fill: #fff;
        width: 24px;
        height: 24px;
        margin: 0;
    }

    /* TEL Button */
    .h-nav-item.h-nav-tel {
        background: linear-gradient(to bottom, #e67e22, #d35400);
        color: #fff;
    }
    .h-nav-item.h-nav-tel .h-nav-icon svg {
        fill: #fff;
        width: 24px;
        height: 24px;
        margin: 0;
        animation: phone-shake 2.5s infinite;
    }
    
    .tel-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1;
        text-align: left;
    }
    .tel-main {
        font-size: 18px;
        font-weight: bold;
        text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
        margin-bottom: 0;
        white-space: nowrap;
        line-height: 1.1;
    }
    .tel-sub {
        font-size: 14px;
        opacity: 0.9;
        white-space: nowrap;
        line-height: 1.1;
    }
}

@keyframes phone-shake {
    0% { transform: rotate(0deg); }
    5% { transform: rotate(10deg); }
    10% { transform: rotate(-10deg); }
    15% { transform: rotate(10deg); }
    20% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* 管理バー調整 */
body.admin-bar .site-header { margin-top: 32px; }
@media screen and (max-width: 782px) {
    body.admin-bar .site-header { margin-top: 46px; }
}
.single-page-main { margin-top: 32px; }

/* ==========================================================================
   4. Front Page - Concept (Voice, Cycles, Accordion/MFJN)
   ========================================================================== */
.concept-intro { text-align: center; }
.concept-approaches, .concept-logic, .concept-answer { text-align: center; margin-top: 60px; }

.concept-heading {
	display: table;
	margin: 20px auto;
	background-color: var(--color-primary);
	color: #fff;
	padding: 5px 13px 3px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	max-width: 100%;
}

/* スマホでの文字サイズ調整 */
@media (max-width: 480px) {
    .concept-heading {
		margin: 20px 0;
		font-size: 1.3rem;
		font-weight: bold;
		line-height: 1.4;
    }
}

/* Speech Bubbles (吹き出しデザイン) */
.voice-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 20px 0;
	gap: 10px;
}
.voice-icon {
    font-size: 1.5rem;
    background: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-shrink: 0;
    border: 2px solid #eee;
}
.voice-content {
    position: relative;
    padding: 5px 13px;
    border-radius: 10px;
    font-weight: bold;
    width: 400px;
    max-width: calc(100% - 55px);
    box-sizing: border-box;
    text-align: left;
}
.voice-content::before {
    content: "";
    position: absolute;
    top: 8px;
    left: -6px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid;
}
/* 患者さんの声（青） */
.patient-voice .voice-icon { border-color: #b3e5fc; background: #e1f5fe; }
.patient-voice .voice-content { background: #e1f5fe; color: #0277bd; border: 1px solid #b3e5fc; }
.patient-voice .voice-content::before { border-right-color: #e1f5fe; }
.patient-voice .voice-content::after {
    content: "";
    position: absolute;
    top: 8px;
    left: -7px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #b3e5fc;
    z-index: -1;
}
/* 病院の声（グレー） */
.hospital-voice .voice-icon { border-color: #ddd; background: #f5f5f5; }
.hospital-voice .voice-content { background: #f5f5f5; color: #555; border: 1px solid #ddd; }
.hospital-voice .voice-content::before { border-right-color: #f5f5f5; }
.hospital-voice .voice-content::after {
    content: "";
    position: absolute;
    top: 8px;
    left: -7px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ddd;
    z-index: -1;
}

/* Concept Text & Cycles */
.concept-text { max-width: 700px; text-align: center; margin: 0 auto; }
@media (max-width: 768px) {
    .concept-text { text-align: left; font-size: 0.95rem; line-height: 1.8; }
}

/* サイクルテキストボックス */
.cycle-text-box {
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    border: 3px solid var(--color-accent, #ff9f43);
    border-radius: 10px;
    padding: 10px 18px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    text-align: left;
}
/* サイクル画像 */
.cycle-img {
    width: 100%;
    max-width: 700px;
    height: auto;
	padding: 10px 0;
}

/* 4 Approaches Grid (MFJNメソッド & アコーディオン) */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-bottom: 10px; 
    align-items: start;
}

.approach-card {
    background: #fff;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.approach-card:hover, .approach-card.active {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}
.approach-card.active { border-color: var(--color-primary); }

.card-visible {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.card-icon {
    height: 140px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon img { max-height: 100%; width: auto; max-width: 100%; }

.approach-card h4 { font-size: 1.1rem; color: var(--color-primary); margin: 5px auto 10px;  }
.approach-card h4 .en { display: block; font-size: 0.8rem; color: #999; }
.card-summary { font-size: 0.9rem; line-height: 1.6; text-align: left; margin-bottom: 10px; }

/* 詳しく見るボタン */
.more-btn {
    display: block;
	background: var(--color-medium);
    color: #fff;
    
    /* ▼▼▼ 変更：矢印配置の基準点にするため relative を指定 ▼▼▼ */
    position: relative;
    
    /* autoにして常に底に押し下げる */
    margin-top: auto;        
    
    /* カードの枠とつなげるための設定 */
    margin-left: -15px;      
    margin-right: -15px;     
    margin-bottom: -15px;    
    
    padding: 2px;            
    border-radius: 0 0 8px 8px; 
    
    font-size: 0.9rem;
    font-weight: bold;
}

/* ▼▼▼ 追加：矢印をCSSで左側に固定表示 ▼▼▼ */
.more-btn::before {
    content: "▼";          /* 初期表示は下矢印 */
    position: absolute;    /* 場所を固定 */
    left: 20px;            /* 左端から20pxの位置に固定 */
    top: 50%;
    transform: translateY(-50%); /* 上下中央揃え */
}

.approach-card.active .more-btn {
	background: var(--color-secondary);
	color: var(--color-primary);
}
/* ▼▼▼ 追加：アクティブ（開いている）時の矢印変更 ▼▼▼ */
.approach-card.active .more-btn::before {
    content: "▲";          /* 開いたら上矢印に変更 */
}

/* アコーディオンの中身 (Mobile) */
.card-accordion-content {
    display: none;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    text-align: left;
	padding: 15px;
}
.accordion-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-primary);
    border-bottom: 1px dashed #ccc;
    margin: 30px auto 5px ;
    padding-bottom: 5px;
    line-height: 1.2em;
}
.accordion-en {
    display: block;
    font-size: 0.9rem;
    font-weight: normal;
    color: #888;
    font-family: "Times New Roman", serif;
    letter-spacing: 0.05em;
}
.card-accordion-content div {
	line-height: 1.8;
	color: #333;
}

/* PC用 詳細表示エリア (JS連携) */
.pc-approach-detail-wrapper {
    display: none;
    padding-top: 12px;
    overflow: hidden;
}
.pc-approach-detail {
    display: block;
    background: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    padding: 0px 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --arrow-left: 50%;
}
.pc-approach-detail::before {
    content: "";
    position: absolute;
    top: -12px;
    left: var(--arrow-left);
    transform: translateX(-50%);
    border-bottom: 12px solid var(--color-primary);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    transition: left 0.3s ease;
    pointer-events: none;
}
.pc-approach-detail::after {
    content: "";
    position: absolute;
    top: -9px;
    left: var(--arrow-left);
    transform: translateX(-50%);
    border-bottom: 12px solid #fff;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
	transition: left 0.3s ease;
    pointer-events: none;
}
.pc-approach-detail div { font-size: 1rem; line-height: 2; padding-bottom: 25px; }

@media (max-width: 768px) {
    .approach-grid { grid-template-columns: 1fr; }
    .pc-approach-detail-wrapper, .pc-approach-detail { display: none !important; }
	.accordion-title { margin-top: 5px; }
}

/* Concept Logic (手続き記憶など) */
.logic-steps { 
    max-width: 700px;
	margin: 0 auto; 
}

/* Logic Boxのスタイル */
.logic-box {
    background: #fff;
	border: 1px solid var(--color-medium); /* 枠線 */
	border-radius: 8px;
    overflow: hidden; /* 角丸に合わせて中身をクリップ */
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.logic-title {
	background-color: var(--color-medium); /* タイトル背景 */
    color: #fff; /* タイトル文字色（反転） */
    margin: 0;
    padding: 2px 10px;
	text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.4;
}

.logic-content {
	padding: 3px 20px 10px;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ハイライト（強調）ボックス */
.highlight-box {
    border: 2px solid var(--color-accent); /* オレンジ枠 */
}
.highlight-box .logic-title {
    background-color: var(--color-accent); /* オレンジ背景 */
}

/* 矢印のデザイン調整 */
.arrow-down { 
    text-align: center; 
    color: var(--color-primary); 
    font-size: 1.2rem; /* サイズを少し大きく調整 */
    margin: 15px 0;    /* 上下の間隔を確保 */
    line-height: 1;
}

/* ==========================================================================
   5. Front Page - Flow & Refund
   ========================================================================== */
/* Duration Box */
.flow-duration-area {
    max-width: 360px;
    margin: 0 auto 30px; 
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-medium);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.duration-title {
    font-size: 1.3rem;
    font-weight: bold;
	padding: 3px;
	margin: 0;
    background-color: var(--color-medium);
    color: #fff;
    text-align: center;
}
.duration-box { padding: 15px 15px; }
.d-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    line-height: 1;
    width: 190px;
}
.d-label { font-weight: bold; font-size: 1.3rem; color: #333; }
.d-time { font-weight: bold; font-size: 1.5rem; color: var(--color-text); }
.d-note { color: #666; margin: 8px 0 0 0; line-height: 1.4; text-align: left; }
.d-line {
    border-top: 1px solid var(--color-primary);
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Flow Steps */
.flow-step {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px; 
    background: #fff;
    border-radius: 12px;
}
.flow-step p {
    margin: 0px;
}
.step-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--color-secondary);
    opacity: 0.3;
    line-height: 1;
    min-width: 120px;
    text-align: center;
}
.step-img { flex: 1; border-radius: 8px; overflow: hidden; }
.step-text { flex: 1; }
@media (max-width: 768px) {
    .flow-step { flex-direction: column; gap: 15px; padding: 15px; }
}

/* Refund Section */
.refund-section {
    margin: 50px auto 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    padding: 0 15px;
}
.refund-box {
    background-color: #fff;
    width: 100%;
    margin: 0;
    padding: 15px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column; 
}
.refund-title {
    font-size: 2rem;
    color: #2B2D42;
    margin: 0 auto 15px;
    background: linear-gradient(transparent 70%, #fff7cc 70%);
    display: inline-block;
}
.refund-text { font-size: 1.1rem; margin: 0; }
@media (max-width: 768px) {
	.refund-section { padding: 10px; flex-direction: column; align-items: center; }
    .refund-box { width: 100%; max-width: 600px; }
    .refund-title { font-size: 1.5rem; }
}

/* ==========================================================================
   6. Front Page - Director
   ========================================================================== */
.section-director { background-color: #fff; padding: 30px 0; }
.director-profile { display: flex; gap: 50px; align-items: flex-start; max-width: 960px; margin: 0 auto; }
.director-img { flex: 0 0 350px; position: relative; }
.director-img img { width: 100%; border-radius: 8px; box-shadow: 10px 10px 0 var(--color-secondary); }
.director-msg { flex: 1; }
.director-name { font-size: 1.8rem; margin-bottom: 30px; border-bottom: 2px solid var(--color-primary); padding-bottom: 15px; line-height: 1.4; }
.director-name .role { font-size: 1rem; color: var(--color-primary); font-weight: normal; display: block; margin-bottom: 5px; }

@media (max-width: 768px) {
    .director-profile { flex-direction: column; }
    .director-img { width: 100%; max-width: 300px; margin: 0 auto 40px; }
    .director-img img { box-shadow: 5px 5px 0 var(--color-secondary); }
}

/* ==========================================================================
   7. Front Page - Access
   ========================================================================== */
.access-map-full {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.access-map-full iframe { width: 100%; height: 640px; border: 0; display: block; }

.access-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 10px;
    margin-bottom: 30px;
}
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item.exterior { grid-column: 1 / 2; grid-row: 1 / 3; }
.gallery-item.waiting { grid-column: 2 / 3; grid-row: 1 / 2; }
.gallery-item.bed { grid-column: 2 / 3; grid-row: 2 / 3; }

.access-info { background: #fff; padding: 20px; border-radius: 8px; }
.info-table { width: 100%; border-collapse: collapse; margin: 0; }
.compact-table th, .compact-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.compact-table th {
    background: var(--color-secondary);
    color: #fff;
    width: 25%;
    font-weight: normal;
    white-space: nowrap;
}
.compact-table tr:last-child th, .compact-table tr:last-child td { border-bottom: none; }

@media (max-width: 768px) {
    .access-map-full iframe { height: 500px; }
    .access-gallery { grid-template-columns: 1fr; grid-template-rows: auto; gap: 15px; }
    .gallery-item.exterior { grid-column: auto; grid-row: auto; width: 100%; height: auto; aspect-ratio: 1 / 1; }
    .gallery-item.waiting, .gallery-item.bed { grid-column: auto; grid-row: auto; width: 100%; height: auto; aspect-ratio: 100 / 56; }
    .compact-table th, .compact-table td { display: block; width: 100%; padding: 8px 10px; }
    .compact-table th { font-weight: bold; border-bottom: none; padding-bottom: 0; }
}

/* ==========================================================================
   8. Front Page - Reservation (Buttons)
   ========================================================================== */
.hero-offer { max-width: 420px; margin: 0 auto 60px; }
.hero-offer-text { font-size:1.4rem; font-weight:bold; color:#D65A31; margin-top: 0; margin-bottom: 0; }
.hero-offer-area {
    background: #fff9f0;
    border: 2px solid #E29578;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}
.offer-msg {
    font-size: 1rem;
    font-weight: bold;
	margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--color-text);
}
.offer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.price-normal { font-size: 0.9rem; color: #666; margin: 0; }
.price-normal .strike { text-decoration: line-through; font-weight: bold; margin: 0 5px; }
.price-special {
    font-size: 2.4rem;
    font-weight: bold;
    color: #D32F2F;
    margin: 5px 0 0;
    line-height: 1.1;
}
.price-special .tax { font-size: 1rem; font-weight: normal; color: #333; margin-left: 5px; }

.reservation-layout {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-family: "Helvetica Neue", Arial, sans-serif;
    padding: 0 10px;
}
.res-block { margin-bottom: 20px; width: 100%; position: relative; }
.btn-res-large {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff !important;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
    transition: transform 0.2s, opacity 0.2s;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}
.btn-res-large:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    opacity: 0.95;
}

/* Button Colors */
/* Orange (Phone) */
.res-balloon-orange {
    display: inline-block;
    background: #fff;
    border: 3px solid #E67E22;
    color: #E67E22;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: -15px;
    position: relative;
    z-index: 10;
    font-size: 0.9rem;
}
.btn-orange {
    background: linear-gradient(to bottom, #FF9F43, #D35400);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
    border: 1px solid #D35400;
}
.icon-phone { margin-right: 10px; }
.res-info-text { margin-top: 15px; font-size: 0.95rem; line-height: 1.6; font-weight: bold; color: var(--color-text); }
.small-note { font-size: 0.8rem; font-weight: normal; display: block; margin-top: 5px; color: #666; }

/* Green (LINE) */
.res-balloon-green {
    display: inline-block;
    background: #fff;
    border: 2px solid #2ECC71;
    color: #2ECC71;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: -15px;
    position: relative;
    z-index: 10;
    font-size: 0.9rem;
}
.res-balloon-green::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid #2ECC71;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}
.btn-green {
    background: linear-gradient(to bottom, #4CD137, #44BD32);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
    border: 1px solid #44BD32;
}
.icon-line { margin-right: 10px; }

/* Lavender (HotPepper) */
.res-balloon-lavender {
    display: inline-block;
    background: #fff;
    border: 2px solid #9d76c1;
    color: #9d76c1;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: -15px;
    position: relative;
    z-index: 10;
    font-size: 0.9rem;
}
.res-balloon-lavender::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid #9d76c1;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}
.res-balloon-lavender::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    z-index: 1;
}
.btn-lavender {
    background: #9d76c1;
    color: #fff;
    border-bottom: 4px solid #7e5da0;
}
.btn-lavender:hover {
    background: #af8cd1;
    color: #fff;
    transform: translateY(2px);
    border-bottom: 2px solid #7e5da0;
}

/* Inputs & Closing */
.res-instruction { margin-top: 40px; color: #333; }
.intro-text { font-size: 1rem; line-height: 1.8; margin-bottom: 20px; font-weight: bold; }
.input-list-box {
    text-align: left;
    display: inline-block;
    background: #f8f8f8;
    padding: 20px 30px;
    border-radius: 8px;
    border: 1px dashed #ccc;
    width: 100%;
    box-sizing: border-box;
}
.input-list-box p {
    margin: 0 0 10px 0;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid #eee;
}
.input-list-box p:last-child { margin-bottom: 0; border-bottom: none; }
.res-closing-msg {
    margin-top: 40px;
    color: #D32F2F;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .hero-offer-text { font-size:1.2rem; }
    .price-special { font-size: 2rem; }
    .btn-res-large { font-size: 1.4rem; }
    .input-list-box { padding: 15px; }
}

/* ==========================================================================
   9. Relaxation Page Styles
   ========================================================================== */
.page-lead { 
    font-size: 1.2rem; 
    line-height: 1.2; 
    text-align: center;
    margin-bottom: 20px;
}
.concept-heading-relax {
	display: table;
	margin: 20px auto;
	background-color: #b39ddb;
	color: #fff;
	padding: 5px 13px 3px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
	max-width: 100%;
}
/* Relaxation Page Styles (9. Relaxation Page Styles) */
.menu-box {
    background: #fff;
    max-width: 700px;
	margin: 15px auto;
    padding: 15px 15px 0; 
    border-radius: 8px;
    
    /* ▼▼▼ 変更：ラベンダー色の影を追加（上ボーダーは削除） ▼▼▼ */
	box-shadow: 8px 8px 0 #a59aca;
    border: 1px solid #a59aca; /* 軽く枠線を追加して影を際立たせる */
}
.menu-category {
    font-size: 1.4rem;
    color: #7e6ba8;
    border-bottom: 2px solid #dcd6e8;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.menu-desc { margin-bottom: 0; font-size: 0.95rem; color: #666; }
.menu-list { margin: 0; padding: 0; }
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
}
.menu-item:last-child { border-bottom: none; }
.menu-item dt { font-size: 1.1rem; font-weight: bold; color: #444; }
.menu-item .price { font-size: 1.3rem; font-weight: bold; color: #555; }
.menu-item .tax { font-size: 0.7rem; font-weight: normal; color: #888; }
.menu-item.recommended {
    background-color: #faf8ff;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
}

/* Discount Box */
.menu-note {
    max-width: 560px;
    margin: 20px auto;
    background-color: #fff3e0;
    border: 1px solid #ffe0b2;
    border-radius: 8px;
	padding: 10px 15px; 
    text-align: center;
}
.menu-note .note-title { color: #e65100; font-weight: bold; margin-bottom: 15px; font-size: 1.3rem; }
.menu-note .note-body { margin: 0; line-height: 1.8; }
.menu-note .discount-highlight { color: #d32f2f; font-weight: bold; font-size: 1.3em; }
.menu-note .note-small { font-size: 0.9rem; color: #666; display: block; margin-top: 8px; }

/* Badges */
.menu-item .time {
    font-size: 0.96rem; 
    background: #f3eefc;
    color: #7e6ba8;
    padding: 3px 6px;
    border-radius: 8px;
    margin-left: 2px;
    white-space: nowrap;
    position: relative;
    top: -1px;
}
.badge {
    background: #b39ddb; color: #fff; font-size: 0.75rem; padding: 2px 4px; border-radius: 4px; margin-left: 2px; vertical-align: middle;
    white-space: nowrap; position: relative; top: -1px;
}
.badge-option {
    background: #d4a373; color: #fff; font-size: 0.75rem; padding: 2px 8px; border-radius: 12px; margin-left: 5px; vertical-align: middle; font-weight: normal; display: inline-block;
    white-space: nowrap;
}
.badge-hotstone {
    background: #e09494; color: #fff; font-size: 0.75rem; padding: 2px 8px; border-radius: 12px; margin-left: 5px; vertical-align: middle; font-weight: normal; display: inline-block;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .menu-item { flex-direction: column; align-items: flex-start; }
    .menu-item .price { margin-top: 0; align-self: flex-end; }
    .menu-item dt .badge { display: block; width: fit-content; margin-left: 0; }
}

/* ==========================================================================
   10. General Page & Post Styles
   ========================================================================== */
.page-main { padding: 60px 0; min-height: 60vh; }
.page-header { background-color: var(--color-primary); color: #fff; text-align: center; padding: 80px 0; margin-top: var(--header-height); }
.page-header h1 { font-size: 2rem; margin-bottom: 5px; color: #fff; }
.page-header span { font-size: 1rem; opacity: 0.8; letter-spacing: 0.1em; font-family: serif; }

.case-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.case-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.case-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.case-card-link { display: flex; flex-direction: column; height: 100%; color: var(--color-text); }
.case-card-thumb { height: 200px; overflow: hidden; position: relative; }
.case-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.case-card:hover .case-card-thumb img { transform: scale(1.1); }
.case-card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.case-card-title { font-size: 1.1rem; margin: 0 0 10px; line-height: 1.5; color: var(--color-primary); }
.case-card-excerpt { font-size: 0.9rem; color: #666; margin-bottom: 15px; flex-grow: 1; }
.read-more { font-size: 0.9rem; font-weight: bold; color: var(--color-accent); margin-top: auto; }

.post-list { max-width: 800px; margin: 0 auto; }
.post-item { background: #fff; padding: 30px; margin-bottom: 20px; border-radius: 8px; }
.pagination { margin-top: 60px; text-align: center; }
.pagination .page-numbers { padding: 10px 16px; border: 1px solid #ddd; margin: 0 4px; color: var(--color-text); background: #fff; border-radius: 4px; }
.pagination .current { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.single-post .container, .single-case .container { max-width: 880px; }
.entry-header, .case-header { text-align: center; margin-bottom: 50px; }
.entry-title, .case-title { font-size: 2.2rem; margin: 15px 0 30px; color: var(--color-text); }
.entry-meta { color: #888; font-size: 0.9rem; }
.entry-thumbnail, .case-main-img { margin-bottom: 40px; border-radius: 8px; overflow: hidden; }
.entry-content, .case-content-body { background: #fff; padding: 50px; border-radius: 8px; font-size: 1.05rem; line-height: 2; }
.entry-content h2, .case-content-body h2 { font-size: 1.6rem; border-left: 5px solid var(--color-primary); padding-left: 15px; margin-top: 40px; margin-bottom: 25px; }
.entry-content h3, .case-content-body h3 { font-size: 1.4rem; border-bottom: 2px solid var(--color-secondary); padding-bottom: 10px; margin-top: 35px; }
.case-cta-box { background: #E0F2F1; padding: 40px; text-align: center; border-radius: 8px; margin-top: 60px; }
.post-navigation { display: flex; justify-content: space-between; margin: 50px 0; padding-top: 30px; border-top: 1px solid #ddd; }

@media (max-width: 768px) {
    .entry-content, .case-content-body { padding: 25px; }
    .entry-title, .case-title { font-size: 1.6rem; }
}

/* ==========================================================================
   11. Footer & Sticky Elements
   ========================================================================== */
/* Mobile Sticky Switch */
.mobile-switch-footer { display: none !important; }

@media screen and (max-width: 768px) {
    .mobile-switch-footer {
        display: block !important;
        position: fixed !important;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    }
    .switch-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 8px 0;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9rem;
        line-height: 1;
    }
    .switch-btn .icon { font-size: 1.1rem; margin-right: 6px; }
    .switch-btn.to-relaxation { background-color: #a59aca; color: #fff; border-top: 2px solid #8d81b3; }
    .switch-btn.to-seitai { background-color: var(--color-primary, #005a5a); color: #fff; border-top: 2px solid rgba(0,0,0,0.2); }
}

/* Compact Footer */
.footer-compact {
	padding: 10px 0 40px 0;
    text-align: center;
    background-color: #333;
    color: #fff;
}
.footer-row-tight {
    font-size: 0.85rem;
    margin-bottom: 5px;
    line-height: 1.2;
}
.footer-row-tight .separator { margin: 0 8px; opacity: 0.5; }
.footer-tel-link { color: #fff; text-decoration: none; font-weight: bold; }
.footer-address-tight {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 8px;
    line-height: 1.2;
}
.copyright-tight {
    font-size: 0.65rem;
    opacity: 0.5;
    line-height: 1;
}

/* ==========================================================================
   12. Unused / Legacy Styles
   ========================================================================== */
/* WordPress Core Alignments */
.aligncenter { display: block; margin: 0 auto 1.5rem; text-align: center; }
.alignright { float: right; margin: 0 0 1.5rem 1.5rem; }
.alignleft { float: left; margin: 0 1.5rem 1.5rem 0; }
.wp-caption { max-width: 100%; margin-bottom: 1.5rem; text-align: center; }
.wp-caption-text { font-size: 0.9rem; color: #666; margin-top: 5px; }
.wp-block-button__link { color: #fff !important; }

/* Old Buttons & Layouts */
.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(226, 149, 120, 0.4);
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: #d67d5e;
    transform: translateY(-2px);
    opacity: 1;
}
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
}
.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.center-btn { text-align: center; margin-top: 40px; }

/* Old Hero Section (Likely unused in current Front Page) */
.hero-section-lp { padding-top: 70px; }
.hero-content-box { padding: 20px 15px; width: 100%; }
.hero-question { font-size: 1.5rem; line-height: 1.5; }
.hero-checklist li { font-size: 0.95rem; margin-bottom: 10px; }
.solution-lead { font-size: 1.2rem; line-height: 1.6; }
.solution-lead .highlight { font-size: 1.4rem; }
.btn-hero-lp { width: 96%; margin: 0 auto; font-size: 1.4rem; padding: 15px; }
.pc-only { display: none; }
.refund-lead { font-size: 1.4rem; font-weight: bold; color: #D65A31; }