@charset "utf-8";

/* ==============================
           ベース設定
        ============================== */
:root {
    --color-bg-center: #f4f9f5;
    /* 薄い緑背景に変更 */
    --color-mv-navy: #1a2342;
    /* メインビジュアル用のネイビー */
    --color-mv-red: #E94560;
    /* メインビジュアル用の赤（ハイライト） - 強調色に変更 */
    --color-accent-yellow: #f0b83b;
    /* アクセントの黄色 */
    --color-text-blue: #F1FCEF;
    /* リストの青文字 */
    --color-problem-blue: #F1FCEF;
    /* 課題セクションの青色 */
    --color-problem-bg: #E1F6F6;
    /* 課題セクションの背景色 */

    /* CTAセクション用カラー */
    --color-cta-red: #D33231;
    /* 強調色に変更 */
    --color-cta-yellow: #f8be28;
    --color-cta-blue: #23528b;

    /* SCENEセクション用カラー */
    --color-scene-blue: #2365bd;

    /* 後ほど教えていただいた数値に変更します */
    --inner-width: 1200px;
    --max-browser-width: 1920px;
    --min-browser-width: 375px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.pc-br {
    display: inline;
}

.sp-br {
    display: none;
}

body {
    /* ご指定のフォントファミリーに変更 */
    font-family: "Open Sans", "Arial", "メイリオ", "Meiryo", sans-serif;
    color: #fff;
    background-color: #f5f5f5;
    min-width: var(--min-browser-width);
}

.cta-k-rtai-txt {
    font-size: 22px;
    line-height: 39px;
    display: block;
	margin: 0 0 55px 0;
}

/* ==============================
           メインビジュアル レイアウト
        ============================== */
#fo-base .mv-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    min-height: 500px;
    max-height: 640px;
    background-color: var(--color-bg-center);
    overflow: hidden;
	padding: 0;
}

.mv-left {
    flex: 0;
    display: flex;
    justify-content: flex-start;
    /* 中央揃えから左揃えに変更 */
    align-items: center;
    /* インナー幅(1200px)の左端に合わせて位置を固定（画面が狭い時は最低20pxの余白） */
    padding: 70px 0 50px max(20px, calc(54vw - 600px));
}

.mv-right {
    flex: 1;
    position: relative;
    background-position: -200px 0px;
    background-repeat: no-repeat;
    min-height: 300px;
}

/* 画像左側のグラデーション */
.mv-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 左端は背景色と同じ、右に向かって徐々に透明に */
    background: linear-gradient(to right, var(--color-bg-center) 0%, var(--color-bg-center) 5%, rgba(244, 249, 245, 0) 17%);
    pointer-events: none;
    /* マウスイベントを透過 */
}

.mv-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 中央揃えから左揃えに変更 */
    width: 100%;
    /* ご指定の最大幅540pxに固定 */
    position: relative;
    z-index: 2;
    /* グラデーションの上にテキストが来るように */
}

.mv-badge {
    display: inline-block;
    background-color: var(--color-mv-navy);
    color: #fff;
    font-size: 38px;
    font-weight: bold;
    padding: 0px 30px 0px;
    border-radius: 40px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    height: 47px;
    width: 540px;
    line-height: 47px;
    text-align: center;
}

.mv-catch-main {
    color: #0F172A;
    font-size: 46px;
    font-weight: bold;
    line-height: 59px;
    text-align: left;
    margin-bottom: -2px;
    letter-spacing: 0.05em;
}

.mv-catch-sub-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    /* 線をテキストの中央に配置 */
    margin-bottom: 20px;
    /* リストとの余白 */
}

.mv-catch-sub {
    color: #0F172A;
    /* 黒色を変更 */
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    /* 線との余白 */
    text-align: center;
    /* 左揃えから中央揃えに変更 */
}

/* テキスト下の短い区切り線 */
.mv-divider {
    width: 70px;
    height: 2px;
    background-color: #0F172A;
    border: none;
    margin: 0;
    /* ラッパーで余白を管理するため0に変更 */
}

/* 赤文字（ハイライト）用のクラスに変更 */
.text-highlight {
    color: var(--color-mv-red);
}

.mv-features-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mv-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    width: 100%;
}

.mv-features li {
    color: #0F172A;
    /* 黒色を変更 */
    font-size: 21px;
    /* フォントサイズ21px */
    font-weight: bold;
    display: flex;
    align-items: flex-start;
    /* 複数行になった時、アイコンが上に揃うように変更 */
    margin-bottom: 15px;
    /* 行間23pxに変更 */
    line-height: 1.4;
}

