@charset "utf-8";


/* ========================================
   基本設定
======================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, Meiryo, sans-serif;
  color: #535353;
  background: #f5f5f5;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ========================================
   レイアウト
======================================== */
.page-wrapper {
  max-width: 750px;
  margin: 0 auto;
  background-color: #ffffff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.side-padding-container {
  padding: 0 30px;
  width: 100%;
}
.section {
  margin: 50px 0;
}
.image {
  text-align: center;
}
/* ========================================
   ヘッダー
======================================== */
.header {
  background-color: #ffe109;
  height: 96px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header__inner {
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
/* ロゴ：高さ指定 */
.header__logo {
  flex-shrink: 0;
}
.header__logo a {
  display: block;
  height: 80px;
}
.header__logo img {
  height: 100%;
  width: auto;
  display: block;
}
.header__button {
  flex-shrink: 0;
}
.header__button .button {
  display: block;
  height: 50px;
}
.header__button .button img {
  height: 100%;
  width: auto;
  display: block;
}
/* ===========================
   ユーティリティ（再利用）
=========================== */
 /* フォントサイズ */
.u-text--24 { font-size: 24px; line-height: 1.6; }
.u-text--29 { font-size: 29px; line-height: 1.5; }
.u-text--30 { font-size: 30px; line-height: 1.5; }
.u-text--32 { font-size: 32px; line-height: 1.5; }
.u-text--36 { font-size: 36px; line-height: 1.5; }
.u-text--42 { font-size: 42px; line-height: 1.5; }
.u-text--45 { font-size: 45px; line-height: 1.5; }
.u-text--48 { font-size: 48px; line-height: 1.5; }

/* 色 */
.u-color--gray { color: #535353; }
.u-color--black { color: #333; }
.u-color--white { color: #fff; }
.u-color--red { color: #d02629; }

/* フォントウェイト */
.u-fw--medium { font-weight: 500; }
.u-fw--bold { font-weight: 700; }
.u-fw--extrabold { font-weight: 800; }

/* 整列 */
.u-align--center { text-align: center; }
.u-align--left { text-align: left; }
.u-align--right { text-align: right; }

/* 余白 */
.u-mb--0 { margin-bottom: 0; }
.u-mb--20 { margin-bottom: 20px; }
.u-mb--50 { margin-bottom: 50px; }
.u-mb--80 { margin-bottom: 80px; }
.u-mb--120 { margin-bottom: 120px; }
.u-mt--50 { margin-top: 50px; }

/* 全文に赤アンダーライン（文字は細字） */
.emphasis-red-underline {
 font-weight: 300;  /* 細字 */
 text-decoration: underline;
 text-decoration-color: #d02629;
 text-underline-offset: 8px;
 text-decoration-thickness: 3px;
}
/* 縦線区切り */
.vertical-line {
 width: 2px;
 height: 80px;
 background-color: #cccccc;
 margin: 0 auto 50px;
}


/* ========================================
  背景色
======================================== */
.bg-red {
 background-color: #981b09;
 padding: 60px 0;
 width: 100%;
}


.bg-yellow {
 background-color: #FFF9E6;
 width: 100%;
 padding-bottom: 80px;
}


.bg-gray {
 background-color: #f5f5f5;
 padding: 60px 0;
 width: 100%;
}


/* ===========================
   テキストブロック（本文）
=========================== */
.text-block {
  padding: 75px 0;
}
.text-block p {
  font-size: 30px;
  font-weight: 300;
  color: #535353;
  line-height: 53px;
  margin: 0 0 75px;
  text-align: justify;
}
.text-block .large-text--36 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
  }
.text-block p.small-margin {
 margin-bottom: 0px;
}
.text-block .emphasis-red {
  font-weight: 800;
  color: #d02629;
 }
.text-block p:last-child {
 margin-bottom: 0;
}



.heading-white--36{
  font-size: 36px;
  line-height: 54px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 40px auto;
}
.heading-white--42{
  font-size: 42px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}
.heading-white--48{
  font-size: 48px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}
.heading-yellow--40{
  font-size: 40px;
  color: #fff99a;
  font-weight: 800;
  text-align: center;
}
.heading-black--40{
  font-size: 40px;
  color: #333;
  font-weight: 800;
  text-align: center;
}

/* 記事内（本文左揃え）の強調 */
.bold {
 color: #333333;
 font-weight: 800;  /* 極太 */
}
.bold--34 {
  font-size: 34px;
 color: #333333;
 font-weight: 800;  /* 極太 */
}
.bold--40 {
  font-size: 40px;
 color: #333333;
 font-weight: 800;  /* 極太 */
}
.bold-red {
 color: #d02629;
 font-weight: 800;  /* 極太 */
}


/* ========================================
   セクション1：ファーストビュー
======================================== */
.hero{
  width: 100%;
  padding: 50px 0 70px;
}
.hero-image{
  margin-bottom: 50px;
  text-align: center;
}
.hero-subtitle--36{
  font-size: 36px;
  font-weight: 400;
  color: #333333;
  line-height: 53px;
  margin: 0 0 50px;
  text-align: center;
}
.hero-title--30{
  font-size: 30px;
  font-weight: 300;
  color: #535353;
  margin: 0 0 20px;
  text-align: center;
}
.hero-title--47{
  font-size: 47px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 20px;
  text-align: center;
}


/* ========================================
   画像
======================================== */
.image-full-overlay__text {
  background: url(../img/bg_black.png) center top no-repeat;
  width: 100%;
  text-align: center;
  padding: 30px 0 ;
}
.image-full { 
 width: 100%;
}


/* ========================================
   警告
======================================== */
.warning{
background-color: #fafafa;
width: 100%;
padding: 0 0 70px;
}

/* ========================================
   導入
======================================== */
/* 大きな赤文字（"王道乃印"） */
.brand-name {
 font-size: 56px;
 font-weight: 800;
 color: #d02629;
 line-height: 1.4;
 display: inline;
}
/* ========================================
   過去の回想（黒）
======================================== */

.memory1{
  
}

.memory1__border,
.memory2__border {
 border-left: 10px solid #333;
 border-right: 10px solid #333;
 
}


.memory1__border .container,
.memory2__border .container {
 padding: 1px 30px 30px 30px;
}
.memory-title42{
  font-size: 42px;
  font-weight: 800;
  color: #333333;
  margin: 0 0 50px;
  text-align: center;
}
.memory-title42-mt80 {
  font-size: 42px;
  font-weight: 800;
  color: #333333;
  margin: 80px 0 50px;
  text-align: center;
}
.memory-title40{
  font-size: 40px;
  font-weight: 800;
  color: #333333;
  margin: 0 0 50px;
  text-align: center;
}
.memory-title40-mt80 {
  font-size: 40px;
  font-weight: 800;
  color: #333333;
  margin: 80px 0 50px;
  text-align: center;
}
.memory__bold{
  font-weight: 800;
  color: #333333;
  text-align: justify;
}

/* ========================================
   過去の回想（黄）
======================================== */
.memory3__border,
.memory4__border {
 border-left: 10px solid #fbf479;
 border-right: 10px solid #fbf479;
}
.memory3__border .container,
.memory4__border .container {
 padding: 1px 30px 30px 30px;
}
.memory-last-title{
  font-size: 60px;
  font-weight: 800;
  color: #333333;
  text-align: center;
  padding: 100px 0 0px;
}
/* ========================================
  ラーメンアイコンのリスト１
======================================== */


.list-container {
           max-width: 800px;
           margin: 0 auto;
           background-color: #ffffff;
           padding: 50px 20px;
       }


       .list-item {
           display: flex;
           align-items: center;
           padding: 10px 0;
           border-bottom: 1px dotted #cccccc;
       }


       .list-item:last-child {
           border-bottom: none;
       }


       .icon {
           flex-shrink: 0;
           width: 40px;
           height: 40px;
           margin-right: 20px;
       }


       .text {
           font-size: 26px;
           font-weight: 400;
           color: #535353;
           line-height: 1.6;
           flex: 1;
       }

/* ========================================
   アコーディオンボタン
======================================== */
.accordion__text {
  font-size: 30px;
  color: #535353;
  line-height: 1.8;
  text-align: justify;       /* 両端揃え */
  text-align-last: left;     /* 最終行のみ左揃え */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;     /* 初期は3行だけ表示 */
  -webkit-box-orient: vertical;
  transition: all 0.4s ease;
}

.accordion__text.is-open {
  -webkit-line-clamp: unset;
  max-height: none;
  overflow: visible;
}

/* 段落の上マージン（1段落目以外に適用） */
.accordion__text p + p {
  margin-top: 50px;
}

.accordion__button {
  display: block;
  margin: 30px auto 0;
  background: none;
  border: 1px solid #535353;
  color: #535353;
  font-size: 30px;
  padding: 14px 40px;
  cursor: pointer;
  transition: 0.3s;
}

.accordion__button:hover {
  background-color: #535353;
  color: #fff;
}
/* ========================================
 募集要項
======================================== */
.section-recruitment{
  margin: 150px 0 75px;
}
/* Youtube・SNSセクション */
.hashtag-text{
  font-size: 20px;
  color: #535353;
  font-weight: 300;
  text-align: center;
  margin: 20px 0;
}

/* <!-- 研修セクション --> */
.section-training{
  margin: 75px 0 ;
  padding: 75px 0;
  background-color: #fafafa;
}

/* <!-- 加盟金・ロイヤリティセクション --> */
.section-fee{
  margin: 90px 0;
}
table {
           width: 100%;
           border-collapse: collapse;
           margin-bottom: 30px;
       }
      
       tr {
           border-bottom: none;
       }
      
       td {
           padding: 20px 0;
       }
      
       td:first-child {
           font-weight: bold;
           width: 40%;
           color: #333;
           font-size: 32px;
           border-bottom: 2px solid #c84a31;
       }
      
       td:last-child {
           color: #333;
           font-size: 32px;
           text-align: left;
           border-bottom: 2px solid #ccc;
       }
      
       .note {
           margin: 20px 0 50px;
           font-size: 24px;
           color: #666;
           line-height: 1.6;
       }

/* <!-- CTAセクション --> */
.section-cta {
  background-color: #fafafa;
  padding: 75px 0 0;
}

.section-cta__box {
  background-color: #fff;
  margin: 0 auto;
  padding: 80px 20px 0;
  border: 1px solid #e0e0e0;
  padding: 60px 0 0section-cta__interview-title;
  text-align: center;
}

.section-cta__title {
  font-size: 42px;
  color: #333;
  font-weight: 700;
  border-bottom: 2px solid #ccc;
  display: inline-block;
  padding-bottom: 10px;
}

.section-cta__title span {
  font-weight: 900;
}

/* --- 面談セクション --- */

.section-cta__interview-title {
  font-size: 42px;
  color: #333;
  font-weight: 800;
  text-align: center;
  border-bottom: 3px solid #b43b2a;
  padding-bottom: 8px;
  margin-top: 75px;
}
/* ========================================
 フッター
======================================== */
footer {
    width: 100%;
    height: auto;
    color: #fff;
    background-color: #333;
}
.footer-inner {
    text-align: left;
}
.footer-inner li {
    text-align: left;
    padding: 8px 0;
    font-size: 120%;
    border-bottom: 1px solid #d4d4d4;
}
.footer-inner a:hover {
    text-decoration: underline;
}
.footer-inner a {
    padding: 5px;
    margin: 50px;
    color: #fff;
    padding-left: 30px;
    background: url(../img/listmark-arrow.png) no-repeat left 0 top 5px;
}
footer p.copy {
    text-align: center;
    padding: 20px 0;
    font-size: 90%;
}




/* ========================================
   レスポンシブ対応（タブレット・スマホ）
======================================== */

/* タブレット（768px以下） */
@media screen and (max-width: 768px) {
  
  /* 基本レイアウト */
  .side-padding-container {
    padding: 0 20px;
  }
  
  .section {
    margin: 30px 0;
  }
  
  /* ========================================
     ヘッダー
  ======================================== */
  .header {
    height: 70px;
  }
  
  .header__inner {
    padding: 10px 20px;
  }
  
  .header__logo a {
    height: 50px;
  }
  
  .header__button .button {
    height: 40px;
  }
  
  /* ========================================
     フォントサイズ調整（改行を防ぐため大きめに）
  ======================================== */
  .u-text--24 { font-size: 20px; }
  .u-text--29 { font-size: 24px; }
  .u-text--30 { font-size: 24px; }
  .u-text--32 { font-size: 26px; }
  .u-text--36 { font-size: 28px; }
  .u-text--42 { font-size: 34px; }
  .u-text--45 { font-size: 36px; }
  .u-text--48 { font-size: 38px; }
  
  /* ========================================
     背景色セクション
  ======================================== */
  .bg-red,
  .bg-gray {
    padding: 40px 0;
  }
  
  .bg-yellow {
    padding-bottom: 50px;
  }
  
  /* ========================================
     テキストブロック
  ======================================== */
  .text-block {
    padding: 50px 0;
  }
  
  .text-block p {
    font-size: 24px;
    line-height: 40px;
    margin: 0 0 50px;
  }
  
  .text-block .large-text--36 {
    font-size: 28px;
  }
  
  /* 見出し（改行を防ぐため大きめに保持） */
  .heading-white--36 {
    font-size: 30px;
    line-height: 44px;
  }
  
  .heading-white--42 {
    font-size: 36px;
  }
  
  .heading-white--48 {
    font-size: 40px;
  }
  
  .heading-yellow--40 {
    font-size: 34px;
  }
  
  .heading-black--40 {
    font-size: 34px;
  }
  
  .bold--34 {
    font-size: 28px;
  }
  
  .bold--40 {
    font-size: 34px;
  }
  
  /* ========================================
     ファーストビュー
  ======================================== */
  .hero {
    padding: 30px 0 40px;
  }
  
  .hero-image {
    margin-bottom: 30px;
  }
  
  .hero-subtitle--36 {
    font-size: 30px;
    line-height: 44px;
    margin: 0 0 30px;
  }
  
  .hero-title--30 {
    font-size: 24px;
    margin: 0 0 15px;
  }
  
  .hero-title--47 {
    font-size: 38px;
    margin: 0 0 15px;
  }
  
  /* ========================================
     画像オーバーレイ
  ======================================== */
  .image-full-overlay__text {
    padding: 30px 0 ;
  }
  
  /* ========================================
     警告セクション
  ======================================== */
  .warning {
    padding: 0 0 40px;
  }
  
  /* ========================================
     ブランド名
  ======================================== */
  .brand-name {
    font-size: 44px;
  }
  
  /* ========================================
     過去の回想
  ======================================== */
  .memory1__border,
  .memory2__border,
  .memory3__border,
  .memory4__border {
    border-left-width: 6px;
    border-right-width: 6px;
  }
  
  .memory1__border .container,
  .memory2__border .container,
  .memory3__border .container,
  .memory4__border .container {
    padding: 1px 20px 25px 20px;
  }
  
  .memory-title42,
  .memory-title42-mt80 {
    font-size: 36px;
    margin: 0 0 40px;
  }
  
  .memory-title42-mt80 {
    margin-top: 60px;
  }
  
  .memory-title40,
  .memory-title40-mt80 {
    font-size: 34px;
    margin: 0 0 40px;
  }
  
  .memory-title40-mt80 {
    margin-top: 60px;
  }
  
  .memory-last-title {
    font-size: 48px;
    padding: 70px 0 0;
  }
  
  /* ========================================
     リストコンテナ
  ======================================== */
  .list-container {
    padding: 50px 15px;
  }
  
  .list-item {
    padding: 8px 0;
  }
  
  .icon {
    width: 32px;
    height: 32px;
    margin-right: 16px;
  }
  
  .text {
    font-size: 22px;
  }
  
  /* ========================================
     アコーディオン
  ======================================== */
  .accordion__text {
    font-size: 24px;
  }
  
  .accordion__text p + p {
    margin-top: 40px;
  }
  
  .accordion__button {
    font-size: 24px;
    padding: 12px 32px;
    margin: 24px auto 0;
  }
  
  /* ========================================
     募集要項
  ======================================== */
  .section-recruitment {
    margin: 100px 0 60px;
  }
  
  .hashtag-text {
    font-size: 18px;
    margin: 15px 0;
  }
  
  /* ========================================
     研修セクション
  ======================================== */
  .section-training {
    margin: 60px 0;
    padding: 60px 0;
  }
  
  /* ========================================
     加盟金・ロイヤリティ
  ======================================== */
  .section-fee {
    margin: 70px 0;
  }
  
  table {
    margin-bottom: 24px;
  }
  
  td {
    padding: 16px 0;
  }
  
  td:first-child {
    font-size: 26px;
  }
  
  td:last-child {
    font-size: 26px;
  }
  
  .note {
    font-size: 20px;
    margin: 16px 0 40px;
  }
  
  /* ========================================
     CTAセクション
  ======================================== */
  .section-cta {
    padding: 60px 0 0;
  }
  
  .section-cta__box {
    padding: 50px 20px 0;
  }
  
  .section-cta__title {
    font-size: 36px;
    padding-bottom: 8px;
  }
  
  .section-cta__interview-title {
    font-size: 36px;
    margin-top: 60px;
    padding-bottom: 6px;
  }
  
  /* ========================================
     フッター
  ======================================== */
  .footer-inner li {
    font-size: 110%;
    padding: 7px 0;
  }
  
  .footer-inner a {
    margin: 30px;
    padding-left: 26px;
  }
  
  footer p.copy {
    font-size: 85%;
    padding: 16px 0;
  }
  
  /* ========================================
     余白調整
  ======================================== */
  .u-mb--20 { margin-bottom: 16px; }
  .u-mb--50 { margin-bottom: 40px; }
  .u-mb--80 { margin-bottom: 60px; }
  .u-mb--120 { margin-bottom: 90px; }
  
  .vertical-line {
    height: 60px;
    margin: 0 auto 40px;
  }
  
  .emphasis-red-underline {
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
  }
}

/* スマートフォン（481px〜768px の間は上記タブレット設定が適用される） */
/* スマートフォン（376px〜480px） - PC版の半分サイズ */
@media screen and (max-width: 480px) {
  
  /* 基本レイアウト */
  .side-padding-container {
    padding: 0 20px;
  }
  
  .section {
    margin: 25px 0;
  }
  
  /* ========================================
     ヘッダー（PC 96px → 48px）
  ======================================== */
  .header {
    height: 48px;
  }
  
  .header__inner {
    padding: 7px 20px;
  }
  
  .header__logo a {
    height: 40px;
  }
  
  .header__button .button {
    height: 25px;
  }
  
  /* ========================================
     フォントサイズ（PC版の半分）
  ======================================== */
  .u-text--24 { font-size: 12px; line-height: 1.6; }
  .u-text--29 { font-size: 14px; line-height: 1.5; }
  .u-text--30 { font-size: 15px; line-height: 1.5; }
  .u-text--32 { font-size: 16px; line-height: 1.5; }
  .u-text--36 { font-size: 18px; line-height: 1.5; }
  .u-text--42 { font-size: 21px; line-height: 1.5; }
  .u-text--45 { font-size: 22px; line-height: 1.5; }
  .u-text--48 { font-size: 24px; line-height: 1.5; }
  
  /* ========================================
     背景色セクション（PC 60px → 30px）
  ======================================== */
  .bg-red,
  .bg-gray {
    padding: 30px 0;
  }
  
  .bg-yellow {
    padding-bottom: 40px;
  }
  
  /* ========================================
     テキストブロック（PC 75px → 37px）
  ======================================== */
  .text-block {
    padding: 37px 0;
  }
  
  /* 本文（PC 30px → 15px、ただし要望により16px） */
  .text-block p {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 37px;
  }
  
  /* PC 36px → 18px */
  .text-block .large-text--36 {
    font-size: 18px;
  }
  
  /* 見出し（PC版の半分） */
  .heading-white--36 {
    font-size: 18px;
    line-height: 27px;
  }
  
  .heading-white--42 {
    font-size: 21px;
  }
  
  .heading-white--48 {
    font-size: 24px;
  }
  
  .heading-yellow--40 {
    font-size: 20px;
  }
  
  .heading-black--40 {
    font-size: 20px;
  }
  
  .bold--34 {
    font-size: 17px;
  }
  
  .bold--40 {
    font-size: 20px;
  }
  
  /* ========================================
     ファーストビュー（PC 50px → 25px）
  ======================================== */
  .hero {
    padding: 25px 0 35px;
  }
  
  .hero-image {
    margin-bottom: 25px;
  }
  
  /* PC 36px → 18px */
  .hero-subtitle--36 {
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 25px;
  }
  
  /* PC 30px → 15px */
  .hero-title--30 {
    font-size: 15px;
    margin: 0 0 10px;
  }
  
  /* PC 47px → 23px */
  .hero-title--47 {
    font-size: 23px;
    margin: 0 0 10px;
  }
  
  /* ========================================
     画像オーバーレイ
  ======================================== */
  .image-full-overlay__text {
    padding: 30px 0 ;
  }
  
  /* ========================================
     警告セクション（PC 70px → 35px）
  ======================================== */
  .warning {
    padding: 0 0 35px;
  }
  
  /* ========================================
     ブランド名（PC 56px → 28px）
  ======================================== */
  .brand-name {
    font-size: 28px;
  }
  
  /* ========================================
     過去の回想（PC 10px → 5px）
  ======================================== */
  .memory1__border,
  .memory2__border,
  .memory3__border,
  .memory4__border {
    border-left-width: 5px;
    border-right-width: 5px;
  }
  
  .memory1__border .container,
  .memory2__border .container,
  .memory3__border .container,
  .memory4__border .container {
    padding: 1px 15px 15px 15px;
  }
  
  /* PC 42px → 21px */
  .memory-title42,
  .memory-title42-mt80 {
    font-size: 21px;
    margin: 0 0 25px;
  }
  
  .memory-title42-mt80 {
    margin-top: 40px;
  }
  
  /* PC 40px → 20px */
  .memory-title40,
  .memory-title40-mt80 {
    font-size: 20px;
    margin: 0 0 25px;
  }
  
  .memory-title40-mt80 {
    margin-top: 40px;
  }
  
  /* PC 60px → 30px */
  .memory-last-title {
    font-size: 30px;
    padding: 50px 0 0;
  }
  
  /* ========================================
     リストコンテナ
  ======================================== */
  .list-container {
    padding: 50px 15px;
  }
  
  .list-item {
    padding: 5px 0;
  }
  
  /* PC 40px → 20px */
  .icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  
  /* PC 26px → 14px */
  .text {
    font-size: 14px;
  }
  
  /* ========================================
     アコーディオン（PC 30px → 15px）
  ======================================== */
  .accordion__text {
    font-size: 15px;
  }
  
  .accordion__text p + p {
    margin-top: 25px;
  }
  
  .accordion__button {
    font-size: 15px;
    padding: 7px 20px;
    margin: 15px auto 0;
  }
  
  /* ========================================
     募集要項（PC 150px → 75px）
  ======================================== */
  .section-recruitment {
    margin: 75px 0 37px;
  }
  
  /* PC 20px → 10px */
  .hashtag-text {
    font-size: 10px;
    margin: 10px 0;
  }
  
  /* ========================================
     研修セクション（PC 75px → 37px）
  ======================================== */
  .section-training {
    margin: 37px 0;
    padding: 37px 0;
  }
  
  /* ========================================
     加盟金・ロイヤリティ（PC 90px → 45px）
  ======================================== */
  .section-fee {
    margin: 45px 0;
  }
  
  table {
    margin-bottom: 15px;
  }
  
  /* PC 20px → 10px */
  td {
    padding: 10px 0;
  }
  
  /* PC 32px → 16px */
  td:first-child {
    font-size: 16px;
    width: 40%;
    border-bottom: 1px solid #c84a31;
  }
  
  td:last-child {
    font-size: 16px;
    border-bottom: 1px solid #ccc;
  }
  
  /* PC 24px → 12px */
  .note {
    font-size: 12px;
    margin: 10px 0 25px;
  }
  
  /* ========================================
     CTAセクション（PC 75px → 37px）
  ======================================== */
  .section-cta {
    padding: 37px 0 0;
  }
  
  /* PC 80px → 40px、60px → 30px */
  .section-cta__box {
    padding: 30px 10px 0;
  }
  
  /* PC 42px → 21px */
  .section-cta__title {
    font-size: 21px;
    padding-bottom: 5px;
  }
  
  .section-cta__interview-title {
    font-size: 21px;
    margin-top: 37px;
    padding-bottom: 4px;
    border-bottom-width: 1.5px;
  }
  
  /* ========================================
     フッター
  ======================================== */
  .footer-inner li {
    font-size: 100%;
    padding: 4px 0;
  }
  
  .footer-inner a {
    margin: 25px;
    padding-left: 15px;
    background-size: 10px;
  }
  
  footer p.copy {
    font-size: 80%;
    padding: 10px 0;
  }
  
  /* ========================================
     余白調整（PC版の半分）
  ======================================== */
  .u-mb--20 { margin-bottom: 10px; }
  .u-mb--50 { margin-bottom: 25px; }
  .u-mb--80 { margin-bottom: 40px; }
  .u-mb--120 { margin-bottom: 60px; }
  
  /* PC 80px → 40px */
  .vertical-line {
    width: 1px;
    height: 40px;
    margin: 0 auto 25px;
  }
  
  /* PC 8px → 4px、3px → 1.5px */
  .emphasis-red-underline {
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
  }
}

/* 小型スマートフォン（375px以下） - さらに細かく調整 */
@media screen and (max-width: 375px) {
  
  /* 基本レイアウト */
  .side-padding-container {
    padding: 0 15px;
  }
  
  /* ========================================
     ヘッダー
  ======================================== */
  .header {
    height: 44px;
  }
  
  .header__inner {
    padding: 6px 15px;
  }
  
  .header__logo a {
    height: 36px;
  }
  
  .header__button .button {
    height: 22px;
  }
  
  /* ========================================
     フォントサイズ微調整（小さい画面用）
  ======================================== */
  .text-block p {
    font-size: 15px;
    line-height: 24px;
  }
  
  .hero-subtitle--36 {
    font-size: 17px;
    line-height: 25px;
  }
  
  .hero-title--30 {
    font-size: 14px;
  }
  
  .hero-title--47 {
    font-size: 21px;
  }
  
  .brand-name {
    font-size: 25px;
  }
  
  .heading-white--36 {
    font-size: 17px;
    line-height: 25px;
  }
  
  .heading-white--42,
  .heading-white--48 {
    font-size: 19px;
  }
  
  .heading-yellow--40,
  .heading-black--40 {
    font-size: 19px;
  }
  
  .memory-title42,
  .memory-title42-mt80 {
    font-size: 19px;
  }
  
  .memory-title40,
  .memory-title40-mt80 {
    font-size: 18px;
  }
  
  .memory-last-title {
    font-size: 27px;
  }
  
  .section-cta__title,
  .section-cta__interview-title {
    font-size: 19px;
  }
  
  .bold--34 {
    font-size: 16px;
  }
  
  .bold--40 {
    font-size: 19px;
  }
  
  /* ========================================
     画像オーバーレイ（はみ出し防止）
  ======================================== */
  .image-full-overlay {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .image-full-overlay img {
    min-height: 100px;
    object-fit: cover;
  }
  
  
  /* ========================================
     テーブル（小さい画面でも横並び維持）
  ======================================== */
  td:first-child {
    font-size: 15px;
    width: 42%;
  }
  
  td:last-child {
    font-size: 15px;
  }
  
  .note {
    font-size: 11px;
  }
  
  /* ========================================
     アコーディオン
  ======================================== */
  .accordion__text {
    font-size: 14px;
  }
  
  .accordion__button {
    font-size: 14px;
    padding: 6px 18px;
  }
  
  /* ========================================
     リスト
  ======================================== */
  .text {
    font-size: 12px;
  }
  
  .icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }
  
  /* ========================================
     余白微調整
  ======================================== */
  .section-cta__box {
    padding: 25px 8px 0;
  }
  
  .memory1__border .container,
  .memory2__border .container,
  .memory3__border .container,
  .memory4__border .container {
    padding: 1px 12px 12px 12px;
  }
}

.flow_design01 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_design01 ul {
  padding: 0;
}

.flow_design01 li {
  list-style-type: none;
}

.flow_design01 dd {
  margin-left: 0;
}

.flow01 > li {
  position: relative;
  list-style: none;
}

.flow01 > li:not(:last-child) {
  margin-bottom: 40px;
}

.flow01 > li dl {
  box-sizing: border-box;
  width: 100%;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 10px;
  position: relative;
}

.flow01 > li:not(:last-child) dl::before,
.flow01 > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow01 > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #ccc;
}

.flow01 > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}

.flow01 > li dl dd {
  font-size: 1em;
}

.flow01 > li dl dt {
  font-size: 1em;
  font-weight: 600;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}

.flow01 > li dl dt .icon01 {
  font-size: 0.6em;
  color: #fff;
  background: #c84a31;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

@media(max-width: 650px) {
  .flow01 > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .flow01 > li dl {
    display: block;
    padding: 10px 15px;
  }

  .flow01 > li dl dt {
    margin-right: 0;
  }

  .flow01 > li dl dt .icon01 {
    font-size: 0.6em;
  }
}