/*
Theme Name: ARK GYM Theme
Description: ARK GYMのオリジナルテーマ
Version: 1.0.0
Author: ARK GYM
Text Domain: arkgym
*/

/* CSS変数の定義 */
:root {
    --header-height: 60px;
    --logo-width: 184px;
    --logo-height: 41px;
    --nav-item-spacing: 40px;
    --instagram-size: 28px;
    --tiktok-size: 38px;
    --hamburger-width: 35px;
    --hamburger-height: 26px;
    --hamburger-line-height: 2px;
    --hamburger-line-spacing: 12px;
    --container-max-width: 1200px;
    --container-padding: 20px;
    --sp-container-padding: 15px;
    --transition-duration: 0.3s;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gold: #D4AF37;
    --color-transparent: transparent;
    --color-gold-light: #FFE9AD;
    --color-gold-dark: #FFD15A;
    --color-gold-border: #CCBA8A;
    --text-color-scrolled: #000000;
    --color-champagne-gold: #8f810c;
    
    /* フォントファミリー */
    --font-primary: "Hiragino Mincho Pro", "Yu Mincho", "Noto Serif CJK JP", serif;
    --font-english: "Times New Roman", "Georgia", serif;
    --font-fallback: serif;
}

/* 基本設定 */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    background-image: url('/wp-content/uploads/2025/08/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    line-height: 1.6;
    background-image: url('/wp-content/uploads/2025/08/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ヘッダー基本スタイル */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 99999;
    transition: all var(--transition-duration) ease-in-out;
    background: var(--color-transparent);
}

.site-header.scrolled {
    background-image: url('/wp-content/uploads/2025/08/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ヘッダーコンテナ */
.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ロゴ */
.header-logo {
    flex-shrink: 0;
}

.header-logo a {
    display: block;
    text-decoration: none;
    color: var(--color-white);
    transition: color var(--transition-duration) ease-in-out;
}

.site-header.scrolled .header-logo a {
    color: var(--color-gold);
}

.logo-image {
    width: var(--logo-width);
    height: var(--logo-height);
    transition: all var(--transition-duration) ease-in-out;
}

.header-logo .custom-logo {
    width: var(--logo-width);
    height: var(--logo-height);
    object-fit: contain;
}

.header-logo .site-title {
    font-size: 1.5rem;
    font-weight: bold;
}

/* PC版ナビゲーション */
.header-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--nav-item-spacing);
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    font-family: "Times New Roman", serif;
    font-size: 25px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    transition: color var(--transition-duration) ease-in-out;
    position: relative;
}

.site-header.scrolled .nav-menu a {
    color: var(--text-color-scrolled);
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-duration) ease-in-out;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* SNSアイコン */
.header-sns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sns-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform var(--transition-duration) ease-in-out;
}

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

.sns-icon {
    transition: all var(--transition-duration) ease-in-out;
}

.instagram-icon {
    width: var(--instagram-size);
    height: var(--instagram-size);
}

.tiktok-icon {
    width: var(--tiktok-size);
    height: var(--tiktok-size);
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: var(--hamburger-width);
    height: var(--hamburger-height);
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
}

.hamburger-line {
    width: 100%;
    height: var(--hamburger-line-height);
    background-color: var(--color-white);
    transition: all var(--transition-duration) ease-in-out;
}

.site-header.scrolled .hamburger-line {
    background-color: var(--color-black);
}

