/* -----------------------------
目次
----------------------------- */
/*
1. about-page
   1.1 .about-sec (共通セクション)
   1.2 #about-top (トップセクション)
   1.3 #company-Philosophy (企業理念セクション)
   1.4 #business (事業内容セクション)
   1.5 #comanyinfo (会社情報セクション)
   1.6 #about .markie (マーキーアニメーション)
2. data-of-idea-page
   2.1 .qa-sec, .data-sec (共通セクション)
   2.2 #qa (QAセクション)
   2.3 #data (データセクション)
   2.4 .chart-grid, .chart-card, .chart-* (チャート関連)
   2.5 .custom-legend-* (カスタム凡例関連)
   2.6 .data-grid, .data-card (データグリッド関連)
   2.7 .data-card.sales (売上カード専用)
   2.8 .title-box, .graph-* (グラフ関連)
3. メディアクエリ (画面幅によるスタイル調整)
   3.1 max-width: 767px (スマートフォンなど)
   3.2 min-width: 768px (タブレット以上)
*/

/* -----------------------------
about-page
----------------------------- */

.about-sec {
  position: relative; /* 配置の基準点 */
}

/* 各#about-secのpadding (上部と下部) */
.entry-form-section .inner,
.entry-header .inner,
.people-sec#people-interview,
.people-sec#people-top,
.day_life-sec#correlation,
.day_life_sec#movies,
.day_life-sec#day_life-top,
.enb-sec#event,
.enb-sec#benefits,
.enb-sec#assessment,
.enb-sec#enbironment,
.about-sec#about-top,
.about-sec#company-Philosophy,
.about-sec#business,
.about-sec#comanyinfo {
  padding-top: clamp(0px, 5.1388888889vw, 103.6px); /* 上部padding: 0pxから画面幅に応じて5.13vw、最大103.6px */
  padding-bottom: clamp(0px, 5.1388888889vw, 103.6px); /* 下部padding: 0pxから画面幅に応じて5.13vw、最大103.6px */
}

/* #about-topセクションの背景 (グラデーション) */

.people-sec#people-top,
.about-sec#about-top {
  background:linear-gradient(90deg, #ffe896, #fbc400);/* 右方向への線形グラデーション */
  margin-top:19%;
}
/* .about-sec直下の.inner要素 (コンテンツの最大幅と中央配置) */
.entry-form-section .inner,
.entry-header .inner,
.works-sec>.inner,
.people-sec>.inner,
.about-sec>.inner {
  width: var(--max-width); /* CSS変数で定義された最大幅 */
  margin: 0 auto; /* 左右中央揃え */
}

/* セクションタイトルのコンテナ (フレックスレイアウト) */
.about-section-tittle {
  display: flex;
  align-items: center; /* 垂直方向中央揃え */
  flex-direction: column; /* 子要素を縦に並べる */
  justify-content: center; /* 水平方向中央揃え */
  align-items: flex-start; /* 垂直方向左揃え */
  color: #262727; /* テキストの色を白に */
}

/* 日本語のタイトル (.ja) */
.about-section-tittle .ja {
  font-size: 20px; /* フォントサイズ */
  line-height: 1.2; /* 行の高さ */
  display: -webkit-flex; /* Safari, Chrome */
  display: -moz-flex; /* Firefox */
  display: -ms-flex; /* IE */
  display: -o-flex; /* Opera */
  display: flex; /* フレックスボックス */
  -webkit-flex-wrap: wrap; /* Safari, Chrome */
  -moz-flex-wrap: wrap; /* Firefox */
  -ms-flex-wrap: wrap; /* IE */
  -o-flex-wrap: wrap; /* Opera */
  flex-wrap: wrap; /* 折り返し */
  justify-content: space-between; /* 要素間に均等なスペース */
  align-items: center; /* 垂直方向中央揃え */
  gap: calc(5 * var(--rpxClamp)); /* 要素間のギャップ (CSS変数を使用) */
}

/* 英語のタイトル (.en) */
.about-section-tittle .en {
  font-size: 42px; /* フォントサイズ */
  line-height: 1.458; /* 行の高さ */
  font-weight: bold; /* 太字 */
}

/* #company-Philosophyセクションの背景 (単色) */
.about-sec#company-Philosophy {
  background: #fbc400; /* 水色の背景 */
}

/* #company-Philosophyセクションの見出し (h2) の色 */
.about-sec#company-Philosophy h2 {
  color: #333; /* 濃いグレーのテキスト */
}


/* アクションリスト (.action-list) のレイアウト (縦方向フレックス) */
.action-list {
  display: flex;
  flex-direction: column; /* 子要素を縦に並べる */
  gap: 2em; /* 要素間のギャップ */
  margin-top: 30px; /* 上部のマージン */
}

/* アクションアイテム (.action-item) のpadding */
.action-item {
  padding: 0; /* paddingなし */
}

/* アクションヘッダー (.action-header) のレイアウト (フレックス、ベースライン揃え) */
.action-header {
  display: flex;
  align-items: baseline; /* ベースラインで揃える */
  gap: 1em; /* 要素間のギャップ */
  margin-bottom: 15px; /* 下部のマージン */
}

