@charset "UTF-8";
/* ==========================================================================
   企業様向け研修一覧ページ（/training/）専用スタイル
   main.css を読み込んだあとに追加で読み込む想定。
   main.css には一切手を入れていません。
   ========================================================================== */

/* --- 配色メモ（既存サイトから踏襲） -------------------------------------
   紺   #171c61 ／ 青 #006bb3 ／ 水色 #549ab2 ／ 金 #cfab0d ／ 薄グレー #f7f7f7
   ---------------------------------------------------------------------- */

.training-page main {
  padding-top: 60px; /* 固定ヘッダー分 */
}
@media screen and (max-width: 767px) {
  .training-page main {
    padding-top: 55px;
  }
}

/* 共通のインナー（main.css の .inner は overflow:hidden のため別途用意） */
.tr-inner {
  width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tr-inner {
    width: 100%;
    padding: 0 20px;
  }
}

/* --------------------------------------------------------------------------
   ページタイトル
   -------------------------------------------------------------------------- */
.page-head {
  color: #fff;
  padding: 70px 0 80px;
  background: linear-gradient(190deg, #171c61 0%, #113278 19.68%, #085198 53.07%, #0264ac 81.05%, #006bb3 100%);
}
@media screen and (max-width: 767px) {
  .page-head {
    padding: 40px 0 45px;
  }
}

.page-head .breadcrumb {
  font-size: 1.2rem;
  letter-spacing: .1em;
  line-height: 1.6;
  opacity: .8;
  margin-bottom: 40px;
}
.page-head .breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.page-head .breadcrumb a:hover {
  text-decoration: underline;
}
.page-head .breadcrumb span {
  margin: 0 .8em;
}
@media screen and (max-width: 767px) {
  .page-head .breadcrumb {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
}

.page-head .page-ttl {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.4;
  text-align: center;
}
.page-head .page-ttl span {
  font-size: 4.8rem;
  letter-spacing: normal;
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page-head .page-ttl {
    font-size: 2rem;
  }
  .page-head .page-ttl span {
    font-size: 3rem;
    margin-bottom: 12px;
  }
}

.page-head .page-lead {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: .1em;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .page-head .page-lead {
    font-size: 1.3rem;
    line-height: 1.9;
    text-align: left;
    margin-top: 20px;
  }
}

/* --------------------------------------------------------------------------
   研修一覧
   -------------------------------------------------------------------------- */
.training-section {
  padding: 90px 0 100px;
  background: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .training-section {
    padding: 45px 0 50px;
  }
}

.training-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.training-item {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(23, 28, 97, 0.08);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.training-item + .training-item {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .training-item {
    display: block;
  }
  .training-item + .training-item {
    margin-top: 30px;
  }
}

/* チラシ（A4縦）を全面表示する枠。
   切り抜くと誌面の端が欠けるため object-fit: cover は使っていません。 */
.training-item .img-wrap {
  flex-basis: 380px;
  max-width: 380px;
  background: #eaeff3;
  padding: 40px 34px;
  display: flex;
  align-items: center; /* テキスト側が長いので、チラシは天地中央に置く */
  position: relative;
}
.training-item .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  border: 1px solid #dfe4e9;
  box-shadow: 0 6px 18px rgba(23, 28, 97, 0.12);
}
@media screen and (max-width: 767px) {
  .training-item .img-wrap {
    max-width: 100%;
    padding: 25px 60px;
  }
}

/* テキスト側 */
.training-item .txt-wrap {
  flex: 1;
  padding: 45px 50px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .training-item .txt-wrap {
    padding: 25px 20px 30px;
  }
}

/* 「◯◯必見！！」の呼びかけ。タイトルの上に小さく置く */
.training-lead {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.5;
  color: #006bb3;
  margin-bottom: 8px;
}

/* 見出しのまとまり。区切り線はこのブロックの下端に置く
   （英語研修は説明文が続くため、見出し自体には持たせない） */
.ttl-block {
  padding-bottom: 22px;
  border-bottom: 1px solid #e4e4e4;
}

.training-ttl {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: .08em;
  color: #171c61;
}
.training-ttl.is-en {
  font-size: 2.6rem;
  letter-spacing: .02em;
}

/* 補足の説明文。見出しではなく本文の級数で置く（6件すべて共通） */
.training-desc {
  font-size: 1.45rem;
  line-height: 1.8;
  letter-spacing: .05em;
  color: #4d4d4d;
  margin-top: 12px;
}

/* キャッチと説明の一文は同格。同じ級数・同じ色で2行に分けて置く */
.training-ttl .ttl-sub {
  display: block;
  margin-top: 6px;
  /* main.css 側の指定で 400 に落ちるため、明示的に揃える */
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .ttl-block {
    padding-bottom: 18px;
  }
  .training-ttl {
    font-size: 1.65rem;
  }
  .training-ttl.is-en {
    font-size: 1.9rem;
  }
  .training-desc {
    font-size: 1.3rem;
    line-height: 1.75;
    margin-top: 10px;
  }
  .training-ttl .ttl-sub {
    margin-top: 4px;
  }
}

/* こんな方におすすめ */
.recommend {
  background: #f2f6f8;
  border-radius: 4px;
  padding: 20px 24px;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .recommend {
    padding: 15px 16px;
    margin-top: 20px;
  }
}

.recommend-ttl {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .1em;
  color: #171c61;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .recommend-ttl {
    font-size: 1.2rem;
  }
}

.recommend-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recommend-list li {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: .05em;
  padding-left: 1.3em;
  position: relative;
}
.recommend-list li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #549ab2;
  position: absolute;
  left: 2px;
  top: .75em;
}
.recommend-list li + li {
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .recommend-list li {
    font-size: 1.25rem;
  }
}

