@CHARSET "utf-8";
/*
theme Name: Tadokoro Yusuke
Author: Plusers
Description: original theme
version: 2.0.0
License URI: https://sample.eternal-create.com/
*/

/* =============================================
   リセットCSS
   ============================================= */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* =============================================
   CSS変数（ネイビー×ゴールド）
   ============================================= */
:root {
    --navy: #0B1628;
    --navy-light: #132038;
    --navy-dark: #070F1C;
    --navy-card: #0F1A2E;
    --navy-section: #0A1424;
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A07C2A;
    --gray: #5A6B80;
    --gray-light: #8A9BB0;
    --gray-text: #B0BEC5;
    --white: #F0EDE6;
    --white-pure: #FFFFFF;
    --accent-red: #C0392B;
}
	
/* =============================================
   基本設定
   ============================================= */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Yu Gothic Medium', sans-serif;
    font-size: 16px;
    background: var(--navy);
    color: var(--white);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

li {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

a img {
    border: none;
}

a:hover img {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    -khtml-opacity: 0.70;
}

figure {
    display: block;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

figcaption {
    display: block;
    padding: 5px 0;
}

svg {
    height: auto;
    width: 100%;
}

p {
    font-size: 20px;
    line-height: 1.6em;
    margin: 6px 15px 20px 15px;
}
@media screen and (max-width: 760px) {
    p {
        font-size: 19px;
    }
}

/* =============================================
   レイアウト
   ============================================= */
.content {
    overflow: hidden;
    width: 100%;
}

div#container {
    font-size: 18px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    text-align: left;
}
@media screen and (max-width: 480px) {
    div#container {
        margin: 0 0 10px 0;
    }
}

div#content {
    padding: 0;
    margin: 0;
    min-height: 100vh;
}
@media screen and (max-width: 760px) {
    div#content {
        width: 100%;
        padding: 0;
    }
}

div#main {
    font-size: 22px;
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--navy);
    flex: 1 0 auto; /* これが重要：メインコンテンツを伸ばす */
}
@media screen and (max-width: 760px) {
    div#main {
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    div#main {
        font-size: 18px;
        width: 100%;
        line-height: 1.5em;
    }
}

article.post {
    display: block;
    margin: 0;
}
@media only screen and (max-width: 760px) {
    article.post {
        margin: 0;
    }
}
@media only screen and (max-width: 480px) {
    article.post {
        margin: 0;
    }
}









/* =============================================
   ヘッダー
   ============================================= */
#header {
    display: block;
    background-color: transparent;
    margin-bottom: 0;
    height: 100%;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 85px;
    z-index: 999;
    background-color: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, border-bottom 0.4s ease;
    border-bottom: 1px solid transparent;
}

