@charset "utf-8";
/* サイト全体で使うwebフォント設定 */
/* Webフォント 読み込み */
/* ゴシック系 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* 明朝系 */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/* 共通 --------------------------*/
/* ページ全体に関わるCSSの設定 ここから*/
html *, ::before, ::after {
  box-sizing: border-box;
}
/* ページ内リンクを時間をかけてながら表示する */
html {
  scroll-behavior: smooth;
}
/* フォント */
html {
  font-size: 14px;
}
/* フォント設定 */
body {
  font-family: 'Noto Sans JP', sans-serif; /* ゴシック 200 400 700 900 */
  font-weight: 400; /* 太さを指定 */
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}
/* おもな太字タグのフォントウェイトと余白設定 */
h1, h2, h3, h4, h5, h6, h7, h8, h9, th, strong {
  font-weight: 700;
  margin: 0;
  padding: 0;
}
/* 段落タグの余白設定 */
p {
  margin: 0;
  padding: 0;
}
/* ベースのリンクカラー */
a {
  color: #333;
}
/* レスポンシブイメージと画像下スペース防止 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom; /* 画像下のスペースを消す */
}
/* /ページ全体に関わるCSSの設定 ここまで*/
/* モバイルメニュー ここから ---------------------------- */
@media (max-width: 767px) { /* モバイル */
  .navbtn {
    display: block; /* ハンバーガーボタンを表示 */
    width: 60px;
    height: 60px;
    background-image: url(../images/nav-mobile-open.svg); /* アイコン画像 */
    background-repeat: no-repeat;
    background-size: 60px 60px;
    background-position: center center;
    position: fixed;
    top: 0px; /*left: 0px;ボタンの位置-左*/
    right: 0px; /*ボタンの位置-右*/
    z-index: 1;
  }
  .navbtn.close {
    background-image: url(../images/nav-mobile-close.svg);
  }
  .header-container {
    height: 60px;
  }
  .header-nav {
    display: none; /* 初期状態で非表示 */
    position: fixed;
    top: 60px;
    width: 100vw;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .header-nav.collapse {
    display: none; /* メニューを閉じた状態 */
  }
  .header-nav li a {
    display: block;
    padding: 20px 30px;
    border-top: 1px solid #d8d8d8;
    background: #efefef;
    color: #000;
    text-decoration: none;
  }
  .header-nav li a:hover {
    background: #b8e5ea;
  }
}
@media (min-width: 768px) { /* pc */
  .navbtn {
    display: none;
  }
  .header-nav {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
    font-size: 1.5em;
    font-color: #0f78fd; /* 青色 */
  }
  .header-nav li a {
    margin: 6px 10px 2px 10px;
    padding: 0px 0px 0px 0px;
    border-top: none;
    border-bottom: 4px solid transparent;
    background: none;
    text-decoration: none;
    font-size: 0.6em;
  }
  .image-container {
    position: relative;
    display: inline-block;
    text-align: center;
  }
  .image-container img {
    width: 100%; /* 画像を親要素の幅に合わせる */
    max-width: 600px; /* 画像の最大幅を設定 */
    height: auto; /* アスペクト比を維持 */
    display: block;
  }
  .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* ど真ん中に配置 */
    color: white; /* テキストの色 */
    font-size: 24px; /* 文字サイズ */
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
    padding: 10px 20px;
    border-radius: 5px;
  }
  .header-nav li a:hover {
    border-bottom: 4px solid #87CEEB; /* マウスオーバーした時の下線の色　青 */
    background: none;
  }
}
/* /モバイルメニュー ここまで ---------------------------- */
/* ヘッダーのロゴ画像を小さくする */
.logo img {
  max-width: 250px; /* 画像の最大幅を150pxに設定 */
  height: auto; /* 縦横比を保持 */
  margin-left: 10%; /* 🔥 画面幅の90%の位置に配置 */
}
/* ヘッダーのロゴ画像を小さくする。スマホ対応（さらに小さく） */
@media (max-width: 767px) { /* モバイル */
  .logo img {
    max-width: 200px; /* スマホでは120pxに調整 */
  }
}
/* ヘッダーのロゴ画像を小さくするここまで -------------------- */
/* ヘッダーのタイトルの指定--------------------------------- */
.title h1 {
  text-align: center; /* 中央寄せ */
  font-size: 2.0em; /* 文字サイズを大きく */
  font-weight: bold; /* 文字を太く */
  margin-top: 10px; /* 上の余白を追加（必要なら調整） */
}
@media (max-width: 767px) { /* モバイル */
  .title h1 {
    text-align: center; /* 中央寄せ */
    font-size: 1.5em; /* 文字サイズを大きく */
    font-weight: bold; /* 文字を太く */
    margin-top: 10px; /* 上の余白を追加（必要なら調整） */
  }
}
/* ヘッダーのタイトルの指定ここまで-------------------------- */
/* キャッチフレーズの指定---------------------------------- */
.box {
  background-color: #FFB366; /* 背景色をオレンジ (#fd780f) に設定 */
  color: white; /* 文字色を白に設定 */
  text-align: center; /* 文字を中央寄せ */
  padding: 15px; /* 内側の余白を追加して見やすく */
  font-size: 1.2em; /* 文字サイズを少し大きく */
  font-weight: bold; /* 文字を太く */
  border-radius: 5px; /* 角を少し丸くする（必要なら調整） */
  margin: 20px auto; /* 上下に余白をつけ、中央配置 */
  width: 80%; /* 横幅を調整してバランスを取る（必要なら変更） */
}
/* キャッチフレーズの指定ここまで---------------------------- */
/* section1コンセプトの指定---------------------------------------- */
.section1 h2 {
  background-color: #FFB366; /* 背景色をオレンジ (#fd780f) に設定 */
  color: white; /* 文字色を白に */
  text-align: center; /* テキストを中央寄せ */
  padding: 5px; /* 内側の余白を追加 */
  font-size: 1.8em; /* 文字サイズを少し大きく */
  font-weight: bold; /* 文字を太く */
  border-radius: 3px; /* 角を丸くする（必要なら調整） */
  width: 80%; /* 横幅を調整してバランスを取る（必要なら変更） */
  margin: 20px auto; /* 上下に余白をつけ、中央配置 */
}
/* スライダー全体のスタイル */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 500px; /* 必要に応じて調整 */
  margin: 0 auto;
  overflow: hidden; /* スライドの枠を超えないように */
}
/* スライドを横並びに配置 */
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%; /* スライド3枚分 */
}
/* 各スライドの設定 */
.slide {
  min-width: 100%;
  position: relative;
  text-align: center;
}
.slide img {
  width: 90%;
  height: auto;
  object-fit: cover; /* 画像の比率を保ちつつ拡大・縮小 */
}
/* テキストオーバーレイ */
.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.8em;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 5px;
  width: 80%;
  text-align: center;
}
/* ナビゲーションボタン */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 24px;
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.section1 h2, .section3 h2, .section4 h2, .section5 h2, .section6 h2, .section7 h2, .section8 h2 {
  background-color: #FFB366;
  color: white;
  text-align: center;
  padding: 5px;
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 5px;
  width: 80%;
  margin: 20px auto;
}
/* section1 コンセプトの全体をボックスで囲む---------------------------- */
.section1 .float-box {
  background-color: white; /* 背景色を白 */
  border: 1px solid #FFB366; /* オレンジ色 (#fd780f) の枠線 */
  padding: 10px; /* 内側の余白 */
  border-radius: 5px; /* 角を少し丸くする */
  width: 90%; /* 初期状態では90% (スマホ対応) */
  max-width: 90%; /* PC時も90%を維持 */
  margin: 10px auto; /* 上下に余白をつけ、中央配置 */
  flex: 1;
  position: relative; /* 画像の配置用 */
  overflow: hidden; /* はみ出し防止 */
  margin-bottom: 5px; /* ボックス間の余白 */
}
.section1 .float-box .coment p {
  font-weight: bold;
  font-size: 1.5em; /* 文字サイズを大きく */
}
/* 59行目以降の <p> や <ol> 内のテキストを左寄せにする */
.section1 .float-box p:not(:first-of-type), .section1 .float-box ol {
  text-align: left; /* 左寄せ */
}
/* section1 のみ適用 */
.section1 > .float-box > p {
  text-indent: -0.5em; /* ドットを左に寄せる */
  padding-left: 0.5em; /* 文章を適切な位置に配置 */
  margin: 0;
}
/* <mark>タグの装飾（下半分を青のグラデーションに） */
.section1 .float-box mark {
  background: linear-gradient(transparent 80%, #87CEEB 20%);
}
/* オレンジ色のボックスのスタイル */
.section1 .container {
  display: flex;
  flex-direction: column; /* モバイルでは縦一列 */
  gap: 5px;
  padding: 10px;
  flex-wrap: wrap; /* スマホ時は縦並び、PCでは横並び */
  justify-content: center; /* PC時の中央配置 */
}
/* section1 コンセプトのfloat-box のスタイル-------------------------- */
/* 🔥 2文字空ける（全角スペース相当） */
.indent-1 {
  text-indent: 1em;
}
/* 画像のサイズと配置 */
.section1 .float-box img {
  max-width: 50px !important; /* 画像を小さく */
  height: auto;
  float: right; /* 右上に配置 */
  margin: 0 0 10px 10px; /* 余白を調整 */
}
.text-link {
  text-decoration: none; /* 下線を削除 */
  color: inherit; /* テキストの色をそのまま */
}
.link-icon:hover {
  opacity: 0.7; /* ホバー時に透明度を調整 */
}
/* PC表示（横3列） */
@media (min-width: 768px) {
  .section1 .container {
    flex-direction: row; /* PCでは横並び */
    width: 70%; /* コンテナ自体も90%に */
    margin: 0 auto; /* 中央揃え */
  }
  .section1 .float-box {
    width: 30%;
  }
}
/* section1 ここまで------------------------------------------------ */
/* section2他の就活サイトとの違い　タイトル------------------------------------- */
/* section2 のみ適用 */
.section2 > .coment > .coment-text p {
  text-align: center; /* 中央寄せ */
  font-size: 1.8em; /* 文字サイズを大きく */
  font-weight: bold; /* 文字を太く */
  margin-top: 0px; /* 上の余白を追加（必要なら調整） */
}
/* 他の就活サイトとの違い　タイトルここまで------------------------------- */
/* section3ご利用案内------------------------------------------------- */
/* section3 ご利用案内の全体をボックスで囲む---------------------------- */
.section3 {

  padding: 0px 0;
}
.container-group { /* `.container` をグリッドにする */
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ★これが中央寄せの決定打 */
  gap: 10px;
  margin: 0 auto;

}
/* オレンジ色のボックスのスタイル */
/* Gridレイアウトを適用 */
.section3 .container {
  width: 100%; /* 幅を90%に */
  box-sizing: border-box;
  padding: 5px;
  background-color: #fdfdfd;
}
/* 画像のスタイル */
.menu-title {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 10px;
  border: none;
}
.pricing-title {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0px;
  border: none;
}
/* 他の列を均等にする */
.section3 th:not(:first-child), td:not(:first-child) {
  width: 50%; /* 残りの列を均等に */
}
.menu-text {
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  margin: 0 auto 5px auto; /* ← ★ 中央寄せ */
  padding: 20px 0px 20px 20px;
  width: 90%; /* グリッド幅に合わせる */
  border: 1px solid black;
  border-radius: 3px;
  background-color: #fff;
}
.menu-text mark {
  background: linear-gradient(transparent 80%, #87CEEB 20%);
}
.center-text {
  text-align: center;
  font-weight: bold;
  margin: 0 auto 5px auto; /* ← ★ 中央寄せ */
  padding: 0px 5px 0px 5px;
  width: 90%; /* グリッド幅に合わせる */
  border: 1px solid black;
  border-radius: 3px;
  background-color: #fff;
}
.notice-text {
  width: 90%; /* 幅を調整（中央付近に持ってくる） */
  margin: 5px auto; /* 上下の余白 + 中央寄せ */
  text-align: left; /* 文字を左揃え */
  padding: 0px; /* 最初の文字の位置を揃える */
  font-weight: bold; /* 文字を太字に */
}
.indent {
  margin-left: 20px;
}
/* PC（768px以上）の場合、3列レイアウトにする */
@media (min-width: 768px) {
  .section3 .container-group { /* `.container` をグリッドにする */
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列レイアウト */
    gap: 10px; /* カード同士の余白 */
    justify-content: center;
    align-items: start;
  }
  .section3 .container img {
    max-width: 200px; /* 画像サイズ固定 */
    height: auto;
    margin-bottom: 0px;
    margin: 30px auto; /* 🔥 左右中央揃え */
    padding: 0 20 0 20px;
  }
  .container-group { /* `.container` をグリッドにする */
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* ★これが中央寄せの決定打 */
    gap: 10px;
    margin: 0 auto;
    max-width: 70%; /* 中央寄せしやすい最大幅を指定 */
  }
}
/* section3 ここまで------------------------------------------------ */
/* section4実績セクションの調整------------------------------------------ */
/* 画像を中央配置 */
.jisseki-container {
  display: flex;
  justify-content: center; /* 水平方向の中央配置 */
  align-items: center; /* 垂直方向の中央配置（必要なら） */
  width: 100%;
  margin: 20px auto;
}
/* 画像の最大幅を調整 */
.jisseki-container img {
  max-width: 80%; /* 画像の最大幅を80%に */
  height: auto;
  display: block;
  margin: 0 auto; /* 🔥 左右中央揃え */
}
/* section4実績セクションの調整ここまで--------------------------------------- */
/* section4利用者の声------------------------------------------------------ */
/* セクション全体を調整 */
.section4 h2 {
  background-color: #FFB366; /* 背景色をオレンジ (#fd780f) に設定 */
  color: white; /* 文字色を白に */
  text-align: center; /* テキストを中央寄せ */
  padding: 5px; /* 内側の余白を追加 */
  font-size: 1.8em; /* 文字サイズを少し大きく */
  font-weight: bold; /* 文字を太く */
  border-radius: 5px; /* 角を丸くする（必要なら調整） */
  width: 80%; /* 横幅を調整してバランスを取る（必要なら変更） */
  margin: 20px auto; /* 上下に余白をつけ、中央配置 */
}
/* セクション全体を調整 */
.section4 .float-box-container {
  width: 90%;
  margin: 20px auto;
}
/* 利用者の声のコンテンツ（スマホ時は1列） */
.section4 .float-box {
  display: flow-root;
  margin: 30px 0;
  border: 1px solid #FFB366; /* オレンジ色 (#fd780f) の枠線 */
  padding: 5px; /* 内側の余白 */
  border-radius: 5px; /* 角を少し丸くする */
  width: 80%; /* 横幅を調整 */
  margin: 10px auto; /* 上下に余白をつけ、中央配置 */
  flex-direction: column; /* スマホ時は縦配置 */
  text-align: left;
}
.section4 .float-box .float-right {
  float: right;
  margin: 10px 0 3px 5px;
  height: auto;
  width: 100px; /* 画像サイズを固定 */
  margin-right: 10px; /* 右の余白 */
}
.section4 .float-box p {
  padding: 15px;
  border-radius: 8px;
}
/* <mark>タグの装飾（下半分を青のグラデーションに） */
.section4 mark {
  background: linear-gradient(transparent 80%, #87CEEB 20%); /* 下線風グラデーション */
  text-decoration: none; /* 通常の下線は削除 */
  font-weight: bold; /* 強調 */
  padding: 2px 4px; /* 余白を追加 */
  border-radius: 3px; /* 角を少し丸める */
}
/* PC（768px以上）の場合、3列レイアウトにする */
@media (min-width: 768px) {
  .section4 {
    margin: 0 auto;
  }
  /* 3列レイアウトを適用 */
  .section4 .float-box-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列 */
    gap: 5px; /* カード同士の余白 */
    justify-content: center;
    align-items: stretch; /* ✅ ボックスの高さを揃える */
  }
  /* 各float-boxの調整 */
  .section4 .float-box {
    width: 100%; /* グリッド幅に合わせる */
    flex-direction: row; /* PC時は横並び */
    align-items: flex-start;
    text-align: left;
  }
  /* PC時の画像配置調整 */
  .section4 .float-box .float-right {
    width: 100px; /* 画像サイズを固定 */
    margin-right: 10px; /* 右の余白 */
  }
}
/* section4利用者の声ここまで------------------------------------ */
/* section5申し込みここから-------------------------------------- */
/* フォーム全体のスタイル */
/* セクション全体のデザイン */
.section5 {
  width: 100%; /* ✅ スマホでは画面幅の95%を使用 */
  max-width: none; /* ✅ スマホでは最大幅の制限を解除 */
  margin: 0 auto;
  padding: 15px; /* ✅ スマホ向けに少し余白を調整 */
}
/* 申し込みフォームのコンテナ */
.mousikomi-container {
  width: 90%; /* 画面幅の90% */
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}
/* フォーム内のラベル */
.mousikomi-container label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
/* 入力フィールド（テキスト・メール・テキストエリア） */
.mousikomi-container input[type="text"], .mousikomi-container input[type="email"], .mousikomi-container textarea {
  width: 95%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
/* 送信ボタン */
.mousikomi-container input[type="submit"] {
  background-color: #808080;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
  display: block;
  width: 100%;
  font-size: 16px;
  margin-top: 15px;
}
/* 送信ボタンのホバーエフェクト */
.mousikomi-container input[type="submit"]:hover {
  background-color: #D9D9D9;
}
/* 🔹ラジオボタンのデザイン追加🔹 */
/* フォーム内のラジオボタンエリア */
fieldset {
  border: 1px solid #ccc; /* お名前と同じ枠線 */
  border-radius: 5px; /* 角を丸く */
  background-color: white; /* 背景を白に統一 */
  padding: 5px 15px; /* 内側の余白を調整 */
  margin-top: 5px;
  text-align: left; /* テキストを左揃え（お名前と統一） */
}
/* 見出し（質問部分） */
legend {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px; /* お名前のラベルと同じくらいのサイズに */
  padding: 0 5px;
  color: #333;
}
/* 🔹ラジオボタンを横並び＋中央寄せ */
.radio-container {
  display: flex;
  justify-content: center; /* 🔥中央寄せ🔥 */
  align-items: center;
  gap: 30px; /* ボタン同士の間隔を調整 */
}
/* ラジオボタンのラベル */
.radio-label {
  display: flex;
  align-items: center;
  gap: 5px; /* ラジオボタンとテキストの間隔を調整 */
  margin-bottom: 5px;
  cursor: pointer;
}
/* ラジオボタン自体のデザイン */
input[type="radio"] {
  accent-color: #808080; /* 選択時の色を統一 */
  transform: scale(1.2); /* 少し大きくしてタップしやすく */
}
.table-container5 {
  width: 90%; /* 画面幅の90% */
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.menu-title5 {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 0px;
  border: none;
}
.section5 table {
  width: 100%; /* 表全体を親要素いっぱいに広げる（任意） */
  table-layout: fixed; /* 各列の幅を均等にする */
  border-collapse: collapse; /* 枠線が重ならないように */
}
.section5 th, td {
  border: 1px solid #ccc; /* 表に枠線をつける */
  padding: 8px;
  text-align: center;
}
/* ヘッダーのスタイル（通常） */
.section5 th {
  background-color: #BFBFBF; /* ヘッダーをオレンジ色に */
  color: #000;
  font-weight: bold;
  font-size: 13px; /* ヘッダーの文字を少し大きく */
}
.notice-text5 {
  width: 90%; /* 幅を調整（中央付近に持ってくる） */
  margin: 5px auto; /* 上下の余白 + 中央寄せ */
  text-align: center; /* 文字を左揃え */
  padding: 0px; /* 最初の文字の位置を揃える */
  font-weight: bold; /* 文字を太字に */
}
/* PC用のメディアクエリ */
@media (min-width: 768px) {
  .mousikomi-container {
    max-width: 60%; /* PC では画面の 60% の幅を確保 */
    padding: 30px; /* 余白を少し増やす */
  }
}
/* section5申し込みここまで---------------------------------------------- */
/* section6ＦＡＱ------------------------------------------------------ */
/* チャット全体のスタイル */
.chat {
  margin: 0px 150px 20px 150px;
}
.chat-1st, .chat-2nd {
  display: flex;
  margin: 10px 40px 0 40px;
  align-items: flex-end;
}
.chat-2nd {
  display: flex;
  flex-direction: row-reverse;
}
/* アイコンのサイズと配置 */
.chat-1st .face {
  flex: 0 0 70px;
  margin: 0 10px 0 0;
}
.chat-2nd .face {
  flex: 0 0 70px;
  margin: 0 0 0 10px;
}
/* 吹き出しデザイン */
.talk {
  flex: 1 1 auto;
  padding: 1.5rem;
  border-radius: 10px;
  max-width: 60%; /* 吹き出しの最大幅を制限 */
  word-wrap: break-word; /* 長い単語でも折り返し */
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); /* 軽い影をつけて立体感を出す */
}
.chat-1st .talk {
  background: #ffecdd; /* 背景を白に */
  color: #333; /* テキスト色 */
}
/* 質問者のテキストに下線を追加 */
.chat-1st .talk p {
  display: inline-block;
  border-bottom: 2px solid #FFC285; /* 白色の下線 */
  padding-bottom: 2px;
  font-weight: bold;
}
.chat-2nd .talk {
  background: #BFD7ED;
}
/* 回答者のテキストを太字に */
.chat-2nd .talk p {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  /* アイコンを小さくする */
  .chat {
    margin: 0px 0px 20px 0px;
  }
  .chat-1st .face, .chat-2nd .face {
    flex: 0 0 35px; /* 画像サイズを縮小 */
  }
  .chat-1st .face img, .chat-2nd .face img {
    width: 100%; /* 画像を親要素の幅に合わせる */
  }
  /* 吹き出しの幅を広げる */
  .talk {
    max-width: 95%; /* モバイルでは吹き出しをより広くする */
  }
}
/* section6ＦＡＱ---------------------------------------------------- */
/* section7自己紹介---------------------------------------------------- */
.section7 .float-box {
  display: flow-root;
  margin: : 30px 0;
  width: 90%; /* 画面の90%の幅にする */
  max-width: 800px; /* 最大幅を設定し、PCでも見やすく */
  margin: 20px auto; /* 上下の余白を確保し、中央揃え */
  background-color: #f9f9f9; /* 背景を薄いグレーに */
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* 軽い影をつけて立体感を出す */
}
.section7 .float-right {
  float: right;
  margin: 0 0 1rem 1rem;
  width: 20%;
}
.section7 .float-box p {
  margin: : 0;
  color: #333;
  font-size: 1em;
  line-height: 1.5; /* 行間を広げて読みやすく */
  margin-bottom: 15px;
}
/* section7 内の「■自己紹介■」だけに適用 */
.section7 p:first-of-type {
  font-weight: bold;
  font-size: 1.2em;
  color: #0f78fd; /* 見出しを青色に */
  border-bottom: 2px solid #0f78fd;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.section7 .float-box ul {
  list-style-type: disc; /* 箇条書きを黒丸に */
  margin-left: 20px;
  padding-left: 15px;
}
.section7 .float-box ul li {
  color: #333;
  font-size: 1em;
  margin-bottom: 5px;
}
.section7 .float-box strong {
  color: #d9534f; /* 重要なポイントを赤系の色に */
  font-weight: bold;
}
/* section7自己紹介---------------------------------------------------- */
/* section8就活お役立ち情報---------------------------------------------- */
/* 初期状態（濃いオレンジ） */
.section8 h2 {
  background-color: #FFB366; /* 背景色をオレンジ (#fd780f) に設定 */
  color: white; /* 文字色を白に */
  text-align: center; /* テキストを中央寄せ */
  padding: 5px; /* 内側の余白を追加 */
  font-size: 1.8em; /* 文字サイズを少し大きく */
  font-weight: bold; /* 文字を太く */
  border-radius: 5px; /* 角を丸くする（必要なら調整） */
  width: 80%; /* 横幅を調整してバランスを取る（必要なら変更） */
  margin: 20px auto; /* 上下に余白をつけ、中央配置 */
}
/* ホバー時（色を維持） */
.section8 h2:hover {
  background-color: #e66300; /* ホバー時も同じ色 */
  transform: translateY(-3px);
  box-shadow: 5px 8px 12px rgba(0, 0, 0, 0.3);
}
/* リンクアイコンのスタイル */
.link-icon {
  height: 1em; /* 文字の高さに合わせる */
  width: auto;
  vertical-align: middle;
  margin-left: 10px; /* 左側に10pxの余白を追加 */
}
/* すべての a タグの下線を削除 */
a {
  text-decoration: none !important; /* 強制的に下線を消す */
  color: inherit; /* リンクの色を親要素に合わせる（オプション） */
}
/* ホバー時も下線を削除 */
a:hover {
  text-decoration: none !important;
}
/* section8就活お役立ち情報ここまで--------------------------- */
/* section9---コラム-------------------------------------- */
.section9 h2 {
  background-color: #FFB366; /* 背景色をオレンジ (#fd780f) に設定 */
  color: white; /* 文字色を白に */
  text-align: center; /* テキストを中央寄せ */
  padding: 5px; /* 内側の余白を追加 */
  font-size: 1.8em; /* 文字サイズを少し大きく */
  font-weight: bold; /* 文字を太く */
  border-radius: 5px; /* 角を丸くする（必要なら調整） */
  width: 80%; /* 横幅を調整してバランスを取る（必要なら変更） */
  margin: 20px auto; /* 上下に余白をつけ、中央配置 */
}
.main-header {
  background-color: #FFB366; /* 背景色（オレンジ系） */
  color: white; /* テキスト色 */
  text-align: center; /* テキストを中央揃え */
  padding: 10px; /* 上下の余白を少し増やす */
  font-size: 0.7em; /* フォントサイズ */
  font-weight: bold; /* 太字 */
  border-radius: 10px; /* 角丸を少し大きく */
  width: 80%; /* ヘッダーの幅を80%に */
  margin: 20px auto; /* 上下余白20px、中央配置 */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* 影をつけて立体感 */
}
/* <mark>タグの装飾（下半分を青のグラデーションに） */
.mark-link {
  background: linear-gradient(transparent 80%, #87CEEB 20%); /* 下線風グラデーション */
  text-decoration: none; /* 通常の下線は削除 */
  font-weight: bold; /* 強調 */
  padding: 2px 4px; /* 余白を追加 */
  border-radius: 3px; /* 角を少し丸める */
}
.section9 h3 {
  width: 90%; /* 幅を調整（中央付近に持ってくる） */
  margin: 5px auto; /* 上下の余白 + 中央寄せ */
  text-align: left; /* 文字を左揃え */
  padding: 0px; /* 最初の文字の位置を揃える */
  font-weight: bold; /* 文字を太字に */
  text-decoration: underline;
  text-decoration-color: #FFC285; /* 白色の下線 */
  text-decoration-thickness: 2px; /* 下線の太さを3pxにする */
}
.section9 .article {
  width: 88%; /* 幅を調整（中央付近に持ってくる） */
  margin: 5px auto; /* 上下の余白 + 中央寄せ */
  border: 1px solid #ccc; /* 枠線（薄いグレー） */
  padding: 8px; /* 枠の内側の余白 */
  border-radius: 4px; /* 角を少し丸く（角ばらせたい場合は削除） */
  background-color: #f9f9f9; /* 背景をうっすら色付け（任意） */
}
.section9 .notice-text {
  width: 85%; /* 幅を調整（中央付近に持ってくる） */
  margin: 10px auto; /* 上下の余白 + 中央寄せ */
  text-align: left; /* 文字を左揃え */
  padding: 0px; /* 最初の文字の位置を揃える */
}
/* 共通のテーブルデザイン */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
/* 比較テーブル（落ちる人 vs 受かる人）専用のデザイン */
.comparison-table th {
  text-align: center;
  background-color: #f2f2f2;
}
.comparison-table td {
  text-align: left;
  vertical-align: top; /* 上揃え */
  padding: 10px; /* セル内の余白 */
}
/* 他のテーブル専用デザイン（例: FAQテーブル） */
.faq-table th {
  background-color: #e3f2fd;
  text-align: left;
}
.faq-table td {
  text-align: left;
}
/* PC表示（横3列） */
@media (min-width: 768px) {
  .section9 .article {
    width: 70%;
  }
}
/* section9ここまで----------------------------------- */
/* フッター----------------------------------------- */
.bottom-container {
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
  flex-direction: column; /* 縦方向に配置 */
  text-align: center; /* テキストを中央揃え */
}
.footer-logo img {
  max-width: 100%; /* 画像が親要素をはみ出さないように */
  height: auto;
}
.copyright {
  margin-top: 10px; /* 画像とテキストの間隔を調整 */
}
.social-links {
  margin-top: 10px;
}
.social-icon {
  margin: 0 10px;
  font-size: 24px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.social-icon:hover {
  color: #ffcc00; /* ホバー時に色を変える */
}
/* フッター----------------------------------------- */
/* トップに戻るボタン（半透明）------------------------------------------ */
.back-to-home {
  position: fixed; /* 画面の固定位置 */
  bottom: 20px; /* 下からの距離 */
  right: 20px; /* 右からの距離 */
  background-color: #BFBFBF; /* オレンジ (半透明 70%) */
  color: white; /* 文字色 */
  padding: 10px 15px; /* 内側の余白 */
  border-radius: 5px; /* 角を丸く */
  text-align: center;
  text-decoration: none; /* 下線を消す */
  font-size: 14px; /* 文字サイズ */
  font-weight: bold;
  transition: background 0.3s, opacity 0.3s; /* スムーズな変化 */
  opacity: 0.7; /* 初期状態で半透明 */
}
/* ホバー時の効果（完全不透明） */
.back-to-home:hover {
  background-color: #BFBFBF; /* 完全なオレンジ */
  opacity: 1; /* 完全に表示 */
}
/* スマホ対応 */
@media (max-width: 767px) { /* モバイル */
  .back-to-home {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
    font-size: 12px;
  }
}
/* トップに戻るボタン（半透明）ここまで---------------------------------- */
/* トップに戻るボタン（半透明）------------------------------------------ */
.back-to-top {
  position: fixed; /* 画面の固定位置 */
  bottom: 20px; /* 下からの距離 */
  right: 20px; /* 右からの距離 */
  background-color: #BFBFBF; /* オレンジ (半透明 70%) */
  color: white; /* 文字色 */
  padding: 10px 15px; /* 内側の余白 */
  border-radius: 5px; /* 角を丸く */
  text-align: center;
  text-decoration: none; /* 下線を消す */
  font-size: 14px; /* 文字サイズ */
  font-weight: bold;
  transition: background 0.3s, opacity 0.3s; /* スムーズな変化 */
  opacity: 0.7; /* 初期状態で半透明 */
}
/* ホバー時の効果（完全不透明） */
.back-to-top :hover {
  background-color: #BFBFBF; /* 完全なオレンジ */
  opacity: 1; /* 完全に表示 */
}
/* スマホ対応 */
@media (max-width: 767px) { /* モバイル */
  .back-to-top {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
    font-size: 12px;
  }
}
/* トップに戻るボタン（半透明）ここまで---------------------------------- */
/* 申し込みボタン---------------------------------- */
/* 申し込みボタンを画面の最前面に表示（スクロールしても常に表示） */
.apply-button {
  display: inline-block;
  background-color: rgba(15, 120, 253, 0.9); /* 青色 (#0f78fd) */
  color: white; /* 文字色 */
  padding: 10px 30px; /* 横幅を広げてタップしやすく */
  border-radius: 20px; /* 角を丸く */
  text-decoration: none; /* 下線を消す */
  font-size: 16px; /* 文字サイズ */
  font-weight: bold; /* 文字を太字に */
  position: fixed; /* 🔥 画面に固定（スクロールしても動かない） */
  bottom: 10px; /* 🔥 画面上部からの距離を10pxに */
  left: 30%; /* 🔥 画面の中央に配置 */
  transform: translateX(-50%); /* 🔥 中央揃え */
  text-align: center;
  white-space: nowrap; /* 文字を折り返さない */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* 軽い影を追加 */
  z-index: 9999; /* 🔥 すべての要素の最前面に表示 */
  width: auto; /* 自然な幅 */
  text-align: center; /* 文字を中央揃え */
}
/* マウスホバー時の効果 */
.apply-button:hover {
  background-color: #87CEEB; /* ホバー時の背景色を少し濃く */
}
/* 申し込みボタン---------------------------------- */
/* 申し込みボタンの後に出るメッセージ------------------------- */
.success-message {
  font-size: 28px; /* 文字サイズを大きく */
  color: green; /* 文字色を緑に */
  font-weight: bold; /* 太字にする */
  text-align: center; /* 中央寄せ */
  margin-top: 20px; /* 上の余白を追加 */
  padding: 15px; /* 内側の余白を追加 */
  background-color: #f0fff0; /* 薄い緑の背景色 */
  border: 2px solid green; /* 緑の枠をつける */
  border-radius: 10px; /* 角を丸くする */
  display: inline-block; /* ボックスの幅を文字のサイズに合わせる */
}

/* 申し込みボタンの後に出るメッセージ------------------------- */