@charset "UTF-8";

/* ==========================================================================
   1. 共通設定（全ページ共通）
   ========================================================================== */
:root {
    --main-gold: #c5a059;
    --dark-charcoal: #333333;
    --bg-white: #ffffff;
    --light-gray: #f8f9fa;
    --accent-terracotta: #d35b31;
    --soft-gold-bg: #fcf9f2;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--dark-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.section-padding {
    padding: 100px 5%;
}

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

/* ------------------ ヘッダー（共通） ------------------ */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1200;
    border-bottom: 1px solid #f0f0f0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
}

.site-logo {
    font-weight: 800;
    color: var(--dark-charcoal);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
}

.site-nav .nav-list {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--dark-charcoal);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 10px;
    transition: color 0.18s ease;
}

.nav-link:hover {
    color: var(--main-gold);
}

@media (max-width: 768px) {
    .header-inner {
        padding: 12px 5%;
    }

    .site-nav .nav-list {
        gap: 12px;
        font-size: 0.95rem;
    }
}

/* 共通コンポーネント：ボタン */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background-color: var(--dark-charcoal);
    color: #ffffff !important;
    text-decoration: none;
    padding: 22px 45px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--main-gold);
    transform: translateY(-3px);
}

.btn-arrow {
    margin-left: 20px;
    font-size: 1.4rem;
}

/* Contact form — prevent button wrapping and improve responsive layout */
.contact-form .btn-primary,
.contact-form .gold-btn {
    white-space: nowrap;
    /* prevent text wrapping */
    padding: 14px 28px;
    /* slightly smaller on-form buttons */
    font-size: 1rem;
}

.form-actions .btn-primary {
    min-width: 160px;
}

/* Keep sub-hero left-aligned on contact page; center only the form-action buttons */
.sub-hero .sub-hero-content {
    text-align: left;
}

.form-actions {
    justify-content: center;
    /* center the buttons row */
}

.form-actions .btn-primary,
.form-actions .gold-btn {
    justify-content: center;
    /* ensure button label is centered */
    text-align: center;
}

@media (max-width: 768px) {
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions .btn-primary,
    .form-actions .gold-btn {
        width: 100%;
        padding: 16px;
    }
}

/* ==========================================================================
   2. トップページ専用（index.html用）
   ========================================================================== */

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    background-image: url('img/top01-1.png');
    background-size: cover;
    background-position: center right;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-content {
    max-width: 680px;
}

.hero-sub-tag {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: var(--main-gold);
}

.hero-title {
    font-family: "Yu Mincho", serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.35;
    margin-bottom: 2rem;
    font-weight: 600;
}

.gold-text {
    color: var(--main-gold);
}

.method-box {
    margin-bottom: 2.5rem;
    border-left: 3px solid var(--main-gold);
    padding-left: 20px;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    font-weight: 500;
}

/* Problem Section */
.section-problem {
    text-align: center;
}

.problem-sup {
    color: var(--accent-terracotta);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.main-title-jp {
    font-family: "Yu Mincho", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 60px;
    line-height: 1.4;
}

.wall-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.wall-card {
    background: var(--light-gray);
    padding: 50px 40px;
    text-align: left;
    border-bottom: 4px solid var(--main-gold);
    position: relative;
}

.wall-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.1);
    line-height: 1;
    margin-bottom: -15px;
}

.wall-keyword {
    color: var(--accent-terracotta);
    font-weight: 700;
    font-size: 1.2rem;
}

.problem-solution-msg {
    padding: 60px;
    background-color: var(--dark-charcoal);
    color: #fff;
    margin-top: 80px;
}

.gold-line {
    border-bottom: 2px solid var(--main-gold);
}

.result-badge {
    display: inline-block;
    border: 1px solid var(--main-gold);
    padding: 10px 30px;
    margin-top: 25px;
    color: var(--main-gold);
    font-weight: bold;
}

/* Tech Section */
.section-tech {
    background-color: var(--light-gray);
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tech-card {
    background: #fff;
    padding: 45px 35px;
    border-top: 5px solid var(--dark-charcoal);
    text-align: left;
    transition: 0.3s;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--main-gold);
}

.tech-num {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--main-gold);
    border-bottom: 1px solid #eee;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.tech-badge {
    background: var(--main-gold);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Future Section */
.section-future {
    background-color: var(--soft-gold-bg);
}

.future-grid {
    display: grid;
    gap: 30px;
    margin-top: 60px;
}

.future-item {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 50px;
    box-shadow: 10px 10px 0 var(--main-gold);
}

.future-n {
    font-size: 4rem;
    font-weight: 900;
    color: var(--main-gold);
    line-height: 1;
    font-family: serif;
}

/* Profile Section */
.profile-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.profile-text {
    flex: 1.2;
}