/* ★ スクロール時にネイビー背景 */
.header.scrolled {
    background-color: rgba(11, 22, 40, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

/* ヘッダーテキスト（初期状態：白） */
.header_position {
    font-size: 11px;
    color: rgba(240, 237, 230, 0.6);
    font-weight: 400;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.header_name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    transition: color 0.3s ease;
}

/* ロゴのゴールドアクセント */
.header_name .logo-accent {
    color: var(--gold);
}

.title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.fixed {
    position: fixed;
    top: 0;
    padding: 0;
    width: 100%;
    z-index: 1000;
}


/* =============================================
   ヘッダーナビゲーション（PC）
   ============================================= */
@media only screen and (min-width: 960px) {
    .header {
        background-color: transparent;
    }

    /* ★ スクロール時はネイビー背景 */
    .header.scrolled {
        background-color: rgba(11, 22, 40, 0.95);
    }

    /* ヘッダーテキスト - 初期状態は白 */
    .header .header_name {
        color: var(--white);
    }

    .header_inner {
        width: 100%;
        padding: 3px 0;
        margin-left: auto;
        margin-right: auto;
    }

    .header .header_position {
        color: rgba(240, 237, 230, 0.6);
    }

    /* ★ スクロール時もロゴは白のまま（ネイビー背景なので） */
    .header.scrolled .header_name {
        color: var(--white);
    }

    .header.scrolled .header_position {
        color: rgba(240, 237, 230, 0.6);
    }

    /* ハンバーガーボタン - PC非表示 */
    .header .hamburger {
        display: none;
    }

    .header .black_bg {
        display: none;
    }

    .header .logo {
        position: absolute;
        top: 0;
        left: 0;
        padding: 0 30px;
    }

    .header_text {
        padding-top: 12px;
        padding-left: 5px;
    }

    .nav_list {
        text-align: right;
    }

    .nav_list ul {
        padding: 50px 0 0 0;
    }

    .nav_list li {
        display: inline-block;
        text-align: right;
        padding: 20px 16px 0 16px;
    }

    .nav_list li a {
        color: rgba(240, 237, 230, 0.7);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 2.5px;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    /* ナビリンクのホバーライン */
    .nav_item a {
        position: relative;
        display: inline-block;
    }

    .nav_item a::after {
        position: absolute;
        bottom: -4px;
        left: 0;
        content: '';
        width: 0;
        height: 1px;
        background-color: var(--gold);
        transition: width 0.3s ease;
    }

    .nav_item a:hover {
        color: var(--gold);
    }

    .nav_item a:hover::after {
        width: 100%;
    }

    /* スクロール時のナビ色（ネイビー背景なので白系のまま） */
    .header.scrolled .nav_list li a {
        color: rgba(240, 237, 230, 0.7);
    }

    .header.scrolled .nav_item a::after {
        background-color: var(--gold);
    }
}


/* =============================================
   お問い合わせボタン（ヘッダー）
   ============================================= */
.header_text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.title a {
    text-decoration: none;
}

/* お問い合わせボタン（PC） */
@media only screen and (min-width: 960px) {
    .nav_item_contact {
        margin: -20px 0 0 0;
        padding: 0;
        vertical-align: top;
    }

    .nav_item_contact a {
        background-color: var(--gold);
        color: var(--navy);
        padding: 20px 28px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        gap: 5px;
        transition: all 0.3s ease;
        height: 62px;
        font-weight: 700;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .nav_item_contact a:hover {
        background-color: var(--gold-light);
        box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
    }

    .nav_item_contact a::after {
        display: none;
    }

    .nav_item_contact a span {
        color: var(--navy);
    }
}

/* スマホ版ヘッダー */
@media screen and (max-width: 760px) {
    .header,
    .header.scrolled {
        width: 100%;
        height: 70px;
        min-height: 70px;
        overflow: visible;
    }

    .header_inner,
    .header.scrolled .header_inner {
        display: flex;
        align-items: center;
        height: 70px;
        min-height: 70px;
        padding: 0;
    }

    .header .logo,
    .header.scrolled .logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 0 0 0 15px;
        margin: 0;
        display: flex;
        align-items: center;
        height: 70px;
    }

    .header .header_text,
    .header.scrolled .header_text {
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .header_name,
    .header.scrolled .header_name {
        font-size: 20px;
        line-height: 1.3;
        margin: 0;
        padding: 0;
        white-space: nowrap;
        color: var(--white);
    }

    .header_position,
    .header.scrolled .header_position {
        font-size: 9px;
        line-height: 1.3;
        margin: 0;
        padding: 0;
        white-space: nowrap;
        color: rgba(240, 237, 230, 0.5);
    }
}


/* =============================================
   スマホナビゲーション
   ============================================= */
@media only screen and (max-width: 960px) {
    .header .nav {
        position: fixed;
        right: -320px;
        top: 0;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        padding-top: 120px;
        padding-bottom: 80px;
        background: var(--navy);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 200;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: -5px 0 40px rgba(0, 0, 0, 0.5);
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        border-left: 1px solid rgba(201, 168, 76, 0.15);
    }

    .nav-open .header .nav {
        right: 0;
    }

    /* ナビ内ロゴ表示 */
    .header .nav::before {
        content: 'KING SCORE';
        position: absolute;
        top: 40px;
        left: 30px;
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--gold);
        letter-spacing: 3px;
    }

    .header .nav::after {
        content: '大阪の経営者専門トレーニング';
        position: absolute;
        top: 72px;
        left: 30px;
        font-size: 10px;
        font-weight: normal;
        color: var(--gray);
        letter-spacing: 1px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
        width: calc(100% - 60px);
    }

    .header .nav_list {
        margin: 0;
        padding: 0;
        list-style: none;
        max-height: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 100px;
    }

    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .header .nav_item {
        text-align: left;
        padding: 0;
    }

    .header .nav_item a {
        display: block;
        padding: 18px 30px;
        text-decoration: none;
        color: rgba(240, 237, 230, 0.7);
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 2px;
        position: relative;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(201, 168, 76, 0.06);
        background: transparent;
    }

    .header .nav_item a::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 30px;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: all 0.3s ease;
    }

    .header .nav_item a:hover {
        color: var(--gold);
        background: rgba(201, 168, 76, 0.05);
    }

    .header .nav_item a:hover::after {
        width: 40px;
    }

    /* お問い合わせボタン（スマホ） */
    .header .nav_item_contact a {
        background: var(--gold);
        color: var(--navy);
        margin: 20px 15px;
        padding: 16px 10px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 700;
        width: calc(100% - 30px);
        box-sizing: border-box;
        border-bottom: none;
    }

    .header .nav_item_contact a:hover {
        background: var(--gold-light);
        color: var(--navy);
    }

    .header .nav_item_contact a::after {
        display: none;
    }

    .header .nav_item_contact a span {
        color: var(--navy);
    }

    /* SNS縦並び */
    .header .nav_sns_item {
        margin-top: 10px;
        padding: 0;
        border-top: 1px solid rgba(201, 168, 76, 0.08);
    }

    .header .nav_sns {
        display: flex;
        flex-direction: column;
        padding: 15px 0 100px 0;
    }

    .header .nav_sns a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 25px;
        text-decoration: none;
        color: var(--gray-light);
        font-size: 13px;
        font-weight: normal;
        transition: all 0.3s ease;
    }

    .header .nav_sns a:hover {
        color: var(--gold);
        background: rgba(201, 168, 76, 0.05);
    }

    .header .nav_sns a::after {
        display: none;
    }

    .header .nav_sns i {
        width: 20px;
        text-align: center;
        font-size: 16px;
        color: var(--gold);
    }

    /* ハンバーガーボタン */
    .header .hamburger {
        position: fixed;
        right: 15px;
        top: 10px;
        width: 50px;
        height: 50px;
        background: rgba(201, 168, 76, 0.12);
        border: 1px solid rgba(201, 168, 76, 0.3);
        border-radius: 4px;
        cursor: pointer;
        z-index: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .header .hamburger_border {
        position: relative;
        left: 0;
        width: 22px;
        height: 1px;
        background-color: var(--gold);
        transition: all 0.3s ease;
        margin: 3px 0;
    }

    .nav-open .header .hamburger_border {
        background-color: var(--gold);
    }

    .nav-open .header .hamburger_border_top {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-open .header .hamburger_border_center {
        opacity: 0;
    }

    .nav-open .header .hamburger_border_bottom {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* 背景オーバーレイ */
    .header .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
        background-color: #000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .nav-open .header .black_bg {
        opacity: 0.6;
        visibility: visible;
    }
}

/* PC版ではSNS非表示 */
@media only screen and (min-width: 961px) {
    .header .nav_sns_item {
        display: none;
    }
}


/* =============================================
   ヘッダーロゴの色分け（KING SCORE版）
   ============================================= */

/* デフォルト：常に白ロゴ（ネイビー系背景のため） */
.header .header_name {
    color: var(--white);
}

.header .header_name .logo-accent {
    color: var(--gold);
}

.header .header_position {
    color: rgba(240, 237, 230, 0.5);
}

/* ナビは白系（薄め） */
.header .nav_list li a {
    color: rgba(240, 237, 230, 0.7);
}

/* スクロール時もロゴ白のまま（背景がネイビーだから） */
.header.scrolled .header_name {
    color: var(--white);
}

.header.scrolled .header_position {
    color: rgba(240, 237, 230, 0.5);
}

/* スクロール時のナビ色もそのまま */
@media only screen and (min-width: 960px) {
    .header.scrolled .nav_list li a {
        color: rgba(240, 237, 230, 0.7);
    }

    .header.scrolled .nav_item a::after {
        background-color: var(--gold);
    }

    .header.scrolled .nav_list li a:hover {
        color: var(--gold);
    }
}

@media screen and (max-width: 760px) {
    .header .header_name {
        color: var(--white);
    }

    .header .header_position {
        color: rgba(240, 237, 230, 0.5);
    }

    .header.scrolled .header_name {
        color: var(--white);
    }

    .header.scrolled .header_position {
        color: rgba(240, 237, 230, 0.5);
    }
}


/* =============================================
   お問い合わせボタン：常にゴールド
   ============================================= */
.nav_item_contact a {
    color: var(--navy);
    transition: all 0.3s ease;
}

.nav_item_contact a .contact_icon {
    color: var(--navy);
}

.nav_item_contact a span {
    color: var(--navy);
}

.nav_item_contact a:hover {
    background-color: var(--gold-light);
}











/* =============================================
   フローティングSNSボタン（右下固定）
   ============================================= */
.sns-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(100, 149, 237, 0.85);
  padding: 50px 15px 20px 15px;
  border-radius: 30px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
}

.sns-float-chara {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 100px;  /* 親要素に幅を指定 */
}
.sns-float-chara img {
    width: 100%;
    max-width: none;  /* max-width: 100% を解除 */
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.sns-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sns-float-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}

.sns-float-item:hover {
  transform: scale(1.1);
}

.sns-float-item i {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #5a8fd8;
}

.sns-float-item span {
  font-size: 11px;
  margin-top: 5px;
  color: #fff;
}

/* 各SNSアイコンの色（ホバー時など使う場合） */
.sns-float-item.facebook i { color: #1877f2; }
.sns-float-item.x i { color: #000; }
.sns-float-item.instagram i { color: #e4405f; }
.sns-float-item.line i { color: #06c755; }

/* スマホで非表示 */
@media screen and (max-width: 760px) {
  .sns-float {
    display: none;
  }
}

/* =============================================
   スマホ用ページトップボタン
   ============================================= */
.pagetop-sp {
  display: none;
}

@media screen and (max-width: 760px) {
  .pagetop-sp {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
  }
  
  .pagetop-sp.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
    .pagetop-sp img {
        width: 80px;
        height: auto;
        filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.3));
    }
}






/* =============================================
   YouTube埋め込み（レスポンシブ）
   ============================================= */
.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.youtube iframe {
    width: 100%;
    height: 100%;
}



/* =============================================
   フッター
   ============================================= */
#footer {
    width: 100%;
    background-color: #fff;
    font-size: 0.8em;
    color: #000;
    padding: 0;
    margin: 0;
    flex-shrink: 0; /* フッターが縮まないように */
    margin-top: auto; /* 上部の余白を自動調整 */
}

.foot {
    background-color: #e60012;
    margin: 0;
    text-align: center;
    padding: 20px 0;
}

.foot a {
    color: white;
    text-decoration: none;
}

.foot p {
    text-align: center;
    padding: 10px 0;
    margin: 0;
    color: #fff;
    font-size: 1em;
}

p.foot {
    font-size: 13px;
    text-align: center;
    padding: 0 0 10px 0;
    margin: 0;
    color: #fff;
}

a.footer_01 {
    color: #fff;
    text-decoration: none;
}

/* フッターナビゲーション */
.f_navi {
    text-align: center;
    margin: 0;
    width: 100%;
}
@media screen and (max-width: 760px) {
    .f_navi {
        margin: 10px 0 0 0;
        overflow: hidden;
    }
}

.f_navi ul {
    margin: 0;
    padding: 2% 10% 1% 10%;
}
@media screen and (max-width: 1200px) {
    .f_navi ul {
        padding: 2% 2% 1% 2%;
    }
}
@media screen and (max-width: 760px) {
    .f_navi ul {
        padding: 5px 0 10px 0;
    }
}

.f_navi ul li {
    list-style: none;
    display: inline-block;
    width: 12%;
    min-width: 75px;
    margin: 10px 0;
    vertical-align: bottom;
}
@media screen and (max-width: 1200px) {
    .f_navi ul li {
        width: 18%;
    }
}
@media screen and (max-width: 760px) {
    .f_navi ul li {
        width: 100%;
        min-width: 35px;
        border-bottom: dashed 1px #e60012;
        padding: 10px;
        margin: 0;
    }
    .f_navi ul li:last-child {
        border-bottom: none;
    }
}

.f_navi ul li a {
    text-decoration: none;
    color: #000;
}

/* =============================================
   フッター上部のスタイル（青テーマ）
   ============================================= */
.footer-top {
    background: #f5f5f5;
    color: #333;
    padding: 60px 0 40px;
    margin-top: 0;
    position: relative;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

/* 左側：事務所名と連絡先 */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo h3 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-name {
    display: block;
    font-size: 28px;
    color: #0068b7;
}

.footer-ruby {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #666;
    letter-spacing: 2px;
    padding-bottom: 15px;
    border-bottom: none;
    position: relative;
}

.footer-ruby::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 280px;
    height: 2px;
    background-color: #0068b7;
}

.footer-office {
    font-size: 16px;
    color: #333;
    margin: 15px 0 0 0;
    padding-bottom: 0;
    border-bottom: none;
    display: inline-block;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    width: 20px;
    text-align: center;
    color: #0068b7;
}

/* ソーシャルアイコン */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 2px solid #0068b7;
    border-radius: 50%;
    color: #0068b7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #0068b7;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0, 104, 183, 0.3);
}

/* リンクリスト（見出しなし） */
.footer-links,
.footer-services {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a,
.footer-services li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links li a::before,
.footer-services li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #0068b7;
	top: -3px;
}

.footer-links li a:hover,
.footer-services li a:hover {
    color: #0068b7;
    padding-left: 20px;
}


/* 既存の青フッター */
.foot {
    background-color: #0068b7;
    margin: 0;
    text-align: center;
    padding: 20px 0;
}

.foot p {
    text-align: center;
    padding: 5px 0;
    margin: 0;
    color: #fff;
    font-size: 0.85em;
}

/* レスポンシブ対応 */
@media screen and (max-width: 960px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-left {
        align-items: center;
    }
    
    .footer-info {
        align-items: center;
    }
    
    .footer-center,
    .footer-right {
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }
    
    .footer-links,
    .footer-services {
        align-items: center;
    }
    
    .footer-links li a,
    .footer-services li {
        padding-left: 0;
    }
    
    .footer-links li a::before,
    .footer-services li::before {
    left: -15px;
	top: -3px;  
    }
}

@media screen and (max-width: 760px) {
	.footer-ruby::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 2px;
    background-color: #0066b7;
}
}	
@media screen and (max-width: 480px) {
    .footer-container {
        grid-template-columns: 100% !important;
    }
	
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-name {
        font-size: 24px;
    }
    
    .footer-info p {
        font-size: 13px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
	
    .footer-ruby::after {
        width: 100%;
    }
}

/* =============================================
   フッター SNSアイコン 小画面対応
   ============================================= */
@media screen and (max-width: 320px) {
    .footer-social {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }
}


/* フッター プライバシーポリシーリンク */
.footer-policy-link {
  margin-top: 9px;
}

.footer-policy-link a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.3s;
}

.footer-policy-link a:hover {
  text-decoration: underline;
}

/* フッター 制作クレジット */
.footer-credit {
  margin-top: 5px;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 11px;
  transition: opacity 0.3s;
}

.footer-credit a:hover {
  color: #fff;
  text-decoration: underline;
}

/* フッター SNSアイコン */
.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social-icon:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
}