/* アクション番号 (.action-num) のスタイル */
.action-num {
  font-weight: bold; /* 太字 */
  font-size: clamp(0px, 4.1666666667vw, 39.2px); /* フォントサイズ: 0pxから画面幅に応じて、最大39.2px */
  color: #000; /* 黒色のテキスト */
}

/* アクションタイトル (.action-title) のスタイル */
.action-title {
  font-size: clamp(0px, 4.5666666667vw, 39.2px); /* フォントサイズ: 0pxから画面幅に応じて、最大39.2px */
  font-weight: bold; /* 太字 */
  margin: 0; /* マージンなし */
}

/* アクションテキスト (.action-text) のスタイル */
.action-text {
  font-size: 0.95rem; /* フォントサイズ */
  line-height: 1.6; /* 行の高さ */
  margin-top: 0.3em; /* 上部のマージン */
}


/* #comanyinfoセクションの背景 (薄いグレー) */
.about-sec#comanyinfo {
  background: #f8f9fa; /* 薄いグレーの背景 */
}

/* 会社情報リスト (.company-list) のスタイル */
.company-list {
  list-style: none; /* リストのマーカーを非表示 */
  padding: 0; /* paddingなし */
  margin: 0; /* マージンなし */
  border-top: 1px solid #ddd; /* 上部のボーダー */
}

/* 会社情報アイテム (.company-item) のスタイル */
.company-item {
  padding: 20px 0; /* 上下padding */
  border-bottom: 1px solid #ddd; /* 下部のボーダー */
}

/* ラベル (.label) のスタイル */
.company-item .label {
  font-weight: bold; /* 太字 */
  font-size: clamp(14px, 3.5vw, 18px); /* フォントサイズ: 14pxから画面幅に応じて、最大18px */
  margin: 0 0 4px 0; /* 下部のマージン */
}

/* 値 (.value) のスタイル */
.company-item .value {
  font-size: clamp(13px, 3.2vw, 16px); /* フォントサイズ: 13pxから画面幅に応じて、最大16px */
  margin: 0; /* マージンなし */
  color: #333; /* 濃いグレーのテキスト */
}

/* #businessセクションの背景 (繰り返し線形グラデーション) */
#business {
background-image: repeating-linear-gradient( 45deg, rgba(0, 0, 0, 0.05) 0px, rgba(0, 0, 0, 0.05) 8px, transparent 8px, transparent 16px ), linear-gradient(135deg, #FFE896 0%, #FBC400 100%);
}

/* 事業内容のリードテキスト (.business-lead) のスタイル */
.business-lead {
  font-size: clamp(13px, 3.5vw, 18px); /* フォントサイズ: 13pxから画面幅に応じて、最大18px */
  line-height: 1.8; /* 行の高さ */
  text-align: left; /* 左揃え */
  margin-bottom: 2em; /* 下部のマージン */
}


/* サービスグリッド (.service-grid) のレイアウト (自動配置グリッド) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* 最小幅320pxで自動配置 */
  gap: clamp(16px, 2vw, 32px); /* グリッド間のギャップ */
  margin-top: clamp(32px, 5vw, 64px); /* 上部のマージン */
}

/* PCサイズだけ対応 */
@media (min-width: 1024px) {
  .service-grid > *:only-child,
  .service-grid > *:nth-last-child(2):first-child {
    max-width: 320px;
    justify-self: left;
  }
}

/* サービスカード (.service-card) のスタイル */
.service-card {
  background: #fff; /* 白色の背景 */
  border-radius: 16px; /* 角丸 */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* シャドウ */
  display: flex;
  flex-direction: column; /* 子要素を縦に並べる */
  justify-content: space-between; /* 上下端に配置、間にスペース */
  padding: 32px; /* padding */
  box-sizing: border-box; /* padding, borderをwidth, heightに含める */
  text-align: center; /* テキスト中央揃え */
  height: 100%; /* 高さを親要素に合わせる */
}

/* 事業内容の画像 (.business-image) のマージン */
.business-image {
  margin-bottom: 24px; /* 下部のマージン */
}

/* 事業内容の画像 (.business-image) 内のimg要素のスタイル */
.business-image img {
  max-width: 100%; /* 最大幅100% */
  height: auto; /* 高さ自動調整 */
}

/* 事業内容のブロック (.business-block) のレイアウト (縦方向フレックス) */
.business-block {
  display: flex;
  flex-direction: column; /* 子要素を縦に並べる */
  justify-content: space-between; /* 上下端に配置、間にスペース */
  flex-grow: 1; /* 残りのスペースを埋める */
}

/* 事業内容のブロックタイトル (.business-block-title) のスタイル */
.business-block-title {
  font-size: clamp(18px, 4.5vw, 24px); /* フォントサイズ: 18pxから画面幅に応じて、最大24px */
  font-weight: bold; /* 太字 */
  margin-bottom: 1em; /* 下部のマージン */
}

/* 事業内容のブロックテキスト (.business-block-text) のスタイル */
.business-block-text {
  font-size: clamp(13px, 3.5vw, 18px); /* フォントサイズ: 13pxから画面幅に応じて、最大18px */
  line-height: 1.8; /* 行の高さ */
  margin-bottom: 1.5em; /* 下部のマージン */
}

