@charset "UTF-8";

/* =========================================
 * SERVICE (serviceページ専用)
 * =========================================
 */

/* セクション余白の統一（値を縮小：80px -> 60px） */
:root {
    --section-spacing: 60px;
}

.service-hero {
    position: relative;
    width: 100%;
    /* 修正：PC画面での高さを800pxに固定（画面を伸ばしても位置がズレないように） */
    height: 800px;
    background-color: #f4f4f4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(var(--header-height) * -1);
}

/* テキストスライダー (Ticker) */
.hero-ticker-wrap {
    position: absolute;
    /* 修正：画像と重なる位置に固定するため、数値を 75% から 65% へ調整 */
    top: 65%;
    left: 0;
    width: 100%;
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
}

.hero-ticker {
    display: inline-block;
    animation: ticker-scroll 80s linear infinite;
}

.ticker-text {
    font-family: var(--font-eng);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: inline-block;
    padding-right: 0.2em;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* メイン画像 */
.hero-image-wrap {
    position: relative;
    z-index: 2;
    width: 60%;
    max-width: 900px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
}

.hero-image-inner {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: transparent;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: transparent !important;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-hero:hover .hero-main-img {
    transform: scale(1.05);
}

/* --- OVERVIEW CONTENTS --- */

.section {
    position: relative;
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

/* OVERVIEWセクションの上部余白を調整（30px -> 80pxに拡大） */
#overview {
    padding-top: 80px; 
}

/* 縦読み背景テキスト */
.section-bg-text {
    position: absolute;
    top: 0;
    left: max(10px, calc(50% - 750px));
    font-family: var(--font-eng);
    font-size: clamp(8rem, 18vw, 22rem); 
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    pointer-events: none;
    z-index: -1; 
    line-height: 1;
    letter-spacing: 0.05em;
}

/* 追加：右側に配置するためのクラス */
.section-bg-text.right-side {
    left: auto;
    right: max(10px, calc(50% - 750px));
}

.overview-concept {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.concept-lead {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    /* タイピングアニメーション用の設定 */
    display: flex;
    justify-content: center;
}

.concept-lead span {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--text-color); /* タイピングカーソル */
    width: 0;
    opacity: 0;
}

/* セクションが可視化された時にアニメーション実行 */
.fade-up.is-visible .concept-lead span {
    opacity: 1;
    animation: 
        typing 3s steps(14, end) forwards, /* 修正：句点削除に伴い15文字から14文字へ */
        blink-caret 0.75s step-end 4 forwards; 
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--text-color); }
}

.concept-text {
    font-size: 1rem;
    line-height: 2.2;
    color: var(--text-color);
}