/* フッター クレジット */
.footer-copy p {
    margin: 0;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 2px;
}

.footer-copy .footer-credit {
    margin-top: 8px;
}

.footer-copy .footer-credit a {
    color: rgba(138, 155, 176, 0.5);
    text-decoration: none;
    font-size: 9px;
    transition: color 0.3s;
}

.footer-copy .footer-credit a:hover {
    color: var(--gold);
}



/* =============================================
   お問い合わせページ
   ============================================= */

/* ヒーローセクション */
.contact-hero-section {
  background: #e4f3f9;
  padding: 80px 20px;
  text-align: center;
  margin-top: -85px;
  padding-top: 165px;
}

.contact-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-hero-label {
  font-size: 16px;
  color: #005BAC;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.contact-hero-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #005BAC;
}

.contact-hero-title {
  font-size: 42px;
  color: #333;
  font-weight: bold;
  margin: 20px 0 20px;
}

.contact-hero-message {
  font-size: 16px;
  color: #555;
  line-height: 2;
}

/* フォームセクション */
.contact-form-section {
  background: #fff;
  padding: 80px 20px;
}

.contact-form-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-box {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-note {
  text-align: right;
  font-size: 13px;
  color: #888;
  margin-bottom: 30px;
}

.contact-form-note .required {
  color: #e60012;
}

/* フォームグループ */
.contact-form-group {
  margin-bottom: 25px;
}

.contact-form-group label {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.contact-form-group .required {
  color: #e60012;
  font-size: 12px;
  margin-left: 5px;
}

/* 入力フィールド */
.contact-form-group input[type="text"],
.contact-form-group input[type="email"],
.contact-form-group input[type="tel"],
.contact-form-group textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fafafa;
  transition: border-color 0.3s, background 0.3s;
  box-sizing: border-box;
}

.contact-form-group input[type="text"]:focus,
.contact-form-group input[type="email"]:focus,
.contact-form-group input[type="tel"]:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #005BAC;
  background: #fff;
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 180px;
}

/* 送信ボタン */
.contact-form-submit {
  text-align: center;
  margin: 40px 0;
}

.contact-form-submit input[type="submit"] {
  background: #005BAC;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 18px 60px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.contact-form-submit input[type="submit"]:hover {
  background: #003d7a;
  transform: translateY(-2px);
}

/* Contact Form 7 のエラー・成功メッセージ */
.wpcf7-response-output {
  margin: 20px 0 0 !important;
  padding: 15px !important;
  border-radius: 5px !important;
  text-align: center;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
  border-color: #e60012 !important;
  background: #fff5f5 !important;
  color: #e60012 !important;
}

.wpcf7-form.sent .wpcf7-response-output {
  border-color: #28a745 !important;
  background: #f0fff4 !important;
  color: #28a745 !important;
}

.wpcf7-not-valid-tip {
  color: #e60012 !important;
  font-size: 13px !important;
  margin-top: 5px !important;
}

/* スピナー */
.wpcf7-spinner {
  display: block;
  margin: 15px auto 0;
}

/* =============================================
   レスポンシブ（スマホ）
   ============================================= */
@media screen and (max-width: 760px) {
  .contact-hero-section {
    padding: 60px 20px;
    margin-top: -70px;
    padding-top: 130px;
  }
  
  .contact-hero-title {
    font-size: 32px;
  }
  
  .contact-hero-message {
    font-size: 14px;
  }
  
  .contact-form-section {
    padding: 50px 15px;
  }
  
  .contact-form-box {
    padding: 30px 20px;
  }
  
  .contact-form-group input[type="text"],
  .contact-form-group input[type="email"],
  .contact-form-group input[type="tel"],
  .contact-form-group textarea {
    font-size: 16px; /* iOS ズーム防止 */
    padding: 12px;
  }
  
  .contact-form-submit input[type="submit"] {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }
}





/* =============================================
   サンクスページ
   ============================================= */
.thanks-section {
  background: #e4f3f9;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  margin-top: -85px;
  padding-top: 165px;
}

.thanks-inner {
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 60px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.thanks-icon {
  margin-bottom: 25px;
}

.thanks-icon i {
  font-size: 80px;
  color: #28a745;
}

.thanks-title {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  margin-bottom: 25px;
}

.thanks-message {
  font-size: 16px;
  color: #555;
  line-height: 2;
  margin-bottom: 40px;
}

.thanks-button {
  display: inline-block;
  background: #005BAC;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.thanks-button:hover {
  background: #003d7a;
  transform: translateY(-2px);
}

/* レスポンシブ */
@media screen and (max-width: 760px) {
  .thanks-section {
    margin-top: -70px;
    padding-top: 130px;
    padding-bottom: 60px;
  }
  
  .thanks-inner {
    padding: 40px 25px;
  }
  
  .thanks-icon i {
    font-size: 60px;
  }
  
  .thanks-title {
    font-size: 26px;
  }
  
  .thanks-message {
    font-size: 14px;
  }
  
  .thanks-button {
    width: 100%;
    padding: 14px;
  }
}










/* =============================================
   ニュース一覧ページ
   ============================================= */
.news-archive {
    padding: 120px 0 80px;
    background-color: #fff;
    min-height: 60vh;
}

.news-archive-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.news-archive-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-archive-header .news-subtitle {
    font-size: 16px;
    color: #0066cc;
    margin: 0 0 10px 0;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.news-archive-header .news-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #0066cc;
}

.news-archive-title {
    font-size: 32px;
    font-weight: 900;
    color: #333;
    margin: 15px 0 0;
}

.news-archive-list {
    border-top: 1px solid #e0e0e0;
}

.news-archive-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid #e0e0e0;
}

.news-archive-item:hover {
    background-color: #f8f8f8;
}

.news-archive-date {
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
}

.news-archive-item-title {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
}

/* ページネーション */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #0066cc;
    color: #fff;
}

.no-news {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* レスポンシブ */
@media screen and (max-width: 760px) {
    .news-archive {
        padding: 100px 0 60px;
    }
    
    .news-archive-inner {
        padding: 0 20px;
    }
    
    .news-archive-title {
        font-size: 26px;
    }
    
    .news-archive-item {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px 10px;
    }
    
    .news-archive-item-title {
        width: 100%;
        font-size: 14px;
    }
}

/* =============================================
   ニュース一覧ページ - カテゴリと矢印のスタイル
   ============================================= */

/* 矢印を青に */
.news-archive-item .news-arrow {
    flex-shrink: 0;
    font-size: 18px;
    color: #0066cc;
}

.news-archive-item .news-arrow i {
    transition: transform 0.3s ease;
}

.news-archive-item:hover .news-arrow i {
    transform: translateX(5px);
}

/* カテゴリラベル共通 */
.news-archive-item .news-category {
    display: inline-block;
    padding: 6px 6px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    border-radius: 0;
    flex-shrink: 0;
    min-width: 50px;
    text-align: center;
}

/* カテゴリ別の色分け */
.news-category.cat-activity {
    background-color: #e60012; /* 活動報告：赤 */
}

.news-category.cat-blog {
    background-color: #0066cc; /* ブログ：青 */
}

.news-category.cat-news {
    background-color: #00aa00; /* お知らせ：緑 */
}

/* デフォルト色（上記以外のカテゴリ） */
.news-category {
    background-color: #666;
}




/* =============================================
   カテゴリページ
   ============================================= */

/* ヒーローセクション */
.category-hero-section {
    background: var(--navy);
    padding: 80px 20px;
    text-align: center;
    margin-top: -85px;
    padding-top: 165px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.category-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}
.category-hero-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 6px;
    font-weight: 500;
    display: block;
    margin-bottom: 16px;
}
.category-hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    color: var(--white);
    font-weight: 500;
    margin: 0 0 16px;
    letter-spacing: 4px;
}
.category-hero-message {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 2;
    margin: 0;
}

