/* ---------------------------------------------
   Base Settings
--------------------------------------------- */

/* 色変数（先に定義しておくと安心） */
:root {
    /* --green: rgb(95, 21, 21); nagamaru の主要カラー */
    --green: #6f8263;
    --beige: #faf7f2;
    --light-beige: #faf7f2;
    --text-dark: #333;
    --text-light: #666;
    --brown: #6b5a4a;
    --dark-brown: #4a3b2a;
}

body {
    font-family: "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--light-beige);
    margin: 0;
    padding: 0;
}

/* セクションのベース：縦余白は section-inner に任せるのでここではリセット */
section {
    margin: 0;
    padding: 0;
}

/* 共通コンテナ（inner） */
.section-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    /* 背景の上に安全に乗せる用 */
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .section-inner {
        padding: 40px 20px;
    }
}

/* コンテンツ全体ラッパー */
.site-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 48px;
    /* 左右は section-inner に任せる。下だけ欲しければここで */
}

/* テキストのベース */
p {
    margin-bottom: 1.4em;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    p {
        font-size: 15px;
    }
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* a:visited で色を固定したくなったらコメント外す */
/*
a:visited {
    color: var(--green);
}
*/

/* テキスト装飾 */

.f_14 {
    font-size: 14px;
}

.f_34 {
    font-size: 34px;
}


/* ---------------------------------------------
   Page Title (H1)
--------------------------------------------- */

.page-main-title {
    display: block;
    width: 100%;
    max-width: 1080px;
    /* セクション幅と揃える */
    margin: 0 auto 50px;
    padding: 0;
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-brown);
    text-align: center;
    line-height: 1.4;
    background: none;
    border: none;
}

@media screen and (max-width: 768px) {
    .page-main-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
}


/* ---------------------------------------------
   Section Title (H2)
--------------------------------------------- */

.section-title-wrap {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto 40px;
    /* タイトルブロックとしての下余白 */
}

.section-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
    /* 余白は wrap 側に任せる */
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 2px;
    background: var(--green);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

@media (max-width: 768px) {

    /* ヘッダーを画面上部に固定 */
    .site-header {
        position: fixed;
        top: 0;
        /* ★必須 */
        left: 0;
        width: 100%;
        /* ★必須 */
        z-index: 9999;
        background: #faf7f2;
        /* ヘッダー背景色 */
    }

    /* ヘッダー分だけ本文を下げる */
    .site-main {
        padding-top: 100px;
        /* ★ヘッダーの実高さに合わせる */
    }

    .site-title-sub {
        font-size: 10px;
    }

    .site-title-logo img {
        display: block;
        width: 150px;
    }
}


/* ---------------------------------------------
   Sub Section Title (H3)
--------------------------------------------- */

h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--green);
    margin: 24px 0 16px;
    text-align: left;
}

@media screen and (max-width: 768px) {
    h3 {
        font-size: 18px;
    }
}


/* ---------------------------------------------
   Header Layout
--------------------------------------------- */

.site-header {
    width: 100%;
    background-color: #ffffff;
}

/* 上段：タイトル＋リンク */
.header-top-wrap {
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.06); */
    background-color: #ffffff;
}

.header-top-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* タイトル部分 */
.site-branding-wrap {
    flex: 1 1 auto;
}

.site-branding-wrap a:hover {
    text-decoration: none;
    opacity: 0.8;
}

.site-branding-wrap a:visited {
    color: #333333
}

.site-title-main {
    display: inline-block;
    text-decoration: none;
    color: #333333;
}