.profile-img {
    flex: 1;
    text-align: right;
}

.profile-img img {
    max-width: 500px;
    width: 100%;
    filter: drop-shadow(20px 20px 50px rgba(0, 0, 0, 0.1));
}

.profile-sup {
    color: var(--main-gold);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 10px;
}

.profile-name {
    font-family: "Yu Mincho", serif;
    font-size: 2.8rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.profile-name span {
    font-size: 1.2rem;
    color: #999;
    margin-left: 20px;
    font-family: sans-serif;
}

.profile-lead {
    color: var(--main-gold);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 35px;
}

.profile-point {
    margin-bottom: 30px;
    border-left: 3px solid var(--main-gold);
    padding-left: 25px;
}

/* Offer Section */
.section-offer {
    background-color: var(--dark-charcoal);
    color: #fff;
    text-align: center;
}

.offer-box {
    border: 1px solid var(--main-gold);
    padding: 80px 40px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
}

.offer-limit {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-gold);
    padding: 10px 40px;
    font-weight: bold;
}

.offer-title {
    font-family: "Yu Mincho", serif;
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-top: 2px solid var(--main-gold);
    text-align: left;
}

.benefit-card h5 {
    color: var(--main-gold);
    margin-bottom: 10px;
    font-size: 1rem;
}

.price-area {
    margin-top: 60px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 40px;
}

.price-tag {
    font-size: 4rem;
    font-weight: 700;
    color: var(--main-gold);
    margin-bottom: 40px;
    font-family: "Helvetica Neue", sans-serif;
}

.price-tag span {
    font-size: 1.2rem;
    color: #fff;
    font-family: sans-serif;
}

.gold-btn {
    background-color: var(--main-gold);
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   3. 選択理論研修ページ専用（select.html用）
   ========================================================================== */

/* --- Sub Hero --- */
.sub-hero {
    position: relative;
    padding: 220px 0 180px;
    background-color: #1a1a1a;
    color: #fff;
    overflow: hidden;
}

.sub-hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background-image: url('img/select00-1.png');
    background-size: cover;
    background-position: center left;
    z-index: 1;
}

.sub-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(20, 20, 20, 1) 0%, rgba(20, 20, 20, 0.9) 35%, rgba(20, 20, 20, 0.2) 60%, rgba(20, 20, 20, 0) 100%);
    z-index: 2;
}

.sub-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
}

.method-tag-box {
    margin-bottom: 35px;
}

.method-tag {
    background-color: var(--main-gold);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    display: inline-block;
}

.method-name-en {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.sub-hero-title {
    font-family: "Yu Mincho", serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.4;
    margin-bottom: 50px;
    font-weight: 600;
}

/* --- Section Logic --- */
.section-logic {
    background-color: #fff;
}

.logic-intro {
    text-align: center;
    margin-bottom: 80px;
}

.logic-sup {
    color: var(--accent-terracotta);
    font-weight: 800;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 15px;
}

.logic-lead-text {
    max-width: 850px;
    margin: 30px auto 0;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
}

.chart-flex {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 120px;
}

.chart-img {
    flex: 1.3;
    text-align: center;
}

.chart-img img {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.img-caption {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #999;
    font-weight: bold;
}

.chart-text {
    flex: 1;
}

.need-item {
    margin-bottom: 45px;
    position: relative;
    padding-left: 70px;
}

.need-num {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.2);
    font-family: serif;
}

.need-item h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--main-gold);
    display: inline-block;
    color: var(--dark-charcoal);
}

.need-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.75;
}

.seminar-preview {
    display: flex;
    background: var(--dark-charcoal);
    color: #fff;
    align-items: stretch;
    margin-top: 100px;
}

.seminar-preview-text {
    flex: 1.2;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seminar-preview-text h3 {
    font-family: "Yu Mincho", serif;
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.seminar-preview-img {
    flex: 1;
    min-height: 450px;
}

.seminar-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Section Features --- */
.section-features {
    background-color: var(--light-gray);
}

.feature-intro {
    text-align: center;
    margin-bottom: 100px;
}

.feature-item-box-full {
    background: #fff;
    padding: 80px 60px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.feature-item-box-flex {
    background: #fff;
    padding: 80px 60px;
    margin-bottom: 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.feature-item-box-flex.reverse {
    flex-direction: row-reverse;
}

.feature-num {
    display: block;
    font-family: serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.15);
    line-height: 1;
    margin-bottom: -15px;
}

.feature-text {
    flex: 1.2;
}

.feature-text h3 {
    font-family: "Yu Mincho", serif;
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--dark-charcoal);
}

.feature-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.habit-comparison {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}

.habit-card {
    flex: 1;
    padding: 40px;
    border-radius: 8px;
}

.habit-card.fatal {
    background: #fdf2f2;
    border-top: 4px solid #d35b31;
}

.habit-card.caring {
    background: #f2f9fd;
    border-top: 4px solid #c5a059;
}

.habit-card h5 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.habit-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.habit-card li {
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark-charcoal);
}

.habit-arrow {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: var(--main-gold);
    font-weight: 900;
}

.quote-box {
    background: var(--dark-charcoal);
    color: #fff;
    padding: 50px 30px;
    border-left: 5px solid var(--main-gold);
    position: relative;
    text-align: left;
}

.quote-box p {
    font-family: "Yu Mincho", serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quote-box cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--main-gold);
    letter-spacing: 0.1em;
}