.overview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.feature-item {
    position: relative;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.feature-num {
    font-family: var(--font-eng);
    font-size: 0.9rem;
    color: #ccc;
    position: absolute;
    top: 10px;
    left: 0;
}

.feature-title {
    font-family: var(--font-eng);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

/* 追加：英語表記（サブタイトル）のスタイル */
.feature-title .en-sub {
    font-size: 0.9rem;
    color: var(--sub-text-color);
    font-weight: 400;
    margin-left: 10px;
    display: inline-block;
    font-family: var(--font-eng);
}

.feature-desc {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-color);
}

/* --- PRICE MENU / PLANS --- */

.overview-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.overview-maintenance-wrap {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 1200px) {
    .overview-plans-grid,
    .overview-maintenance-wrap {
        margin-left: calc(50% - 600px);
        width: 1200px;
    }
}

.plan-card {
    border: 1px solid var(--text-color);
    padding: 60px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.plan-tag {
    font-family: var(--font-eng);
    font-size: 0.8rem;
    display: inline-block;
    background: var(--text-color);
    color: #fff;
    padding: 4px 12px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.plan-price {
    font-family: var(--font-eng);
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.plan-price span {
    font-size: 1rem;
    font-family: var(--font-main);
}

.plan-list {
    text-align: left;
    display: inline-block;
    margin-bottom: 0;
}

.plan-list li {
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.plan-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #ccc;
}

/* --- FLOW SECTION --- */

/* ヘッダー下部の余白も統一して詰める */
#flow .section-header {
    margin-bottom: 40px; 
}

.flow-progress {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0 20px; 
}

.progress_inner {
    position: relative;
    width: 100%;
}

/* ラジオボタンを非表示 */
.progress_inner input[type="radio"] {
    display: none;
}

/* ステップラベル */
.progress_inner__step_container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.progress_inner__step {
    width: 20%;
    text-align: center;
    position: relative;
}

.progress_inner__step label {
    display: block;
    padding-top: 40px;
    font-family: var(--font-eng);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #ccc;
    cursor: pointer;
    transition: color 0.4s;
    position: relative;
}

/* ステップ番号（円形部分） */
.progress_inner__step label:before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border: 3px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-eng);
    font-size: 11px;
    font-weight: 700;
    color: #ccc;
    transition: all 0.4s;
    z-index: 2;
}

.progress_inner__step:nth-of-type(1) label:before { content: '1'; }
.progress_inner__step:nth-of-type(2) label:before { content: '2'; }
.progress_inner__step:nth-of-type(3) label:before { content: '3'; }
.progress_inner__step:nth-of-type(4) label:before { content: '4'; }
.progress_inner__step:nth-of-type(5) label:before { content: '5'; }

/* プログレスバー */
.progress_inner__bar_wrap {
    position: absolute;
    top: 15px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #eee;
    z-index: 1;
}

.progress_inner__bar {
    height: 100%;
    width: 0%;
    background: var(--text-color);
    transition: width 0.8s cubic-bezier(0.915, 0.015, 0.3, 1.005);
}

.progress_inner__bar--set {
    display: none;
}

/* ラジオボタン連動ロジック */
#step-1:checked ~ .progress_inner__bar_wrap .progress_inner__bar { width: 0%; }
#step-1:checked ~ .progress_inner__step_container .progress_inner__step:nth-child(1) label { color: var(--text-color); font-weight: 700; }
#step-1:checked ~ .progress_inner__step_container .progress_inner__step:nth-child(1) label:before { border-color: var(--text-color); color: var(--text-color); }

#step-2:checked ~ .progress_inner__bar_wrap .progress_inner__bar { width: 25%; }
#step-2:checked ~ .progress_inner__step_container .progress_inner__step:nth-child(2) label { color: var(--text-color); font-weight: 700; }
#step-2:checked ~ .progress_inner__step_container .progress_inner__step:nth-child(2) label:before { border-color: var(--text-color); color: var(--text-color); }

#step-3:checked ~ .progress_inner__bar_wrap .progress_inner__bar { width: 50%; }
#step-3:checked ~ .progress_inner__step_container .progress_inner__step:nth-child(3) label { color: var(--text-color); font-weight: 700; }
#step-3:checked ~ .progress_inner__step_container .progress_inner__step:nth-child(3) label:before { border-color: var(--text-color); color: var(--text-color); }

#step-4:checked ~ .progress_inner__bar_wrap .progress_inner__bar { width: 75%; }
#step-4:checked ~ .progress_inner__step_container .progress_inner__step:nth-child(4) label { color: var(--text-color); font-weight: 700; }
#step-4:checked ~ .progress_inner__step_container .progress_inner__step:nth-child(4) label:before { border-color: var(--text-color); color: var(--text-color); }

#step-5:checked ~ .progress_inner__bar_wrap .progress_inner__bar { width: 100%; }
#step-5:checked ~ .progress_inner__step_container .progress_inner__step:nth-child(5) label { color: var(--text-color); font-weight: 700; }
#step-5:checked ~ .progress_inner__step_container .progress_inner__step:nth-child(5) label:before { border-color: var(--text-color); color: var(--text-color); }

/* タブコンテンツの表示切り替え */
.progress_inner__tabs {
    margin-top: 60px;
    background: #fff;
    border: 1px solid var(--text-color);
    padding: 60px;
    height: auto;
    position: relative;
    box-shadow: 10px 10px 0px #f4f4f4;
}

.progress_inner__tabs .tab {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#step-1:checked ~ .progress_inner__tabs .tab:nth-of-type(1),
#step-2:checked ~ .progress_inner__tabs .tab:nth-of-type(2),
#step-3:checked ~ .progress_inner__tabs .tab:nth-of-type(3),
#step-4:checked ~ .progress_inner__tabs .tab:nth-of-type(4),
#step-5:checked ~ .progress_inner__tabs .tab:nth-of-type(5) {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tab-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.tab-text {
    line-height: 1.8;
    color: var(--text-color);
}

/* --- OTHER SERVICES SECTION --- */

.other-services-list {
    margin-top: 40px;
}

.other-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 60px 0;
    transition: background 0.3s ease;
}

.other-service-item:first-child {
    border-top: 1px solid #ddd;
}

.other-service-content {
    flex: 1;
    padding-right: 60px;
}

.other-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