.site-title-sub {
    display: block;
    font-size: 13px;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.site-title-logo {
    display: block;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.site-title-logo img {
    display: block;
    width: 250px;
}

@media (max-width: 768px) {
    .site-header {
        position: fixed;
        margin-bottom: 40px;
        z-index: 999;
    }


    .site-title-sub {
        font-size: 10px;
    }

    .site-title-logo img {
        display: block;
        width: 150px;
    }
}

/* 右上のリンク（LINE + お問い合わせ） */

.header-links-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LINEボタン */
/* .btn-line-header {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background-color: var(--dark-brown);
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-line-header:visited {
    color: #fff;
}

.btn-line-header:hover {
    opacity: 0.9;
    text-decoration: none;
    color: #fff;
} */

/* お問い合わせリンク */
.btn-line-header,
.header-contact-link {
    font-size: 14px;
    color: #555555;
    text-decoration: none;
}

.btn-line-header:hover,
.header-contact-link:hover {
    text-decoration: underline;
}

.btn-line-header:visited,
.header-contact-link:visited {
    color: #555555;
}

/* 下段：ナビゲーション */
.header-nav-wrap {
    /* background-color: #faf7f2; */
    background-color: #fff;
    border-bottom: 4px solid #f6eee1;;
}

.header-nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 8px 16px;
}

.main-navigation {
    text-align: center;
}

.global-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 20px;
}

.global-nav-list>li>a {
    font-size: 14px;
    text-decoration: none;
    color: #333333;
    padding: 6px 4px;
}

.global-nav-list>li>a:hover {
    color: #6f8263;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .header-top-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-links-wrap {
        display: none;
        align-self: stretch;
        justify-content: flex-start;
        gap: 8px;
        flex-wrap: wrap;
    }

    /* .header-nav-inner {
        text-align: center;
    }

    .global-nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    } */
}

/* ===============================
   スマホ用 ハンバーガーメニュー
================================ */

@media (max-width: 768px) {

    .header-nav-wrap {
        position: relative;
    }

    /* ハンバーガーボタン */
    .menu-toggle {
        display: block;
        position: absolute;
        /* ★ fixed は外す */
        top: -40px;
        right: 16px;
        width: 32px;
        height: 24px;
        z-index: 1001;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: #6a4a2f;
        /* ★ 茶色 */
        margin: 5px 0;
        transition: 0.3s;
    }

    /* ナビメニュー */
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        z-index: 1000;
    }

    .main-navigation.is-open {
        display: block;
    }

    .global-nav-list {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 16px 0;
    }

    .global-nav-list li {
        text-align: center;
        padding: 12px 0;
    }

    .global-nav-list a {
        font-size: 16px;
        color: #333;
        text-decoration: none;
    }

    /* ===============================
   ハンバーガー → バッテン
================================ */

    .menu-toggle span {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* 1本目：右下に回転 */
    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    /* 2本目：消す */
    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    /* 3本目：右上に回転 */
    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/* ---------------------------------------------
   SP用：ナビゲーション強制表示（_sのデフォルトを上書き）
--------------------------------------------- */
@media (max-width: 768px) {
    .main-navigation ul.global-nav-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
    }
}


/* --------------------------------------------------
   First View (FV)
-------------------------------------------------- */

.fv {
    width: 100%;
    height: 70vh;
    /* 全画面表示 */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    background-image: url('/wp-content/uploads/2025/12/fv_top4.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* 透明白グラデーションで文字を読みやすく */
.fv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.20));
    z-index: 1;
}

.fv-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 5px;
    /* opacity: 0.8; */
}

/* ラベル・タイトル・リードのwrap */
.fv-label-wrap,
.fv-title-wrap,
.fv-lead-wrap,
.fv-btn-wrap {
    margin-bottom: 16px;
}

.fv-label {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.12em;
    color: #555;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 999px;
}

.fv-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.fv-lead {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.fv-btn {
    display: inline-block;
    margin-top: 12px;
}



/* FV SP調整 */
@media (max-width: 768px) {
    .fv {
        height: 60vh;
        min-height: 420px;
    }

    .fv-inner {
        padding: 32px 16px;
    }

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

    .fv-lead {
        font-size: 14px;
    }
}


/* ---------------------------------------------
   メニュー概要（TOPのカードなど）
--------------------------------------------- */

.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.menu-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
}

.menu-card img {
    width: 90%;
    margin: 0 auto;
}

.menu-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    text-align: center;
}

.menu-card p {
    font-size: 14px;
}


.menu-price-table {
    width: 100%;
}

.menu-price-table table {
    width: 100%;
}

.menu-price-table table td {
    padding: 5px 0 5px 10px;
    background-color: #f4eee7;
}

.menu-price-table table td:first-child {
    width: 30%;
}

.menu-card-link {
    width: 100%;
    display: block;
    text-align: center;
    position: absolute;
    bottom: 3px;
    left: 0;
}