/* --- Section Voice --- */
.section-voice {
    background-color: var(--soft-gold-bg);
}

.voice-header {
    text-align: center;
    margin-bottom: 80px;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.voice-card {
    background: #fff;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.voice-client {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 15px;
}

.client-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--main-gold);
    margin-bottom: 5px;
}

.voice-content h4 {
    font-family: "Yu Mincho", serif;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--dark-charcoal);
    position: relative;
}

.voice-content h4::before {
    content: "“";
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 3rem;
    color: var(--main-gold);
    opacity: 0.3;
}

.voice-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* --- Section Offer --- */
.section-offer {
    background-color: var(--dark-charcoal);
    color: #fff;
    text-align: center;
}

.offer-box {
    border: 1px solid var(--main-gold);
    padding: 80px 40px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
}

.offer-limit {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-gold);
    padding: 10px 40px;
    font-weight: bold;
}

.offer-title {
    font-family: "Yu Mincho", serif;
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.offer-condition-tag {
    display: inline-block;
    background: #fff;
    color: var(--dark-charcoal);
    padding: 5px 20px;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.offer-intro-text {
    font-size: 1.15rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-top: 2px solid var(--main-gold);
    text-align: left;
}

.benefit-card h5 {
    color: var(--main-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.price-area {
    margin-top: 60px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 50px;
}

.price-label {
    font-size: 1.1rem;
    color: var(--main-gold);
    display: block;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 4rem;
    font-weight: 700;
    color: var(--main-gold);
    margin-bottom: 10px;
}

.price-tag span {
    font-size: 1.2rem;
    color: #fff;
}

.price-total-note {
    color: #aaa;
    margin-bottom: 40px;
    font-weight: bold;
}

/* ==========================================================================
   4. 利き脳ページ専用（dominant-brain.html用）
   ========================================================================== */

/* --- Hero背景画像 (brain00.jpg反映) --- */
.brain-hero {
    background-color: #0d1a2d;
}

.brain-bg {
    background-image: url('img/brain00.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    /* 文字が見えにくい場合はここを調整 */
}

/* --- Success Cycle --- */
.cycle-flex-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.cycle-visual-area {
    flex: 1.2;
    min-width: 320px;
}

.cycle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    position: relative;
}

.c-step {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--main-gold);
}

.c-step h5 {
    color: var(--main-gold);
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.c-step p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #555;
}

.cycle-text-area {
    flex: 0.8;
    min-width: 300px;
}

/* --- Brain Type Grid --- */
.section-quick-diag {
    background-color: #fcf9f2;
}

.brain-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.type-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-bottom: 4px solid #eee;
}

.type-header {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--main-gold);
    margin-bottom: 10px;
}

.type-tagline {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--dark-charcoal);
    margin-bottom: 15px;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

/* --- Blueprint --- */
.blueprint-flex {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.blueprint-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.b-team-card {
    background: #fff;
    padding: 25px;
    border: 1px dashed var(--main-gold);
    border-radius: 4px;
}

.dot {
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    color: #fff;
    margin-right: 5px;
    font-weight: bold;
}

.dot.yellow {
    background: #b7791f;
}

.dot.blue {
    background: #2c5282;
}

.dot.red {
    background: #9b2c2c;
}

.dot.green {
    background: #276749;
}

/* --- Interview --- */
.section-interview {
    background-color: var(--dark-charcoal);
    color: #fff;
}

.interview-flex {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.interview-photo {
    flex: 0.7;
    min-width: 280px;
}

.interview-photo img {
    width: 100%;
    border: 1px solid var(--main-gold);
    box-shadow: 10px 10px 0 var(--main-gold);
}

.interview-box {
    flex: 1.3;
}

.interview-title {
    font-family: "Yu Mincho", serif;
    color: var(--main-gold);
    font-size: 1.8rem;
    margin: 15px 0 30px;
}

/* --- Heavy Offer & Button Fix --- */
.offer-heavy-box {
    border: 2px solid var(--main-gold);
    padding: 60px 40px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    max-width: 850px;
    background: #fff;
}

.offer-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-gold);
    color: #fff;
    padding: 5px 25px;
    font-weight: bold;
    font-size: 0.8rem;
}

.offer-benefit-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 50px;
}