/* 投稿一覧セクション */
.category-posts-section {
    background: #f8f7f5;
    padding: 80px 20px;
}
.category-posts-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* カードグリッド */
.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* カード */
.category-post-card {
    background: #fff;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.category-post-card:hover {
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.category-post-link {
    text-decoration: none;
    display: block;
}

/* サムネイル */
.category-post-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy-light);
}
.category-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.category-post-card:hover .category-post-thumbnail img {
    transform: scale(1.05);
}
.category-post-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-card);
}
.category-post-no-image i {
    font-size: 32px;
    color: rgba(201,168,76,0.3);
}

/* コンテンツ */
.category-post-content {
    padding: 20px;
}
.category-post-date {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.category-post-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 10px 0 8px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-post-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-post-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 12px;
}
.category-post-card:hover .category-post-more i {
    transform: translateX(3px);
}
.category-post-more i {
    transition: transform 0.3s;
}

/* ページネーション */
.category-pagination {
    margin-top: 60px;
    text-align: center;
}
.category-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.category-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}
.category-pagination .page-numbers:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.category-pagination .page-numbers.current {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}
.category-pagination .prev,
.category-pagination .next {
    background: transparent;
    border: 1px solid #ddd;
    color: #333;
}

/* 投稿なし */
.category-no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 14px;
}

/* レスポンシブ */
@media screen and (max-width: 960px) {
    .category-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media screen and (max-width: 760px) {
    .category-hero-section {
        padding: 60px 20px;
        margin-top: -85px;
        padding-top: 140px;
    }
    .category-hero-title {
        font-size: 24px;
    }
    .category-posts-section {
        padding: 50px 16px;
    }
    .category-posts-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .category-pagination {
        margin-top: 40px;
    }
}





/* =============================================
   個別記事ページ
   ============================================= */
.single-content {
    background: #fff;
    padding: 60px 20px 80px;
    margin-top: -85px;
    padding-top: 180px;
}
.single-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* メタ情報 */
.single-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.single-category {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border: 1px solid var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s;
}
.single-category:hover {
    background: var(--gold);
    color: var(--navy);
}
.single-date {
    font-size: 13px;
    color: #999;
    letter-spacing: 1px;
}

/* タイトル */
.single-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(201,168,76,0.3);
}

/* 本文 */
.single-body {
    font-size: 16px;
    line-height: 2;
    color: #333;
}
.single-body p {
    margin-bottom: 1.8em;
    color: #333;
    font-size: 16px;
    margin-left: 0;
    margin-right: 0;
}
.single-body h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 50px 0 20px;
    padding-left: 16px;
    border-left: 3px solid var(--gold);
}
.single-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 40px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.single-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 30px 0 10px;
}
.single-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}
.single-body ul,
.single-body ol {
    margin: 20px 0;
    padding-left: 25px;
}
.single-body li {
    margin-bottom: 10px;
    color: #333;
}
.single-body blockquote {
    background: #fafafa;
    border-left: 3px solid var(--gold);
    padding: 20px 25px;
    margin: 30px 0;
    color: #666;
}
.single-body a {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* 前後ナビ */
.single-nav {
    background: #fafafa;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.single-nav-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.single-nav-prev,
.single-nav-next {
    flex: 1;
}
.single-nav-next {
    text-align: right;
}
.single-nav a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid rgba(201,168,76,0.3);
    transition: all 0.3s;
}
.single-nav a:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}
.single-nav-label {
    display: block;
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.single-nav-title {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #333;
}

/* 関連記事 */
.single-related {
    background: #fff;
    padding: 60px 20px 80px;
}
.single-related-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.single-related-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 4px;
}
.single-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.single-related-card {
    display: block;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s;
}
.single-related-card:hover {
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.single-related-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.single-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.single-related-card:hover .single-related-thumb img {
    transform: scale(1.05);
}
.single-related-noimage {
    width: 100%;
    height: 100%;
    background: var(--navy-light);
}
.single-related-info {
    padding: 16px;
}
.single-related-date {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
}
.single-related-card-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 8px;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.single-related-none {
    text-align: center;
    color: #999;
    grid-column: 1 / -1;
    font-size: 14px;
}

/* レスポンシブ */
@media screen and (max-width: 960px) {
    .single-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 760px) {
    .single-content {
        margin-top: 0;
        padding-top: 90px;
        padding-bottom: 60px;
    }
    .single-title {
        font-size: 22px;
    }
    .single-body {
        font-size: 15px;
    }
    .single-body h2 {
        font-size: 18px;
    }
    .single-body h3 {
        font-size: 16px;
    }
    .single-nav-inner {
        flex-direction: column;
        gap: 12px;
    }
    .single-nav-next {
        text-align: left;
    }
    .single-related {
        padding: 40px 20px 60px;
    }
    .single-related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}





/* =============================================
   404ページ
   ============================================= */
.error404-section {
    background: var(--navy);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    margin-top: -85px;
    padding-top: 165px;
}
.error404-inner {
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.15);
    max-width: 600px;
    width: 100%;
    padding: 60px 40px;
    text-align: center;
}
.error404-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(201,168,76,0.6);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: 8px;
}
.error404-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 3px;
}
.error404-message {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 2;
    margin-bottom: 40px;
}
.error404-button {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    padding: 14px 48px;
    border: 1px solid var(--gold);
    text-decoration: none;
    letter-spacing: 3px;
    transition: all 0.3s;
}
.error404-button:hover {
    background: var(--gold);
    color: var(--navy);
}

@media screen and (max-width: 760px) {
    .error404-section {
        margin-top: -70px;
        padding-top: 130px;
    }
    .error404-inner {
        padding: 40px 24px;
    }
    .error404-number {
        font-size: 80px;
    }
    .error404-title {
        font-size: 20px;
    }
    .error404-button {
        width: 100%;
        padding: 14px;
        text-align: center;
    }
}




/* =============================================
   ヒーローセクション（タイトルH1）
   ============================================= */
.hero-intro {
  padding: 80px 0 60px;
  background: #fff;
}

.hero-intro .section_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  text-align: center;
}

.hero-title span {
  display: block;
}

.hero-title .name {
  font-size: 48px;
  color: #005BAC;
  font-weight: bold;
}

.hero-title .catchcopy {
  font-size: 24px;
  color: #333;
  margin: 0;
}

.hero-title .position {
  font-size: 18px;
  color: #333;
  font-weight: normal;
  margin: 20px 0 0;
}

/* メッセージ */
.hero-message {
  text-align: center;
  font-size: 20px;
  color: #005BAC;
  margin: 30px 0 0;
  font-weight: 500;
}

/* CTAボタン */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background: #005BAC;
  color: #fff;
  border: 2px solid #005BAC;
}

.hero-buttons .btn-primary:hover {
  background: #fff;
  border-color: #005BAC;
  color: #005BAC;
}

.hero-buttons .btn-outline {
  background: #fff;
  color: #005BAC;
  border: 2px solid #005BAC;
}

.hero-buttons .btn-outline:hover {
  background: #005BAC;
  color: #fff;
}

/* モバイル対応 */
@media screen and (max-width: 760px) {
  .hero-title .name {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .hero-title .catchcopy {
    font-size: 18px;
  }
  
  .hero-title .position {
    font-size: 14px;
    margin: 10px 0 0;
  }
  
  .hero-message {
    font-size: 26px;
    font-weight: bold;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 80%;
    text-align: center;
  }
}








/* =============================================
   ヘッダー
   ============================================= */
#header {
    display: block;
    background-color: transparent;
    margin-bottom: 0;
    height: 100%;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 85px;
    z-index: 999;
    background-color: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, border-bottom 0.4s ease;
    border-bottom: 1px solid transparent;
}

