@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;
}


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

/* ヒーローセクション */
.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: linear-gradient(rgba(228, 243, 249, 0.85), rgba(228, 243, 249, 0.85)),
              url('https://tadokoro-yusuke.com/wp-content/uploads/category-img.jpg');
  background-size: cover;
  background-position: 45% 40%;  /* center → 40% */
  background-repeat: no-repeat;
  padding: 80px 20px;
  text-align: center;
  margin-top: -85px;
  padding-top: 165px;
}

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

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

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

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

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

/* 投稿一覧セクション */
.category-posts-section {
  background: #fff;
  padding: 80px 20px;
}

.category-posts-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

/* カード */
.category-post-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-post-link {
  text-decoration: none;
  display: block;
}

/* サムネイル */
.category-post-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e4f3f9;
}

.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: #e8f0f5;
}

.category-post-no-image i {
  font-size: 40px;
  color: #ccc;
}

/* コンテンツ部分 */
.category-post-content {
  padding: 20px;
}

.category-post-date {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.category-post-date i {
  font-size: 12px;
}

.category-post-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 10px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-post-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  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: 14px;
  color: #005BAC;
  font-weight: bold;
  margin-top: 15px;
}

.category-post-more i {
  transition: transform 0.3s;
}

.category-post-card:hover .category-post-more i {
  transform: translateX(3px);
}

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

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

.category-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: all 0.3s;
}

.category-pagination .page-numbers:hover {
  background: #005BAC;
  border-color: #005BAC;
  color: #fff;
}

.category-pagination .page-numbers.current {
  background: #005BAC;
  border-color: #005BAC;
  color: #fff;
}

.category-pagination .prev,
.category-pagination .next {
  background: transparent;
  border: none;
  color: #005BAC;
}

.category-pagination .prev:hover,
.category-pagination .next:hover {
  background: #e4f3f9;
  color: #005BAC;
}

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

/* =============================================
   レスポンシブ（タブレット）
   ============================================= */
@media screen and (max-width: 960px) {
  .category-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* =============================================
   レスポンシブ（スマホ）
   ============================================= */
@media screen and (max-width: 760px) {
  .category-hero-section {
    padding: 60px 20px;
    margin-top: -85px;
    padding-top: 160px;
  }
  
  .category-hero-title {
    font-size: 32px;
  }
  
  .category-hero-message {
    font-size: 14px;
  }
  
  .category-posts-section {
    padding: 50px 15px;
  }
  
  .category-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-post-title {
    font-size: 16px;
  }
  
  .category-post-excerpt {
    font-size: 13px;
  }
  
  .category-pagination {
    margin-top: 40px;
  }
  
  .category-pagination .page-numbers {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}







/* =============================================
   個別記事ページ
   ============================================= */

/* ヒーロー（アイキャッチ） */
.single-hero {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: -85px;
  padding-top: 85px;
}

.single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero-noimage {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #005BAC 0%, #0077cc 100%);
}

/* 記事コンテンツ */
.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: #005BAC;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.3s;
}

.single-category:hover {
  background: #003d7a;
}

.single-date {
  font-size: 14px;
  color: #888;
}

.single-date i {
  margin-right: 5px;
}

/* タイトル */
.single-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

/* 本文 */
.single-body {
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.single-body p {
  margin-bottom: 1.8em;
}

.single-body h2 {
  font-size: 24px;
  font-weight: bold;
  color: #005BAC;
  margin: 50px 0 20px;
  padding-left: 15px;
  border-left: 4px solid #005BAC;
}

.single-body h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 40px 0 15px;
}

.single-body h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 30px 0 10px;
}

.single-body img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 20px 0;
}

.single-body ul,
.single-body ol {
  margin: 20px 0;
  padding-left: 25px;
}

.single-body li {
  margin-bottom: 10px;
}

.single-body blockquote {
  background: #f5f5f5;
  border-left: 4px solid #005BAC;
  padding: 20px 25px;
  margin: 30px 0;
  font-style: italic;
}

.single-body a {
  color: #005BAC;
  text-decoration: underline;
}

.single-body a:hover {
  text-decoration: none;
}

/* 前後記事ナビゲーション */
.single-nav {
  background: #fff;
  padding: 40px 20px;
}

.single-nav-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.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: 20px;
  background: #fff;
  border-radius: 5px;
  transition: box-shadow 0.3s, transform 0.3s;
  border: solid 1px #005BAC;
}