/* 補足の英語表記用スタイル */
.other-service-title .en-sub {
    font-size: 0.9rem;
    color: var(--sub-text-color);
    font-weight: 400;
    margin-left: 10px;
    display: inline-block;
    font-family: var(--font-eng);
}

.other-service-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
}

.other-service-num {
    font-family: var(--font-eng);
    font-size: 8rem;
    font-weight: 700;
    line-height: 0.8;
    color: #111;
    letter-spacing: -0.05em;
}

/* --- SITE LINEUP SECTION --- */

@font-face {
    font-family: "PPSupplyMono";
    src: url("https://assets.codepen.io/7558/PPSupplyMono-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.lineup-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    border-radius: 4px;
    cursor: grab;
}

.webgl-canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* 左右のナビゲーションを矢印に変更 */
.slide-number, .slide-total {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 60px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: background 0.3s ease;
    text-indent: -9999px; 
}

.slide-number:hover, .slide-total:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* 矢印アイコンをCSSで描画 */
.slide-number::after, .slide-total::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
}

.slide-number { left: 0; border-radius: 0 4px 4px 0; }
.slide-number::after {
    transform: rotate(-135deg);
    left: 16px;
}

.slide-total { right: 0; border-radius: 4px 0 0 4px; }
.slide-total::after {
    transform: rotate(45deg);
    right: 16px;
}

.slides-navigation {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    gap: 0;
    z-index: 3;
    pointer-events: all;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    padding: 0.5rem;
}

.slide-nav-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 1rem;
    flex: 1;
    border: none;
    background: none;
}

.slide-progress-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
    border-radius: 1px;
    overflow: hidden;
}

.slide-progress-fill {
    height: 100%;
    width: 0%;
    background: #fff;
    transition: width 0.1s ease, opacity 0.3s ease;
}

.slide-nav-title {
    font-family: "PPSupplyMono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    transition: color 0.3s ease;
}

.slide-nav-item.active .slide-nav-title {
    color: #fff;
}

.slide-title {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: "PPSupplyMono", monospace;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 24px;
    border-radius: 2px;
    backdrop-filter: blur(8px);
    z-index: 3;
    pointer-events: none;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.slide-cta-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

@media (hover: hover) {
    .slider-wrapper:hover .slide-cta-overlay {
        opacity: 1;
        visibility: visible;
    }
}

.view-site-btn {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.4); 
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-family: var(--font-eng);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.view-site-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

.slider-wrapper {
    opacity: 0;
    transition: opacity 1.5s ease-in;
}

.slider-wrapper.loaded {
    opacity: 1;
}

/* * =========================================
 * FEATURE TITLE ANIMATION 
 * =========================================
 */
.anim-text {
    overflow: hidden;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
}

.anim-text.is-active {
    --skewX: 0deg;
    --cover-x: 101%;
    --x: 0;
}

.anim-text::before,
.anim-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* border-radiusはデザインに合わせて調整（今回は四角くする） */
    transform: translateX(var(--cover-x, -101%));
    transition: transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
    z-index: 2;
}

/* 黒帯 */
.anim-text::before {
    background-color: var(--text-color);
}

/* 水色帯（アクセント） */
.anim-text::after {
    background-color: #bce9ec;
    transition-delay: 0.16s;
}

.word {
    color: inherit; /* 親の文字色を継承 */
    display: inline-block;
    white-space: nowrap;
    
    /* アニメーション用 */
    transform: translateX(var(--x, -110%)) skewX(var(--skewX, 8deg));
    transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.3s;
}

/* レスポンシブ調整 */

@media screen and (max-width: 1024px) {
    :root { --section-spacing: 40px; } 
    
    .overview-features { gap: 40px; }
    
    .overview-plans-grid,
    .overview-maintenance-wrap {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin-left: auto;
        width: 100%;
    }

    .slider-wrapper { aspect-ratio: 4 / 3; }
    .slide-title { font-size: 1rem; padding: 8px 16px; }

    /* Hero Section Adjustment */
    .service-hero {
        height: 60vh; /* タブレットで高さを抑える */
        min-height: 500px;
    }
    
    .hero-image-wrap {
        width: 70%; /* 画像サイズ調整 */
    }
    
    .hero-ticker-wrap {
        top: 65%; /* 重なり具合の調整 */
    }
}

