@charset "UTF-8";

/* ====================================
   VIDEO DX研修 専用スタイル (service-video.css)
   ==================================== */

/* --- FV (Page Header) --- */
.service-fv {
    position: relative;
    height: 50vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden;
    padding-top: 100px; /* ヘッダー被り回避 */
}

.service-fv-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fv-title {
    font-family: var(--font-en);
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fv-sub {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* ====================================
   Section Headers (Center Alignment)
   ==================================== */
/* 共通スタイルの左寄せ・左線設定を上書きして中央寄せにする */
.section-label {
    display: block;          /* ブロック要素にして横幅一杯に */
    text-align: center;      /* テキストを中央寄せ */
    padding-left: 0;         /* 左の余白（線用）を削除 */
    margin-bottom: 15px;
}

.section-label::before {
    display: none;           /* 左側の線を消す */
}

.section-title {
    text-align: center;      /* タイトルを中央寄せ */
    margin-bottom: 60px;
}

/* --- Intro Section (左右レイアウト) --- */
.intro-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.intro-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-en);
    font-size: 15vw;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

.intro-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.intro-text {
    flex: 1;
}

.intro-heading {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 700;
}

.intro-heading .highlight {
    background: linear-gradient(transparent 60%, rgba(10, 186, 181, 0.3) 60%);
    padding: 0 5px;
}

.intro-text p {
    line-height: 2.2;
    text-align: justify;
    color: var(--text-main);
    font-size: 1.05rem;
}

.intro-image {
    flex: 1;
    position: relative;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 20px 20px 0px rgba(10, 186, 181, 0.15);
}

.sp-br { display: none; }

@media (max-width: 768px) {
    .intro-section {
        padding: 15% 0;
    }

    .intro-heading {
        font-size: 7vw;
    }

    .section {
        padding: 15% 0;
    }

    .section-title {
        margin-bottom: 10%;
    }
	
	.intro-image img {
		box-shadow: 10px 10px 0px rgba(10, 186, 181, 0.15);
	}
}

/* --- Skills (Cards with Icons) --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 186, 181, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: #F0FCFB;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.card-icon svg {
    width: 35px;
    height: 35px;
}

.card-num-bg {
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: var(--font-en);
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.08;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.card-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
    opacity: 0.3;
}

.card p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-main);
    text-align: left;
    position: relative;
    z-index: 1;
}

/* ====================================
   Merit Section (Image Zigzag)
   ==================================== */
.merit-creative-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.merit-row {
    display: flex;
    align-items: center; /* 垂直方向中央揃え */
    gap: 60px; /* 画像とテキストの間隔を広げる */
    background: #fff;
    border-radius: 50px 12px 12px 50px;
    padding: 40px; /* 全体の余白を増やす */
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
}

/* 偶数番目は左右反転 */
.merit-row.reverse {
    flex-direction: row-reverse;
    border-radius: 12px 50px 50px 12px;
    padding: 40px;
}

.merit-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 186, 181, 0.1);
}

/* ▼▼▼ 画像エリアを大きく（約1/3）に修正 ▼▼▼ */
.merit-img-box {
    flex: 0 0 35%;       /* 幅を約35%確保 */
    max-width: 400px;    /* 最大幅を広げる */
    min-width: 250px;
    aspect-ratio: 4 / 3; /* 写真らしい比率（長方形）に */
    border-radius: 12px; /* 角を少し丸くする */
    overflow: hidden;
    /* 枠線は削除してスッキリさせる（必要であれば border: 5px solid #fff; を残す） */
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.2);
    position: relative;
    background: #eee;
}

.merit-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.merit-row:hover .merit-img-box img {
    transform: scale(1.05); /* 拡大率を少し控えめに */
}

/* コンテンツエリア（残り） */
.merit-content-box {
    flex: 1; /* 残りの幅をすべて使う */
}

.merit-title {
    font-size: 1.6rem; /* 文字サイズも少しアップ */
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.merit-content-box p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 2;
    margin: 0;
    text-align: justify;
}

@media (max-width: 768px) {
    .merit-title {
        font-size: 6vw;
    }
}

/* --- Target Panels (ToC / ToB) --- */
.target-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.target-panel {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.panel-header {
    background: #F0FCFB;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(10, 186, 181, 0.1);
}

.panel-header .tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-en);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.panel-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.panel-list {
    padding: 30px;
    list-style: none;
}

.panel-list li {
    margin-bottom: 25px;
    position: relative;
    padding-left: 10px;
    border-left: 3px solid var(--primary);
}

.panel-list li:last-child {
    margin-bottom: 0;
}

.panel-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.panel-list p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ====================================
   Curriculum (Swiper Slider & Module Cards)
   ==================================== */
/* Swiper全体の設定 */
.curriculum-swiper {
    padding: 10px 60px 60px; /* 左右に60pxの余白を追加 */
    margin: 0;
}