/* 事業内容のロゴ (.business-logo) 内のimg要素のスタイル */
.business-logo img {
  max-width: 180px; /* 最大幅180px */
  height: auto; /* 高さ自動調整 */
  margin: 0 auto; /* 左右中央揃え */
}




/* #aboutセクションのマーキーアニメーション (.markie) */
#about .markie.inview-0 {
  animation-play-state: running; /* アニメーション再生 */
  will-change: background-position; /* background-positionプロパティが変化することを示す (パフォーマンス最適化) */
}

/* #aboutセクションのマーキー (.markie) のスタイル */
#about .markie {
  height: clamp(0px, 45.8888888889vw, 280px); /* 高さ */
  background-image: url(../img/about/marker_line.jpg); /* 背景画像 */
  background-size: cover; /* 背景画像を要素全体にフィット */
  animation: page-footer-slide-markie 100s linear 0s infinite normal; /* アニメーション定義 */
  animation-play-state: running; /* アニメーション再生 */
  /* ←これだけ残す (おそらく意図的なコメント) */
}


/* -----------------------------
data-of-idea-page
----------------------------- */

/* 各#qa-sec, #data-secのpadding (上部と下部) */
.entry-form-section .inner,
.entry-header .inner,
.works-sec#works,
.people-sec#people-interview,
.people-sec#people-top,
.day_life-sec#correlation,
.day_life_sec#movies,
.day_life-sec#day_life-top,
.enb-sec#event,
.enb-sec#benefits,
.enb-sec#assessment,
.enb-sec#enbironment,
.qa-sec#qa,
.data-sec#data {
  padding-top: clamp(0px, 5.1388888889vw, 103.6px); /* 上部padding */
  padding-bottom: clamp(0px, 5.1388888889vw, 103.6px); /* 下部padding */
}

/* #dataセクションの背景 (単色) */
.enb-sec#enbironment,
.data-sec#data {
  background: #fbc400; /* 水色の背景 */
}

/* .qa-sec, .data-sec直下の.inner要素 (コンテンツの最大幅と中央配置) */
.entry-form-section .inner,
.entry-header .inner,
.day_life-sec>.inner,
.enb-sec>.inner,
.enb-sec>.inner,
.qa-sec>.inner,
.data-sec>.inner {
  width: var(--max-width); /* CSS変数で定義された最大幅 */
  margin: 0 auto; /* 左右中央揃え */
}

/* データセクションタイトルの英語 (.en) */
.data-section-tittle .en {
  font-size: 48px; /* フォントサイズ */
  line-height: 1.458; /* 行の高さ */
  font-weight: bold; /* 太字 */
}

/* データセクションタイトルの日本語 (.ja) */
.data-section-tittle .ja {
  font-size: 20px; /* フォントサイズ */
  line-height: 1.2; /* 行の高さ */
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: calc(5 * var(--rpxClamp));
}

/* #dataセクションと#qaセクションのリードテキスト (.lead) の下部マージン */
.data-sec#data p.lead,
.qa-sec#qa p.lead {
  margin-bottom: 30px; /* 下部のマージン */
}

/* 画面幅767px以下のスタイル */
@media screen and (max-width: 767px) {

  /* #qaセクションと#dataセクションのpadding (スマートフォン向け) */
  .entry-form-section .inner,
  .entry-header .inner,
  .works-sec#works,
  .people-sec#people-interview,
  .people-sec#people-top,
  .day_life-sec#correlation,
  .day_life-sec#correlation,
  .day_life-sec#movies,
  .day_life-sec#day_life-top,
  .enb-sec#event,
  .enb-sec#benefits,
  .enb-sec#assessment,
  .enb-sec#enbironment,
  .qa-sec#qa,
  .data-sec#data{
    padding: clamp(0px, 13.3333333333vw, 70px) clamp(0px, 5.3333333333vw, 28px); /* 上下padding、左右padding */
    padding-bottom: clamp(0px, 13.3333vw, 70px);
    padding-bottom: clamp(0px, 13.3333vw, 70px);
  }
}



/* チャートグリッド (.chart-grid) のレイアウト (自動配置グリッド) */
.chart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 最小幅280pxで自動配置 */
  gap: 32px; /* グリッド間のギャップ */
}

/* チャートカード (.chart-card) のスタイル */
.chart-card {
  background: #fff; /* 白色の背景 */
  padding-bottom: 50px; /* 下部のpadding */
  border-radius: 12px; /* 角丸 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* シャドウ */
  display: flex;
  flex-direction: column; /* 子要素を縦に並べる */
  align-items: center; /* 水平方向中央揃え */
}

/* チャートタイトル (.chart-title) のスタイル */
.chart-title {
  background: #111; /* 黒色の背景 */
  color: #fff; /* 白色のテキスト */
  width: 100%; /* 幅100% */
  text-align: center; /* テキスト中央揃え */
  padding: 10px; /* padding */
  font-weight: bold; /* 太字 */
  font-size: 1rem; /* フォントサイズ */
  margin-bottom: 40px; /* 下部のマージン */
}

/* チャートのラッパー (.chart-wrapper) のスタイル */
.chart-wrapper {
  position: relative; /* 相対配置 */
  aspect-ratio: 1 / 1; /* 正方形の縦横比 */
  width: 100%; /* 幅100% */
  max-width: 240px; /* 最大幅240px */
}