.o-benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.o-icon {
    color: var(--main-gold);
    flex-shrink: 0;
}

.offer-price-card {
    background: var(--dark-charcoal);
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.p-card-body {
    padding: 40px;
    text-align: center;
}

.p-main {
    font-size: 2.6rem;
    color: var(--main-gold);
    font-weight: 700;
    margin-bottom: 30px;
}

.p-main span {
    font-size: 1rem;
    color: #fff;
}

/* ボタン表示の強制修正 */
.offer-btn-wrapper {
    display: block !important;
    visibility: visible !important;
    margin-top: 20px;
}

.visible-btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background-color: var(--main-gold) !important;
    color: #fff !important;
    padding: 20px 40px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: 0.3s ease;
}

.visible-btn:hover {
    background-color: #b38e4a !important;
    /* 少し濃い目のゴールド */
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .offer-heavy-box {
        padding: 40px 20px;
    }

    .p-main {
        font-size: 2rem;
    }
}

/* --- SECTION 4: Value (近藤理紗の介在価値) --- */
.section-value {
    background-color: #fff;
}

.value-flex {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.value-text {
    flex: 1.3;
}

.value-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.v-reason-item {
    margin-bottom: 40px;
    padding-left: 25px;
    border-left: 3px solid var(--main-gold);
}

.v-reason-item h4 {
    font-size: 1.2rem;
    color: var(--dark-charcoal);
    margin-bottom: 12px;
    font-weight: 800;
}

.v-reason-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.value-visual {
    flex: 0.7;
    position: sticky;
    top: 100px;
}

.v-photo-frame {
    position: relative;
}

.v-photo-frame::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--main-gold);
    z-index: -1;
}

.v-photo-frame img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
}

@media (max-width: 992px) {
    .value-flex {
        flex-direction: column;
    }

    .value-visual {
        width: 100%;
        margin-top: 50px;
    }
}

/* ==========================================================================
   5. 会社の保健室ページ専用（hoken.html用）
   ========================================================================== */

/* --- Hero --- */
.health-hero {
    background-color: #f0f4f8;
}

.health-bg {
    background-image: url('img/top03.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

/* --- SECTION 2: Loss (修正) --- */
.section-loss {
    background-color: #fff;
}

.sub-title-jp {
    font-size: 1.5rem;
    color: var(--accent-terracotta);
    margin-top: 15px;
    font-weight: 700;
    text-align: center;
}

.loss-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.loss-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.loss-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(197, 160, 89, 0.1);
}

.loss-card h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.4;
}

.loss-card .highlight {
    color: var(--accent-terracotta);
}

/* --- SECTION 3: Solution (修正) --- */
.section-solution {
    background-color: #f8f9fa;
}

.solution-concept {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    background: #fff;
    padding: 40px;
    border: 1px dashed var(--main-gold);
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.solution-item {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.sol-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sol-num {
    width: 40px;
    height: 40px;
    background: var(--main-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
}

.sol-header h4 {
    font-size: 1.25rem;
    font-weight: 800;
}

.sol-content-inner {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.sol-content-inner p {
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.sol-highlight {
    font-weight: 700;
    color: var(--dark-charcoal);
    border-left: 4px solid var(--main-gold);
    padding-left: 15px;
}

/* --- SECTION 4: Value --- */
.value-flex {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.value-text {
    flex: 1.2;
    min-width: 320px;
}

.v-reason-item {
    margin-bottom: 35px;
    border-left: 3px solid var(--main-gold);
    padding-left: 20px;
}

.v-reason-item h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.value-visual {
    flex: 0.8;
    min-width: 300px;
}

.v-photo-frame img {
    width: 100%;
    border: 1px solid var(--main-gold);
    box-shadow: 15px 15px 0 var(--main-gold);
}

/* --- Offer --- */
.offer-heavy-box {
    border: 2px solid var(--main-gold);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

.offer-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-gold);
    color: #fff;
    padding: 5px 25px;
    font-weight: bold;
}

.offer-price-card {
    background: var(--dark-charcoal);
    color: #fff;
    margin-top: 40px;
}

.p-main {
    font-size: 2.5rem;
    color: var(--main-gold);
    padding: 40px 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .sol-content-inner {
        flex-direction: column;
    }

    .value-flex {
        flex-direction: column;
    }
}

/* ==========================================================================
   6. レスポンシブ対応
   ========================================================================== */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 5%;
    }

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

    .future-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .profile-flex {
        flex-direction: column-reverse;
        text-align: center;
    }

    .profile-img {
        text-align: center;
        margin-top: 40px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .method-box {
        border-left: none;
        padding-left: 0;
    }
}