.menu-card-link a {
    color: #6f8263;
}

.menu-card-link a:visited {
    color: #6f8263;
    ;
}


/* TOP 対応エリア */

/* 横並びレイアウト */
.section-area-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* li 本体 */
.section-area-list li {
    background: #fff;
    border-radius: 999px;
    padding: 10px 16px 10px 44px;
    /* 左にチェック分の余白 */
    position: relative;
    line-height: 1.4;
    font-size: 14px;
}

/* FA6 チェックマーク */
.section-area-list li::before {
    content: "\f00c";
    /* fa-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* Solid */
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #6f8263;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


/* ご利用の流れ */

.flow-list-wrap {
    width: 100%;
    margin: 0 auto;
}

.flow-list-box {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 40px;
    background-color: #fff;
}

.flow-list-box .steps {
    width: 20%;
    padding: 20px;
    background-color: #6f8263;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    /* 縦中央 */
    justify-content: center;
    /* 横中央 */
    text-align: center;
    font-size: 18px;
    border-radius: 5px 0 0 5px;
}

.flow-list-box .flow-p {
    padding: 20px;
    display: flex;
    align-items: center;
    /* 縦中央 */
    justify-content: center;
    /* 横中央 */
    text-align: center;
}

.flow-list-box .flow-img {
    position: relative;
    right: 0;
    bottom: 0;
    width: 150px;
}

.flow-list-box .flow-img img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .flow-list-box .steps {
        width: 30%;
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 5px 0 0 0;
    }

    .flow-list-box .flow-img {
        display: none;
    }
}



/* セクション下部のリンク */

.section-footer-link {
    width: 100%;
    margin: 60px auto 0 auto;
}

.section-footer-link a {
    width: 300px;
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    border-radius: 999px;
    background-color: var(--dark-brown);
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
}

.section-footer-link a:hover {
    opacity: 0.8;
}

.section-footer-link a:visited {
    color: #fff;
}

/* ------------LINE リンク */

.contact_img_pc {
    width: 100%;
    margin: 20px auto;
    position: relative;
}

.contact_img_pc img {
    width: 100%;
}



.contact_p_wrap {
    width: 55%;
    position: absolute;
    left: 50px;
    top: 70px;
    /* background-color: #fff; */
    padding: 0;
}

.contact_p_wrap p {
    margin: 0px !important;
    padding: 0;
}

.contact_p_wrap .p_1 {
    font-size: 34px;
    color: #4a3b2a;
}

.contact_p_wrap .p_2 {
    font-size: 38px;
    color: #4a3b2a;
}

.contact_img_pc a {
    position: absolute;
    left: 100px;
    bottom: 50px;
}

.btn-main {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    background-color: #06c755;
    color: yellow;
    text-decoration: none;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.btn-main:visited {
    color: yellow;
}

.btn-main:hover {
    opacity: 0.8;
    text-decoration: none;
    /* color: #fff; */
    box-shadow: none;
    animation: 1s;
}

.smart_only {
    display: none;

}

@media screen and (max-width: 768px) {
    .smart_only {
        display: block;
    }

    .pc_only {
        display: none;
    }

    .contact_p_wrap {
        width: 80%;
        position: absolute;
        left: 30px;
        top: 60px;
        /* background-color: #fff; */
        padding: 0;
    }

    .contact_p_wrap p {
        margin: 0px !important;
        padding: 0;
    }

    .contact_p_wrap .p_1 {
        font-size: 20px;
        color: #4a3b2a;
    }

    .contact_p_wrap .p_2 {
        font-size: 24px;
        color: #4a3b2a;
    }

    .contact_p_wrap .p_2 .f_34 {
        font-size: 24px;
    }

    .contact_img_pc a {
        position: absolute;
        left: 5px;
        bottom: 80px;
    }

}









/* ---------------------------------------------
   フッター
--------------------------------------------- */

.site-footer {
    background-color: #4a3b2a;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 48px;
}

.footer-info {
    /* background-color: #fff; */
    text-align: center;
    color: #fff;
    margin-bottom: 70px;
}

.footer-info img {
    width: 250px;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 24px 16px 32px;
}

.footer-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-meta {
    font-size: 13px;
    margin: 0 0 12px;
}

.footer-nav {
    margin-bottom: 40px;
}

/* footer ナビ全体 */
.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* li */
.footer-nav-list li {
    position: relative;
    padding-left: 18px;
    /* アイコン分の余白 */
    font-size: 14px;
}

/* FA 右向き三角形 */
.footer-nav-list li::before {
    content: "\f054";
    /* fa-chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* Solid */
    position: absolute;
    left: 0;
    top: 48%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #fff;
    /* ブランドカラー */
}

/* リンク */
.footer-nav-list a {
    color: #fff;
    text-decoration: none;
}

.footer-nav-list a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-nav-list {
        flex-direction: column;
        gap: 12px;
    }
}