/* モバイルメニューオーバーレイ */
.mobile-menu-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(0, 0, 0, 0.9);
    transform: translateX(-100%);
    transition: transform var(--transition-duration) ease-in-out;
    z-index: 999;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-navigation {
    padding: 2rem var(--sp-container-padding);
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu a {
    display: block;
    color: var(--color-white);
    text-decoration: none;
    font-family: "Times New Roman", serif;
    font-size: 25px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    padding: 1rem 0;
    transition: color var(--transition-duration) ease-in-out;
}

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

/* 画像切り替え機能はJavaScriptで制御 */

/* レスポンシブ対応 */
@media (max-width: 767px) {
    .header-container {
        padding: 0 var(--sp-container-padding);
    }
    
    .header-nav {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .header-sns {
        order: 2;
        margin: 0 auto;
    }
    
    .header-logo {
        order: 1;
    }
    
    .hamburger-menu {
        order: 3;
    }
}

@media (min-width: 768px) {
    .hamburger-menu {
        display: none;
    }
    
    .mobile-menu-overlay {
        display: none;
    }
}

/* スクリーンリーダー対応 */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* コンテンツエリアの調整 */
.site-content {
    background: transparent; /* コンテンツエリアも透明にして背景画像を表示 */
}

/* ===================================
   Footer Styles
   =================================== */

/* Footer全体 */
.site-footer {
    background-image: url('/wp-content/uploads/2025/08/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-black);
    margin-top: 4rem;
}

/* Contactセクション */
.footer-contact {
    padding: 3.75rem 0;
    text-align: center;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-image: url('/wp-content/uploads/2025/08/contact_footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-title {
    font-family: 'Hiragino Mincho Pro', 'Yu Mincho', serif;
    font-weight: 600;
    font-size: 2.5rem; /* 40px - 適正サイズに調整 */
    margin-bottom: 1.25rem;
    color: var(--color-white);
    line-height: 1.2;
}

.contact-decoration-line {
    width: 20rem; /* 320px - 適正サイズに調整 */
    height: 0.125rem; /* 2px - 適正サイズに調整 */
    background-color: var(--color-white);
    margin: 0 auto 2.5rem;
}

.contact-description {
    font-family: 'Hiragino Kaku Gothic Pro', 'Yu Gothic', sans-serif;
    font-weight: 300;
    font-size: 1.125rem; /* 18px - 適正サイズに調整 */
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--color-white);
}

.contact-cta {
    margin-top: 1.25rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, var(--color-gold-light) 0%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: 0.125rem solid var(--color-gold-border); /* 2px - 適正サイズに調整 */
    padding: 1.25rem 2rem; /* 20px 32px - 適正サイズに調整 */
    width: 18rem; /* 288px - 適正サイズに調整 */
    text-align: center;
    text-decoration: none;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    font-size: 1.25rem; /* 20px - 適正サイズに調整 */
    transition: all 0.3s ease;
    line-height: 1;
    position: relative;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem; /* 右側にはみ出させる */
    
    transform: translateY(-50%);
    width: 2rem; /* 32px - 右側から短く伸びる装飾線 */
    height: 0.0625rem; /* 1px */
    background-color: var(--color-gold-border);
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.2);
    -webkit-text-fill-color: transparent;
}

/* Footerナビゲーション */
.footer-navigation {
    padding: 3.75rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* PC版レイアウト */
.footer-pc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

/* 左カラム: ロゴ + 連絡先情報 + プライバシーポリシー */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-logo a {
    color: var(--color-black);
    text-decoration: none;
}

.footer-logo .logo-image {
    max-height: 4.3125rem; /* 69px */
    width: auto;
}

.footer-contact-info {
    margin-bottom: 1.25rem;
}

.contact-details {
    margin-bottom: 1.25rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-black);
    font-family: 'Hiragino Mincho Pro', serif;
    font-weight: 600;
}

.contact-details .address {
    font-size: 0.875rem;
}

.contact-details .phone-number {
    font-size: 0.875rem;
    font-weight: bold;
}

.contact-details .trainer-hours,
.contact-details .restaurant-hours {
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-privacy {
    margin-top: 1.25rem;
}

.privacy-link {
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    font-family: 'Hiragino Mincho Pro', serif;
    font-weight: 600;
}

.privacy-link:hover {
    color: var(--color-black);
}

/* 右カラム: メニュー + Follow us + SNSアイコン */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-end;
}

.footer-menu {
    margin-bottom: 1.25rem;
}

.footer-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    text-align: right;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-nav-menu a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 1.25rem; /* 20px */
    transition: color 0.3s ease;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
}

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

.footer-sns {
    text-align: right;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sns-title {
    font-size: 0.9375rem; /* 15px */
    font-weight: bold;
    margin-bottom: 0;
    color: var(--color-black);
    font-family: 'Times New Roman', serif;
    font-weight: bold;
}

.sns-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
}

.footer-sns .sns-link {
    color: var(--color-black);
    transition: color 0.3s ease;
}

.footer-sns .sns-link:hover {
    color: var(--color-gold);
}

.footer-sns .sns-icon {
    width: auto;
    height: auto;
}

.footer-sns .instagram-icon {
    width: 28px;
    height: 28px;
}

.footer-sns .tiktok-icon {
    width: 37px;
    height: 37px;
}

/* SP版レイアウト */
.footer-sp {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.footer-sp .footer-logo {
    margin-bottom: 1.25rem;
    text-align: center;
}

.footer-sp .footer-sns {
    text-align: left;
    margin-bottom: 1.25rem;
    display: block;
}

.footer-sp .sns-title {
    font-size: 0.9375rem; /* 15px */
    font-weight: bold;
    margin-bottom: 0.875rem; /* 14px */
    color: var(--color-black);
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    margin: 0 0 0.875rem 0;
}

.footer-sp .sns-icons {
    justify-content: flex-start;
    display: flex;
    gap: 1.25rem;
    margin: 0;
}

/* SP版メニュー構造（Figma準拠） */
.footer-menu-sp {
    position: relative;
    margin-bottom: 1.25rem;
    text-align: left;
}

.footer-nav-menu-sp {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-line {
    height: 1px;
    background-color: #292929;
}

.footer-nav-menu-sp li {
    position: relative;
    padding: 1.25rem 0; /* 20px */
}

.footer-nav-menu-sp li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #292929;
}

.footer-nav-menu-sp a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 1.25rem; /* 20px */
    transition: color 0.3s ease;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
}

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

/* SP版連絡先情報 */
.footer-contact-info-sp {
    text-align: left;
    margin-bottom: 1.25rem;
}

.contact-info-title-sp {
    font-size: 1.25rem; /* 20px */
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--color-black);
    font-family: 'Hiragino Mincho Pro', serif;
    font-weight: 600;
}

.phone-number-sp {
    font-size: 3.5rem; /* 56px */
    font-weight: bold;
    margin-bottom: 0.75rem;
    margin-top: 0;
    color: var(--color-black);
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    text-align: center;
}

.business-hours-sp {
    font-size: 0.9375rem; /* 15px */
    margin-bottom: 1.25rem;
    color: var(--color-black);
    font-family: 'Hiragino Mincho Pro', serif;
    font-weight: 600;
}

.contact-cta-sp {
    margin-bottom: 1.25rem;
    text-align: center;
}

.cta-button-sp {
    border: 2px solid #A37B3B;
    padding: 1.125rem 2rem; /* 18px 32px */
    width: 19rem; /* 304px */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    font-size: 1.25rem; /* 20px */
    transition: all 0.3s ease;
    position: relative;
    color: #A37B3B;
}