/* ▼▼▼ 追加：スライドごとの高さを強制的に揃える ▼▼▼ */
.curriculum-swiper .swiper-slide {
    height: auto; 
    display: flex; /* これを追加することで子要素の高さが揃います */
}

.module-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
    border: 1px solid transparent;
    
    /* ▼▼▼ 追加：カード全体がスライドの高さいっぱいに広がるように ▼▼▼ */
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(10, 186, 181, 0.1);
}

.module-header {
    background: #F8FAFC;
    /* 左右のpaddingを少し減らし、テキスト領域を確保 */
    padding: 25px 20px; 
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    transition: background-color 0.3s ease;
    
    /* ヘッダーの高さ。3行がきれいに収まるサイズに調整 */
    height: 130px; 
    box-sizing: border-box;
}

/* ▼▼▼ 追加：h4の親要素を可能な限り広げる ▼▼▼ */
.module-header > div:first-child {
    flex: 1; /* 残りのスペースをすべて使う */
    padding-right: 10px; /* アイコンに近すぎないように隙間を空ける */
}

.module-header .step {
    font-family: var(--font-en);
    font-size: 0.9rem;
    font-weight: 700;
    color: #aaa;
    display: block;
    margin-bottom: 5px;
}

.module-header h4 {
    /* 3行に収まるようにフォントサイズを微調整 */
    font-size: 1.05rem; 
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
	padding-right: 10px;
    /* 最新のブラウザで文字の折り返しを綺麗にする */
/*     word-break: auto-phrase;  */
}

/* ▼▼▼ 修正：アイコンを小さくして場所を譲る ▼▼▼ */
.module-icon {
    width: 23px;  /* 40px -> 28px に縮小 */
    height: 23px; /* 40px -> 28px に縮小 */
    color: #cbd5e1;
    flex-shrink: 0; /* 縮まないように固定 */
    margin-left: 0; /* マージンを詰める */
    transition: all 0.3s ease;
}

.module-icon svg {
    width: 100%;
    height: 100%;
}

.module-card:hover .module-header {
    background-color: #F0FCFB;
}

.module-card:hover .module-icon {
    color: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.module-body {
    padding: 25px;
    flex: 1; /* 本文エリアを下まで伸ばす（高さが揃う） */
    display: flex;
    flex-direction: column;
}

/* Swiper UIのカスタマイズ */
.curriculum-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
}

.curriculum-swiper .swiper-button-prev { left: 15px; }
.curriculum-swiper .swiper-button-next { right: 15px; }

.curriculum-swiper .swiper-button-prev,
.curriculum-swiper .swiper-button-next {
    color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: -30px; 
}

.curriculum-swiper .swiper-button-prev::after,
.curriculum-swiper .swiper-button-next::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

/* --- スマホ時のスライダー調整 --- */
@media (max-width: 768px) {
    .curriculum-swiper {
        /* ▼▼▼ 修正：スマホ時も左右に余白(35px)を作り、カードを少し内側に収める ▼▼▼ */
        padding: 10px 35px 60px; 
    }
    
    /* ▼▼▼ 追加：スマホ時のボタンサイズを小さくする ▼▼▼ */
    .curriculum-swiper .swiper-button-prev,
    .curriculum-swiper .swiper-button-next {
        width: 32px;
        height: 32px;
        margin-top: -16px; /* 高さの半分 */
    }
    
    /* 矢印の大きさも小さくする */
    .curriculum-swiper .swiper-button-prev::after,
    .curriculum-swiper .swiper-button-next::after {
        font-size: 1rem !important;
    }

    /* ▼▼▼ 修正：小さくしたボタンを、新しく作った余白の端に配置 ▼▼▼ */
    .curriculum-swiper .swiper-button-prev { left: 2px; }
    .curriculum-swiper .swiper-button-next { right: 2px; }
    
    .module-header {
        height: auto;
        min-height: 110px;
    }
}

/* --- Price & LMS --- */
.price-box {
    text-align: center;
    background: #fff;
    border: 2px solid var(--primary);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto 60px;
    border-radius: 8px;
}

.price-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.price-box .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.price-box .price span {
    font-size: 2.5rem;
    color: var(--primary);
    font-family: var(--font-en);
}

.lms-info {
    max-width: 800px;
    margin: 0 auto;
    background: #F2FAFA;
    padding: 40px;
    border-radius: 8px;
}

.lms-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(10, 186, 181, 0.2);
    padding-bottom: 10px;
}

