@charset "euc-jp";

/* ==========================================================
       PC・家電テーマ ? ダークテック配色
       ========================================================== */
:root {
    /* ── 基調色：チャコール系 ── */
    --dark-900: #0B0F14;
    --dark-800: #111820;
    --dark-700: #1A2233;
    --dark-600: #243044;
    --dark-500: #2E3D55;

    /* ── テキスト ── */
    --text-white: #FFFFFF;
    --text-light: #C8CDD5;
    --text-muted: #e6f0ff;

    /* ── アクセント：エレクトリックシアン ── */
    --accent: #00D4FF;
    --accent-dim: rgba(0, 212, 255, 0.12);
    --accent-glow: rgba(0, 212, 255, 0.25);

    /* ── CTA：バーミリオンオレンジ ── */
    --cta: #FF5722;
    --cta-hover: #E64A19;

    /* ── サブアクセント ── */
    --green: #00E676;
    --yellow: #FFD740;

    /* ── ボーダー ── */
    --border: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(0, 212, 255, 0.2);

    /* ── ライトセクション用 ── */
    --light-bg: #FFFFFF;
    --light-card: #FFFFFF;
    --light-text: #1A1D23;
    --light-sub: #4A5568;
    --light-muted: #8895A7;
    --light-border: #E2E5EA;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
    background: var(--light-bg);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

strong {
    font-weight: 700 !important;
}

.container {
    width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block;
    background: var(--cta);
    color: #fff;
    border-radius: 6px !important;
    padding: 16px 36px !important;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.2s;
    text-align: center;
}

.btn-primary a {
    color: #ffffff !important;
}

.btn-primary:hover {
    background: var(--cta-hover);
    color: #ffffff !important;
}

.btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px !important;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
    text-align: center;
    border: 2px solid;
}

.btn-secondary:hover {
    border: 2px solid;
    color: #000000 !important;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 6px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
    text-align: center;
}

.btn-outline:hover {
    color: #ffffff;
}

.btn-large {
    padding: 18px 60px !important;
    font-size: 18px !important;
    margin: unset !important;
}

a[class*="btn"]:hover {
    transform: scale(1.1, 1.1);
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5;
}

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.8;
}

.pc-home-appliances section {
    margin: 0 auto;
}

article.pc-home-appliances {
    margin: 0 auto !important;
}

/* ===== Hero ===== */
.hero {
    background: var(--light-bg);
    padding: 120px 0 84px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3)), url(../images/fv.jpg);
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    width: 1100px;
}

.hero__content {
    flex: 1;
    min-width: 0;
}

.hero__label {
    display: inline-block;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 4px;
    border: 1px solid var(--border-accent);
    margin-bottom: 20px;
}

.hero__title {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark-900);
    letter-spacing: 0.01em;
}

.hero__title--accent {
    color: var(--accent);
    font-weight: 700;
}

.hero__sub {
    font-size: 18px;
    margin-top: 16px;
    line-height: 1.8;
}