/* ★ スクロール時にネイビー背景 */
.header.scrolled {
    background-color: rgba(11, 22, 40, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

/* ヘッダーテキスト（初期状態：白） */
.header_position {
    font-size: 11px;
    color: rgba(240, 237, 230, 0.6);
    font-weight: 400;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.header_name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0;
    transition: color 0.3s ease;
}

/* ロゴのゴールドアクセント */
.header_name .logo-accent {
    color: var(--gold);
}

.title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.fixed {
    position: fixed;
    top: 0;
    padding: 0;
    width: 100%;
    z-index: 1000;
}


/* =============================================
   ヘッダーナビゲーション（PC）
   ============================================= */
@media only screen and (min-width: 960px) {
    .header {
        background-color: transparent;
    }

    /* ★ スクロール時はネイビー背景 */
    .header.scrolled {
        background-color: rgba(11, 22, 40, 0.95);
    }

    /* ヘッダーテキスト - 初期状態は白 */
    .header .header_name {
        color: var(--white);
    }

    .header_inner {
        width: 100%;
        padding: 3px 0;
        margin-left: auto;
        margin-right: auto;
    }

    .header .header_position {
        color: rgba(240, 237, 230, 0.6);
    }

    /* ★ スクロール時もロゴは白のまま（ネイビー背景なので） */
    .header.scrolled .header_name {
        color: var(--white);
    }

    .header.scrolled .header_position {
        color: rgba(240, 237, 230, 0.6);
    }

    /* ハンバーガーボタン - PC非表示 */
    .header .hamburger {
        display: none;
    }

    .header .black_bg {
        display: none;
    }

    .header .logo {
        position: absolute;
        top: 0;
        left: 0;
        padding: 0 30px;
    }

    .header_text {
        padding-top: 12px;
        padding-left: 5px;
    }

    .nav_list {
        text-align: right;
    }

    .nav_list ul {
        padding: 50px 0 0 0;
    }

    .nav_list li {
        display: inline-block;
        text-align: right;
        padding: 20px 16px 0 16px;
    }

    .nav_list li a {
        color: rgba(240, 237, 230, 0.7);
        font-size: 13px;
        font-weight: 400;
        letter-spacing: 2.5px;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    /* ナビリンクのホバーライン */
    .nav_item a {
        position: relative;
        display: inline-block;
    }

    .nav_item a::after {
        position: absolute;
        bottom: -4px;
        left: 0;
        content: '';
        width: 0;
        height: 1px;
        background-color: var(--gold);
        transition: width 0.3s ease;
    }

    .nav_item a:hover {
        color: var(--gold);
    }

    .nav_item a:hover::after {
        width: 100%;
    }

    /* スクロール時のナビ色（ネイビー背景なので白系のまま） */
    .header.scrolled .nav_list li a {
        color: rgba(240, 237, 230, 0.7);
    }

    .header.scrolled .nav_item a::after {
        background-color: var(--gold);
    }
}


/* =============================================
   お問い合わせボタン（ヘッダー）
   ============================================= */
.header_text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.title a {
    text-decoration: none;
}

/* お問い合わせボタン（PC） */
@media only screen and (min-width: 960px) {
    .nav_item_contact {
        margin: -20px 0 0 0;
        padding: 0;
        vertical-align: top;
    }

    .nav_item_contact a {
        background-color: var(--gold);
        color: var(--navy);
        padding: 10px 28px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        gap: 5px;
        transition: all 0.3s ease;
        height: 62px;
        font-weight: 700;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .nav_item_contact a:hover {
        background-color: var(--gold-light);
        box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
    }

    .nav_item_contact a::after {
        display: none;
    }

    .nav_item_contact a span {
        color: var(--navy);
    }
}

/* スマホ版ヘッダー */
@media screen and (max-width: 760px) {
    .header,
    .header.scrolled {
        width: 100%;
        height: 70px;
        min-height: 70px;
        overflow: visible;
    }

    .header_inner,
    .header.scrolled .header_inner {
        display: flex;
        align-items: center;
        height: 70px;
        min-height: 70px;
        padding: 0;
    }

    .header .logo,
    .header.scrolled .logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        padding: 0 0 0 15px;
        margin: 0;
        display: flex;
        align-items: center;
        height: 70px;
    }

    .header .header_text,
    .header.scrolled .header_text {
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .header_name,
    .header.scrolled .header_name {
        font-size: 20px;
        line-height: 1.3;
        margin: 0;
        padding: 0;
        white-space: nowrap;
        color: var(--white);
    }

    .header_position,
    .header.scrolled .header_position {
        font-size: 9px;
        line-height: 1.3;
        margin: 0;
        padding: 0;
        white-space: nowrap;
        color: rgba(240, 237, 230, 0.5);
    }
}


/* =============================================
   スマホナビゲーション
   ============================================= */
@media only screen and (max-width: 960px) {
    .header .nav {
        position: fixed;
        right: -320px;
        top: 0;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        height: 100dvh;
        padding-top: 120px;
        padding-bottom: 80px;
        background: var(--navy);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 200;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: -5px 0 40px rgba(0, 0, 0, 0.5);
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        border-left: 1px solid rgba(201, 168, 76, 0.15);
    }

    .nav-open .header .nav {
        right: 0;
    }

    /* ナビ内ロゴ表示 */
    .header .nav::before {
        content: 'KING SCORE';
        position: absolute;
        top: 40px;
        left: 30px;
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--gold);
        letter-spacing: 3px;
    }

    .header .nav::after {
        content: '大阪の経営者専門トレーニング';
        position: absolute;
        top: 72px;
        left: 30px;
        font-size: 10px;
        font-weight: normal;
        color: var(--gray);
        letter-spacing: 1px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
        width: calc(100% - 60px);
    }

    .header .nav_list {
        margin: 0;
        padding: 0;
        list-style: none;
        max-height: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 100px;
    }

    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .header .nav_item {
        text-align: left;
        padding: 0;
    }

    .header .nav_item a {
        display: block;
        padding: 18px 30px;
        text-decoration: none;
        color: rgba(240, 237, 230, 0.7);
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 2px;
        position: relative;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(201, 168, 76, 0.06);
        background: transparent;
    }

    .header .nav_item a::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 30px;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: all 0.3s ease;
    }

    .header .nav_item a:hover {
        color: var(--gold);
        background: rgba(201, 168, 76, 0.05);
    }

    .header .nav_item a:hover::after {
        width: 40px;
    }

    /* お問い合わせボタン（スマホ） */
    .header .nav_item_contact a {
        background: var(--gold);
        color: var(--navy);
        margin: 20px 15px;
        padding: 16px 10px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 700;
        width: calc(100% - 30px);
        box-sizing: border-box;
        border-bottom: none;
    }

    .header .nav_item_contact a:hover {
        background: var(--gold-light);
        color: var(--navy);
    }

    .header .nav_item_contact a::after {
        display: none;
    }

    .header .nav_item_contact a span {
        color: var(--navy);
    }

    /* SNS縦並び */
    .header .nav_sns_item {
        margin-top: 10px;
        padding: 0;
        border-top: 1px solid rgba(201, 168, 76, 0.08);
    }

    .header .nav_sns {
        display: flex;
        flex-direction: column;
        padding: 15px 0 100px 0;
    }

    .header .nav_sns a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 25px;
        text-decoration: none;
        color: var(--gray-light);
        font-size: 13px;
        font-weight: normal;
        transition: all 0.3s ease;
    }

    .header .nav_sns a:hover {
        color: var(--gold);
        background: rgba(201, 168, 76, 0.05);
    }

    .header .nav_sns a::after {
        display: none;
    }

    .header .nav_sns i {
        width: 20px;
        text-align: center;
        font-size: 16px;
        color: var(--gold);
    }

    /* ハンバーガーボタン */
    .header .hamburger {
        position: fixed;
        right: 15px;
        top: 10px;
        width: 50px;
        height: 50px;
        background: rgba(201, 168, 76, 0.12);
        border: 1px solid rgba(201, 168, 76, 0.3);
        border-radius: 4px;
        cursor: pointer;
        z-index: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .header .hamburger_border {
        position: relative;
        left: 0;
        width: 22px;
        height: 1px;
        background-color: var(--gold);
        transition: all 0.3s ease;
        margin: 3px 0;
    }

    .nav-open .header .hamburger_border {
        background-color: var(--gold);
    }

    .nav-open .header .hamburger_border_top {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-open .header .hamburger_border_center {
        opacity: 0;
    }

    .nav-open .header .hamburger_border_bottom {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* 背景オーバーレイ */
    .header .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
        background-color: #000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .nav-open .header .black_bg {
        opacity: 0.6;
        visibility: visible;
    }
}

/* PC版ではSNS非表示 */
@media only screen and (min-width: 961px) {
    .header .nav_sns_item {
        display: none;
    }
}


/* =============================================
   ヘッダーロゴの色分け（KING SCORE版）
   ============================================= */

/* デフォルト：常に白ロゴ（ネイビー系背景のため） */
.header .header_name {
    color: var(--white);
}

.header .header_name .logo-accent {
    color: var(--gold);
}

.header .header_position {
    color: rgba(240, 237, 230, 0.5);
}

/* ナビは白系（薄め） */
.header .nav_list li a {
    color: rgba(240, 237, 230, 0.7);
}

/* スクロール時もロゴ白のまま（背景がネイビーだから） */
.header.scrolled .header_name {
    color: var(--white);
}

.header.scrolled .header_position {
    color: rgba(240, 237, 230, 0.5);
}

/* スクロール時のナビ色もそのまま */
@media only screen and (min-width: 960px) {
    .header.scrolled .nav_list li a {
        color: rgba(240, 237, 230, 0.7);
    }

    .header.scrolled .nav_item a::after {
        background-color: var(--gold);
    }

    .header.scrolled .nav_list li a:hover {
        color: var(--gold);
    }
}

@media screen and (max-width: 760px) {
    .header .header_name {
        color: var(--white);
    }

    .header .header_position {
        color: rgba(240, 237, 230, 0.5);
    }

    .header.scrolled .header_name {
        color: var(--white);
    }

    .header.scrolled .header_position {
        color: rgba(240, 237, 230, 0.5);
    }
}


/* =============================================
   お問い合わせボタン：常にゴールド
   ============================================= */
.nav_item_contact a {
    color: var(--navy);
    transition: all 0.3s ease;
}

.nav_item_contact a .contact_icon {
    color: var(--navy);
}

.nav_item_contact a span {
    color: var(--navy);
}

.nav_item_contact a:hover {
    background-color: var(--gold-light);
}










/* =============================================
   ヒーローセクション（田所サイト構造準拠）
   ============================================= */
.hero_section {
    position: relative;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
    background: var(--navy-dark);
}

/* 背景＋人物 */
.hero_bg_image {
    display: block;
    width: 100%;
    z-index: 1;
}

.hero_bg_image img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    animation: fadeIn 1s ease-out 0s forwards;
}

/* テキスト全体のラッパー（横書き・左寄せ） */
.hero_catch_wrapper {
    position: absolute;
    top: 38%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 620px;
}

/* 肩書き */
.hero_shoulder {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gold);
    border-left: 2px solid var(--gold);
    padding-left: 16px;
    margin: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.3s forwards;
}

/* メインキャッチ */
.hero_main_text {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
}

.hero_main_text .text-gold {
    color: #D4A23A;
    text-shadow: 0 0 30px rgba(212, 162, 58, 0.3), 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero_main_text .text-white {
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* サブコピー */
.hero_sub_text {
    font-size: 15px;
    font-weight: 300;
    color: rgba(240, 237, 230, 0.85);
    letter-spacing: 1.5px;
    line-height: 2.2;
    margin: 8px 0 0 0;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeIn 0.8s ease 0.7s forwards;
}

/* CTAボタン */
.hero_cta {
    position: absolute;
    z-index: 3;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.9s forwards;
}

/* PC：テキスト横付近 */
@media screen and (min-width: 761px) {
    .hero_cta {
        display: none;
    }
}

/* ゴールド枠線ボタン */
.btn-gold {
    display: inline-block;
    padding: 18px 48px;
    background: transparent;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.4s;
    border: 1px solid var(--gold);
    cursor: pointer;
}

.btn-gold:hover {
    background: rgba(201, 168, 76, 0.12);
    box-shadow: 0 0 24px rgba(201, 168, 76, 0.2), inset 0 0 12px rgba(201, 168, 76, 0.06);
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* フェードインアニメーション */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* --- タブレット 961〜1280px --- */
@media screen and (max-width: 1280px) {
    .hero_catch_wrapper {
        left: 6%;
    }

    .hero_main_text {
        font-size: clamp(2rem, 4.5vw, 3.2rem);
    }
}

/* --- タブレット 761〜960px --- */
@media screen and (max-width: 960px) {
    .hero_catch_wrapper {
        top: 23%;
        left: 5%;
        max-width: 55%;
    }
    .hero_shoulder {
        font-size: 14px;
    }
    .hero_main_text {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero_sub_text {
        font-size: 15px;
        line-height: 2;
    }
}

/* --- スマホ 760px以下 --- */
@media screen and (max-width: 760px) {
    .hero_catch_wrapper {
        left: 5%;
        top: 8%;
        transform: translateY(0);
        max-width: 90%;
        gap: 10px;
    }

    .hero_cta {
        display: none;
    }

    .hero_shoulder {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero_main_text {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
    }

    .hero_sub_text {
        font-size: 15px;
        letter-spacing: 1px;
        line-height: 1.9;
    }

    .btn-gold {
        padding: 14px 28px;
        font-size: 11px;
        letter-spacing: 2px;
    }
}

/* --- 小さいスマホ 480px以下 --- */
@media screen and (max-width: 480px) {
    .hero_catch_wrapper {
        left: 5%;
        top: 10%;
        transform: translateY(0);
        max-width: 95%;
        gap: 10px;
    }
	 .hero_shoulder {
        font-size: 13px;
        letter-spacing: 2px;
    }
    .hero_main_text {
        font-size: clamp(1.8rem, 9vw, 2.8rem);
    }
    .hero_sub_text {
        display: block;
        font-size: 14px;
        line-height: 1.8;
    }
    .btn-gold {
        padding: 12px 24px;
        font-size: 10px;
    }
}

/* =============================================
   スクロールインジケーター
   ============================================= */
.scroll_indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll_indicator_text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 6px;
    color: rgba(240, 237, 230, 0.35);
    text-transform: uppercase;
}

.scroll_indicator_line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@media screen and (max-width: 760px) {
    .scroll_indicator {
        display: none;
    }

    .scroll_indicator_line {
        height: 30px;
    }
}






/* =============================================
   共通セクション
   ============================================= */
.section {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-full {
    padding: 120px 40px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.section-label::before,
.section-label::after {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1.6;
}

.section-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 24px auto 0;
}

.alt-bg {
    background: var(--navy-section);
    border-top: 1px solid rgba(201, 168, 76, 0.06);
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}


/* =============================================
   PROBLEM - 経営者の4大リスク
   ============================================= */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.problem-card {
    background: var(--navy-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.problem-num {
    position: absolute;
    top: -10px;
    right: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(201,168,76,0.2);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(19, 32, 56, 0.8);
    opacity: 1;
}

.problem-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-2px);
}

.problem-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.problem-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.problem-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--white);
}

.problem-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--gray-light);
}

.problem-closing {
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 2;
    color: var(--gold-light);
}


/* =============================================
   SOLUTION - 選ばれる4つの強み
   ============================================= */
#solution {
    max-width: none;
    padding: 120px 40px;
    background: url('https://sample.eternal-create.com/wp-content/uploads/black-bg.png') center center / cover no-repeat;
    position: relative;
}

#solution::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 22, 40, 0.45);
}