.lms-info .lead {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.lms-info ul {
    padding-left: 20px;
}

.lms-info li {
    list-style: disc;
    margin-bottom: 10px;
}

.btn-area {
    text-align: center;
    margin-top: 60px;
}

/* --- Responsive (VIDEO DX) --- */
@media (max-width: 900px) {
    .intro-layout {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .intro-bg-text { display: none; }
    .sp-br { display: block; }
}

@media (max-width: 768px) {
	.lms-info {
		padding: 10px;	
	}
	
    .intro-layout {
        gap: 50px;
    }

    .merit-row, .merit-row.reverse {
        flex-direction: column;
        text-align: center;
        border-radius: 12px;
        padding: 40px 20px;
        gap: 30px;
    }
    
    .merit-img-box {
        flex: none;
        width: 100%;      /* スマホでは横幅一杯に */
        max-width: 400px; /* 大きくなりすぎないように制限 */
        aspect-ratio: 16 / 9; /* スマホでは少し横長の方が見やすい場合も（お好みで） */
        margin-bottom: 20px;
    }
    
    .merit-content-box p {
        text-align: left; /* スマホでは左寄せが見やすい場合が多い */
    }
    .target-panels {
        grid-template-columns: 1fr;
    }

    .price-box {
        padding: 10%;
    }

    .price-box h3 {
        font-size: 6vw;
        margin-bottom: 6%;
    }

    .price-box .price {
        font-size: 4vw;
    }

    .price-box .price span {
        font-size: 9vw;
    }
    
    .btn-area {
        margin-top: 5%;
    }
}





/* ====================================
   Extra Contents (Mori-Mori Update)
   ==================================== */

/* --- 汎用ユーティリティ --- */
.mt-2 { margin-top: 10px; }
.mt-4 { margin-top: 20px; }
.mt-5 { margin-top: 40px; }
.text-center { text-align: center; }

/* --- スマホ見出しサイズ調整用 --- */
@media (max-width: 768px) {
    /* サイト共通のsection-title等を少し小さめに */
    .section-title { font-size: 1.6rem !important; margin-bottom: 30px; letter-spacing: 0.05em; }
    .intro-heading { font-size: 1.5rem !important; }
    .merit-title { font-size: 1.3rem !important; }
    .extra-main-title { font-size: 1.4rem; }
    .pr-merit-title { font-size: 1.4rem !important; }
    .eff-title { font-size: 1.4rem; text-align: left !important; }
}

/* --- Intro Extra Box (動画課題解決 : 項目ごとに右側小画像) --- */
.intro-extra-box {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.extra-main-title {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.solution-row {
    display: flex;
    align-items: center; /* 縦の中央で揃える */
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px dashed #eee; /* 項目間に区切り線 */
}

.solution-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.solution-text {
    flex: 1; /* テキスト部分が残りの幅をすべて使う */
}

.solution-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
    display: flex;
    align-items: center;
}

/* 左側の青い縦線（ご要望のh4デザイン） */
.solution-text h4::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 18px;
    background: var(--primary);
    margin-right: 10px;
    border-radius: 2px;
}

.solution-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-main);
    margin-bottom: 0;
    text-align: justify;
}

/* 右側の小さな画像 */
.solution-img-small {
    flex: 0 0 250px; /* 画像の幅を固定（お好みでサイズ調整可能） */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    aspect-ratio: 16 / 10; /* 少し横長 */
    background: #f9f9f9;
}

.solution-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solution-row:hover .solution-img-small img {
    transform: scale(1.05); /* ホバー時に少しズーム */
}

/* --- Extra Responsive --- */
@media (max-width: 900px) {
    .pr-merit-layout { flex-direction: column; }
    .pr-merit-img { position: static; width: 100%; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .intro-extra-box, .eff-block, .lms-detail-box { padding: 30px 20px; }
    .pr-item { flex-direction: column; gap: 15px; padding: 25px 20px; }
    .flex-layout, .flex-layout.reverse { flex-direction: column-reverse; }
    .lms-flex-layout { flex-direction: column-reverse; }
    
    /* スマホ時は画像を下に落とし、横幅いっぱいに広げる */
    .solution-row {
        flex-direction: column; 
        align-items: flex-start;
        gap: 20px;
    }
    .solution-img-small {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
}


/* --- PR Merits (販売PRのメリット : カードレイアウト) --- */
.pr-merit-wrapper {
    margin-top: 100px;
}

.pr-merit-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 50px;
    font-weight: 700;
}

/* ▼▼▼ GridからFlexboxに変更し、中央寄せにする ▼▼▼ */
.pr-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* カードを中央に集める */
    gap: 30px;
    margin-bottom: 30px;
}

/* top-row, bottom-rowの個別設定は不要になるため削除（または上書き） */
.pr-card-grid.top-row,
.pr-card-grid.bottom-row {
    display: flex;
}

.pr-card {
    /* ▼▼▼ カードの幅を「3列の時のサイズ」に完全に固定する ▼▼▼ */
    /* 100%から余白(30px × 2)を引き、3で割る */
    width: calc((100% - 60px) / 3); 
    
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid transparent;
}