.hero__cta {
    margin-top: 32px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__badges {
    margin-top: 28px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgb(255 255 255 / 50%);
    font-size: 14px;
    padding: 7px 10px;
    border-radius: 4px;
    letter-spacing: 0;
    background: rgb(255 255 255 / 50%);
}

.badge strong {
    font-weight: 500;
}

.hero__image {
    flex: 0 0 770px;
    max-width: 800px;
    margin: 0 -340px 0 0;
}

/* ===== Problems (Dark) ===== */
.problems-section {
    background: var(--dark-900);
}

.problems-section .section-title {
    color: #ffffff;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.problem-card {
    background: var(--dark-700);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    transition: border-color 0.2s;
}

.problem-card:hover {
    border-color: var(--border-accent);
}

.problem-card__num {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.problem-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.problem-card__text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

.problems__transition {
    text-align: center;
    margin-top: 78px;
    font-size: 40px;
    font-weight: 500;
    color: var(--text-light);
}

.problems__transition strong {
    color: var(--accent);
}

/* ===== Simulator (Dark) ===== */
.simulator-section {
    background: var(--dark-800);
}

.simulator-section .section-title {
    color: #ffffff;
}

.simulator {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.simulator__intro {
    font-size: 18px;
    color: var(--dark-800);
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.8;
}

.simulator__intro strong {
    color: var(--accent);
}

.simulator__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.simulator__item {
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--light-border);
    letter-spacing: 0;
    background: #f3f3f3;
    color: #000000;
}

.simulator__item-label {
    font-size: 14px;
    margin-bottom: 4px;
}

.simulator__item-value {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    white-space: nowrap;
}

.simulator__item-value span {
    font-size: 20px;
    font-weight: 500;
}

.simulator__result {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    padding: 24px 24px 36px;
    text-align: center;
}

.simulator__result-label {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 700;
}

.simulator__result-value {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    white-space: nowrap;
}

.simulator__note {
    font-size: 12px;
    text-align: center;
    margin-top: 16px;
    line-height: 1.7;
}

/* ===== Solution (Light) ===== */
.solution-section {
    background: var(--light-bg);
    color: var(--light-text);
}

.solution-section .section-label {
    color: #0097B2;
}

.solution-section .section-title {
    color: var(--light-text);
}

.solution-section .section-sub {
    color: var(--light-sub);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: rgb(36 151 178 / 11%);
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.solution-card__num {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0097B2;
    line-height: 1;
    margin-bottom: 16px;
}

.solution-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--light-text);
}

.solution-card__text {
    font-size: 14px;
    color: var(--light-sub);
    line-height: 1.7;
}

/* ===== Features (Dark) ===== */
.features-section {
    background: var(--dark-900);
    color: #ffffff;
}

.feature-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.feature-tab {
    flex: 1;
    min-width: 150px;
    padding: 12px 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    background: var(--dark-700);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
}

.feature-tab.active {
    background: var(--dark-600);
    color: var(--accent);
    border-color: var(--border-accent);
    border-bottom-color: var(--dark-600);
}

.feature-panel {
    display: none;
}

.feature-panel.active {
    display: block;
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.feature-table th,
.feature-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.feature-table th {
    font-weight: 700;
    background: var(--dark-700);
    width: 32%;
    font-size: 14px;
    color: var(--text-white);
}

.feature-table td {
    color: var(--text-light);
}

.tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
    vertical-align: middle;
}

.tag--standard {
    background: rgba(0, 212, 255, 0.12);
    color: var(--accent);
}

.tag--btob {
    background: rgba(255, 152, 0, 0.15);
    color: #FFB74D;
}

.tag--option {
    background: rgba(255, 215, 64, 0.12);
    color: var(--yellow);
}

/* ===== RTB (Light) ===== */
.rtb-section {
    background: var(--light-bg);
    color: var(--light-text);
}

.rtb-section .section-label {
    color: #0097B2;
}

.rtb-section .section-title {
    color: var(--light-text);
}

.rtb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rtb-card {
    background: #F0FAFB;
    border-radius: 8px;
    padding: 32px 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.rtb-card__num {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0097B2;
    margin-bottom: 12px;
}

.rtb-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--light-text);
}

.rtb-card__text {
    font-size: 14px;
    color: var(--light-sub);
    line-height: 1.7;
}

.rtb-card__highlight {
    margin-top: 16px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.rtb-card__highlight-value {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0097B2;
    white-space: nowrap;
}

.rtb-card__highlight-value span {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-sub);
}

/* ===== Stats (Dark Accent) ===== */
.stats-section {
    background: var(--dark-700);
    padding: 48px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 20px 12px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4.5vw, 74px);
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
    line-height: 1.2;
}

.stat-number .stat-unit {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-light);
}

.stat-label {
    font-size: 14px;
    color: #F0FAFB;
    margin-top: 6px;
}

/* ===== Compare (Dark) ===== */
.compare-section {
    background: var(--dark-800);
    color: var(--text-light);
}

.compare-table-wrap {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 14px;
}

.compare-table thead th {
    padding: 14px 10px;
    font-weight: 700;
    text-align: center;
    background: var(--dark-600);
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    line-height: 1.5;
}

.compare-table thead th:first-child {
    text-align: left;
    width: 22%;
}

.compare-table thead th.hl {
    background: rgba(0, 212, 255, 0.3);
    color: var(--accent);
    border-bottom: 2px solid var(--accent);
    font-size: 24px;
}