.icon-check {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-mv-navy);
    /* 白からネイビーへ */
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    /* 上揃えにしたため、テキストの高さに合わせて少し下げる */
}

.icon-check::after {
    content: '';
    width: 5px;
    height: 10px;
    margin: 0 2px 0 0;
    border-right: 2px solid #fff;
    /* ネイビーから白へ */
    border-bottom: 2px solid #fff;
    /* ネイビーから白へ */
    transform: rotate(45deg) translateY(-2px);
}

.mv-note {
    color: #0F172A;
    font-size: 13px;
    font-weight: bold;
    opacity: 0.9;
}

/* ==============================
           ロゴセクション
        ============================== */
.logo-section {
    background-color: #ffffff;
    padding: 50px 0;
    width: 100%;
}

.logo-inner {
    max-width: var(--inner-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    /* ロゴ同士の間隔 */
    list-style: none;
    flex-wrap: wrap;
    /* 画面が狭い場合は折り返す */
}

.logo-list li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-list img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    /* ロゴの最大の高さを設定して揃える */
    object-fit: contain;
}

/* ==============================
           課題（PROBLEM）セクション
        ============================== */
.problem-section {
    background-color: var(--color-problem-bg);
    padding: 80px 0;
    width: 100%;
}

.problem-inner {
    width: 100%;
    max-width: var(--inner-width);
    margin: 0 auto;
    padding: 0 20px;
    /* 指示通り左右に20pxの余白 */
}