.pr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 186, 181, 0.15);
    border-color: rgba(10, 186, 181, 0.3);
}

/* 画像エリア */
.pr-card-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pr-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pr-card:hover .pr-card-img img {
    transform: scale(1.08);
}

/* 画像左上の番号バッジ */
.pr-num {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1;
}

/* テキストエリア */
.pr-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pr-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    border-bottom: 2px solid #F0FCFB;
    padding-bottom: 15px;
    line-height: 1.4;
}

.pr-card-body p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-main);
    margin: 0;
    text-align: justify;
}

.pr-merit-conclusion {
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
    background: #F0FCFB;
    padding: 30px;
    border-radius: 8px;
    margin-top: 50px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .pr-card {
        /* タブレットサイズ付近では2列の幅にする */
        width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .pr-card {
        /* スマホ時は1列（横幅100%）にする */
        width: 100%;
    }
    .pr-card-img {
        height: 220px;
    }
}


/* --- EFFICIENCY (動画制作効率化・DX研修 : 1カラムカードレイアウト) --- */
.efficiency-content { 
    max-width: 1000px; 
    margin: 0 auto; 
}

.eff-block {
    background: #fff; 
    padding: 60px 50px; 
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
}

.eff-title-center {
    font-size: 1.6rem; 
    color: var(--primary); 
    margin-bottom: 40px; 
    font-weight: 700;
    line-height: 1.4;
    text-align: center; /* タイトルは中央に */
}

/* 3カラムのカードグリッド */
.eff-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.eff-card {
    background: #F8FAFC; /* ごく薄いティファニーブルー/グレー */
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.eff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 186, 181, 0.1);
    border-color: rgba(10, 186, 181, 0.3);
}

.eff-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.eff-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.eff-card:hover .eff-card-img img {
    transform: scale(1.08); /* ホバーで画像ズーム */
}

.eff-card-body {
    padding: 25px;
    flex: 1;
    position: relative;
}

.eff-num {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-en);
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 10px rgba(10, 186, 181, 0.2);
}

.eff-card-body h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

.eff-card-body p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* DX研修ブロック (1カラム画像＋テキスト) */
.eff-dx-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.eff-dx-img {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.eff-dx-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eff-dx-text p {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-main);
    text-align: justify;
}

/* スマホ用調整 */
@media (max-width: 768px) {
    .eff-block {
        padding: 40px 20px;
    }
    .eff-title-center {
        font-size: 1.4rem;
    }
    .eff-dx-img {
        height: 200px; /* スマホ時は画像の高さを抑える */
    }
    .eff-card-list {
        grid-template-columns: 1fr; /* スマホは1列に */
    }
}


/* --- Curriculum Detail List (モリモリの箇条書き) --- */
.curriculum-detail-list { list-style: none; padding: 0; margin: 0; }
.curriculum-detail-list li {
    position: relative; padding-left: 1.2em; margin-bottom: 10px;
    font-size: 0.95rem; line-height: 1.6; color: var(--text-main);
}
.curriculum-detail-list li::before {
    content: '・'; position: absolute; left: 0; color: var(--primary); font-weight: 700;
}


/* --- LMS Detail Box (画像付きジグザグ) --- */
.lms-detail-box {
    max-width: 900px;
    margin: 40px auto 0;
    background: #fff;
    padding: 60px; /* 余白を少し広めに */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
}

.lms-flex-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* ▼▼▼ 追加：下段用の左右反転クラス ▼▼▼ */
.lms-flex-layout.reverse {
    flex-direction: row-reverse;
}

.lms-text-col { flex: 1; }
.lms-img-col { flex: 0 0 40%; }

.lms-img-col img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    /* 高さを固定して揃える */
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.lms-detail-box h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.lms-detail-box p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--text-main);
    margin: 0;
    text-align: justify;
}

/* --- Extra Responsive --- */
@media (max-width: 900px) {
    .pr-merit-layout { flex-direction: column; }
    .pr-merit-img { position: static; width: 100%; max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .extra-flex-layout { flex-direction: column-reverse; }
    .flex-layout, .flex-layout.reverse { flex-direction: column-reverse; }
    
    /* ▼▼▼ スマホ時はジグザグを解除し、「画像が上・テキストが下」で統一 ▼▼▼ */
    .lms-flex-layout,
    .lms-flex-layout.reverse { 
        flex-direction: column-reverse; 
        gap: 30px; 
    }
    
    .intro-extra-box, .eff-block, .lms-detail-box { padding: 40px 20px; }
    .pr-item { flex-direction: column; gap: 15px; padding: 25px 20px; }
    
    /* 2段目の上余白をスマホ用に調整 */
    .lms-flex-layout.reverse {
        margin-top: 40px !important;
        padding-top: 40px;
        border-top: 1px dashed #eee; /* 区切り線を入れて見やすく */
    }
}