section {
    display: block;
    width: 100%;
    margin-bottom: 0px;
}

/* ==========================================================================
   全体の基本設定
   ========================================================================== */
.main-visual {
    background-color: #fdfbf7;
    padding: 60px 20px; 
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
}

/* コンテンツの最大幅を 1100px に設定 */
.main-visual .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ⭐【修正】gap（隙間）を 0 にして、左右をぴったりくっつけました */
.visual-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0; 
}

/* ⭐【修正】max-widthを解除し、左右が50%ずつの幅で綺麗に密着するようにしました */
.visual-left-col {
    flex: 1;
    text-align: left;
    padding-right: 15px; /* テキストが画像にめり込まないための最低限の余白 */
}

.visual-right-col {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   左カラム：テキスト＆認定情報エリア
   ========================================================================== */

/* 上部：公式立体リボン風バッジ */
.official-ribbon {
    position: relative;
    background: linear-gradient(to bottom, #f5d797 0%, #e1b353 50%, #cca03a 100%);
    color: #4a3200;
    padding: 10px 40px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-weight: bold;
    margin: 0 auto;
    width: 80%;
}

/* リボンの左下の折り返し影（3D効果） */
.official-ribbon::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 10px solid #947120;
    border-left: 15px solid transparent;
}

/* リボンコンテンツの右下の折り返し影（3D効果） */
.official-ribbon::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    border-top: 10px solid #947120;
    border-right: 15px solid transparent;
}

.official-ribbon span {
    margin: 0;
    font-size: 2rem;
    margin-top: 7px;
    font-weight: 900;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
}
.official-ribbon h2 {
   font-size: 3rem;
    margin-top: 7px;
    font-weight: 900;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.5);
}