.footer-copy {
    font-size: 14px;
    text-align: right;
    margin: 0;
    color: #fff;
}


/* ---------------------------------------------
   右下のLINEボタン（フローティング）
--------------------------------------------- */

.floating-line {
    position: fixed;
    right: 16px;
    bottom: 16px;
    /* padding: 10px 16px; */
    border-radius: 999px;
    /* background-color: #06c755;
    color: #ffffff;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); */
    z-index: 999;
}

.floating-line a {
    width: 100px;
}

.floating-line a img {
    width: 100%;
}

.floating-line:visited {
    color: #fff;
}

.floating-line:hover {
    opacity: 0.8;
    text-decoration: none;
    color: #fff;
}


/* ---------------------------------------------
   メニュー・料金表ページ
--------------------------------------------- */

.menu-page-link {
    width: 100%;
    padding: 60px 0;
}

.menu-page-link ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu-page-link li {
    width: 300px;
}

.menu-page-link li a {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    display: block;
}

.menu-page-link li a span {
    font-weight: 700;
    color: #6b5a4a;
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.menu-page-link .menu-page-link-main {
    display: block;
    width: 150px;
    margin: 0 auto 20px auto;
}

.menu-page-link .menu-page-link-ar {
    display: block;
    width: 50px;
    margin: 0 auto;
}

.menu-page-link li a:hover {
    text-decoration: none;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .menu-page-link ul {
        display: block;
    }

    .menu-page-link li {
        margin-bottom: 20px;
        width: 100%;
    }

    .menu-page-link li a {
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
    }

    .menu-page-link li a span {
        font-size: 16px;
        display: flex;
        margin-top: 30px;
    }

    .menu-page-link .menu-page-link-main {
        width: 60px;
        display: block;
        margin-left: 10px;
        margin-top: 10px;
    }

    .menu-page-link .menu-page-link-ar {
        display: block;
        width: 40px;
        height: 40px;
        margin-right: 0;
        margin-top: 20px;
    }
}


/* ------料金表テーブル */

.menu-table-wrap {
    width: 100%;
    background-color: #fff;
    padding: 40px 0 60px 0;
}

.menu-table {
    width: 80%;
    display: block;
    margin: 0 auto;
    background-color: #f4eee7;
    table-layout: fixed;
}

.menu-table th {
    width: 30em;
    /* background-color: #6f8263; */
    background-color: #6b5a4a;
    color: #fff;
    padding: 10px;
}

.menu-table td {
    padding: 10px;
    text-align: center;
    background-color: #fff;
}




.menu-title,
.menu-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #6f8263;
    /* text-align: center; */
    margin: 0 auto 20px auto;
    position: relative;
    padding-left: 40px;
    width: 80%;
}