.problem-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-badge {
    display: inline-block;
    background-color: var(--color-problem-blue);
    color: #0F172A;
    font-size: 24px;
    font-weight: bold;
    padding: 6px 30px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.problem-title {
    color: #0F172A;
    /* 黒色を変更 */
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.problem-cards {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    width: 1040px;
    margin: 0 auto;
}

.problem-card {
    flex: 1;
    background-color: #fff;
    border: 2px solid var(--color-problem-blue);
    border-radius: 12px;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    /* アイコンがはみ出す分だけカードを下げる */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* 軽い影 */
}

/* カード上部の丸いチェックアイコン */
.problem-card-icon {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--color-problem-blue);
    border: 4px solid var(--color-problem-bg);
    /* 背景と同じ色のフチをつけて切り抜かれているように見せる */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* アイコンのチェックマーク（CSS描画） */
.problem-card-icon::after {
    content: '';
    width: 10px;
    height: 16px;
    border-right: 3px solid #0F172A;
    border-bottom: 3px solid #0F172A;
    transform: rotate(45deg) translateY(-2px);
}

.problem-card-header {
    background-color: var(--color-problem-blue);
    color: #0F172A;
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    line-height: 1.5;
    padding: 30px 10px 15px;
    /* 上部はアイコンの被りを考慮して広めにとる */
    border-radius: 6px 6px 0 0;
    /* 親のborder-radiusに合わせて調整 */
}

.problem-card-body {
    padding: 20px 20px 80px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.problem-card-img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-card-text {
    color: #0F172A;
    /* 黒色を変更 */
    font-size: 18px;
    line-height: 1.6;
    font-weight: bold;
}

/* ==============================
           解決（CTA）セクション
        ============================== */
.cta-section {
    /* テクスチャ付きの青背景画像を1枚敷く想定 */
    background-image: url('/wp-content/themes/kotobal_theme/img/k-rtai/bg-cv-area.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 95px;
    width: 100%;
    text-align: center;
    color: #fff;
}

.cta-inner {
    width: 100%;
    max-width: var(--inner-width);
    margin: 0 auto;
    padding: 0 20px;
    color: #0F172A;
    font-weight: bold;

}

.cta-catch {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* スマホで折り返すため */
    gap: 10px;
}

.cta-catch-text {
    display: inline-block;
}

/* KOTOBAL for Medical の四角背景 */
.cta-catch-highlight {
    display: inline-block;
    background-color: #fff;
    padding: 5px 25px;
    border: 4px solid #0F172A;
    margin: 0;
}

.cta-catch-highlight-text {
    display: inline-block;
    color: #0f172a;
    font-size: 48px;
    font-weight: bold;
}

.cta-desc {
    font-size: 29px;
    line-height: 48px;
    font-weight: bold;
    margin-bottom: 70px;
    letter-spacing: 0.05em;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.cta-btn-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 443px;
    height: 80px;
    /* ボタンの最大幅 */
}

/* ボタン上部の吹き出し（CSSで作成） */
.cta-btn-balloon {
    background-color: #fff;
    border-radius: 10px;
    padding: 3px 30px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: -27px;
    z-index: 2;
    /* 影で浮かせる */
}

/* 吹き出しの三角形部分（外側の枠線） */
.cta-btn-balloon::before {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 9px 9px 0;
    border-style: solid;
}

/* 吹き出しの三角形部分（内側の白） */
.cta-btn-balloon::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px 7px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

/* 赤いボタン用吹き出し */
.cta-btn-balloon--red {
    color: var(--color-cta-red);
    border: 3px solid var(--color-cta-red);
    font-size: 21px;
    font-weight: bold;
    width: 240px;
}

.cta-btn-balloon--red::before {
    border-color: var(--color-cta-red) transparent transparent transparent;
}

/* 黄色いボタン用吹き出し */
.cta-btn-balloon--yellow {
    color: #0F172A;
    border: 3px solid var(--color-cta-yellow);
    font-size: 21px;
    font-weight: bold;
    width: 240px;
}

.cta-btn-balloon--yellow::before {
    border-color: var(--color-cta-yellow) transparent transparent transparent;
}

/* ボタン本体 */
.cta-btn--red {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 27px;
    position: relative;
    box-shadow: 0 4px 0 #BA2C2B;
    /* 立体感をつける影 */
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn--yellow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 27px;
    position: relative;
    box-shadow: 0 4px 0 #DDA110;
    /* 立体感をつける影 */
    transition: transform 0.2s, box-shadow 0.2s;
}

/* ホバー時の沈み込みアニメーション */
.cta-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

#fo-base .cta-btn--red {
    background-color: var(--color-cta-red);
    color: #fff;
	font-weight: bold;
	box-shadow: 0 4px 0 #BA2C2B;
}

#fo-base .cta-btn--yellow {
    background-color: var(--color-cta-yellow);
    color: #0F172A;
	box-shadow: 0 4px 0 #DDA110;
}

/* 左側のCHECKアイコン（削除） */
/* 右側の矢印アイコン（画像差し替え用プレースホルダー） */
.cta-btn-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    pointer-events: none;
}

/* ==============================
           シーン（SCENE）セクション
        ============================== */
.scene-section {
    background-color: #fff;
    color: #0F172A;
    /* 黒色を変更 */
    padding: 100px 0;
    width: 100%;
}

.scene-inner {
    width: 100%;
    max-width: var(--inner-width);
    margin: 0 auto;
    padding: 0 20px;
}

.scene-header {
    text-align: center;
    margin-bottom: 15px;
}

.scene-badge {
    display: inline-block;
    background-color: #F1FCEF;
    color: #0F172A;
    font-size: 24px;
    font-weight: bold;
    padding: 4px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    width: 175px;
    height: 38px;
    box-sizing: border-box;
}

.scene-subtitle {
    font-size: 32px;
    line-height: 2;
    margin-bottom: 95px;
    color: #0F172A;
    font-weight: bold;
}

/* リアルタイムAI通訳 のボックス */
.scene-catch-wrapper {
    position: relative;
    display: inline-block;
}

.scene-catch-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 15px 0;
    border: 6px solid #0F0F0F;
    position: relative;
    z-index: 2;
    width: 585px;
}

.scene-catch-box-text {
    color: #0f172a;
    font-size: 53px;
    line-height: 53px;
    font-weight: bold;
}

/* 下向き吹き出し三角（外側の枠線） */
.scene-catch-wrapper::before {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 22px 18px 0;
    border-style: solid;
    border-color: #0F172A transparent transparent transparent;
    z-index: 1;
}

/* 下向き吹き出し三角（内側の白） */
.scene-catch-wrapper::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 18px 15px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    z-index: 3;
}

.scene-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 1060px;
    margin: 0 auto;
}

.scene-item {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* 偶数番目は画像を右、テキストを左に（左右反転） */
.scene-item:nth-child(even) {
    flex-direction: row-reverse;
}

.scene-item-img-wrapper {
    flex: 0 0 54%;
    /* 画像の幅割合 */
    position: relative;
}

.scene-item-img-deco {
    position: relative;
    width: 100%;
    padding: 24px 0 0 24px;
    /* 左と上の青背景のための余白 */
}


/* 左部の青い背景（面） */
.scene-item-img-deco::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 515px;
    background-color: #F1FCEF;
    z-index: 0;
}