#solution > * {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--navy-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    padding: 40px 32px;
    transition: all 0.3s;
}

.solution-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
}

.solution-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(201,168,76,0.8);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 12px;
}

.solution-card-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--white);
}

.solution-card-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 2.2;
    color: var(--gray-text);
}

@media (max-width: 760px) {
	#solution {
    padding: 120px 10px;
}
}

/* =============================================
   EVIDENCE - 実績
   ============================================= */
#evidence {
    background: url('https://sample.eternal-create.com/wp-content/uploads/evidence-bg-01.png') center center / cover no-repeat;
    position: relative;
}
#evidence::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}
#evidence > * {
    position: relative;
    z-index: 1;
}
.evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.evidence-card {
    background: var(--navy-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    overflow: hidden;
}
.evidence-img {
    width: 100%;
    background: var(--navy-light);
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    overflow: hidden;
}
.evidence-img img {
    width: 100%;
    height: auto;
    display: block;
}
.evidence-info {
    padding: 28px 32px;
}
.evidence-case {
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* ── プロフィール行 ── */
.evidence-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: rgba(201, 168, 76, 0.05);
    border-left: 2px solid var(--gold);
}
.evidence-profile-age {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    white-space: nowrap;
}
.evidence-profile-age span {
    font-size: 14px;
    color: var(--gold);
    font-weight: 400;
}
.evidence-profile-divider {
    width: 1px;
    height: 36px;
    background: rgba(201, 168, 76, 0.3);
}
.evidence-profile-gender {
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
}
.evidence-profile-job {
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 2px;
}

/* ── KPI ── */
.evidence-kpi-row {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}
.evidence-kpi {
    flex: 1;
    background: rgba(201, 168, 76, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 10px 8px;
    text-align: center;
}
.evidence-kpi-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
}
.evidence-kpi-unit {
    font-size: 18px;
    color: var(--gold);
}
.evidence-kpi-lbl {
    font-size: 13px;
    color: var(--gray-light);
    margin-top: 6px;
    letter-spacing: 1px;
}

/* ── 数値テーブル ── */
.evidence-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.evidence-table tr {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.evidence-table tr:last-child {
    border-bottom: none;
}
.evidence-table td {
    padding: 16px 8px;
    font-size: 16px;
    color: var(--gray-light);
    vertical-align: middle;
	text-align: center;
}
.evidence-table-label {
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    width: 90px;
    background: rgba(201, 168, 76, 0.12);
    padding-left: 12px;
    border-left: 2px solid var(--gold);
    font-size: 15px;
}
.evidence-table-arrow {
    color: var(--gold);
    text-align: center;
    width: 30px;
    font-size: 22px;
}
.evidence-table td.evidence-table-after {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--white-pure);
    font-size: 26px;
}
.evidence-table-diff {
    color: var(--white-pure);
    font-size: 12px;
    font-weight: 700;
    padding-left: 8px;
}
.evidence-table-diff span {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    min-width: 80px;
    text-align: center;
}

@media (max-width: 768px) {
    .evidence-grid {
        grid-template-columns: 1fr;
    }
    .evidence-info {
        padding: 20px 16px;
    }
    .evidence-table {
        width: 100%;
        table-layout: auto;
        font-size: 13px;
    }
    .evidence-table td {
        padding: 10px 6px;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
        font-size: 13px;
    }
    .evidence-table-label {
        width: auto;
        font-size: 12px;
        padding-left: 8px;
    }
    .evidence-table-arrow {
        font-size: 16px;
        width: auto;
        padding: 0 4px;
    }
    .evidence-table td.evidence-table-after {
        font-size: 18px;
    }
    .evidence-table-diff span {
        font-size: 11px;
        min-width: 60px;
        padding: 3px 6px;
    }
    .evidence-kpi-num {
        font-size: 32px;
    }
    .evidence-kpi-unit {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .evidence-table-wrap {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .evidence-table {
        min-width: 320px;
        width: 100%;
    }
}

/* =============================================
   PRICE - 料金プラン
   ============================================= */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.price-card {
    background: var(--navy-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.price-card.recommended {
    border-color: var(--gold);
    transform: scale(1.03);
    box-shadow: 0 12px 48px rgba(201, 168, 76, 0.1);
    position: relative;
}

.price-recommended-badge {
    background: var(--gold);
    color: var(--navy);
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 8px;
    text-transform: uppercase;
}

.price-card-header {
    padding: 32px 24px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.price-plan-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 4px;
    color: var(--gray-light);
    display: block;
}
.price-plan-label {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    margin-top: 6px;
}

.price-plan-sub {
    font-size: 13px;
    color: var(--gray-light);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
}

.price-amount small {
    font-size: 13px;
    color: var(--gray-light);
    font-weight: 400;
}

.price-period {
    font-size: 14px;
    color: var(--gray-light);
    letter-spacing: 1px;
    margin-top: 4px;
}

.price-card-body {
    padding: 24px;
}

.price-includes {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-includes li {
    font-size: 14px;
    color: var(--gray-light);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    letter-spacing: 0.5px;
    line-height: 1.7;
}

.price-includes li::before {
    content: '✓';
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.price-card-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.06);
    text-align: center;
}

/* 料金カード内CTAボタン */
.btn-gold-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.btn-gold-cta:hover {
    background: var(--gold-light);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}


/* =============================================
   BENEFIT - 会員限定特典
   ============================================= */
.benefit-lead {
    text-align: center;
    font-size: 16px;
    color: var(--gray-text);
    letter-spacing: 1px;
    margin-bottom: 48px;
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--navy-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
}
.benefit-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0.8;
}
.benefit-num::before,
.benefit-num::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.benefit-card-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--white);
}

.benefit-partner {
    font-size: 13px;
    color: var(--gold-dark);
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.benefit-card-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 2;
    color: var(--gray-text);
}

.benefit-link {
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: 12px;
    display: inline-block;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}
.benefit-link:hover {
    border-color: var(--gold);
}


/* =============================================
   PROFILE - トレーナー紹介
   ============================================= */
.profile-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.profile-image {
    flex: 0 0 360px;
    height: 460px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.profile-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 6px;
    color: var(--white);
}

.profile-title {
    font-size: 14px;
    color: var(--gray-light);
    letter-spacing: 2px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.profile-history {
    margin-bottom: 32px;
}

.profile-history-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.profile-history-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    margin-top: 19px;
    flex-shrink: 0;
}

.profile-history-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    color: var(--gray-text);
}

.profile-mission {
    background: rgba(201, 168, 76, 0.04);
    border-left: 2px solid var(--gold);
    padding: 24px 28px;
}

.profile-mission-label {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.profile-mission p {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.2;
    color: var(--white);
    letter-spacing: 1px;
}


/* =============================================
   FAQ - よくある質問
   ============================================= */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.35);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: opacity 0.3s;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-pure);
    letter-spacing: 1px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    font-weight: 300;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 0 24px;
    font-size: 15px;
    font-weight: 300;
    line-height: 2.2;
    color: var(--gray-text);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    border-color: var(--gold);
}