.menu-title:before,
.menu-subtitle:before {
    position: absolute;
    font-family: "Font Awesome 6 Free";
    background: #6f8263;
    color: white;
    font-weight: 900;
    font-size: 16px;
    border-radius: 50%;
    left: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.menu-title:after,
.menu-subtitle:after {
    /*吹き出しのちょこんと出た部分*/
    content: '';
    display: block;
    position: absolute;
    left: 25px;
    height: 0;
    width: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #6f8263;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.menu-title:before {
    content: "\f157";
}

.menu-subtitle:before {
    content: "\f043";
}

@media (max-width: 768px) {
    .menu-table-wrap {
        width: 100%;
        background-color: #fff;
        padding: 20px 0 20px 0;
    }

    .menu-title {
        width: 90%;
    }

    .menu-table {
        width: 90%;
    }
}

/* ----------主な精油の一例 */

.aroma-oils {
    width: 100%;
    /* background-color: red; */
    margin: 20px 0 40px 0;
}

.aroma-oil-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.aroma-oil-list li {
    list-style-type: none;
    width: 120px;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px 15px;
}

.aroma-oil-list li img {
    margin: 10px 0;
}

.aroma-oil-list li p {
    font-size: 14px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .aroma-oil-list li {
        width: 48%;
    }
}


/* ---------------------------------------------
   セラピスト紹介
--------------------------------------------- */

.therapist-head-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* PC：左右2カラム */
.therapist-info,
.therapist-img {
    width: 50%;
    padding: 20px;
}

/* 名前 */
.therapist-name {
    font-size: 36px;
    font-weight: bold;
    color: #00583b;;
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* 補足テキスト */
.therapist-info p {
    font-weight: bold;
}

/* 吹き出し本体 */
.therapist-text {
    position: relative;
    background: #fff;
    padding: 24px 28px;
    border-radius: 12px;
    line-height: 1.8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.therapist-text p {
    font-size: 14px;
    margin: 0;
}

/* 上向き三角（吹き出しの先） */
.therapist-text::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 20%;
    transform: translateX(-50%);
    border-width: 0 14px 14px 14px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

@media (max-width: 768px) {

    /* 縦並び */
    .therapist-head-wrap {
        flex-direction: column;
        align-items: center;
    }

    .therapist-info,
    .therapist-img {
        width: 100%;
        padding: 16px;
    }

    /* 名前は少し小さく */
    .therapist-name {
        font-size: 28px;
        margin-top: 10px;
    }

    /* 吹き出しは中央寄せ */
    .therapist-text {
        padding: 20px;
        margin-top: 16px;
    }

    .therapist-text p {
        font-size: 15px;
        line-height: 1.9;
    }

    /* 三角を中央に */
    .therapist-text::before {
        left: 50%;
    }
}

/* ---------------------------------------------
   ご利用の流れ
--------------------------------------------- */

/* ---------------------------------------------
   ご利用規約
--------------------------------------------- */

.terms-list {
    margin: 10px 0 0 20px;
    padding: 0;
}

.terms-list li {
    margin-bottom: 20px;
}

.terms-dl{
  margin: 24px 0;
  text-align: center;
}

.btn-pdf{
  display: inline-block;
  background: #6f8263;
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: opacity .2s ease;
}

.btn-pdf:hover{
  opacity: .9;
  color: #fff;
  text-decoration: none;
}


/* ダウンロード */

.terms_dl_wrap {
    width: 100%;
    padding: 20px 40px 40px 40px;
    background: #fff;
}

.terms_dl_title {
    width: 100%;
    margin-bottom: 24px;
}

.terms_dl_title h3{
    font-size: 24px;
    font-weight: bold;
    color: #00583b;
    text-align: center;
}

.terms_dl_text {
    width: 80%;
    display: block;
    margin: 0 auto 32px;
}

.terms_dl_btn_wrap {
    width: 100%;
    text-align: center;
}

.terms_dl_btn_wrap a {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* 文字とアイコンの間隔 */
  padding: 16px 24px;
  background-color: #00583b;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.terms_dl_btn_wrap a::after {
  content: "\f019"; /* download */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}

.terms_dl_btn_wrap a:hover {
  opacity: 0.8;
}

.terms_dl_btn_wrap a:visited {
  color: #fff;
}

/* ---------------------------------------------
   お問合せページ
--------------------------------------------- */

.contact-note{
  background: #faf7f2;
  border: 1px solid #e5dfd8;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.7;
}

.contact-note p{
  margin: 0 0 8px;
}

.contact-note ul{
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.contact-note li{
  margin-bottom: 6px;
}

.contact-note strong{
  color: #6f8263;
  font-weight: 700;
}

/* =============================================
   CF7 / nagamaru. Form Style (Complete)
   - dl dt dd layout
   - inputs
   - notes
   - submit button
   - acceptance (center + custom checkbox)
   - responsive
============================================= */

/* フォーム全体 */
.cf7_main_area {
    max-width: 900px;
    margin: 0 auto;
}

/* dl（定義リスト） */
.cf7_dl {
    margin: 0;
    padding: 0;
}

/* 1項目（dt+dd） */
.cf7_item_wrap {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* 左ラベル(dt) */
.cf7_item_l {
    width: 30%;
    margin: 0;
    font-weight: 700;
    color: #333;
    line-height: 1.6;
}

/* 右入力(dd) */
.cf7_item_r {
    width: 70%;
    margin: 0;
}

/* 必須バッジ */
.cf7_required {
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
    color: #fff;
    background: #c0392b;
    padding: 2px 8px;
    border-radius: 999px;
    vertical-align: middle;
}

/* 入力共通 */
.cf7_item_r input[type="text"],
.cf7_item_r input[type="tel"],
.cf7_item_r input[type="email"],
.cf7_item_r textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    outline: none;
    font-size: 14px;
}

/* textarea */
.cf7_item_r textarea {
    min-height: 120px;
    resize: vertical;
}

/* フォーカス */
.cf7_item_r input:focus,
.cf7_item_r textarea:focus {
    border-color: #6f8263;
    box-shadow: 0 0 0 3px rgba(111, 130, 99, 0.18);
}

/* 注意書き */
.cf7_note {
    margin: 10px 0 0;
    font-size: 13px;
    color: #6a4a2f;
    /* ブラウン寄り */
    line-height: 1.7;
}

/* 送信ボタン */
.cf7_btn_area {
    margin-top: 50px;
    text-align: center;
}

/* =====================================
   送信ボタン：初期状態（同意なし）
===================================== */

.cf7_btn_area .cf7_submit {
    display: inline-block;
    position: relative;
    border: none;
    background: #ccc;
    /* グレー */
    color: #fff;
    padding: 18px 100px 18px 100px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    cursor: not-allowed;
    /* クリック不可風 */
    opacity: 0.6;
    transition: all 0.25s ease;
}

/* 紙飛行機アイコン */
.cf7_btn_area .cf7_submit::after {
    content: "\f1d8";
    /* fa-paper-plane */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    /* Solid */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
    /* クリック邪魔しない */
}

/* hoverしても変えない */
.cf7_btn_area .cf7_submit:hover {
    opacity: 0.6;
}

/* =====================================
     利用規約にチェックが入ったら有効化
     :has() がキモ
  ===================================== */

.cf7_main_area:has(.cf7_accept_wrap input[type="checkbox"]:checked) .cf7_btn_area .cf7_submit {
    background: #00583b;
    /* グリーン */
    cursor: pointer;
    opacity: 1;
}

/* 有効時 hover */
.cf7_main_area:has(.cf7_accept_wrap input[type="checkbox"]:checked) .cf7_btn_area .cf7_submit:hover {
    opacity: 0.9;
}

/* =============================================
     Acceptance (利用規約同意)
     ※ 実出力HTMLの<p>構造に合わせて中央寄せ＆整列
  ============================================= */

.cf7_accept_wrap {
    width: 100%;
}

.cf7_accept_wrap>p {
    margin: 0;
    display: flex;
    justify-content: center;
    /* ★中央 */
    align-items: center;
    /* ★縦揃え */
    gap: 10px;
    /* ★間隔 */
    flex-wrap: wrap;
}

/* CF7のリストitem余白を潰す */
.cf7_accept_wrap .wpcf7-list-item {
    margin: 0;
}

/* リンク */
.cf7_accept_wrap a {
    color: #00583b;
    text-decoration: underline;
}

.cf7_accept_wrap a:hover {
    text-decoration: none;
}

/* チェックボックス（カスタム） */
.cf7_accept_wrap input[type="checkbox"] {
    margin: 0;
    /* 標準のズレを消す */
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #00583b;
    border-radius: 6px;
    background: #fff;
    position: relative;
    cursor: pointer;
    transform: translateY(3px);
    /* 微調整 */
}

.cf7_accept_wrap input[type="checkbox"]:checked {
    background: #00583b;
    border-color: #00583b;
}

.cf7_accept_wrap input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

/* =============================================
     CF7 error message (任意：見やすく)
  ============================================= */

.wpcf7-not-valid-tip {
    margin-top: 8px;
    font-size: 13px;
    color: #b00020;
}

.wpcf7-response-output {
    margin: 18px 0 0;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
}

/* =============================================
     Responsive
  ============================================= */

@media (max-width: 768px) {
    .cf7_item_wrap {
        flex-direction: column;
        gap: 10px;
    }

    .cf7_item_l,
    .cf7_item_r {
        width: 100%;
    }

    .cf7_item_r input[type="text"],
    .cf7_item_r input[type="tel"],
    .cf7_item_r input[type="email"],
    .cf7_item_r textarea {
        font-size: 15px;
    }
}


/* =============================================

    お知らせページ

============================================= */


/* 一覧全体 */
.news-list{
  margin-top: 20px;
}

/* 1件 */
.news-item{
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 20px 0;
}

.news-item a:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* クリック領域（横並び） */
.news-link{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  text-decoration: none;
  color: #333;
}

/* 日付 */
.news-date{
  flex: 0 0 120px;         /* 固定幅 */
  font-size: 13px;
  color: #6b5a4a;
  line-height: 1.2;
}

/* カテゴリ（news_category の 1つ目を表示する前提） */
.news-category{
  flex: 0 0 110px;        /* 固定幅 */
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background: #6f8263;
  padding: 8px 15px;
  border-radius: 999px;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  margin-right: 50px;
}

/* タイトル */
.news-title{
  flex: 1;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* hover */
.news-link:hover .news-title{
  text-decoration: underline;
  color: #6f8263;
}

/* 抜粋（今回の横並び表示では非推奨。残すなら使う） */
.news-excerpt{
  margin: 8px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.news-list i {
    margin-right: 20px;
}

/* スマホ：折り返し表示 */
@media (max-width: 768px) {
    .news-link {
        flex-wrap: nowrap;
        /* 折り返さない */
        align-items: center;
        gap: 8px;
    }

    .news-date {
        flex: 0 0 80px;
        font-size: 12px;
    }

    .news-category {
        flex: 0 0 80px;
        font-size: 11px;
        padding: 5px 10px;
    }

    .news-title {
        flex: 1;
        font-size: 13px;
        white-space: nowrap;
        /* 1行固定 */
        overflow: hidden;
        text-overflow: ellipsis;
        /* …表示 */
    }
}

/* =============================================
   NEWS CATEGORY COLORS
============================================= */

/* デフォルト（お知らせ・未分類） */
.news-category{
  background: #6f8263; /* グリーン */
}

/* 重要 */
.news-cat-important{
  background: #c0392b; /* 赤 */
}

/* 休業 */
.news-cat-holiday{
  background: #e67e22; /* オレンジ */
}

/* キャンペーン */
.news-cat-campaign{
  background: #27ae60; /* 明るめグリーン */
}

/* 未分類 */
.news-cat-uncategorized{
  background: #7f8c8d; /* グレー */
}

/* ---------------------------------------------
   single-news
--------------------------------------------- */

.news-single{
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* 日付（時計付き） */
.news-single-date{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b5a4a;
  line-height: 1.2;
}

.news-single-date i{
  font-size: 14px;
  color: #6f8263;
}

/* タイトル */
.news-single-title{
  margin: 10px 0 20px;
  font-size: 24px;
  line-height: 1.5;
  color: #333;
}

/* カテゴリ（タイトル下） */
.news-single-category{
  margin: 12px 0 40px;
}

/* 本文 */
.news-content{
  margin: 18px 0 60px;
  line-height: 1.9;
  color: #333;
}

/* 画像が大きすぎるの防止（念のため） */
.news-content img{
  max-width: 100%;
  height: auto;
}

/* 戻るリンク */
.news-back{
  margin-top: 26px;
  text-align: center;
}

.news-back-link{
  display: inline-block;
  color: #fff;
  background: #6f8263;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.news-back-link:hover{
  opacity: 0.9;
  text-decoration: none;
}

.news-back-link:visited {
    color: #fff;
}


/* スマホ調整 */
@media (max-width: 768px){
  .news-single{
    padding: 18px 16px;
  }

  .news-single-title{
    font-size: 20px;
  }
}