/* チャートのcanvas要素のスタイル */
.chart-wrapper canvas {
  position: absolute; /* 絶対配置 */
  inset: 0; /* 親要素の四隅に合わせる */
  width: 100% !important; /* 幅100% (上書き) */
  height: 100% !important; /* 高さ100% (上書き) */
}

/* カスタム凡例 (.custom-legend) のスタイル */
.custom-legend {
  display: flex;
  flex-wrap: wrap; /* 折り返し */
  justify-content: center; /* 中央揃え */
  gap: 8px 16px; /* 要素間のギャップ */
  margin-top: 16px; /* 上部のマージン */
  font-size: 0.85rem; /* フォントサイズ */
}

/* カスタム凡例アイテム (.custom-legend-item) のスタイル */
.custom-legend-item {
  display: flex;
  align-items: center; /* 垂直方向中央揃え */
  gap: 6px; /* 要素間のギャップ */
}

/* カスタム凡例の色要素 (.custom-legend-color) のスタイル */
.custom-legend-color {
  display: inline-block; /* インラインブロック要素 */
  width: 12px; /* 幅12px */
  height: 12px; /* 高さ12px */
  border-radius: 50%; /* 円形 */
}

/* -----------------------------
environment-page
----------------------------- */

.enb-sec#enbironment {
  background:linear-gradient(90deg, #ffe896, #fbc400);
  margin-top: 19%;
}


.enbironment-section-tittle {
  display: flex;
  align-items: center; /* 垂直方向中央揃え */
  flex-direction: column; /* 子要素を縦に並べる */
  justify-content: center; /* 水平方向中央揃え */
  align-items: flex-start; /* 垂直方向左揃え */ /* テキストの色を白に */
}

/* 日本語のタイトル (.ja) */
.enbironment-section-tittle .ja {
  font-size: 20px; /* フォントサイズ */
  line-height: 1.2; /* 行の高さ */
  display: -webkit-flex; /* Safari, Chrome */
  display: -moz-flex; /* Firefox */
  display: -ms-flex; /* IE */
  display: -o-flex; /* Opera */
  display: flex; /* フレックスボックス */
  -webkit-flex-wrap: wrap; /* Safari, Chrome */
  -moz-flex-wrap: wrap; /* Firefox */
  -ms-flex-wrap: wrap; /* IE */
  -o-flex-wrap: wrap; /* Opera */
  flex-wrap: wrap; /* 折り返し */
  justify-content: space-between; /* 要素間に均等なスペース */
  align-items: center; /* 垂直方向中央揃え */
  gap: calc(5 * var(--rpxClamp)); /* 要素間のギャップ (CSS変数を使用) */
}

/* 英語のタイトル (.en) */
.enbironment-section-tittle .en {
  font-size: 42px; /* フォントサイズ */
  line-height: 1.458; /* 行の高さ */
  font-weight: bold; /* 太字 */
}

/* 評価制度セクション レイアウト */
.assessment-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.assessment-flex .text-block {
  flex: 1 1 50%;
  min-width: 300px;
}

.assessment-flex .image-block {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.assessment-flex .image-block img {
  max-width: 100%;
  height: auto;
}

/* スマホ向け（縦並びに） */
@media screen and (max-width: 768px) {
  .assessment-flex {
    flex-direction: column;
  }

  .assessment-flex .text-block,
  .assessment-flex .image-block {
    flex: 1 1 100%;
  }
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
}

.benefit-item {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  min-width: 280px;
}

.benefit-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.benefit-title {
  font-weight: bold;
  margin-bottom: 10px;
}

/* スマホ表示（1列） */
@media screen and (max-width: 768px) {
  .benefit-item {
    flex: 1 1 100%;
  }
}

.event-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 30px;
}