.faq-category {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    padding: 32px 0 12px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    margin-bottom: 0;
}
.faq-category:first-child {
    padding-top: 0;
}


/* =============================================
   CTA - クロージング
   ============================================= */
.cta-section {
    padding: 100px 40px;
    text-align: center;
    position: relative;
    background: var(--navy-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-label {
    margin-bottom: 20px;
    display: block;
}

.cta-message {
    font-family: 'Noto Serif JP', serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 2.4;
    color: var(--gray-text);
    letter-spacing: 1px;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* LINE ボタン */
.cta-line-wrap {
    margin-bottom: 40px;
    text-align: center;
}
.btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #06C755;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 18px 40px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: 240px;
}
.btn-line svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}
.btn-line:hover {
    background: #05b34c;
    transform: translateY(-2px);
}
.cta-line-note {
    font-size: 13px;
    color: var(--gray-light);
    margin-top: 12px;
    letter-spacing: 0.5px;
}

/* 区切り線 */
.cta-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.cta-divider::before,
.cta-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201,168,76,0.2);
}
.cta-divider span {
    font-size: 12px;
    color: var(--gray-light);
    letter-spacing: 2px;
    white-space: nowrap;
}

[dir="ltr"] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 16px !important;
        overflow-x: hidden;
    }
    .cta-inner {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    .cta-message {
        font-size: 14px;
        line-height: 2;
        max-width: 100%;
    }
    .btn-line {
        width: 100%;
        min-width: unset;
        white-space: normal;
        padding: 16px 20px;
        box-sizing: border-box;
    }
    .cta-line-wrap {
        width: 100%;
        box-sizing: border-box;
    }
    .cta-divider {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    .cf7-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .wpcf7,
    .cf7-field,
    .cf7-field p,
    .cf7-field input,
    .cf7-field select,
    .cf7-field textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}


@media (max-width: 768px) {
    .cf7-form {
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .wpcf7 {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .wpcf7-form {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .wpcf7-form-control-wrap {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}


/* =============================================
   CONTACT FORM 7
   ============================================= */
.cf7-form {
    max-width: 640px;
    margin: 0 auto;
}
.cf7-field {
    margin-bottom: 24px;
}
.cf7-field label {
    display: block;
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}

.cf7-field br {
    display: none;
}

.cf7-required {
    color: #c0392b;
    margin-left: 4px;
}
.cf7-form input[type="text"],
.cf7-form input[type="tel"],
.cf7-form input[type="email"],
.cf7-form select,
.cf7-form textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--white);
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}
.cf7-form input[type="text"]:focus,
.cf7-form input[type="tel"]:focus,
.cf7-form input[type="email"]:focus,
.cf7-form select:focus,
.cf7-form textarea:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.04);
}
.cf7-form input::placeholder,
.cf7-form textarea::placeholder {
    color: rgba(255,255,255,0.25);
    font-size: 14px;
}
.cf7-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
    color: var(--white);
}
.cf7-form select option {
    background: var(--navy-card);
    color: var(--white);
}
.cf7-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.8;
}
.cf7-submit {
    margin-top: 32px;
    text-align: center;
}
.cf7-form input[type="submit"] {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 18px 64px;
    border: none;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s;
    width: 100%;
}
.cf7-form input[type="submit"]:hover {
    background: var(--gold-light);
}

/* CF7 バリデーションメッセージ */
.wpcf7-not-valid-tip {
    color: #c0392b;
    font-size: 12px;
    margin-top: 6px;
    display: block;
}
.wpcf7-response-output {
    margin-top: 24px;
    padding: 16px 20px;
    font-size: 14px;
    border: none !important;
    text-align: center;
}
.wpcf7-mail-sent-ok {
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3) !important;
}
.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked {
    background: rgba(192,57,43,0.1);
    color: #c0392b;
    border: 1px solid rgba(192,57,43,0.3) !important;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .cf7-form input[type="submit"] {
        padding: 16px 32px;
        letter-spacing: 2px;
    }
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 48px 40px 32px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.footer-address {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
    line-height: 2;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 13px;
    color: var(--gray-light);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-copy {
    text-align: center;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 2px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* =============================================
   レスポンシブ（セクション共通）
   ============================================= */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .profile-content {
        flex-direction: column;
        align-items: center;
    }

    .profile-image {
        flex: none;
        width: 100%;
        max-width: 360px;
    }

    .price-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .price-card.recommended {
        transform: none;
    }
}

@media (max-width: 768px) {
    .section,
    .section-full {
        padding: 72px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .evidence-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .cta-section {
        padding: 60px 0 !important;
        overflow-x: hidden;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .problem-closing {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}







/* =============================================
   BENEFIT 詳細ページ
   ============================================= */
.benefit-page-hero {
    background: var(--navy);
    padding: 100px 40px 80px;
    text-align: center;
}
.benefit-page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}
.benefit-page-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin: 16px 0 24px;
    line-height: 1.7;
}
.benefit-page-desc {
    font-size: 15px;
    color: var(--white);
    line-height: 2.2;
    margin-top: 24px;
    opacity: 0.85;
}
.benefit-page-section {
    background: var(--navy);
    padding: 80px 40px;
    border-top: 1px solid rgba(201,168,76,0.08);
}
.benefit-page-section.alt-bg {
    background: var(--navy-light);
}
.benefit-page-inner {
    max-width: 900px;
    margin: 0 auto;
}
.benefit-page-num {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
}
.benefit-page-section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.benefit-page-partner {
    font-size: 13px;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    opacity: 0.7;
}
.benefit-page-catch {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}
.benefit-page-text {
    font-size: 15px;
    color: var(--white);
    line-height: 2;
    margin-bottom: 40px;
    opacity: 0.85;
}
.benefit-page-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.benefit-page-point {
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 24px 20px;
}
.benefit-page-point-num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0.7;
}
.benefit-page-point h3 {
    font-size: 15px;
    color: var(--gold-light);
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.benefit-page-point p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.9;
    opacity: 0.85;
}
.benefit-page-target {
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.12);
    border-left: 3px solid var(--gold);
    padding: 24px 28px;
}
.benefit-page-target-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 14px;
    font-family: 'Courier New', monospace;
}
.benefit-page-target ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.benefit-page-target li {
    font-size: 14px;
    color: var(--white);
    padding: 8px 0 8px 20px;
    border-bottom: 1px solid rgba(201,168,76,0.06);
    position: relative;
    line-height: 1.7;
    opacity: 0.85;
}
.benefit-page-target li:last-child {
    border-bottom: none;
}
.benefit-page-target li::before {
    content: '✓';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 12px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .benefit-page-title { font-size: 26px; }
    .benefit-page-catch { font-size: 18px; }
    .benefit-page-points { grid-template-columns: 1fr; }
    .benefit-page-hero,
    .benefit-page-section { padding: 60px 20px; }
}