@media screen and (max-width: 768px) {
    .overview-features { grid-template-columns: 1fr; gap: 30px; }
    .plan-card { padding: 40px 24px; }
    
    /* 修正：以前の display: none; を削除し、以下の表示スタイルに置き換え */
    .section-bg-text { 
        display: block;
        writing-mode: horizontal-tb; /* 縦書きを解除して横書きに */
        left: 50%;
        transform: translateX(-50%); /* 左右中央揃え */
        top: 70px; /* 位置を少し高く調整 (100px -> 70px) */
        width: 100%;
        text-align: center;
        font-size: 13vw; /* スマホ画面に合わせたサイズ */
        opacity: 0.15; /* 色を少し濃く調整 (0.1 -> 0.15) */
        white-space: nowrap;
        z-index: 0; /* 前面に配置 */
        color: #ddd; /* 色を設定 */
    } 

    /* 追加：スマホ時は右側用テキスト（HIROYASU YAMADA）は非表示にする */
    .section-bg-text.right-side {
        display: none;
    }
    
    .slides-navigation { bottom: 1rem; left: 1rem; right: 1rem; }
    .slide-nav-item { padding: 0.5rem; }
    .slide-nav-title { display: none; }
    
    /* Flow Responsive */
    .progress_inner__step label { font-size: 0.6rem; }
    .progress_inner__tabs { padding: 30px; }

    /* Other Services Responsive */
    .other-service-item { padding: 40px 0; }
    .other-service-content { padding-right: 20px; }
    .other-service-num { font-size: 5rem; }
    
    /* スマホ時のみ英語表記を改行 */
    .other-service-title .en-sub {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    /* 追加：Overviewのタイトル英語表記もスマホ時は改行 */
    .feature-title .en-sub {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    /* Hero Section Adjustment Mobile */
    .service-hero {
        height: 50vh; /* スマホでさらに高さを抑える */
        min-height: 400px;
    }
    
    .hero-image-wrap {
        width: 85%; /* 画像を大きく */
    }
    
    .hero-ticker-wrap {
        top: 60%; /* 重なり具合の調整 */
    }
}

/* --- CTA BUTTON EMPHASIS --- */
.service-contact-btn {
    font-size: 1.1rem;
    padding: 20px 80px;
    /* 青色グラデーションに変更 */
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
    color: #ffffff;
    font-weight: 700;
    border: none; /* グラデーション時はボーダーなしが一般的 */
    letter-spacing: 0.15em;
    min-width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 91, 234, 0.3); /* 影をつけて立体感を出す */
}

.service-contact-btn:hover {
    /* ホバー時は少し浮き上がるようなエフェクトに */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 91, 234, 0.5);
    opacity: 0.95;
    color: #fff;
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
}

@media screen and (max-width: 768px) {
    .service-contact-btn {
        width: 100%;
        padding: 18px 20px;
        font-size: 1rem;
    }
}

/* --- CONTACT SECTION STYLE --- */
#contact {
    padding-top: 40px; /* 150px -> 40px に短縮して間隔を詰める */
    padding-bottom: 150px;
    position: relative;
    overflow: hidden;
}

.contact-full-title {
    font-family: var(--font-eng);
    font-size: 10vw; /* 18vw -> 10vw に縮小 */
    font-weight: 700;
    line-height: 1;
    color: var(--text-color); /* 白抜きを解除し、他と共通の黒系に設定 */
    -webkit-text-stroke: none; /* 枠線を削除 */
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
    transform: scaleX(1.3); /* 横に引き伸ばす効果は継続 */
    transform-origin: center;
    position: relative;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    #contact {
        padding-top: 40px; /* スマホ時も詰める */
        padding-bottom: 100px;
    }
    .contact-full-title {
        font-size: 14vw; /* 22vw -> 14vw に縮小 */
    }
}

/* --- CTA BUTTON (GO TO CONTACT FORM) --- */
.contact-form-btn {
    font-size: 1.2rem;
    padding: 22px 120px; /* 横長に大きく */
    background-color: var(--text-color);
    color: #ffffff;
    border: 1px solid var(--text-color);
    letter-spacing: 0.2em;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    width: auto;
}

.contact-form-btn:hover {
    background-color: transparent;
    color: var(--text-color);
}

@media screen and (max-width: 768px) {
    .contact-form-btn {
        width: 100%;
        padding: 20px 20px;
        font-size: 1rem;
    }
}

/* ★ 追加：ABOUTページと共通のパンくずリストスタイル */
.breadcrumb {
    font-size: 0.75rem; /* 12px */
    color: #999;
    margin-top: 30px;
    margin-bottom: 60px;
    font-family: var(--font-eng);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.breadcrumb a {
    color: #999;
}