.event-item {
  background:linear-gradient(90deg, #ffe896, #fbc400);
  padding: 30px 20px;
  text-align: center;
  border: solid 2px #535453;
}

.event-list dt {
  font-size: clamp(0px, 1.3888888889vw, 28px);
  line-height: 1.45;
  color:#262727;
}

.event-list dd {
  font-size: clamp(0px, 1.1111111111vw, 22.4px);
  color:#262727;
}

.event-list dl {
  
}

/* -----------------------------
Day in the life
----------------------------- */



.day_life-sec#day_life-top {
  background: linear-gradient(90deg, #ffe896, #fbc400);
  margin-top: 168px;
}


.day-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.day-text {
    text-align: left;
}

.day-media img,
.day-media iframe {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  min-height: 250px;
  margin: 0 auto;
  display: block;
}

 .qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .qa-item.open .qa-answer {
    max-height: 1000px;
  }
  .qa-question {
    display: block;
    background: transparent;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    padding: 1em 0;
    text-align: left;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
  }

/* -----------------------------
People（Flex版）
----------------------------- */

.interview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.interview-card {
  flex: 1 1 calc(33.333% - 27px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-items: stretch;
  min-height: 100%;
  transition: height 0.3s ease
}

@media (max-width: 1023px) {
  .interview-card {
    flex-basis: 100%;
  }
}

/* 高さ解除用 */
.interview-card.open {
  align-self: auto;
  height: 100% !important;
}

.toggle-content {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
}

/* ラッパー */
.hover-wrapper {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-top-right-radius: 21px;
  border-bottom-left-radius: 21px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  height: 100%;
}
.interview-card:hover .hover-wrapper {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* サムネイル */
.interview-image {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.interview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.interview-card:hover .interview-image img {
  transform: scale(1.08);
}

/* 番号 */
.interview-number {
  position: absolute;
  top: 12px;
  right: 12px;
  text-align: center;
  color: #666;
  line-height: 1.2;
  z-index: 2;
}
.interview-number strong {
  display: block;
  line-height: 1;
}
.color-red { color: #F44336 !important; }
.color-yellow { color: #FFC107 !important; }
.color-green { color: #4CAF50 !important; }

/* コンテンツ */
.interview-content {
  position: relative;
  padding: 24px 20px 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.interview-quote {
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1em;
}
.quote-line {
  border-top: 1px solid #999;
  margin-bottom: 16px;
}
.interview-name {
  font-weight: bold;
  margin-bottom: 0.3em;
}
.interview-detail {
  color: #555;
  margin-bottom: 0;
}

/* ボタン */
.interview-circle {
  width: 35px;
  height: 35px;
  background: #FDD835;
  border-radius: 50%;
  position: absolute;
  bottom: 12px;
  right: 16px;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.3s ease;
}
.interview-circle i {
  display: block;
  line-height: 35px;
  text-align: center;
  color: #fff;
}
.interview-card.open .interview-circle {
  transform: rotate(90deg);
}

/* 開閉コンテンツ */
.toggle-content {
  overflow: hidden;
  height: 0;
  transition: height 0.4s ease;
}
.interview-card.open .toggle-content {
  /* height は JS で明示的に付与 */
}

/* Q&A セクション */
.interview-qa-block { margin-top: 32px; }
.qa-block { margin-bottom: 24px; }
.q-badge {
  display: inline-block;
  background: #FFEB3B;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 24px;
  text-align: center;
  margin-right: 8px;
  font-size: 18px;
}

/* スキルマップ */
.skillmap {
  border-radius: 12px;
  margin-top: 40px;
}
.skillmap-image-block {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.skillmap-image-block img {
  width: 100%;
  height: auto;
}
.skillmap-type {
  font-size: 14px;
  line-height: 1.6;
}

/* 必須アイテム */
.indispensable {
  margin-top: 40px;
}
.indispensable-title {
  font-weight: bold;
  font-size: 18px;
}
.indispensable-sub {
  font-size: 13px;
  margin-bottom: 16px;
}
.indispensable-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.indispensable-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.indispensable-list img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.item-text {
  font-size: 14px;
  line-height: 1.4;
}


@media screen and (max-width: 767px) {
  #day-in-the-life .lead {
    text-align: left !important;
  }
}

/* PCでは横並びに切り替え */
@media screen and (min-width: 768px) {
  .day-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .day-text {
    flex: 1;
    text-align: left;
    padding-right: 40px;
  }

  .day-media {
    flex: 1;
  }
}



/* PC表示：2列に */
@media screen and (min-width: 768px) {
  .event-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* PC表示（2列） */
@media screen and (min-width: 768px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .event-list dt {
    font-size: calc(18 * var(--rpxClamp));
  }
}

@media screen and (max-width: 767px) {
  .event-list dd {
    font-size: calc(13 * var(--rpxClamp));
  }
}



/* 画面幅767px以下のスタイル */
@media screen and (max-width: 767px) {
  /* データセクションタイトルの下部マージン */
  .data-section-tittle {
    margin-bottom: 20px;
  }

  /* データセクションタイトルの英語 (.en) のフォントサイズ */
  .data-section-tittle .en {
    font-size: clamp(0px, 6.4666666667vw, 39.2px);
  }
}

/* 画面幅767px以下のスタイル */
@media screen and (max-width: 767px) {
  /* データセクションタイトルの日本語 (.ja) のフォントサイズ */
  .data-section-tittle .ja {
    font-size: clamp(0px, 3.2666666667vw, 22.4px);
  }
}


/* データグリッド (.data-grid) のレイアウト (グリッド) */
.data-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr); /* 2列のグリッド */
}

/* データカード (.data-card) のスタイル */
.data-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 売上カード専用 */
.data-card.sales {
  flex-direction: row;
  align-items: center;
  grid-column: span 2;
}

.data-card.sales img {
  width: 100px;
  height: auto;
  margin-right: 16px;
}

.sales-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sales-text .year {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 4px;
}

.sales-text .label {
  font-size: 1rem;
  font-weight: bold;
}

.value {
  font-size: clamp(0px, 6.267vw, 12.4px);
}

.value .big {
  font-size: clamp(0px, 9.267vw, 30.4px);
  font-weight: bolder;
}

.sales-text .value {
  font-size: clamp(0px, 6.267vw, 12.4px);
  font-weight: bold;
}

.sales-text .value span.big {
  font-size: clamp(0px, 9.267vw, 30.4px);
  font-weight: bolder;
}

.title-box {
  display: block;
  width: 100%;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: left;
}

.title-box .label {
  text-align: center;
}

.graph-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.graph-image img {
  width: 80px;
  height: auto;
}

.sales-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sales-text .year {
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: #333;
}

.sales-text .value {
  font-size: 1rem;
  font-weight: bold;
}

.sales-text .value .big {
  font-size: 1.5rem;
  font-weight: bolder;
}

.title-box {
  display: block;
  width: 100%;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: left;
}

.title-box .label {
  font-size: 0.9rem;
}

.graph-group {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.graph-image img {
  width: 100px;
  height: auto;
}

.sales-info {
  display: flex;
flex-direction: column;
  justify-content: center;
  text-align: right;
  align-items: flex-end;
}

.sales-info .year {
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: #333;
}

.sales-info .value {
  font-size: 1rem;
  font-weight: bold;
}

.sales-info .value .big {
  font-size: 1.5rem;
  font-weight: bolder;
}

.data-card.sales .graph-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
}

.data-card.sales .graph-image {
  flex-shrink: 0;
}

.data-card.sales .graph-image img {
  width: 100px;
  height: auto;
}

.data-card.sales .sales-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.title-box {
  display: block;
  width: 100%;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: left;
}

.title-box .label {
  font-size: 0.9rem;
}

.graph-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.graph-image img {
  width: 100%;
  height: auto;
  display: block;
}

.graph-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
}

.graph-text .year {
  margin-bottom: 4px;
  color: #333;
}

.graph-text .value {
  font-size: 1rem;
  font-weight: bold;
}

.graph-text .value .big {

  font-weight: bolder;
}

.data-card.sales {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.data-card.sales .graph-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
  margin-top: 8px;
}

.data-card.sales .graph-image {
  flex-shrink: 0;
}

.data-card.sales .graph-image img {
  width: 100px;
  height: auto;
  display: block;
}

.data-card.sales .graph-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  justify-content: center;
  flex-grow: 1;
}

.data-card.sales .graph-text .year {
  margin-bottom: 4px;
  color: #333;
}

.data-card.sales .graph-text .value {

  font-weight: bold;
}

.data-card.sales .graph-text .value .big {

  font-weight: bolder;
}

.data-card.sales .title-box {
  margin-bottom: 8px;
  font-weight: bold;
  text-align: left;
  width: 100%;
}

.title-box {
  display: block;
  width: 100%;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: left;
}

.graph-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.graph-image img {
  width: 100%;
  height: auto;
  display: block;
}

.graph-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  align-items: flex-end;
}

.graph-text .year {
  margin-bottom: 4px;
  color: #333;
  /*! align-self: flex-start; */
}

.graph-text .value {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.graph-text .value .big {
  font-weight: bolder;
  margin-right: 4px;
}

.graph-text .value .unit {
  white-space: nowrap;
}


/* 画面幅768px以上のスタイル */
@media screen and (min-width: 768px) {
  .data-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .data-card.sales {
    grid-column: span 3;
  }
}


/* 画面幅767px以下のスタイル */
@media screen and (max-width: 767px) {
    .entry-form-section .inner,
    .entry-header .inner,
    .about-sec#about-top,
    .about-sec#company-Philosophy,
    .about-sec#business,
    .about-sec#comanyinfo {
    padding: clamp(0px, 13.3333333333vw, 70px) clamp(0px, 5.3333333333vw, 28px);
    padding-bottom: clamp(0px, 13.3333vw, 70px);
  }

  .about-sec#company-Philosophy .en {
    font-size: clamp(0px, 6.4666666667vw, 39.2px);
  }

  .about-sec#company-Philosophy .ja {
    font-size: clamp(0px, 3.2666666667vw, 22.4px);
  }

  .about-section-sub-tittle {
    font-size: clamp(0px, 4.5666666667vw, 39.2px);
    line-height: 1.645;
    font-weight: bold;
    margin: 20px 0;
  }

  .about-sec#company-Philosophy hr {
    margin: 30px 0
  }

  #business h2,
  #comanyinfo h2 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
  }

  #business h2 .en,
  #comanyinfo h2 .en {
    font-size: clamp(0px, 6.4666666667vw, 39.2px);
  }

  #business h2 .ja,
  #comanyinfo h2 .ja {
    font-size: clamp(0px, 3.2666666667vw, 22.4px);
  }

}