.single-nav a:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.single-nav-label {
  display: block;
  font-size: 13px;
  color: #005BAC;
  font-weight: bold;
  margin-bottom: 8px;
}

.single-nav-title {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* 関連記事 */
.single-related {
  background: #fff;
  padding: 60px 20px 80px;
}

.single-related-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.single-related-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.single-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.single-related-card {
  display: block;
  text-decoration: none;
  color: #333;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.single-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.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: #e4f3f9;
}

.single-related-info {
  padding: 20px;
}

.single-related-date {
  font-size: 13px;
  color: #888;
}

.single-related-card-title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.single-related-none {
  text-align: center;
  color: #888;
  grid-column: 1 / -1;
}

/* レスポンシブ */
@media screen and (max-width: 960px) {
  .single-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 760px) {
  .single-hero {
    height: 250px;
    margin-top: -70px;
    padding-top: 70px;
  }
  
  .single-content {
    margin-top: 0;
    padding-top: 90px;
    padding-bottom: 60px;
  }
  
  .single-title {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .single-body {
    font-size: 15px;
  }
  
  .single-body h2 {
    font-size: 20px;
  }
  
  .single-body h3 {
    font-size: 18px;
  }
  
  .single-nav-inner {
    flex-direction: column;
    gap: 15px;
  }
  
  .single-nav-next {
    text-align: left;
  }
  
  .single-related {
    padding: 40px 20px 60px;
  }
  
  .single-related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}






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

.error404-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;
}

.error404-number {
  font-size: 120px;
  font-weight: bold;
  color: #005BAC;
  line-height: 1;
  margin-bottom: 20px;
}

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

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

.error404-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;
}

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

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









/* =============================================
   ヒーローセクション（タイトル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: 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);
}










/* =============================================
   ヒーローセクション（田所サイト構造準拠）
   ============================================= */
.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: 13px;
    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 {
    margin-top: 16px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.9s forwards;
}

/* ゴールド枠線ボタン */
.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 {
        left: 5%;
        max-width: 55%;
    }

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

    .hero_sub_text {
        font-size: 13px;
    }
}

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

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

    .hero_main_text {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
        letter-spacing: 2px;
    }

    .hero_sub_text {
        font-size: 11px;
        letter-spacing: 1px;
        line-height: 2;
    }

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

/* --- 小さいスマホ 480px以下 --- */
@media screen and (max-width: 480px) {
    .hero_catch_wrapper {
        left: 5%;
        top: 50%;
        max-width: 80%;
        gap: 8px;
    }

    .hero_main_text {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .hero_sub_text {
        display: none;
    }

    .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 {
        bottom: 16px;
    }

    .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: 12px;
    font-weight: 500;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 3vw, 32px);
    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-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: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--white);
}

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

.problem-closing {
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    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: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

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


/* =============================================
   EVIDENCE - 実績
   ============================================= */
.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 {
    height: 280px;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 13px;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
}

.evidence-info {
    padding: 28px 32px;
}

.evidence-case {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.evidence-detail {
    font-size: 13px;
    color: var(--gray-text);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.evidence-result {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
}

.evidence-result small {
    font-size: 14px;
    color: var(--gray-light);
}

.evidence-period {
    font-size: 12px;
    color: var(--gray-light);
    margin-top: 8px;
}


/* =============================================
   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: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: var(--white);
}

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

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

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

.price-period {
    font-size: 12px;
    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: 12px;
    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: 12px;
    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: 11px;
    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: 14px;
    color: var(--gray-text);
    letter-spacing: 1px;
    margin-bottom: 48px;
}

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

.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: 11px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

.benefit-partner {
    font-size: 11px;
    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: 13px;
    font-weight: 300;
    line-height: 2;
    color: var(--gray-text);
}


/* =============================================
   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;
    background: var(--navy-light);
    border: 1px solid rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 12px;
    letter-spacing: 2px;
}

.profile-info {
    flex: 1;
}

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

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

.profile-title {
    font-size: 12px;
    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: 8px;
    flex-shrink: 0;
}

.profile-history-text {
    font-size: 14px;
    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: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.profile-mission p {
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    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.06);
}

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

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

.faq-toggle {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    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: 13px;
    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);
}


/* =============================================
   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: 15px;
    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;
}


/* =============================================
   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: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

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

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

.footer-nav a {
    font-size: 11px;
    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: 72px 20px;
    }

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

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

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





