/* カリキュラム */
.curriculum {
  margin-top: 25px;
}
.curriculum-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: .1em;
  color: #171c61;
  margin-bottom: 8px;
}
/* カリキュラム。回ごとに「第N回」＋テーマの1行。
   特定日程の開催告知ではないため、実施日・時間帯は載せていません。 */
.curriculum-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* 最終項目にも下線を残す。2段組だと最終行の左右で線の有無が食い違い、
   一覧の終わりが不揃いに見えるため。 */
.curriculum-list li {
  display: flex;
  gap: 0 14px;
  padding: 11px 0;
  border-bottom: 1px dotted #e4e4e4;
}
/* 項目数が多いものは2段組。1段だとカードが極端に縦長になるため。
   grid ではなく column（段組）を使うのは、番号を縦に流すため。
   grid は 01 02 / 03 04 と横に流れるが、段組なら 01 03 / 02 04 と縦に読める。 */
@media screen and (min-width: 768px) {
  .curriculum-list.is-two-col {
    column-count: 2;
    column-gap: 30px;
  }
  .curriculum-list.is-two-col li {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
  }
  .curriculum-list.is-two-col .cur-no {
    flex-basis: 2.2em;
  }
}
.curriculum-list .cur-no {
  flex: 0 0 3.6em;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.8;
  color: #006bb3;
}
.curriculum-list .cur-ttl {
  flex: 1;
  min-width: 0;
  font-size: 1.45rem;
  line-height: 1.65;
  letter-spacing: .05em;
  color: #333;
}
@media screen and (max-width: 767px) {
  .curriculum-list li {
    gap: 0 10px;
    padding: 10px 0;
  }
  .curriculum-list .cur-no {
    flex-basis: 3.4em;
    font-size: 1.15rem;
    line-height: 1.75;
  }
  .curriculum-list .cur-ttl {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

/* ボタン */
.btn-wrap {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .btn-wrap {
    display: block;
    margin-top: 25px;
  }
}

.tr-btn {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  display: block;
  flex: 0 1 auto;
  min-width: 190px;
  white-space: nowrap;
  padding: 0 46px 0 26px; /* 右端の矢印に文字がかからないよう逃がす */
  border-radius: 25px;
  position: relative;
  transition: all ease .3s;
}
.tr-btn:after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(0, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .tr-btn {
    font-size: 1.3rem;
    line-height: 46px;
    min-width: 0;
    white-space: normal;
    padding: 0 40px 0 20px;
  }
  .tr-btn + .tr-btn {
    margin-top: 12px;
  }
}

.tr-btn-ghost {
  color: #549ab2;
  border: 1px solid #549ab2;
  background: #fff;
}
.tr-btn-ghost:hover {
  color: #fff;
  background: #549ab2;
  opacity: 1;
}

.tr-btn-fill {
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #171c61 0%, #113278 19.68%, #085198 53.07%, #0264ac 81.05%, #006bb3 100%);
}
.tr-btn-fill:hover {
  opacity: .8;
}

.tr-btn-lg {
  width: 400px;
  max-width: 100%;
  margin: 35px auto 0;
  line-height: 60px;
  border-radius: 30px;
  flex: none;
}
@media screen and (max-width: 767px) {
  .tr-btn-lg {
    width: 100%;
    line-height: 52px;
    margin-top: 25px;
  }
}

/* --------------------------------------------------------------------------
   下部CTA
   -------------------------------------------------------------------------- */
.tr-cta {
  padding: 80px 0 90px;
  text-align: center;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .tr-cta {
    padding: 45px 0 50px;
  }
}

.tr-cta-ttl {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: .1em;
  color: #171c61;
}
.tr-cta-txt {
  font-size: 1.5rem;
  line-height: 1.9;
  letter-spacing: .08em;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .tr-cta-ttl {
    font-size: 1.6rem;
  }
  .tr-cta-txt {
    font-size: 1.3rem;
    text-align: left;
  }
}

/* --------------------------------------------------------------------------
   ナビの現在地表示
   -------------------------------------------------------------------------- */
.nav-wrap .nav-list-item .item a.current {
  color: #fff;
  background: #549ab2;
}

/* SP時、下部固定の2ボタンにフッターが隠れないよう余白を確保 */
@media screen and (max-width: 767px) {
  .training-page .footer {
    margin-bottom: 70px;
  }
}