.compare-table tbody td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    vertical-align: top;
}

.compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-white);
    background: var(--dark-700);
}

.compare-table tbody td.hl {
    background: rgba(0, 212, 255, 0.2);
    color: var(--text-white);
    font-weight: 700;
}

.compare-table .c-ok {
    color: var(--accent);
}

.compare-table .c-mid {
    color: var(--yellow);
}

.compare-table .c-no {
    color: var(--text-muted);
}

.compare-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.7;
}

/* ===== Use Cases (Light) ===== */
.usecase-section {
    background: var(--light-bg);
    color: var(--light-text);
}

.usecase-section .section-label {
    color: #0097B2;
}

.usecase-section .section-title {
    color: var(--light-text);
}

.usecase-section .section-sub {
    color: var(--light-sub);
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.usecase-card {
    background: var(--light-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.usecase-card__img {
    aspect-ratio: 16 / 11.5;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.usecase-card__body {
    padding: 20px;
}

.usecase-card__label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #0097B2;
    margin-bottom: 6px;
}

.usecase-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--light-text);
}

.usecase-card__text {
    font-size: 13px;
    color: var(--light-sub);
    line-height: 1.7;
    margin-bottom: 12px;
}

.usecase-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.usecase-tag {
    font-size: 13px;
    font-weight: 700;
    color: #0097B2;
    background: #E8F7FA;
    padding: 0 8px;
    border-radius: 3px;
    line-height: 200%;
}

/* ===== Pricing (Dark) ===== */
.pricing-section {
    background: var(--dark-900);
    color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 860px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--dark-700);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-card__header {
    padding: 24px;
    text-align: center;
}

.pricing-card__header--premium {
    background: var(--dark-600);
}

.pricing-card__header--enterprise {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(0, 212, 255, 0.04));
    border-bottom: 1px solid var(--border-accent);
}

.pricing-card__name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 4px;
}

.pricing-card__plan {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
}

.pricing-card__price {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 700;
    white-space: nowrap;
    margin-top: 8px;
    color: var(--text-white);
}

.pricing-card__price span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card__body {
    padding: 24px;
}

.pricing-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
}

.pricing-card__row-label {
    color: var(--text-muted);
}

.pricing-card__row-value {
    color: var(--text-white);
    font-size: 20px;
}

.pricing-card__features {
    margin-top: 16px;
}

.pricing-card__feature {
    font-size: 13px;
    color: var(--text-light);
    padding: 6px 0 6px 20px;
    position: relative;
}

.pricing-card__feature::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.pricing-card__cta {
    padding: 0 24px 24px;
    text-align: center;
}

.pricing-card__cta a {
    width: 100%;
}

.pricing-card__note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
    padding: 0 4px;
}

.pricing-btob-guide {
    max-width: 860px;
    margin: 28px auto 0;
    background: var(--dark-700);
    border: 1px solid var(--border-accent);
    border-radius: 10px;
    padding: 28px 32px;
}

.pricing-btob-guide__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    margin-bottom: 20px;
}

.pricing-btob-guide__options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.pricing-btob-guide__option {
    background: var(--dark-600);
    border-radius: 8px;
    padding: 20px;
}