/* 画面幅768px以上のスタイル */
@media screen and (min-width: 768px) {

  #business h2,
  #comanyinfo h2 {
    margin-bottom: 50px;
    color: #333;
  }

  #business h2 .en,
  #comanyinfo h2 .en {
    font-size: clamp(0px, 6.4666666667vw, 39.2px);
  }

  .about-sec#company-Philosophy h2 {
    margin-bottom: 50px;
  }

  .about-section-sub-tittle {
    font-size: clamp(0px, 1.5666666667vw, 39.2px);
    line-height: 1.645;
    font-weight: bold;
    margin: 20px 0;
  }

  .about-sec#company-Philosophy hr {
    margin: 50px 0
  }

  .action-title {
    font-size: clamp(0px, 2.5666666667vw, 28.2px);
    font-weight: bold;
    margin: 0;
  }

  .action-num {
    font-weight: bold;
    font-size: clamp(0px, 4.1666666667vw, 28.2px);
    color: #000;
  }

  .action-text {
    font-size: 1.6rem;
  }

  .data-section-tittle {
    margin-bottom: 50px;
  }
}

/* 画面幅767px以下のスタイル (空) */
@media screen and (max-width: 767px) {}


/* レイアウト */
.interview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}
.interview-card {
  flex: 1 1 calc(33.333% - 27px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .interview-card {
    flex-basis: 100%;
  }
}
.hover-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.interview-image {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.interview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.interview-card:hover .interview-image img {
  transform: scale(1.05);
}
.interview-content {
  padding: 24px 20px 36px;
  position: relative;
  flex-grow: 1;
}
.interview-circle {
  width: 35px;
  height: 35px;
  background: #FDD835;
  border-radius: 50%;
  position: absolute;
  bottom: 12px;
  right: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.interview-card.open .interview-circle {
  transform: rotate(90deg);
}

.qa-block h4{
    font-size: clamp(0px, 4.4666666667vw, 39.2px);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: bold;

}

.qa-block p{
    font-size: clamp(0px, 4.467vw, 39.2px);
    line-height: 1.5;
}

.interview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.interview-card {
  flex: 1 1 calc(33.333% - 27px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .interview-card {
    flex: 1 1 100%;
  }
}

.interview-circle {
  position: absolute;
  bottom: 12px;
  right: 16px;
  width: 35px;
  height: 35px;
  background: #FDD835;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 3;
}

.interview-card.open .interview-circle {
  transform: rotate(90deg);
}

.toggle-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  background: #f9f9f9;
  padding: 0 20px;
  box-sizing: border-box;
  margin-top: 30px;
}


@media screen and (min-width: 768px) {
    .qa-block h4 {
  font-size: clamp(0px, 1.012vw, 14.2px);
}

.qa-block p {
  font-size: clamp(0px, 0.8vw, 15px);
  line-height: 1.5;
}
}

#work-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.work-card {
  flex: 1 1 calc(100% - 40px);
  max-width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.work-card:hover {
  transform: translateY(-4px);
}

.work-thumb {
  width: 100%;
  height: 200px;
  background: #e0e0e0;
}

.work-body {
  padding: 20px;
}

.work-title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 8px;
}

.work-description {
  font-size: 0.9rem;
  color: #777;
}

/* PCで3列表示 */
@media screen and (min-width: 768px) {
  .work-card {
    flex: 1 1 calc(33.333% - 27px);
    max-width: calc(33.333% - 27px);
  }
}

.works-sec#works{
    background: #fbc400;
}

#job-detail {
  padding: 40px 20px;
  background: #fff;
  font-family: sans-serif;
}