.scene-item-img-deco img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.scene-item-text {
    flex: 1;
    padding: 23px 0 0 0;
}

.scene-item-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
}

.scene-item-num {
    background-color: #F1FCEF;
    width: 82px;
    height: 82px;
    color: #0F172A;
    font-size: 53px;
    font-weight: bold;
    padding: 4px 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}

.scene-item-title {
    color: #0F172A;
    font-size: 48px;
    line-height: 53px;
    font-weight: bold;
}

.scene-item-desc {
    font-size: 26px;
    line-height: 52px;
    letter-spacing: -0.1rem;
    font-weight: bold;
    color: #0F172A;
}

/* ==============================
           遠隔通訳(ヒト) セクション
        ============================== */
.human-section {
    background-color: var(--color-problem-bg);
    padding: 80px 0;
    width: 100%;
}

.human-inner {
    width: 100%;
    max-width: var(--inner-width);
    margin: 0 auto;
    padding: 0 20px;
}

.human-header {
    text-align: center;
    margin-bottom: 60px;
}

/* 遠隔通訳(ヒト) のボックス（四角形） */
.human-catch-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.human-catch-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 15px 0;
    border: 6px solid #0F0F0F;
    position: relative;
    z-index: 2;
    width: 585px;
}

.human-catch-box-text {
    color: #0F172A;
    font-size: 53px;
    line-height: 53px;
    font-weight: bold;
}

/* 下向き吹き出し三角（外側の枠線） */
.human-catch-wrapper::before {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 22px 18px 0;
    border-style: solid;
    border-color: #0F172A transparent transparent transparent;
    z-index: 1;
}

/* 下向き吹き出し三角（内側の白） */
.human-catch-wrapper::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 18px 15px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    z-index: 3;
}

.human-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.human-card {
    width: calc((100% - 60px) / 3);
    max-width: 333px;
    background-color: #262626;
    /* カード下部の背景色 */
    border-radius: 17px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.human-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
}