.cta-button-sp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.footer-privacy-sp {
    margin-top: 1.25rem;
}

.footer-privacy-sp .privacy-link {
    color: var(--color-black);
    text-decoration: underline;
    font-size: 0.625rem; /* 10px */
    transition: color 0.3s ease;
    font-family: 'Hiragino Mincho Pro', serif;
    font-weight: 600;
}

.footer-privacy-sp .privacy-link:hover {
    color: var(--color-gold);
}

/* Copyrightセクション */
.footer-copyright {
    padding: 1.875rem 0;
    text-align: center;
    background-color: #000000;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.copyright-container p {
    margin: 0;
    font-size: 0.5rem; /* 8px */
    color: #ffffff;
    font-family: 'Hiragino Mincho Pro', serif;
    font-weight: 600;
}

/* レスポンシブ対応 */
/* スマートフォン（小） */
@media (max-width: 480px) {
    .footer-contact {
        padding: 2rem 0.75rem;
    }
    
    .contact-title {
        font-size: 1.5rem; /* 24px */
        margin-bottom: 0.75rem;
    }
    
    .contact-decoration-line {
        width: 100%;
        max-width: 15rem;
        height: 0.0625rem; /* 1px */
        margin-bottom: 1.5rem;
    }
    
    .contact-description {
        font-size: 0.65rem; /* 10.4px */
        line-height: 1.6;
        padding: 0 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 15rem;
        padding: 1rem 1.5rem; /* 16px 24px */
        font-size: 1rem; /* 16px */
    }
    
    .footer-navigation {
        padding: 2rem 0.75rem;
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-pc {
        display: none; /* PC版を非表示 */
    }
    
    .footer-sp {
        display: flex; /* SP版を表示 */
    }
    
    .footer-copyright {
        padding: 1rem 0.75rem;
    }
    
    .copyright-container p {
        font-size: 0.5rem; /* 8px */
    }
}

/* スマートフォン（大） */
@media (min-width: 481px) and (max-width: 767px) {
    .footer-contact {
        padding: 2.5rem 0.9375rem;
    }
    
    .contact-title {
        font-size: 1.5rem; /* 24px */
        margin-bottom: 1rem;
    }
    
    .contact-decoration-line {
        width: 100%;
        max-width: 18rem;
        height: 0.125rem; /* 2px */
        margin-bottom: 2rem;
    }
    
    .contact-description {
        font-size: 0.65rem; /* 10.4px */
        line-height: 1.6;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 18rem;
        padding: 1.125rem 1.75rem; /* 18px 28px */
        font-size: 1.125rem; /* 18px */
    }
    
    .footer-navigation {
        padding: 2.5rem 0.9375rem;
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .footer-pc {
        display: none; /* PC版を非表示 */
    }
    
    .footer-sp {
        display: flex; /* SP版を表示 */
    }
    
    .footer-copyright {
        padding: 1.25rem 0.9375rem;
    }
    
    .copyright-container p {
        font-size: 0.5rem; /* 8px */
    }
}

/* タブレット */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-contact {
        padding: 3rem 1.5rem;
    }
    
    .contact-title {
        font-size: 2.25rem; /* 36px */
        margin-bottom: 1.125rem;
    }
    
    .contact-decoration-line {
        width: 25rem; /* 400px */
        height: 0.125rem; /* 2px */
        margin-bottom: 2.25rem;
    }
    
    .contact-description {
        font-size: 1.0625rem; /* 17px */
        line-height: 1.7;
        max-width: 700px;
        margin-bottom: 1.75rem;
    }
    
    .cta-button {
        width: 20rem; /* 320px */
        padding: 1.375rem 2.25rem; /* 22px 36px */
        font-size: 1.1875rem; /* 19px */
    }
    
    .footer-navigation {
        padding: 3rem 1.5rem;
    }
    
    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-pc {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-sp {
        display: none; /* SP版を非表示 */
    }
    
    .footer-copyright {
        padding: 1.5rem 1.5rem;
    }
    
    .copyright-container p {
        font-size: 0.625rem; /* 10px */
    }
}

/* PC（小） */
@media (min-width: 1024px) and (max-width: 1279px) {
    .footer-contact {
        padding: 3.5rem 1.75rem;
    }
    
    .contact-title {
        font-size: 2.375rem; /* 38px */
    }
    
    .contact-decoration-line {
        width: 22rem; /* 352px */
    }
    
    .contact-description {
        font-size: 1.125rem; /* 18px */
        max-width: 750px;
    }
    
    .cta-button {
        width: 19rem; /* 304px */
        padding: 1.5rem 2.5rem; /* 24px 40px */
        font-size: 1.1875rem; /* 19px */
    }
    
    .footer-pc {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-sp {
        display: none; /* SP版を非表示 */
    }
    
    .copyright-container p {
        font-size: 0.625rem; /* 10px */
    }
}

/* PC（大） */
@media (min-width: 1280px) {
    .footer-contact {
        padding: 3.75rem 2rem;
    }
    
    .contact-title {
        font-size: 2.5rem; /* 40px */
    }
    
    .contact-decoration-line {
        width: 20rem; /* 320px */
    }
    
    .contact-description {
        font-size: 1.125rem; /* 18px */
        max-width: 800px;
    }
    
    .cta-button {
        width: 18rem; /* 288px */
        padding: 1.25rem 2rem; /* 20px 32px */
        font-size: 1.25rem; /* 20px */
    }
    
    .footer-pc {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-sp {
        display: none; /* SP版を非表示 */
    }
    
    .copyright-container p {
        font-size: 0.625rem; /* 10px */
    }
}

/* ========================================
   About Us Page Styles
   ======================================== */

/* About Page Container */
.about-page {
    padding-top: calc(var(--header-height) + 40px);
    min-height: 100vh;
    background: transparent !important; /* 背景を透明にしてbodyの背景画像を表示 */
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    background: transparent; /* コンテナも透明にして背景画像を表示 */
}

/* About Section */
.about-section {
    margin-bottom: 80px;
    background: transparent; /* セクションも透明にして背景画像を表示 */
}

.about-section:last-child {
    margin-bottom: 0;
}

/* Section Content */
.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    background: transparent; /* セクションコンテンツも透明にして背景画像を表示 */
}

/* Section Text */
.section-text {
    display: flex;
    flex-direction: column;
    gap: 0; /* 見出しと本文の間隔を調整 */
    background: transparent; /* セクションテキストも透明にして背景画像を表示 */
}

/* Section Image */
.section-image {
    width: 100%;
    padding-top: 2rem;
}

.dummy-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    background-color: #d9d9d9;
    object-fit: cover;
}

/* Company Section */
.company-section .section-content {
    display: block;
}

.company-info {
    margin-top: 40px;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #000000;
    min-height: 60px;
    vertical-align: top;
}

.company-table th {
    width: 30%;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

.company-table td {
    width: 70%;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    color: #000000;
}

/* Common Heading Styles */
.common-heading {
    position: relative;
    text-align: left;
    color: #8f810c;
    width: 100%;
    margin-bottom: 40px;
    height: 100px; /* 見出しの高さを固定 */
}

.japanese-subtitle {
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--font-primary);
    font-size: 25px;
    font-weight: 600;
    line-height: normal;
    white-space: pre;
    color: #8f810c;
}

.english-title {
    position: absolute;
    top: 36px;
    left: 0;
    font-family: var(--font-english);
    font-size: 65px;
    font-weight: bold;
    line-height: normal;
    white-space: pre;
    color: #8f810c;
}

/* Section Description */
.section-description p {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    line-height: 1.8;
    color: #000000;
    margin: 0;
    margin-top: 10px; /* 見出しとの適切な間隔 */
}

/* Responsive Design */
@media (max-width: 1199px) {
    .about-container {
        padding: 0 30px;
    }
    
    .section-content {
        gap: 30px;
    }
    
    .about-section {
        margin-bottom: 60px;
    }
    
    .common-heading {
        height: 80px;
        margin-bottom: 30px;
    }
    
    .japanese-subtitle {
        font-size: 20px;
    }
    
    .english-title {
        font-size: 48px;
        top: 28px;
    }
    
    .section-description p {
        font-size: 1rem;
    }
    
    .company-table th {
        font-size: 1.125rem;
    }
    
    .company-table td {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .about-page {
        padding-top: calc(var(--header-height) + 20px);
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-section {
        margin-bottom: 60px;
    }
    
    .common-heading {
        height: 60px;
        margin-bottom: 25px;
    }
    
    .japanese-subtitle {
        font-size: 15px;
    }
    
    .english-title {
        font-size: 40px;
        top: 16px;
    }
    
    .section-description p {
        font-size: 0.8125rem;
        line-height: 1.6;
    }
    
    .company-table th,
    .company-table td {
        padding: 15px;
        min-height: 40px;
    }
    
    .company-table th {
        width: 40%;
        font-size: 0.875rem;
    }
    
    .company-table td {
        width: 60%;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 15px;
    }
    
    .section-content {
        gap: 15px;
    }
    
    .about-section {
        margin-bottom: 40px;
    }
    
    .common-heading {
        height: 50px;
        margin-bottom: 20px;
    }
    
    .company-table th,
    .company-table td {
        padding: 10px;
        min-height: 35px;
    }
}

/* Plan Page Styles */
.plan-page {
    position: relative;
    min-height: 100vh;
    background-color: transparent;
    background-image: url('/wp-content/uploads/2025/08/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/uploads/2025/08/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.plan-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Plan Section Styles */
.plan-section,
.membership-section,
.option-section {
    position: relative;
    padding: 80px 0;
    background-color: transparent;
    margin: 20px 0;
}

/* Plan Section の common-heading の余白調整 */
.plan-section {
    padding: 80px 0;
}

.plan-section .section-header,
.membership-section .section-header,
.option-section .section-header {
    margin-bottom: 40px;
}

.plan-section .section-header {
    padding-left: 2rem;
}

.plan-section .section-subtitle {
    color: #FFE9AD;
}

.plan-section .section-main-title {
    color: #FFE9AD;
}

/* Planセクション専用のボタンスタイル */
.plan-section .btn-detail::before {
    border: 2.093px solid #FFE9AD;
}

.plan-section .btn-detail .button-text {
    color: #FFE9AD;
}

.plan-section .btn-detail::after {
    background-color: #FFE9AD;
}

.plan-section .section-title,
.membership-section .section-title,
.option-section .section-title {
    font-family: var(--font-primary);
    font-size: 50px;
    font-weight: 600;
    color: var(--color-champagne-gold);
    line-height: normal;
    white-space: pre;
    margin: 0;
}

.plan-section .section-description,
.membership-section .section-description,
.option-section .section-description {
    text-align: left;
    max-width: 800px;
    margin: 0 0 40px 0;
}

.plan-section .section-description p,
.membership-section .section-description p,
.option-section .section-description p {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.6;
    color: #000000;
    margin: 0 0 20px 0;
}

/* Carousel Styles */
.membership-carousel,
.option-carousel {
    position: relative;
    overflow-x: auto;
    margin: 40px 0;
    -webkit-overflow-scrolling: touch;
}

.carousel-container {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    width: max-content;
}

.carousel-item {
    flex: 0 0 auto;
}

.plan-image,
.option-image {
    width: 800px;
    height: 567px;
    object-fit: cover;
    border-radius: 20px;
    filter: none;
    -webkit-filter: none;
}



/* Plan Page Responsive Design */
@media (max-width: 768px) {
    .plan-section .section-title,
    .membership-section .section-title,
    .option-section .section-title {
        font-size: 36px;
    }
    
    .plan-section .section-description p,
    .membership-section .section-description p,
    .option-section .section-description p {
        font-size: 16px;
    }
    
    .plan-image,
    .option-image {
        width: 600px;
        height: 425px;
    }
    
    .carousel-container {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .plan-section,
    .membership-section,
    .option-section {
        padding: 40px 0;
    }
    
    .plan-section .section-title,
    .membership-section .section-title,
    .option-section .section-title {
        font-size: 28px;
    }
    
    .plan-section .section-description p,
    .membership-section .section-description p,
    .option-section .section-description p {
        font-size: 14px;
    }
    
    .plan-image,
    .option-image {
        width: 400px;
        height: 283px;
    }
    
    .carousel-container {
        gap: 15px;
        padding: 0 10px;
    }
    
    /* SP版カルーセル */
    .membership-carousel,
    .option-carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .carousel-container {
        width: max-content;
    }
}

/* ========================================
   Trainer Page Styles
   ======================================== */

.trainer-page {
    padding-top: calc(var(--header-height) + 40px);
    min-height: 100vh;
    background-image: url('/wp-content/uploads/2025/08/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.trainer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Trainer Header Section */
.trainer-header-section {
    margin-bottom: 60px;
}

.trainer-header-section .section-content {
    max-width: 800px;
}

.trainer-header-section .section-description p {
    font-family: var(--font-primary);
    font-size: 1.5625rem; /* 25px */
    line-height: 1.5;
    color: #000000;
    margin: 0;
    margin-top: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Trainer Cards Section */
.trainer-cards-section {
    margin-bottom: 80px;
}

.trainer-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Trainer Card */
.trainer-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Trainer Image */
.trainer-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.trainer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trainer Info */
.trainer-info {
    padding: 20px;
}

.trainer-name-japanese {
    font-family: var(--font-primary);
    font-size: 1.5625rem; /* 25px */
    font-weight: 600;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.trainer-name-english {
    font-family: var(--font-primary);
    font-size: 0.9375rem; /* 15px */
    font-weight: 600;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.trainer-description p {
    font-family: "Hiragino Kaku Gothic Pro", sans-serif;
    font-size: 0.625rem; /* 10px */
    font-weight: 600;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Trainer Page */
@media (max-width: 1199px) {
    .trainer-container {
        padding: 0 30px;
    }
    
    .trainer-cards-container {
        gap: 30px;
    }
    
    .trainer-header-section {
        margin-bottom: 50px;
    }
    
    .trainer-header-section .section-description p {
        font-size: 1.25rem; /* 20px */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 767px) {
    .trainer-page {
        padding-top: calc(var(--header-height) + 20px);
    }
    
    .trainer-container {
        padding: 0 42px;
    }
    
    .trainer-cards-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trainer-header-section {
        margin-bottom: 40px;
    }
    
    .trainer-header-section .section-description p {
        font-size: 0.625rem; /* 10px */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .trainer-name-japanese {
        font-size: 1.5625rem; /* 25px */
    }
    
    .trainer-name-english {
        font-size: 0.9375rem; /* 15px */
    }
    
    .trainer-description p {
        font-size: 0.625rem; /* 10px */
    }
}

@media (max-width: 480px) {
    .trainer-container {
        padding: 0 20px;
    }
    
    .trainer-cards-container {
        gap: 30px;
    }
    
    .trainer-header-section {
        margin-bottom: 30px;
    }
    
    .trainer-info {
        padding: 15px;
    }
}

/* ========================================
   Access Page Styles
   ======================================== */

.access-page {
    padding-top: calc(var(--header-height) + 40px);
    min-height: 100vh;
}

.access-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.access-section {
    margin-bottom: 60px;
}

.access-section .section-content {
    text-align: left;
    display: block; /* gridを上書き */
}

.access-main-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}

.access-text {
    flex: 1;
}

.access-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dummy-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.access-info {
    margin-top: 0;
}

.info-heading {
    font-family: var(--font-primary);
    font-size: 1.25rem; /* 20px */
    font-weight: 600;
    color: #333333;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.access-info > div {
    margin-bottom: 30px;
}

.access-info > div:last-child {
    margin-bottom: 0;
}

.body-text {
    font-family: var(--font-primary);
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    color: #333333;
    margin: 0 0 10px 0;
}

.body-text:last-child {
    margin-bottom: 0;
}

.note {
    font-size: 0.875rem; /* 14px */
    color: #666666;
    font-style: italic;
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
}

.map-section .section-content {
    text-align: center;
}

/* PC版でのみdisplay: block;を適用 */
@media (min-width: 768px) {
    .map-section .section-content {
        display: block;
    }
}

.map-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.google-map {
    width: 100% !important;
    height: 450px !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Access Page */
@media (max-width: 1199px) {
    .access-container {
        padding: 0 30px;
    }
    
    .access-section {
        margin-bottom: 50px;
    }
    
    .map-section {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .access-page {
        padding-top: calc(var(--header-height) + 20px);
    }
    
    .access-container {
        padding: 0 42px;
    }
    
    .access-section {
        margin-bottom: 40px;
    }
    
    .access-main-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    
    .access-text {
        order: 2;
    }
    
    .access-image {
        order: 1;
    }
    
    .access-info {
        margin-top: 0;
    }
    
    .info-heading {
        font-size: 1.125rem; /* 18px */
    }
    
    .body-text {
        font-size: 0.9375rem; /* 15px */
    }
    
    .map-section {
        margin-bottom: 40px;
    }
    
    .map-container {
        margin-top: 30px;
    }
    
    .google-map {
        width: 100% !important;
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    .access-container {
        padding: 0 20px;
    }
    
    .access-section {
        margin-bottom: 30px;
    }
    
    .access-main-content {
        gap: 25px;
        margin-top: 25px;
    }
    
    .access-info {
        margin-top: 0;
    }
    
    .info-heading {
        font-size: 1rem; /* 16px */
    }
    
    .body-text {
        font-size: 0.875rem; /* 14px */
    }
    
    .map-section {
        margin-bottom: 30px;
    }
    
    .map-container {
        margin-top: 25px;
    }
    
    .google-map {
        width: 100% !important;
        height: 300px !important;
    }
}

/* Voice Shortcode Styles - archive-voice.phpと同じスタイル */

/* ========================================
   Front Page Styles
   ======================================== */

/* Front Page Container */
.front-page {
    background-image: url('/wp-content/uploads/2025/08/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ヒーローセクションアニメーション */
@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroTextSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroDividerExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

.hero-section {
    animation: heroFadeIn 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-catchcopy {
    animation: heroTextSlideIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
    opacity: 0;
}

.hero-divider {
    animation: heroDividerExpand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
    opacity: 0;
}

.hero-subtitle {
    animation: heroTextSlideIn 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards;
    opacity: 0;
}

/* セクションアニメーション */

.section-animate {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.section-animate:nth-child(1) { animation-delay: 0.2s; }
.section-animate:nth-child(2) { animation-delay: 0.4s; }
.section-animate:nth-child(3) { animation-delay: 0.6s; }
.section-animate:nth-child(4) { animation-delay: 0.8s; }
.section-animate:nth-child(5) { animation-delay: 1.0s; }
.section-animate:nth-child(6) { animation-delay: 1.2s; }
.section-animate:nth-child(7) { animation-delay: 1.4s; }
.section-animate:nth-child(8) { animation-delay: 1.6s; }

/* Common Section Header Styles */
.section-header {
    padding-left: 0;
    margin-bottom: 60px;
}

.section-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-subtitle {
    font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
    font-size: 25px;
    font-weight: 600;
    color: #8F810C;
    line-height: 1;
    position: relative;
    z-index: 9999;
}

.section-main-title {
    font-family: "Times New Roman", serif;
    font-size: 65px;
    font-weight: 700;
    color: #8F810C;
    line-height: 1;
    position: relative;
    z-index: 9999;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 775px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 1440px;
    padding: 0 70px;
}

.hero-text {
    margin-bottom: 40px;
    text-align: left;
    margin-left: 60px;
    position: relative;
}

.hero-catchcopy {
    font-family: "Times New Roman", serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 73px;
    color: #fff;
    text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.45);
    margin: 0 0 20px 0;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: #fff;
    margin: 0 0 20px 0;
    box-shadow: 4px 4px 3px 0 rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(50px);
}

.hero-subtitle {
    font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 28px;
    color: #fff;
    text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.45);
    margin: 0;
}

.hero-cta {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
}

.cta-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-image {
    width: 82px;
    height: 82px;
    border-radius: 50%;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: transparent;
}

.about-section .container {
    padding: 1rem;
}



.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-description {
    font-family: "Hiragino Kaku Gothic Pro", "Yu Gothic", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.about-button {
    text-align: center;
    margin-top: 20px;
}

.btn-detail {
    position: relative;
    display: inline-block;
    width: 280px;
    height: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #d9d9d9;
    pointer-events: none;
}

.btn-detail::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    width: 32px;
    height: 1px;
    background-color: #A37B3B;
    pointer-events: none;
}

.btn-detail .button-text {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Hiragino Mincho Pro", "Yu Mincho", "Noto Serif CJK JP", serif;
    font-size: 13px;
    font-weight: 600;
    color: #8f810c;
    line-height: normal;
    white-space: pre;
    text-align: center;
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(143, 129, 12, 0.2);
}

.btn-detail:hover::after {
    border-color: #8f810c;
}

.btn-detail:hover .button-text {
    color: #8f810c;
}

/* Image Carousel - 基本設定 */
.image-carousel {
    border-radius: 10px;
}

.carousel-item img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 10px;
}

/* SP版：カルーセル表示 */
@media (max-width: 767px) {
    .image-carousel {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .image-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .carousel-track {
        display: flex;
        gap: 20px;
        width: max-content;
    }
    
    .carousel-item {
        flex: 0 0 300px;
        min-width: 300px;
    }
}

/* PC版：3枚横並び */
@media (min-width: 768px) {
    .image-carousel {
        overflow: visible;
    }
    
    .carousel-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .carousel-item {
        width: auto;
        height: auto;
    }
}

/* Service Section */
.service-section {
    position: relative;
    padding: 80px 0;
    background: rgba(51, 51, 51, 0.65);
}

.service-section .container {
    padding: 0 35px;
    position: relative;
    z-index: 3;
}

.service-section .section-subtitle {
    color: #FFE9AD;
}

.service-section .section-main-title {
    color: #FFE9AD;
}

.service-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.65);
    z-index: 2;
}

.service-content {
    position: relative;
    z-index: 3;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* PC版：1段目と3段目は左テキスト・右画像、2段目は左画像・右テキスト */
.service-item:nth-child(even) {
    direction: ltr;
}

.service-item:nth-child(even) .service-text {
    direction: ltr;
}

.service-item:nth-child(even) .service-image {
    order: -1;
}

.service-mini-title {
    font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 20px;
    color: #FFE9AD;
    margin-bottom: 20px;
}

.service-description {
    font-family: "Hiragino Kaku Gothic Pro", "Yu Gothic", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 35px;
    color: #fff;
}

.service-image {
    position: relative;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-img::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #FFE9AD;
    border-radius: 50%;
    z-index: -1;
}

/* Voice Section */
.voice-section {
    padding: 80px 0;
    background: transparent;
}

.voice-description {
    font-family: "Hiragino Kaku Gothic Pro", "Yu Gothic", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

/* Voice レスポンシブ対応 */
@media (max-width: 767px) {
    .voice-list .voice-shortcode .voice-list {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 768px) {
    .voice-list .voice-shortcode .voice-list {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Plan Section */
.plan-section {
    position: relative;
    padding: 80px 0;
}

.plan-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.plan-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}

.plan-description {
    font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    margin-bottom: 40px;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Plan レスポンシブ対応 */
@media (max-width: 767px) {
    .plan-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .plan-card {
        width: 304px;
        height: 203px;
        aspect-ratio: 301/201;
        margin: 0 auto;
    }
    
    .plan-card-title {
        font-size: 30px;
    }
    
    .plan-card-divider {
        width: 50px;
        height: 1px;
    }
    
    .plan-card-subtitle {
        font-size: 10px;
    }
    
    .plan-description {
        font-size: 10px;
    }
}

.plan-card {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: 250px;
    aspect-ratio: 411.65/274.57;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 auto;
}

.plan-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.plan-card-image {
    width: 100%;
    height: 100%;
    max-height: 275px;
    object-fit: cover;
}

.plan-card-content {
    position: absolute;
    top: 63%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 300px;
    color: #fff;
    z-index: 2;
}

.plan-card-title {
    font-family: "Times New Roman", serif;
    font-size: 40.6px;
    font-weight: 700;
    line-height: normal;
    color: #fff;
    margin: 0 0 15px 0;
}

.plan-card-divider {
    width: 67.667px;
    height: 1.353px;
    background: #fff;
    margin: 15px 0;
}

.plan-card-subtitle {
    font-family: "Hiragino Kaku Gothic Pro", "Yu Gothic", sans-serif;
    font-size: 13.533px;
    font-weight: 600;
    line-height: normal;
    color: #fff;
    max-width: 300px;
    margin: 0 auto;
}

.plan-button {
    text-align: center;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: transparent;
}

/* News Section のリンクスタイル修正 */
.news-section a,
.news-section a:visited,
.news-section a:hover,
.news-section a:active {
    color: inherit;
    text-decoration: none;
}

.news-section .news-item {
    color: #333;
}

.news-section .news-title {
    color: #333;
    text-decoration: none;
}

.news-section .news-excerpt {
    color: #666;
}

/* News 区切り線 */
.news-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0;
}



/* Responsive Design */
@media (max-width: 1199px) {
    .hero-content,
    .plan-content,
    .contact-content {
        padding: 0 50px;
    }
    
    .service-content {
        padding: 0;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .service-item {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .plan-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-text {
        margin-left: 20px;
        top: 15rem;
    }
    
    .hero-catchcopy {
        font-size: 42.583px;
        line-height: 73px;
        margin: 0;
    }
    
    .hero-divider {
        width: 28px;
        height: 1px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 28px;
    }
    
    .about-section,
    .service-section,
    .voice-section,
    .plan-section,
    .news-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-section .container {
        padding: 0 35px;
    }
    
    .plan-section .container {
        padding: 0;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .service-item:nth-child(even) {
        direction: ltr;
    }
    
    .service-item:nth-child(even) .service-image {
        order: 0;
    }
    
    /* スマホ版：2段目もテキスト→画像の順番にする */
    .service-item:nth-child(even) .service-text {
        order: 1;
    }
    
    .service-item:nth-child(even) .service-image {
        order: 2;
    }
    
    .service-mini-title {
        font-size: 20px;
        line-height: 25px;
        background: linear-gradient(180deg, #FFE9AD 0%, #FFD15A 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 22px;
    }
    
    .sp-only {
        display: block;
    }
}

@media (min-width: 768px) {
    .sp-only {
        display: none;
    }
    
    .section-header {
        padding-left: 0;
    }
    
    .service-section .container {
        padding: 0 70px;
    }
    
    .about-section .container {
        padding: 3rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Carousel Animation */
/* Carousel - 手動スクロールのみ */

/* Voice List ショートコード用スタイル（archive-voice.phpと同じ） */
.voice-shortcode .voice-list {
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.voice-shortcode .voice-item {
    position: relative;
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.voice-shortcode .voice-item:last-child {
    margin-bottom: 0;
}

.voice-shortcode .voice-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 304px;
}

/* Voice Image Container */
.voice-shortcode .voice-image-container {
    position: relative;
    width: 304px;
    height: 175px;
}

.voice-shortcode .voice-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 304px;
    height: 175px;
    background: #A37B3B;
    border-radius: 8px;
}

.voice-shortcode .voice-image {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 304px;
    height: 175px;
    overflow: hidden;
    border-radius: 8px;
}

.voice-shortcode .customer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Voice Info */
.voice-shortcode .voice-info {
    text-align: left;
    width: 100%;
    max-width: 304px;
}

.voice-shortcode .customer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.voice-shortcode .customer-name {
    font-family: "Hiragino Mincho Pro", "Yu Mincho", "Noto Serif CJK JP", serif;
    font-size: 30px;
    font-weight: 600;
    line-height: normal;
    color: #000000;
    margin: 0;
}

.voice-shortcode .customer-age-gender {
    font-family: "Hiragino Mincho Pro", "Yu Mincho", "Noto Serif CJK JP", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: #000000;
    margin: 0;
}

.voice-shortcode .customer-comment {
    margin-bottom: 15px;
    text-align: left;
}

.voice-shortcode .customer-comment p {
    font-family: "Hiragino Mincho Pro", "Yu Mincho", "Noto Serif CJK JP", serif;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    color: #000000;
    margin: 0 0 5px 0;
}

.voice-shortcode .disclaimer {
    font-family: "Hiragino Mincho Pro", "Yu Mincho", "Noto Serif CJK JP", serif;
    font-size: 8px;
    font-weight: 600;
    line-height: normal;
    color: #000000;
    margin: 0;
    text-align: left;
}

/* Voice Button */
.voice-shortcode .voice-button {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* cta-button-spのスタイルを参考にしたボタン */
.voice-shortcode .detail-button {
    border: 2px solid #A37B3B;
    padding: 18px 32px;
    width: 304px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    position: relative;
    color: #A37B3B;
    background: transparent;
}

.voice-shortcode .detail-button::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    width: 32px;
    height: 1px;
    background-color: #A37B3B;
    pointer-events: none;
}

.voice-shortcode .detail-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Voice List ショートコード用レスポンシブ対応 */
@media (max-width: 1199px) {
    .voice-shortcode .voice-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1000px;
        justify-items: center;
    }
    
    .voice-shortcode .voice-content {
        gap: 25px;
        align-items: center;
    }
    
    .voice-shortcode .voice-image-container {
        width: 280px;
        height: 160px;
        margin: 0 auto;
    }
    
    .voice-shortcode .voice-image-bg {
        top: 0;
        left: 0;
        width: 280px;
        height: 160px;
        background: #A37B3B;
        border-radius: 8px;
    }
    
    .voice-shortcode .voice-image {
        top: -6px;
        left: -6px;
        width: 280px;
        height: 160px;
    }
    
    .voice-shortcode .voice-content {
        max-width: 280px;
    }
    
    .voice-shortcode .voice-info {
        max-width: 280px;
        text-align: left;
    }
    
    .voice-shortcode .customer-header {
        justify-content: flex-start;
    }
    
    .voice-shortcode .customer-name {
        font-size: 28px;
    }
    
    .voice-shortcode .customer-age-gender {
        font-size: 18px;
    }
    
    .voice-shortcode .customer-comment p {
        font-size: 11px;
    }
    
    .voice-shortcode .detail-button {
        width: 280px;
        padding: 16px 28px;
        font-size: 18px;
    }
    
    .voice-shortcode .detail-button::after {
        right: -14px;
        width: 28px;
    }
}

@media (max-width: 767px) {
    .voice-shortcode .voice-list {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        justify-items: center;
    }
    
    .voice-shortcode .voice-item {
        margin-bottom: 40px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .voice-shortcode .voice-content {
        gap: 20px;
        align-items: center;
    }
    
    .voice-shortcode .voice-image-container {
        width: 304px;
        height: 175px;
        margin: 0 auto;
    }
    
    .voice-shortcode .voice-image {
        top: -8px;
        left: -8px;
        width: 304px;
        height: 175px;
    }
    
    .voice-shortcode .voice-image-bg {
        top: 0;
        left: 0;
        width: 304px;
        height: 175px;
        background: #A37B3B;
        border-radius: 8px;
    }
    
    .voice-shortcode .voice-info {
        max-width: 304px;
        text-align: left;
    }
    
    .voice-shortcode .customer-header {
        gap: 15px;
        margin-bottom: 15px;
        justify-content: flex-start;
    }
    
    .voice-shortcode .customer-name {
        font-size: 20px;
    }
    
    .voice-shortcode .customer-age-gender {
        font-size: 12px;
    }
    
    .voice-shortcode .customer-comment p {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .voice-shortcode .disclaimer {
        font-size: 6px;
        text-align: left;
    }
    
    .voice-shortcode .detail-button {
        width: 304px;
        padding: 15px 25px;
        font-size: 16px;
    }
    
    .voice-shortcode .detail-button::after {
        right: -12px;
        width: 24px;
    }
}