/* 借り上げ社宅 仕組み説明 */
.benefit-page-mechanism {
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 28px;
    margin-bottom: 40px;
}
.benefit-page-mechanism-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--gold);
    font-family: 'Courier New', monospace;
    margin-bottom: 20px;
}
.benefit-page-mechanism-grid {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.benefit-page-mechanism-item {
    flex: 1;
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-light);
}
.benefit-page-mechanism-item.bad {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.benefit-page-mechanism-item.good {
    background: rgba(201,168,76,0.07);
    border: 1px solid rgba(201,168,76,0.2);
}
.benefit-page-mechanism-label {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.benefit-page-mechanism-item strong {
    color: var(--white);
}
.benefit-page-mechanism-arrow {
    font-size: 24px;
    color: var(--gold);
    flex-shrink: 0;
}
.benefit-page-mechanism-result {
    font-size: 15px;
    color: var(--gray-light);
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(201,168,76,0.1);
}
.benefit-page-mechanism-result strong {
    color: var(--gold-light);
    font-size: 18px;
}

/* 選ばれる理由 */
.benefit-page-reasons {
    margin-bottom: 40px;
}
.benefit-page-reasons-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.benefit-page-reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.benefit-page-reason {
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 20px;
}
.benefit-page-reason-icon {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
}
.benefit-page-reason h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
}
.benefit-page-reason p {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.8;
}

/* レスポンシブ追加 */
@media (max-width: 768px) {
    .benefit-page-mechanism-grid {
        flex-direction: column;
    }
    .benefit-page-mechanism-arrow {
        transform: rotate(90deg);
    }
    .benefit-page-reason-grid {
        grid-template-columns: 1fr;
    }
}


.benefit-page-inner--with-img {
    display: block;
    max-width: 900px;
}
.benefit-page-inner--with-img.reverse {
    display: block;
}
.benefit-page-inner--with-img.reverse .benefit-page-img {
    order: 0;
}
.benefit-page-inner--with-img.reverse .benefit-page-content {
    order: 0;
}
.benefit-page-img {
    position: static;
    margin-bottom: 48px;
}
.benefit-page-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(201,168,76,0.15);
}






/* =============================================
   FIRST STEP
   ============================================= */
.firststep-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}
.firststep-card {
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 40px 32px;
    text-align: center;
    position: relative;
}
.firststep-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 16px;
    margin-bottom: 24px;
}
.firststep-icon {
    color: var(--gold);
    margin-bottom: 16px;
}
.firststep-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold);
}
.firststep-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.firststep-desc {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.9;
    margin-bottom: 24px;
}
.firststep-price {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 28px;
    line-height: 1;
}
.firststep-price span {
    font-size: 13px;
    color: var(--gray-light);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    display: block;
    margin-top: 6px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .firststep-grid {
        grid-template-columns: 1fr;
    }
}




/* =============================================
   固定LINE CTA
   ============================================= */
/* PC：右下固定ボタン */
.fixed-line-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 82px;
    height: 82px;
    background: #06C755;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 4px 20px rgba(6,199,85,0.4);
    z-index: 9999;
    transition: all 0.3s;
}
.fixed-line-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(6,199,85,0.5);
}
.fixed-line-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* SP：下部固定バナー */
.fixed-sp-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    z-index: 9999;
    background: var(--navy-dark);
    border-top: 1px solid rgba(201,168,76,0.2);
    box-sizing: border-box;
    overflow: hidden;
    display: none;
    padding-bottom: env(safe-area-inset-bottom);
}
.fixed-sp-line {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #06C755;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
	padding: 10px 0;
    width: 50%;
    flex: 0 0 50%;
    white-space: normal;
    text-align: center;
    word-break: keep-all;
    box-sizing: border-box;
    min-width: 0;
}
.fixed-sp-line svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.fixed-sp-form {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 0;
    width: 50%;
    flex: 0 0 50%;
    white-space: normal;
    text-align: center;
    word-break: break-all;
overflow-wrap: break-word;
    box-sizing: border-box;
    min-width: 0;
}

/* PC：SPバナーを非表示・PCボタンを表示 */
@media (min-width: 769px) {
    .fixed-sp-banner {
        display: none !important;
    }
    .fixed-line-btn {
        display: flex;
    }
}

/* SP：PCボタンを非表示・SPバナーを表示 */
@media (max-width: 768px) {
    .fixed-line-btn {
        display: none !important;
    }
    .fixed-sp-banner {
        display: flex !important;
    }
    .footer {
        padding-bottom: calc(50px + env(safe-area-inset-bottom));
    }
}





/* =============================================
   reCAPTCHAのバッジを非表示にする
   ============================================= */
.grecaptcha-badge {
    visibility: hidden !important;
}

.recaptcha-notice {
    font-size: 11px;
    color: var(--gray);
    text-align: center;
    margin-top: 16px;
    line-height: 1.8;
}
.recaptcha-notice a {
    color: var(--gray-light);
    text-decoration: underline;
}







/* =============================================
   ACHIEVEMENT - 実績数字
   ============================================= */
.achievement-section {
    margin: 50px 0;
}

.achievement-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
}
.achievement-photo {
    position: relative;
}
.achievement-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(11,22,40,0.85), transparent);
}
.achievement-photo-text {
    display: block;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    color: var(--white);
}
.achievement-photo-text-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 4px;
}
.achievement-photo-text-title {
    font-size: 11px;
    color: var(--gray-light);
    letter-spacing: 1.5px;
    display: block;
}
.achievement-photo img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 1px solid rgba(201,168,76,0.15);
}
.achievement-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.achievement-header {
    text-align: left;
    margin-bottom: 0;
}
.achievement-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 6px;
    margin-bottom: 8px;
}
.achievement-catch {
    font-size: 13px;
    color: var(--gray-light);
    letter-spacing: 2px;
}

p.achievement-catch {
    margin: 6px 15px 20px 0px;
}

.achievement-inner {
    display: flex;
    align-items: center;
    gap: 0;
}
.achievement-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.achievement-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
	flex: 1;
	align-items: flex-end;
    justify-content: center;
}
.achievement-num--large {
    font-size: 52px;
}
.achievement-num span {
    font-size: 16px;
    color: var(--gold-light);
    font-weight: 400;
}
.achievement-label {
    font-size: 12px;
    color: var(--gray-light);
    letter-spacing: 1.5px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}
.achievement-divider {
    width: 1px;
    height: 60px;
    background: rgba(201,168,76,0.2);
    flex-shrink: 0;
}

.achievement-num--large span {
    font-size: 18px;
    color: var(--gold-light);
    font-weight: 400;
    display: inline;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .achievement-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .achievement-photo img {
        height: 100%;
    }

    .achievement-header {
        text-align: center;
    }
	
    .achievement-inner {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
    }
	
    .achievement-num {
        font-size: 28px;
    }

    .achievement-num--large {
        font-size: 28px;
    }
    .achievement-label {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .achievement-divider {
        width: 1px;
        height: 40px;
    }
    .achievement-divider {
        width: 48px;
        height: 1px;
    }
	
    .achievement-item {
        padding: 0;
        width: 100%;
		min-height: 0px;
    }
	
    .achievement-right {
        position: relative;
    }
	
    .achievement-photo {
        position: relative;
    }
    .achievement-photo .achievement-header {
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        text-align: left;
    }
    .achievement-brand {
        text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    }
    .achievement-catch {
        text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    }
    .achievement-right .achievement-header {
        display: none;
    }
}

@media (min-width: 769px) {
    .achievement-photo .achievement-header {
        display: none;
    }
}



@media (max-width: 768px) {
    .cta-section form,
    .wpcf7-form {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .cta-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}


/* CF7フォーム内のpタグのmarginをリセット */
.cf7-form p,
.wpcf7 p,
.wpcf7-form p {
    margin: 0 !important;
    font-size: 15px !important;
}

@media (max-width: 768px) {
    .cf7-form p,
    .wpcf7 p,
    .wpcf7-form p {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}







/* =============================================
   Evidence - 写真スライダー
   ============================================= */
.evidence-photo-section {
    margin-top: 40px;
}
.evidence-photo-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.evidence-swiper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 48px !important;  /* 左右paddingを0に */
    overflow: hidden;              /* ← 追加 */
}
.evidence-swiper .swiper-slide {
    height: auto;
}
.evidence-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(201,168,76,0.15);
}
.evidence-slide-caption {
    text-align: center;
    font-size: 13px;
    color: var(--gray-light);
    letter-spacing: 2px;
    margin-top: 12px;
}
.evidence-swiper .swiper-pagination-bullet {
    background: rgba(201,168,76,0.4);
    opacity: 1;
}
.evidence-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
}
/* 矢印ボタンを見やすく */
.evidence-swiper .swiper-button-prev,
.evidence-swiper .swiper-button-next {
    color: var(--gold);
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(11, 22, 40, 0.7);   /* 半透明ネイビー背景 */
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    transition: background 0.2s, border-color 0.2s;
}
.evidence-swiper .swiper-button-prev:hover,
.evidence-swiper .swiper-button-next:hover {
    background: rgba(201, 168, 76, 0.25);
    border-color: var(--gold);
}
.evidence-swiper .swiper-button-prev::after,
.evidence-swiper .swiper-button-next::after {
    font-size: 16px;   /* 既存の20pxから少し小さく */
}

@media (max-width: 768px) {
    .evidence-swiper .swiper-button-prev,
    .evidence-swiper .swiper-button-next {
        display: none;
    }
}