/* メインタイトルと説明文 */
.main-title {
    font-size: 4rem;
    text-align: center;
    color: #2c3e50;
    margin: 20px 0;
    letter-spacing: 1px;
    text-align: center;
}
.steam-logo {
    background: linear-gradient(90deg, #3498db, #2ecc71, #f1c40f, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.main-desc {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
    text-align: center;
}
.highlight-orange {
    color: #e67e22;
}

/* 5つのSTEAMアイコン */
.steam-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    justify-content: center;
}
.icon-card {
    width: 75px; 
    padding: 7px 0;
    border-radius: 10px;
    color: white;
    text-align: center;
}
.icon-card .emoji {
    display: block;
    font-size: 3rem;
    margin-bottom: 4px;
}
.icon-card .label {
    font-size: 1rem;
    margin-top: 7px;
    display: block;
    font-weight: bold;
}
.blue   { background-color: #5dade2; }
.green  { background-color: #58d68d; }
.yellow { background-color: #f4d03f; }
.pink   { background-color: #ec7063; }
.navy   { background-color: #566573; }

/* メダルとテキストの認定ボックス */
.accredited-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px; 
    border-radius: 14px;
    border: 1px solid #f0e6d2;
    max-width: 520px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* 左側：画像を入れる丸い外枠 */
.medal-zone {
    flex-shrink: 0;
    height: 270px;
    display: flex;
    align-items: end;
    width: 31%;
}
.medal-image-wrapper {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.medal-img {
    width: 100%;
    height: auto;
}

/* 右側：テキストエリア */
.text-zone {
    text-align: left;
}
.organizer {
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
    color: #555;
    font-weight: 500;
}
.cert-title {
  width: 100%;
    font-size: 2.2rem;
    text-align: center;
    color: #d35400;
    margin: 5px 0 10px;
    font-weight: bold;
    border-bottom: 2px dashed #f39c12;
    padding-bottom: 3px;
    display: inline-block;
}
.evaluator {
    font-size: 1.3rem;
    margin: 5px 0 0 0;
    color: #333;
    line-height: 1.5;
}

/* ==========================================================================
   右カラム：メイン画像エリア
   ========================================================================== */
/* ⭐【修正】画像を親要素（横幅550px分）いっぱいに引き伸ばしてぴったり合わせます */
.main-image-container {
    position: relative;
    width: 100%;
}
.kids-photo {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    display: block;
}
/* 写真の上の手書き風文字エリア */
.image-catch {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #27ae60;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
/* 右下のロゴエリア */
.product-logo {
    position: absolute;
    bottom: 30px;
    right: 25px;
    text-align: right;
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c3e50;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
    line-height: 1.1;
}
.product-logo span {
    display: block;
    font-size: 1.0rem;
    color: #7f8c8d;
    margin-top: 2px;
}

/* ==========================================================================
   レスポンシブ対応（タブレット・スマホ）
   ========================================================================== */
@media (max-width: 850px) {
    .main-visual {
        padding: 40px 15px;
    }
    .visual-wrapper {
        flex-direction: column;
        gap: 35px;
    }
    .visual-left-col {
        text-align: center;
        padding-right: 0; /* スマホ時は右の余白をリセット */
    }
    .official-ribbon::before,
    .official-ribbon::after {
        display: none;
    }
    .official-ribbon {
        border-radius: 6px;
    }
    .steam-icons {
        justify-content: center;
    }
    .accredited-flex {
        margin: 0 auto;
    }
    .text-zone {
        text-align: left;
    }
    .main-title {
        font-size: 2.8rem;
    }
}



/* ==========================================================================
   評価基準セクションの基本設定
   ========================================================================== */
.evaluation-section {
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(90deg, rgba(18, 133, 216, 0.08) 0 1px, transparent 1px), linear-gradient(0deg, rgba(18, 133, 216, 0.08) 0 1px, transparent 1px), var(--up-d_color-soft);
    background-size: 28px 28px;
}

.evaluation-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 青い帯の見出し */
.section-title {
    background: linear-gradient(to right, #007991, #008ca8);
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* 左右ぴったり配置するための横並び設定 */
.evaluation-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0; 
}

/* 左右が50%ずつ綺麗にくっつくように調整 */
.eval-left-col {
    flex: 1;
    padding-right: 15px; /* 右側パーツとのめり込み防止用最低限の余白 */
}

.eval-right-col {
    flex: 1;
}

/* ==========================================================================
   ⭐【追加】左カラム：画像エリアの装飾
   ========================================================================== */
.eval-image-container {
    position: relative;
    width: 100%;
}
.eval-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: block;
}
/* 画像の上の手書き風文字風のレイアウト */
.eval-image-catch {
    position: absolute;
    top: 15px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.95rem;
    font-weight: bold;
    color: #e67e22; /* オレンジ系の文字色 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ==========================================================================
   右カラム：3つのチェックポイントの装飾
   ========================================================================== */
.point-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.point-item {
    display: flex;
    align-items: center;
    background-color: #f7fbe6; 
    padding: 15px 20px;
    border-radius: 40px; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.point-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.green-icon  { border: 2px solid #5cb85c; }
.orange-icon { border: 2px solid #f0ad4e; }
.gold-icon   { border: 2px solid #f39c12; }

.point-content {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* ==========================================================================
   レスポンシブ対応（画面が狭いとき）
   ========================================================================== */
@media (max-width: 850px) {
    .evaluation-section {
        padding: 40px 15px;
    }
    .section-title {
        font-size: 1.2rem;
        padding: 12px 15px;
    }
    .evaluation-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .eval-left-col {
        padding-right: 0;
    }
    .point-item {
        padding: 12px 15px;
    }
    .point-content {
        font-size: 1.0rem;
    }
}



/* ==========================================================================
   特徴・評価実績セクションの基本設定
   ========================================================================== */
.features-section {
    background-color: #fff8eb;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.features-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 左右ぴったり配置するための横並び設定 */
.features-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0; 
}

/* 左右が50%ずつ綺麗にくっつくように調整 */
.features-left-col {
    flex: 1;
    padding-right: 20px; /* 右側パーツとのめり込み防止用最低限の余白 */
}

.features-right-col {
    flex: 1;
    padding-left: 0px; /* 左側パーツとの間隔微調整 */
}

/* ==========================================================================
   左カラム：立体リボン・テーブル・サブ画像の装飾
   ========================================================================== */

/* ⭐左上の公式立体リボン風バッジを完全再現 */
.feature-ribbon {
    position: relative;
    background: linear-gradient(to bottom, #f5d797 0%, #e1b353 50%, #cca03a 100%); /* 金色グラデーション */
    color: #4a3200;
    display: inline-block;
    padding: 12px 30px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-weight: bold;
    width: 100%;
}

/* リボンの左下の折り返し影（3D効果） */
.feature-ribbon::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 10px solid #947120;
    border-left: 15px solid transparent;
}

/* リボンコンテンツの右下の折り返し影（3D効果） */
.feature-ribbon::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    border-top: 10px solid #947120;
    border-right: 15px solid transparent;
}

.feature-ribbon h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.5);
}

/* 評価表の画像用ダミーボックス */
.evaluation-table-box {
    background-color: #fff;
    border: 1px solid #e2d7c5;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 25px;
}
.table-dummy-text {
    color: #7f8c8d;
    font-weight: bold;
    margin: 0;
}

/* 左カラムの下部サブコース画像 */
.sub-course-container {
    position: relative;
    width: 100%;
}
.sub-course-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
    display: block;
}
.sub-course-catch {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: bold;
    color: #e67e22;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ==========================================================================
   右カラム：創造力見出し・解説文・ギャラリー画像の装飾
   ========================================================================== */
.creative-title-zone {
    text-align: center;
    margin-bottom: 25px;
}
.creative-title {
    font-size: 2.8rem;
    color: #007991;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 20px;
}
.creative-lead {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #333;
    font-weight: bold;
    margin: 0;
    text-align: center;
}

/* メインギャラリー画像 */
.main-gallery-container {
    width: 100%;
}
.gallery-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: block;
}

/* ==========================================================================
   下部：フッターサマリー＆安全メッセージの装飾
   ========================================================================== */
.features-footer-zone {
    margin-top: 50px;
    text-align: center;
}

.footer-catchphrase {
    font-size: 20px;
    font-weight: bold;
    color: #007991;
    margin-top: 30px;
    text-align: center;
}

/* 厳しい基準をクリアのメッセージ */
.bottom-cert-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.gold-star-medal {
    font-size: 5.5rem;
}
.clear-text {
    font-size: 18px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}
.clear-text span {
    font-size: 26px;
    color: #c0392b;
    font-weight: 900;
}

/* 安全性の証明（安心の緑のメッセージボックス） */
.safety-message-box {
    background-color: #f0fbf4;
    border: 2px solid #a3e4d7;
    padding: 25px 30px;
    border-radius: 12px;
    display: inline-block;
    text-align: center;
    max-width: 770px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.safety-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}
.safety-highlight {
    font-size: 18px;
    font-weight: 900;
    color: #27ae60; /* 強調の鮮やかな緑 */
    margin: 0;
}

/* ==========================================================================
   レスポンシブ対応（画面が狭いとき）
   ========================================================================== */
@media (max-width: 850px) {
    .features-section {
        padding: 40px 15px;
    }
    .features-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .features-left-col,
    .features-right-col {
        padding-left: 0;
        padding-right: 0;
    }
    .feature-ribbon::before,
    .feature-ribbon::after {
        display: none; /* スマホ時は折り返し影をすっきり非表示 */
    }
    .feature-ribbon {
        border-radius: 6px;
    }
    .creative-lead {
        text-align: center;
    }
    .footer-catchphrase {
        font-size: 1.2rem;
    }
    .bottom-cert-flex {
        gap: 10px;
    }
    .clear-text {
        text-align: center;
        font-size: 1.1rem;
    }
    .clear-text span {
        font-size: 1.3rem;
    }
    .safety-message-box {
        padding: 20px;
    }
    .safety-desc {
        font-size: 1.0rem;
    }
    .safety-highlight {
        font-size: 1.1rem;
    }
}



/* ==========================================================================
   3連評価カードのスタイル
   ========================================================================== */
/* 3つのカードを横並びにするコンテナ */
.evaluation-cards-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

/* 各カードの共通設定 */
.eval-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

/* カードヘッダー（グラデーションと王冠の配置） */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    color: #fff;
}
.card-header h3 {
    margin: 0;
    font-size: 13px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.5px;
}
.crown-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

/* ヘッダーの色バリエーション（画像準拠） */
.bg-teal  { background: linear-gradient(to bottom, #0097a7, #00838f); }
.bg-green { background: linear-gradient(to bottom, #4caf50, #388e3c); }
.bg-blue  { background: linear-gradient(to bottom, #009688, #00695c); }

/* カードのボディー（リスト部分） */
.card-body {
    padding: 10px;
    background-color: #fff;
    flex-grow: 1;
}

/* 各行の左右並び設定 */
.eval-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.eval-row:last-child {
    border-bottom: none; /* 最後の行の線は消す */
}

/* 各項目のテキスト */
.eval-label {
    font-size: 0.95rem;
    color: #333;
    font-weight: bold;
}

/* 評価ステータスのテキスト */
.eval-value {
    font-size: 1.2rem;
    font-weight:900;
    white-space: nowrap;
}

/* 評価の色（画像準拠） */
.text-red    { color: #c0392b; } /* とても良い！ / 高 */
.text-orange { color: #e67e22; } /* 良い！ */
.text-blue   { color: #2980b9; } /* 小 */
.text-gray   { color: #7f8c8d; } /* 該当なし */

.good-p{
  background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 16px;
    line-height: 1.5;
}

.pc-none{
  display: none;
}

.shutten{
  font-size: 16px;
    text-align: center;
    margin-top: 3rem;
    font-weight: bold;
}




/* ==========================================================================
   レスポンシブ対応（画面が狭いときは縦並びに）
   ========================================================================== */
@media (max-width: 768px) {
    .evaluation-cards-container {
        flex-direction: column;
        gap: 20px;
    }

.sp-none{
  display: none !important;
}

.official-ribbon h2 {
    font-size: 2.2rem;
}

.official-ribbon span {
    margin: 0;
    font-size: 1.7rem;
}

.steam-icons {
    display: flex;
    gap: 5px;
}

.icon-card {
    width: 65px;
}

.accredited-flex {
    display: block;
    margin-top: 1.5rem;
}

.medal-image-wrapper {
    margin: auto;
    width: 120px;
    height: 120px;
}

.organizer {
    font-size: 1.3rem;
}

.cert-title {
    font-size: 2rem;
    width: 100%;
}

.visual-right-col {
    margin-top: -20px;
}

.container {
    padding: 0 0px;
}

.section-title {
        font-size: 1.3rem;
}

.good-p {
    font-size: 14px;
}

.eval-right-col {
    flex: 1;
    width: 100%;
}

.point-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
    margin-right: 12px;
}

    .point-content {
        font-size: 1.2rem;
    }
    
.feature-ribbon h2 {
    text-align: left;
}

.card-header {
    padding: 12px 20px;
}

.card-header h3 {
    margin: 0;
    font-size: 16px;
}

.crown-icon {
    font-size: 24px;
    margin-top: -5px;
    margin-left: 5px;
}

.card-header {
    display: flex;
    justify-content: center;
}

.eval-label {
    font-size: 1.3rem;
}

.eval-value {
    font-size: 1.5rem;
}

.creative-title {
    font-size: 19px;
    margin-bottom: 15px;
}

.creative-lead {
    font-size: 14px;
}

.footer-catchphrase {
    font-size: 16px !important;
    font-weight: bold;
    color: #007991;
    margin-top: 20px;
    text-align: left;
}

.pc-none{
  display: block;
}

.official-ribbon {
    padding: 10px 20px;
    margin: 0 auto 20px;
}

    .clear-text {
        text-align: center;
        font-size: 14px;
    }
  
.clear-text span {
        font-size: 18px;
    }

.safety-desc {
        font-size: 14px;
        text-align: left;
    }

    .safety-highlight {
        font-size: 20px;
        text-align: left;
    }
}

.toha-flex{
  display: flex;
    justify-content: space-between;
}

.toha-box{
  width: 64%;
    margin-right: 3rem;
}

.section-title02:after {
    content: none;
}

@media (max-width: 768px) {
.toha-box {
    width: 100%;
    margin-right: 0rem;
}

.steam-icons-sp{
  display: flex;
    margin-top: 2rem;
}

.main-title {
    margin: 5px 0 20px;
}

.medal-zone {
    flex-shrink: 0;
    height: 160px;
    display: flex;
    align-items: end;
    width: 100%;
}

.medal-image-wrapper {
        margin: auto;
        width: 170px;
        height: 165px;
    }

.medal-img {
    width: 100%;
}
}