.job-inner {
  max-width: 960px;
  margin: auto;
}

.job-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-header img {
  width: 100%;
  border-radius: 8px;
}

.job-title-box h1 {
  font-size: 1.4rem;
  font-weight: bold;
}

.btn-apply {
  display: inline-block;
  background: #e53935;
  color: #fff;
  padding: 10px 20px;
  margin-top: 10px;
  text-align: center;
  border-radius: 4px;
  text-decoration: none;
}

.job-content {
  margin-top: 40px;
}

.job-section {
  margin-bottom: 40px;
}

.job-section h2 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.job-section ul {
  padding-left: 20px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.info-table th, .info-table td {
  padding: 10px;
  border: 1px solid #ddd;
  vertical-align: top;
}

.entry-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.entry-buttons a {
  display: block;
  width: 150px;
}

.entry-buttons img {
  width: 100%;
  border-radius: 8px;
}

/* PC用カラム表示 */
@media screen and (min-width: 768px) {
  .job-header {
    flex-direction: row;
    align-items: flex-start;
  }

  .job-header img {
    flex: 1;
  }

  .job-title-box {
    flex: 1;
    padding-left: 40px;
  }
}


    .container {

      margin: 0 auto;
      padding: 20px;
    }
    .back-link {
      font-size: 14px;
      margin-bottom: 10px;
      display: inline-block;
      color: #555;
      text-decoration: none;
    }
    .main-title {
      font-size: 28px;
      font-weight: bold;
      margin-top: 20px;
      line-height: 1.5;
      margin-bottom: 15px;
    }
    .sub-title {
      font-size: 16px;
      color: #777;
      margin-bottom: 30px;
    }
    .job-header {
      background: #eee;
      width: 117%;
      height: 200px;
      margin: -24px 0 20px;
      margin-left: -24px;
      border-radius: 15px 15px 0 0;
    }
    .job-meta {
      font-size: 14px;
      margin: 10px 0;
    }
.apply-button {
  background: #e60023;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 20px;
  display: block;
  width: 100%;
}
    .section {
      margin-bottom: 40px;
    }
    .section h2 {
      font-size: 20px;
      border-left: 5px solid #000;
      padding-left: 10px;
      margin-bottom: 30px;
      line-height: 1.5;
    }

        .section li{
            margin-bottom: 15px;
            line-height: 1.8;
            font-size: 1.3rem;
    }

    .section p{
        font-size: 1.3rem;
        margin-top: 15px;
    }

    .section p strong{
        margin-top: 15px;
        margin-bottom: 15px;
        display: inline-block;
    }
    .box {
      background: #f5f5f5;
      padding: 15px;
      border-radius: 4px;
      margin-bottom: 20px;
    }
    .table {
      width: 100%;
      border-collapse: collapse;
    }
    .table th,
    .table td {
      border: 1px solid #ccc;
      padding: 12px;
      vertical-align: top;
      text-align: left;
    }
    .table th {
      background: #f5f5f5;
      font-weight: bold;
      width: 30%;
    }

    .table td{
        line-height:1.8;
    }

    @media screen and (min-width: 768px) {
      .flex-row {
        display: flex;
        gap: 40px;
      }
      .col-6 {
        width: 50%;
      }
    }

    @media screen and (max-width: 767px) {
  .table tr {
    display: block;
  }
  .table th {
    display: block;
    font-weight: bold;
    background: transparent;
    padding-bottom: 4px;
    border: none;
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    background: #f5f5f5;
  }
  .table td {
    display: block;
    padding-top: 0;
    border: none;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}



.back-link {
  display: block;
  margin: 40px auto 20px;
  padding: 0 20px;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
}

.job-detail-box {
  background: #fff;
  border-radius: 15px 15px 0 0;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
}

.entry-form-section {
  background: #fff;
  font-family: sans-serif;
}

.form-heading {
  text-align: center;
}

.form-heading h1 {
  font-size: 2.2rem;
  font-weight: bold;
}

.form-heading .job-title {
  font-size: 1.2rem;
  margin-top: 20px;
}

.back-link {
  display: block;
  font-size: 0.9rem;
  margin: 20px 0;
  text-align: left;
  color: #333;
}

.entry-form {
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
input[type="file"],
textarea {
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.file-note {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 4px;
}

.file-note.small {
  font-size: 0.75rem;
}

.agreement {
  font-size: 0.9rem;
}

.agreement input[type="checkbox"] {
  margin-right: 6px;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-submit button {
  background: linear-gradient(90deg, rgba(65, 164, 253, 1), rgba(14, 244, 255, 1));
  color: #fff;
  padding: 14px 40px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-submit button:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-group:nth-child(7),
  .form-group:nth-child(8),
  .form-group:nth-child(9),
  .form-group.agreement,
  .form-submit {
    grid-column: span 2;
  }

  .form-group textarea,
  .form-group input[type="file"] {
    width: 100%;
  }
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

.badge.required {
  color: red;
  border: 1px solid red;
}

.badge.optional {
  color: #888;
  border: 1px solid #888;
}

.note {
  font-size: 0.8rem;
  color: #555;
  margin-top: 4px;
  line-height: 1.4;
}

.note a {
  color: #007bff;
  text-decoration: underline;
}

.entry-header {
  background-color: #fff;
}

.entry-header .inner {
  margin: 0 auto;
}

.entry-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
}

.entry-subtitle {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
}

.entry-back-link {
  display: inline-block;
  font-size: 12px;
  color: #bbb;
  text-decoration: none;
  pointer-events: none; /* 非リンク状態再現 */
}


.data-card i{
    font-size: clamp(0px, 10.4666666667vw, 39.2px);
    margin: 20px 0;
}

.data-card  .label{
    font-size: clamp(0px, 3.467vw, 39.2px);
    font-weight: bold;
}

.graph-image i{
    font-size: clamp(0px, 161.467vw, 60.2px);
    margin-left: 100%;
}


@media screen and (min-width: 768px) {
    .data-card .label{
        font-size: clamp(0px, 1.467vw, 39.2px);
    }

  .value .big {
    font-size: clamp(0px, 9.267vw, 50.4px);
  }

  .data-card i {
  font-size: clamp(0px, 10.4666666667vw, 65.2px);

}
}

/* プライバシーポリシーエリア専用レイアウト */
.privacy-section .privacy-box {
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 40px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #002b3a;
  font-family: "Sofia Sans", sans-serif;
}

.privacy-section .privacy-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0077cc;
  margin-bottom: 24px;
  text-align: center;
}

.privacy-section h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 4px solid #00bcd4;
  font-weight: 600;
}

.privacy-section p,
.privacy-section li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1em;
}

.privacy-section ul {
  list-style: disc;
  margin-left: 1.5em;
  padding-left: 0.5em;
}

.privacy-section a {
  color: #0077cc;
  text-decoration: underline;
}

.privacy-section .update-note {
  text-align: right;
  font-size: 0.9rem;
  color: #555;
  margin-top: 40px;
}

/* PC用拡張 */
@media screen and (min-width: 768px) {
  .privacy-section .privacy-box {
    padding: 60px 80px;
  }

  .privacy-section .privacy-title {
    font-size: 2.5rem;
  }

  .privacy-section h3 {
    font-size: 1.5rem;
  }
}
#event,
#benefits,
#assessment,
#people-interview,
#movies,
#correlation{
	background:#fbc400;
}

#movies .inner{
	padding-top: clamp(0px, 5.1388888889vw, 103.6px);
  padding-bottom: clamp(0px, 5.1388888889vw, 103.6px);
}


.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  background: #FFF;
}

.wpcf7-form-control.wpcf7-submit.has-spinner {
  background: linear-gradient(90deg, #ffe896, #fbc400);
  color: #262727;
  padding: 14px 40px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  font-weight:bolder;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 6px;
}

.agreement {
  font-size: 0.9rem;
}


@media screen and (min-width: 768px) {
	.enb-sec#enbironment{
		margin-top:8%;
	}
	
	.people-sec#people-top, .about-sec#about-top{
		margin-top:8%;
	}
}