.pricing-btob-guide__option-label {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.pricing-btob-guide__option-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.pricing-btob-guide__option-text strong {
    color: var(--text-white);
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

.pricing-note a {
    color: var(--accent);
    text-decoration: underline;
}

/* ===== Security (Dark) ===== */
.security-section {
    background: var(--dark-800);
    color: #ffffff;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.security-badge {
    text-align: center;
}

.security-badge__icon {
    width: 124px;
    height: 124px;
    background: var(--dark-600);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    padding: 36px;
}

.security-badge__text {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== FAQ (Light) ===== */
.faq-section {
    background: var(--light-bg);
    color: var(--light-text);
}

.faq-section .section-label {
    color: #0097B2;
}

.faq-section .section-title {
    color: var(--light-text);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 0;
    font-size: 18px;
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--light-text);
    font-family: inherit;
    line-height: 1.6;
}

.faq-question__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: #0097B2;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.faq-question__toggle {
    flex-shrink: 0;
    margin-left: auto;
    font-size: 20px;
    color: var(--light-muted);
    transition: transform 0.2s;
}

.faq-answer {
    padding: 0 0 18px 38px;
    font-size: 14px;
    color: var(--light-sub);
    line-height: 1.8;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open .faq-question__toggle {
    transform: rotate(45deg);
}

/* ===== CTA Final (Dark) ===== */
.cta-final {
    background: var(--dark-700);
    border-top: 1px solid var(--border-accent);
    padding: 80px 0;
    color: var(--text-light);
}

.cta-final__inner {
    text-align: center;
}

.cta-final__title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-final__sub {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-final__buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-final__note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
}

.cta-final__info {
    margin-top: 28px;
    font-size: 16px;
    color: var(--text-muted);
}

.cta-final__info strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.cta-final .btn-secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: none;
}

.cta-final .btn-secondary:hover {
    border: 2px solid;
    color: #ffffff !important;
}

/* ===== Mid CTA (Dark) ===== */
.mid-cta {
    background: var(--dark-700);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
    text-align: center;
}

.mid-cta__text {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-light);
}

.mid-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--dark-900);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    padding: 36px 0;
    text-align: center;
    font-size: 11px;
}

.site-footer a {
    color: var(--text-light);
}

.site-footer__logo {
    margin-bottom: 12px;
}

.site-footer__logo img {
    height: 20px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.4;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero__image {
        flex: 0 0 340px;
        max-width: 340px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
        width: auto;
    }

    .section-padding {
        padding: 56px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .hero {
        padding: 48px 0 40px;
    }

    .hero__inner {
        flex-direction: column-reverse;
        width: auto;
        gap: 0;
    }

    .hero__image {
        flex: none;
        max-width: 100%;
        order: -1;
        margin: 36px 0 -12px;
    }

    .hero__cta .btn-primary,
    .hero__cta .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero__label {
        font-size: 14px;
    }

    .hero__badges {
        justify-content: center;
    }

    .hero__sub {
        font-size: 14px;
        margin-top: 16px;
        line-height: 1.8;
    }

    .badge {
        padding: 3px 10px;
    }

    .problem-grid,
    .solution-grid,
    .rtb-grid,
    .usecase-grid {
        grid-template-columns: 1fr;
    }

    .simulator {
        padding: 28px 16px;
    }

    .simulator__grid {
        grid-template-columns: 1fr;
    }

    .feature-tab {
        min-width: 110px;
        font-size: 11px;
        padding: 10px 6px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .site-header__tel {
        display: none;
    }
}


/*
 * ファーストビュー 右側見切れレイアウト CSS
 * 対象ページ: /main/pc-home-appliances/
 *
 * 概要:
 *   PCサイズ（1024px以上）のとき、ファーストビュー右側の画像（.hero__image）が
 *   ブラウザ幅から見切れるようにします。
 *
 * 変更点:
 *   1. .hero の overflow を hidden → overflow-x: clip に変更
 *      - clip はスクロールバーを発生させずに overflow-x を制御できる
 *      - 右方向にはみ出た画像はブラウザ幅で切り取られる（見切れる）
 *   2. .hero__content に min-width を設定してテキストの折り返し崩れを防止
 *   3. .hero__image の flex-basis と margin-right は既存の値を維持
 *      （元々 margin: 0 -340px 0 0 で右にはみ出していたが、
 *        overflow: hidden によって隠されていた）
 */

@media (min-width: 1024px) {

    /* [必須] heroセクションのoverflow-xをclipに変更 */
    /* overflow: hidden から overflow-x: clip へ変更することで         */
    /* 横スクロールバーを出さずに右側画像を見切れさせる                  */
    .hero {
        overflow-x: clip;
        overflow-y: visible;
    }

    /* [補足] hero__contentにmin-widthを追加してテキスト崩れを防止 */
    .hero__content {
        flex: 1 1 0%;
        min-width: 480px;
    }

    /* [補足] hero__imageの設定（既存値を明示 / 必要に応じて調整可能） */
    /* flex-basis: 770px, margin-right: -340px で右へはみ出す          */
    .hero__image {
        flex: 0 0 770px;
        max-width: none;
        margin: 0 -340px 0 0;
    }
}