.human-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.human-card-title {
    background-color: #fff;
    color: #0F172A;
    font-size: 26px;
    line-height: 34px;
    font-weight: bold;
    text-align: center;
    height: 98px;
    padding: 15px 10px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.human-card-desc {
    background-color: #262626;
    color: #fff;
    font-size: 22px;
    line-height: 45px;
    padding: 13px 25px 20px;
    flex: 1;
    font-weight: bold;
}

/* ==============================
           選ばれる理由（REASON）セクション
        ============================== */
.reason-section {
    background-color: #fff;
    padding: 100px 0;
    width: 100%;
}

.reason-inner {
    max-width: var(--inner-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.reason-header {
    text-align: center;
    margin-bottom: 60px;
}

.reason-badge {
    display: inline-block;
    background-color: #F1FCEF;
    color: #0F172A;
    font-size: 24px;
    font-weight: bold;
    padding: 4px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    width: 175px;
    height: 38px;
    box-sizing: border-box;
}

.reason-title {
    color: #0F172A;
    font-size: 32px;
    font-weight: bold;
    line-height: 60px;
    letter-spacing: 0.05em;
}

.reason-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.reason-item {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

/* 偶数番目は画像を右、テキストを左に（左右反転） */
.reason-item:nth-child(even) {
    flex-direction: row-reverse;
}

.reason-item-img-wrapper {
    flex: 0 0 500px;
    /* 画像の幅を固定 */
}

.reason-item-img-wrapper img {
    width: 500px;
    /* 幅を350pxに指定 */
    height: 535px;
    /* 高さを535pxに指定 */
    object-fit: cover;
    /* 縦横比を維持して枠内を埋める */
    border-radius: 30px;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.reason-item-text {
    flex: 1;
}

.reason-item-badge {
    display: inline-block;
    background-color: #F1FCEF;
    color: #0F172A;
    font-size: 14px;
    font-weight: bold;
    padding: 4px 15px;
    border-radius: 20px;
    margin-bottom: 5px;
}

.reason-item-title {
    color: #0F0F0F;
    font-size: 38px;
    font-weight: bold;
    line-height: 51px;
    margin-bottom: 15px;
}

/* 各BENEFITのリード文（黒文字） */
.reason-item-lead {
    color: #0F172A;
    margin-bottom: 30px;
    font-size: 23px;
    line-height: 45px;
}

.reason-checklist {
    list-style: none;
    padding: 0;
}

.reason-checkitem {
    margin-bottom: 20px;
}

.reason-checkitem-title {
    display: flex;
    align-items: center;
    color: #0F0F0F;
    font-size: 23px;
    font-weight: bold;
}

/* 青いチェックアイコン */
.reason-checkitem-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 23px;
    height: 23px;
    background-color: #0F0F0F;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.reason-checkitem-icon::after {
    content: '';
    width: 4px;
    height: 8px;
    margin: 0 1px 1px 0;
    border-right: 3px solid #fff;
    border-bottom: 4px solid #fff;
    transform: rotate(45deg) translateY(-1px);
}

.reason-checkitem-desc {
    font-size: 23px;
    color: #272727;
    line-height: 45px;
    padding-left: 28px;
}

.reason-note {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
    text-align: right;
    /* 画像の配置に合わせて右寄せ */
}

/* ==============================
           導入効果/活用シーン（CASE）セクション
        ============================== */
.case-section {
    background-image: url('/wp-content/themes/kotobal_theme/img/k-rtai/bg-cv-bottom-area.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    width: 100%;
}

.case-inner {
    width: 100%;
    max-width: var(--inner-width);
    margin: 0 auto;
    padding: 0 20px;
}

.case-header {
    text-align: center;
    margin-bottom: 50px;
}

.case-badge {
    display: inline-block;
    background-color: #fff;
    color: #0F172A;
    font-size: 24px;
    font-weight: bold;
    padding: 4px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    width: 175px;
    height: 38px;
    box-sizing: border-box;
}

.case-title {
    color: #0F172A;
    font-size: 32px;
    font-weight: bold;
    line-height: 60px;
    letter-spacing: 0.05em;
}

.case-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.case-card {
    flex: 1;
    max-width: 500px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.case-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 20px;
    gap: 15px;
    background-color: #fff;
}

.case-card-icon {
    width: 76px;
    height: auto;
}

.case-card-catch {
    color: #0f172a;
    font-size: 24px;
    font-weight: bold;
    line-height: 38px;
    text-align: center;
    position: relative;
	letter-spacing: -0rem;
}

.case-card-img-area {
    position: relative;
    width: 100%;
}

.case-card-img {
    width: 100%;
    height: 355px;
    object-fit: cover;
    display: block;
}

/* 画像下部の黒グラデーションとテキスト */
.case-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 20px 20px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    text-align: center;
}

.case-card-client {
    display: inline-block;
    background-color: #fff;
    color: #0f172a;
    font-size: 20px;
    font-weight: bold;
    padding: 4px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.case-card-img-title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}

.case-card-body {
    background-color: #fff;
    padding: 25px 30px;
    flex: 1;
}

.case-card-desc {
    color: #0F172A;
    font-size: 14px;
    line-height: 1.8;
    font-weight: bold;
}

/* 下部の赤いボタン */
#fo-base .case-card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-cta-red);
    color: #fff;
    text-decoration: none;
    padding: 20px;
    position: relative;
    font-weight: bold;
    font-size: 16px;
    transition: opacity 0.2s;
}

.case-card-btn:hover {
    opacity: 0.9;
}

.case-card-btn-check {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
    width: auto;
}

/* ==============================
           Q&A（よくあるご質問）セクション
        ============================== */
.qa-section {
    background-color: #fff;
    padding: 100px 0;
    width: 100%;
}

.qa-inner {
    width: 100%;
    max-width: 900px;
    /* Q&Aは少し幅を狭めると読みやすい */
    margin: 0 auto;
    padding: 0 20px;
}

.qa-header {
    text-align: center;
    margin-bottom: 60px;
}

.qa-badge {
    display: inline-block;
    background-color: #F1FCEF;
    color: #0F172A;
    font-size: 24px;
    font-weight: bold;
    padding: 4px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    width: 175px;
    height: 38px;
    box-sizing: border-box;
}

.qa-title {
    font-size: 32px;
    line-height: 2;
    margin-bottom: 50px;
    color: #0F172A;
    font-weight: bold;
}

.qa-category {
    margin-bottom: 60px;
}

.qa-category:last-child {
    margin-bottom: 0;
}

.qa-category-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #0F0F0F;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    gap: 10px;
}

/* カテゴリタイトルの上下の青い線 */
.qa-category-title::before {
    content: '';
    width: 54px;
    height: 2px;
    background-color: #0f172a;
}

.qa-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* QとQの間隔 */
}

.qa-item {
    position: relative;
}

.qa-q {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #f4f4f4;
    border: none;
    padding: 15px 25px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    border-radius: 8px;
    /* 開いていない時は全角丸 */
    transition: background-color 0.3s;
    position: relative;
}

.qa-item.is-open .qa-q {
    border-radius: 8px 8px 0 0;
    /* 開いた時は上部だけ角丸 */
}

.qa-q-icon {
    color: #0f172a;
    font-size: 35px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.qa-q-text {
    color: #0F172A;
    /* 黒色を変更 */
    font-size: 23px;
    font-weight: bold;
    line-height: 1.6;
    flex: 1;
    padding-right: 40px;
    /* 開閉アイコン用の余白 */
}

/* 開閉用の＋－アイコン */
.qa-q-toggle {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
}

.qa-q-toggle::before,
.qa-q-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #0f172a;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 水平線（常に表示） */
.qa-q-toggle::before {
    width: 16px;
    height: 2px;
}

/* 垂直線（＋の時だけ表示） */
.qa-q-toggle::after {
    width: 2px;
    height: 16px;
}

/* 開いた時は垂直線を消して「－」にする */
.qa-item.is-open .qa-q-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.qa-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    /* スムーズな開閉アニメーション */
    background-color: #fff;
    border-radius: 0 0 8px 8px;
}

.qa-a-inner {
    display: flex;
    padding: 25px;
    border: 1px solid #f4f4f4;
    border-top: none;
    border-radius: 0 0 8px 8px;
    align-items: center;
}

.qa-a-icon {
    color: #0f172a;
    font-size: 35px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.qa-a-text {
    color: #0F172A;
    /* 黒色を変更 */
    font-size: 20px;
    line-height: 34px;
}

/* ==============================
           レスポンシブ対応（仮ブレイクポイント: 768px）
        ============================== */
@media screen and (max-width: 768px) {
    .cta-k-rtai-txt {
        font-size: 17px;
        line-height: 32px;
        display: block;
        padding: 0 0 50px 0;
        margin: 0;
    }

    /* メインビジュアル スマホ */
    .mv-container {
        flex-direction: column;
        max-height: none;
        /* スマホ時は要素が縦並びになり高さが増えるため、高さ制限を解除 */
    }

    .mv-right {
        display: none;
        /* スマホ時は画像を非表示 */
    }

    /* グラデーションも不要なので非表示 */
    .mv-right::before {
        display: none;
    }

    .mv-left {
        padding: 60px 15px;
        /* 余白を少し調整 */
    }

    .mv-content {
        align-items: center;
        /* 全体を中央寄せ */
    }

    .mv-badge {
        font-size: 14px;
        /* 少し小さめに */
        padding: 6px 20px;
        width: auto;
        /* PC時の固定幅を解除 */
        height: auto;
        /* PC時の固定高さを解除 */
        line-height: normal;
        /* PC時の行高を解除 */
    }

    .mv-catch-main {
        font-size: 29px;
        margin-bottom: 15px;
        line-height: 1.4;
        text-align: center;
        /* 中央寄せに変更 */
    }

    .mv-catch-sub-wrapper {
        margin-bottom: 30px;
    }

    .mv-catch-sub {
        font-size: 16px;
        margin-bottom: 20px;
        text-align: center;
        /* 中央寄せ */
    }

    .mv-divider {
        width: 50px;
        margin: 0;
    }

    .mv-features-wrapper {
        align-items: center;
        /* リストエリア全体を中央に */
        width: 100%;
    }

    .mv-features {
        width: auto;
        /* 100%ではなく、中身に合わせた幅にする */
        display: inline-block;
        /* 塊ごと中央に寄せるための指定 */
        text-align: left;
        /* リストの文字自体は左揃えをキープして見やすく */
    }

    .mv-features li {
        font-size: 14px;
        margin-bottom: 12px;
        /* スマホ時は余白を少し戻す */
    }

    .icon-check {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .mv-note {
        text-align: center;
        /* 注意書きを中央寄せ */
        margin-top: 10px;
    }

    /* ロゴセクション（スマホ） */
    .logo-section {
        padding: 30px 0;
    }

    .logo-list {
        gap: 25px;
        /* スマホ時は少し間隔を狭める */
    }

    .logo-list img {
        max-height: 40px;
        /* スマホ時は少し小さく */
    }

    /* 課題セクション（スマホ） */
    .problem-section {
        padding: 30px 0;
    }

    .problem-title {
        font-size: 20px;
        line-height: 1.5;
    }

    .problem-cards {
        flex-direction: column;
        /* スマホ時は縦並び */
        gap: 20px;
        /* 縦の余白を少し広めにとる */
    }

    .problem-card {
        margin-top: 20px;
    }

    /* 解決（CTA）セクション（スマホ） */
    .cta-section {
        padding: 30px 0;
    }

    .cta-catch {
        font-size: 16px;
        line-height: 1.8;
    }

    .cta-catch-highlight {
        margin: 5px 0;
        padding: 4px 15px;
    }

    .cta-catch-highlight-text {
        font-size: 24px;
    }

    .cta-desc {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 50px;
    }

    .cta-buttons {
        flex-direction: column;
        /* スマホ時は縦並び */
        align-items: center;
        gap: 50px;
        /* 縦並びの余白（吹き出しがあるため広めに） */
    }

    .cta-btn-wrapper {
        max-width: 100%;
    }

    .cta-btn {
        font-size: 16px;
    }

    /* シーン（SCENE）セクション（スマホ） */
    .scene-section {
        padding: 60px 0;
    }

    .scene-catch-box {
        padding: 10px 30px;
        width: 100%;
        border: 4px solid #0F0F0F;
    }

    .scene-catch-box-text {
        font-size: 24px;
        line-height: 24px;
    }

    .scene-list {
        gap: 60px;
        width: 100%;
    }

    /* ジグザグを解除し、全て縦積みに */
    .scene-item,
    .scene-item:nth-child(even) {
        flex-direction: column;
        gap: 15px;
    }

    .scene-item-img-wrapper {
        width: 100%;
    }

    .scene-item-img-deco {
        padding: 16px 0 0 16px;
        /* スマホ時ははみ出しを少し小さく */
    }

    .scene-item-num {
        background-color: #F1FCEF;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* 遠隔通訳(ヒト) セクション（スマホ） */
    .human-section {
        padding: 60px 0;
    }

    .human-catch-box {
        padding: 0px 30px;
        width: 100%;
        border: 4px solid #0F0F0F;
    }

    .human-catch-box-text {
        font-size: 24px;
    }

    .human-card {
        width: 100%;
        max-width: 400px;
    }

    /* 選ばれる理由（REASON）セクション（スマホ） */
    .reason-section {
        padding: 60px 0;
    }

    .reason-header {
        text-align: center;
        margin-bottom: 15px;
    }

    .reason-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 15px;
        color: #0F172A;
        font-weight: bold;
    }

    .reason-list {
        gap: 50px;
    }

    /* ジグザグを解除して全て縦並びに */
    .reason-item,
    .reason-item:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }

    .reason-item-img-wrapper {
        width: 100%;
        flex: auto;
    }

    .reason-item-img-wrapper img {
        width: 100%;
        /* スマホでは幅いっぱいに */
        height: auto;
        /* 高さは自動で調整 */
        max-width: 180px;
        /* 最大幅は維持 */
        margin: 0 auto;
    }

    .reason-item-title {
        font-size: 20px;
        line-height: 28px;
    }

    .reason-note {
        text-align: left;
        /* スマホ時は左寄せ */
    }

    /* 導入効果/活用シーン（CASE）セクション（スマホ） */
    .case-section {
        padding: 60px 0;
    }

    .case-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 15px;
        color: #0F172A;
        font-weight: bold;
    }

    .case-cards {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .case-card {
        width: 100%;
    }

    .case-card-header {
        text-align: center;
        padding: 20px;
    }

    .case-card-icon {
        width: 40px;
        height: auto;
    }

    .case-card-catch {
        font-size: 15px;
		line-height: 24px;
    }

    /* Q&Aセクション（スマホ） */
    .qa-section {
        padding: 60px 0;
    }

    .qa-q {
        padding: 15px;
    }

    .qa-q-text {
        font-size: 15px;
        padding-right: 25px;
    }

    .qa-q-toggle {
        right: 15px;
    }

    .qa-a-inner {
        padding: 20px 15px;
    }

    .qa-a-text {
        font-size: 14px;
        line-height: 23px;
    }

    .problem-cards {
        width: 100%;
    }

    .problem-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .cta-catch {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0px;
    }

    .problem-badge {
        display: inline-block;
        background-color: var(--color-problem-blue);
        color: #0F172A;
        font-size: 16px;
        font-weight: bold;
        padding: 6px 30px;
        border-radius: 30px;
        margin-bottom: 20px;
        letter-spacing: 0.05em;
    }

    .problem-card-header {
        background-color: var(--color-problem-blue);
        color: #0F172A;
        text-align: center;
        font-weight: bold;
        font-size: 18px;
        line-height: 1.5;
        padding: 30px 10px 15px;
        border-radius: 6px 6px 0 0;
    }

    .problem-card-header {
        background-color: var(--color-problem-blue);
        color: #0F172A;
        text-align: center;
        font-weight: bold;
        font-size: 18px;
        line-height: 1.5;
        padding: 24px 10px 11px;
        border-radius: 6px 6px 0 0;
    }

    .problem-card-text {
        color: #0F172A;
        font-size: 14px;
        line-height: 1.5;
        font-weight: bold;
    }

    .problem-card-body {
        padding: 15px 15px 40px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .cta-btn-balloon--red {
        color: var(--color-cta-red);
        border: 3px solid var(--color-cta-red);
        font-size: 16px;
        font-weight: bold;
        width: 200px;
    }

    .cta-btn-balloon--yellow {
        color: #0F172A;
        border: 3px solid var(--color-cta-yellow);
        font-size: 16px;
        font-weight: bold;
        width: 200px;
    }

    .cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 55px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 20px;
        position: relative;
        box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .cta-btn-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 443px;
        height: 55px;
    }

    .scene-subtitle {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 15px;
        color: #0F172A;
        font-weight: bold;
    }

    .pc-br {
        display: none;
    }

    .sp-br {
        display: inline;
    }

    .scene-item-img-deco::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 140px;
        height: 295px;
        background-color: #F1FCEF;
        z-index: 0;
    }

    .scene-item-text {
        flex: 1;
        padding: 0;
    }

    .scene-item-title {
        color: #0F172A;
        font-size: 20px;
        line-height: 20px;
        font-weight: bold;
    }

    .scene-item-desc {
        color: #0F172A;
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: -0.1rem;
        font-weight: bold;
    }

    .scene-item-header {
        display: flex;
        align-items: baseline;
        gap: 15px;
        margin-bottom: 10px;
    }

    .human-header {
        text-align: center;
        margin-bottom: 15px;
    }

    .human-card-title {
        background-color: #fff;
        color: #0F172A;
        font-size: 20px;
        line-height: 28px;
        font-weight: bold;
        text-align: center;
        height: auto;
        padding: 15px 10px;
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .human-card-img-wrapper {
        position: relative;
        width: 100%;
        height: 150px;
    }

    .human-card-desc {
        background-color: #262626;
        color: #fff;
        font-size: 14px;
        line-height: 1.5;
        padding: 13px 25px 20px;
        flex: 1;
        font-weight: bold;
    }

    .reason-inner {
        width: 100%;
    }

    .reason-checkitem-title {
        display: flex;
        align-items: center;
        color: #0F0F0F;
        font-size: 20px;
        font-weight: bold;
    }

    .reason-checkitem-icon {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 18px;
        height: 18px;
        background-color: #0F0F0F;
        border-radius: 50%;
        margin-right: 10px;
        flex-shrink: 0;
    }

    .reason-checkitem-icon::after {
        content: '';
        width: 4px;
        height: 8px;
        margin: 0 1px 1px 0;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg) translateY(-1px);
    }

    .reason-item-lead {
        color: #0F172A;
        margin-bottom: 30px;
        font-size: 14px;
        line-height: 1.5;
    }

    .reason-checkitem-desc {
        font-size: 14px;
        line-height: 1.5;
        color: #272727;
        padding-left: 28px;
    }

    .qa-title {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 15px;
        color: #0F172A;
        font-weight: bold;
    }

    .qa-category-title {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #0F0F0F;
        font-size: 20px;
        line-height: 28px;
        font-weight: bold;
        margin-bottom: 10px;
        gap: 10px;
        text-align: center;
    }

    .qa-q-icon {
        color: #0f172a;
        font-size: 20px;
        font-weight: bold;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .qa-a-icon {
        color: #0f172a;
        font-size: 20px;
        font-weight: bold;
        margin-right: 15px;
        flex-shrink: 0;
    }
}