@charset "UTF-8";
/* CSS Document */
/************************

page-training　用カスタムcss

************************/
/* テキスト　スタイル */
.highlight-key {
  font-weight: bold;
  color: #0A1745;
  background: linear-gradient(transparent 70%, #F0F5FA 70%);
  padding: 0 0.2em;
}
/* こんなお悩みありませんか */
.trouble-wrapper {
  padding: 4rem 1rem;
  max-width: 960px;
  margin: 0 auto;
}
.trouble-heading {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", 'Noto Serif JP', serif;
}
.trouble-heading .highlight {
  color: #0A1745;
  font-size: 110%;
}
.trouble-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.trouble-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trouble-list li {
  background: #f4f4f4;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.trouble-icon {
  width: 28px;
  height: 36px;
  margin-right: 0.8rem;
  flex-shrink: 0;
  opacity: 0.2;
}
.trouble-illust {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.trouble-illust img {
  width: 100%;
  max-width: 260px;
  height: auto;
}
@media (max-width: 768px) {
  .trouble-wrapper {}
  .trouble-box {
    flex-direction: column-reverse;
    align-items: center;
  }
  .trouble-list {
    width: 100%;
  }
  .trouble-illust {
    margin-top: 2rem;
  }
  .trouble-illust img {
    max-width: 200px;
  }
  .trouble-heading {
    font-size: 1.22rem;
    margin-top: 2rem;
    margin-bottom: 0rem;
    letter-spacing: -0.05rem;
  }
  .trouble-list li {
    letter-spacing: -0.05rem;
    padding: 1rem;
  }
}
/* サービスの特徴 */
.sec-feature {
  background: #F0F5FA;
}

/* カードレイアウト */
.feature-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

/* カード単体 */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 calc(50% - 2rem);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 40, 80, 0.08);
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  text-align: center;
}

/* アイコン */
.feature-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 1.8rem;
}
.feature-icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* 通常見出し */
.feature-title {
  font-size: 1.1rem;
  color: #0A1745;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.05rem;
  line-height: 1.4rem;
}

/* チェック付き見出し */
.feature-title.with-check {
  display: flex;
  align-items: center;
  gap: 0.6em;
  justify-content: center;
}

/* チェックマークの四角＋チェック線 */

.check-icon-css {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #707070;
  box-sizing: border-box;
}

.check-icon-css::after {
  content: ""; /* ← 修正済み！ */
  position: absolute;
  left: 8px;
  top: -4px;
  width: 6px;
  height: 15px;
  border-right: 2px solid #419C9E;
  border-bottom: 2px solid #419C9E;
  transform: rotate(45deg);
}


/* 説明文 */
.feature-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .feature-card {
    flex: 1 1 100%;
  }
}

/* 受講形式（PC） */
.format-table {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  border-collapse: collapse;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 40, 80, 0.06);
}
.format-table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.format-table thead th {
  background: linear-gradient(160deg, #0A1F44 0%, #245D8F 100%);
  color: #fff;
  text-align: center;
  padding: 1rem 1rem;
  font-weight: 500;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.format-table tbody td {
  padding: 1.2rem;
  font-size: 1rem;
  border-top: 1px solid #e5eaf3;
  vertical-align: top;
  line-height: 1.4rem;
}
.format-table tbody td:first-child {
  color: #0A1745;
  font-weight: 700;
  font-size: 1.05rem;
  width: 35%;
}
/* モバイル対応 */
@media (max-width: 768px) {
  .format-table thead {
    display: none;
  }
  .format-table tbody td {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    border-top: none;
  }
  .format-table tbody tr {
    display: block;
    margin-bottom: 1.5rem;
    border: 1px solid #e5eaf3;
    border-radius: 8px;
    overflow: hidden;
  }
  .format-table tbody td:first-child {
    background: #f5f9ff;
    color: #0A1745;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 1px solid #e5eaf3;
  }
}
/* 受講形式（SP） */
.format-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.format-card {
  display: flex;
  flex-direction: column;
  width: calc(50% - 0.75rem);
  background: #fff;
  border: 1px solid #e5eaf3;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 40, 80, 0.05);
}
.format-label {
  background: linear-gradient(135deg, #0A1F44 0%, #245D8F 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 1.2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.format-desc {
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}
/* 表示切替クラス */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important; /* ← 念のため上書き確実に */
  }
  .sp-only {
    display: flex !important; /* ← SP用カード表示ON */
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .sp-only .format-card {
    width: 100%;
  }
}
/* 研修例 */
.training-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.training-card {
  background: #fff;
  border-left: 6px solid #0A1745;
  box-shadow: 0 2px 6px rgba(0, 40, 80, 0.08);
  padding: 1.2rem 1rem;
  transition: transform 0.2s ease;
}
.training-role {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A1745;
  margin-bottom: 0.5rem;
}
.training-role::before {
  content: "";
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-right: 0.8rem;
  border-radius: 50%;
  /* background-color: #fff; */
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}
/* 個別設定 */
.training-card.student {
  border-left-color: #1E4CA1;
  background: #F0F6FF;
}
.training-card.manager {
  border-left-color: #123E7B;
  background: #EAF2FB;
}
.training-card.auditor {
  border-left-color: #0B2B55;
  background: #EDF4FA;
}
/* コンテンツ内 */
.training-content {
  margin-top: 0.4rem;
}
.training-topic {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.training-type {
  font-size: 0.9rem;
  font-weight: 600;
}
.training-badge {
  background: #dbeaff;
  color: #0A1745;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
}
/* レスポンシブ調整 */
@media screen and (min-width: 768px) {
  .training-role {
    font-size: 1.15rem;
  }
  .training-topic {
    font-size: 1.05rem;
  }
  .training-type {
    font-size: 1rem;
  }
}
/* ご提供の流れ */
.step-section {
  max-width: 960px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
}
.step-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  box-sizing: border-box;
}
.step-label {
  width: 100px;
  background: #0A1745;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 0.8rem 1.2rem;
  font-size: 0.9rem;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  margin-right: 1.5rem;
  box-sizing: border-box;
  flex-shrink: 0;
}
.step-content {
  flex: 1;
  width: 100%;
  box-sizing: border-box;
}
.step-title {
  width: 100%;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
  color: #0A1745;
  border-bottom: 3px solid #ccc;
  position: relative;
}
.step-title::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 3px;
  width: 80px;
  background: #0A1745;
}
.step-text {
  width: 100%;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  box-sizing: border-box;
}
/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .step-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .step-label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.8rem;
    clip-path: none;
    text-align: left;
  }
  .step-title {
    font-size: 1.05rem;
  }
  .step-text {
    font-size: 0.95rem;
  }
}
/*faq */
.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  background: #f8fbfd;
}
/* 見出し */
.faq-title-block {
  margin-bottom: 2rem;
  text-align: left;
}
.faq-en {
  font-family: 'Georgia', serif;
  font-size: 2.4rem;
  color: #0A1745;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}
.faq-ja {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A1745;
  margin: 0;
}
/* QAリスト */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-line {
  padding: 1.6rem 0;
  border-bottom: 1px solid #dde5ed;
}
.qa-line {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.4rem;
}
/* Q. A. プレフィックス */
.qa-prefix {
  width: 2.4rem;
  flex-shrink: 0;
  font-family: "Marcellus", "Hiragino Mincho ProN", "游明朝", serif;
  line-height: 1.8;
  margin-right: 0.2rem;
}
/* Q 用 */
.qa-line:first-of-type .qa-prefix {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0A1745; /* 深めのネイビー */
}
/* A 用 */
.qa-line:last-of-type .qa-prefix {
  font-size: 1.15rem;
  font-weight: 700;
  color: #4d5c73; /* グレー寄りネイビー */
}
/* 質問テキスト */
.question-text {
  font-weight: 700;
  font-size: 1rem;
  color: #0A1745;
  line-height: 1.8;
}
/* 回答テキスト */
.answer-text {
  font-weight: 400;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
}
/* 共通テキスト部 */
.qa-body {
  flex: 1;
}
/* 関連するサービス */
/* カード全体レイアウト */
.related-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
}
/* 個別カード */
.service-card {
  flex: 1 1 calc(50% - 1rem);
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
/* 画像 */
.service-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
/* テキスト部分 */
.service-content {
  padding: 1.5rem 1.5rem 2.5rem;
  position: relative;
}
.service-title {
  font-size: 1rem;
  font-weight: bold;
  color: #0A1745;
  margin-bottom: 0.6rem;
}
.service-desc {
  font-size: 0.92rem;
  color: #333;
  line-height: 1.6;
}
/* リンク全体化 */
.service-card a {
  display: block;
  text-decoration: none;
}
/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .related-services {
    flex-direction: column;
    gap: 2rem;
  }
  .service-card {
    flex: 1 1 100%;
  }
  .service-content {
    padding: 1.2rem 1rem 2.2rem;
  }
}
/* CTAエリア*/
.cta-banner.refined {
  background: #ffffff;
  padding: 3.5rem 1.5rem;
  text-align: center;
  color: #222;
  transition: background 0.6s ease;
}
.cta-banner.refined.active {
  background: linear-gradient(135deg, #1a2f52, #0d1b36);
  color: #ffffff;
}
.cta-banner-inner {
  max-width: 960px;
  margin: 0 auto;
}
.cta-banner-heading, .cta-banner-text {
  transition: color 0.4s ease;
}
.cta-banner.refined.active .cta-banner-heading, .cta-banner.refined.active .cta-banner-text {
  color: #ffffff;
}
.cta-banner-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.2rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", 'Noto Serif JP', serif;
}
.cta-banner-text {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2.4rem;
  color: #222;
}
/* ボタン */
/* ▶ 通常：ネイビー背景・白文字 */
.cta-banner-button {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  padding: 1rem 2.5rem;
  background-color: #0A1745;
  border-radius: 4px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 10px rgba(10, 23, 69, 0.1);
}
/* ▶ ホバー：白背景・ネイビー文字＋枠表示 */
.cta-banner-button:hover {
  background-color: #ffffff;
  color: #0A1745;
  border: 2px solid #0A1745;
  box-shadow: 0 8px 24px rgba(10, 23, 69, 0.15);
  transform: translateY(-2px);
  border-image: linear-gradient(45deg, #1E4CA1, #1E2B5C);
  border-image-slice: 1;
}
/* モバイル対応 */
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .cta-banner-heading {
    font-size: 1.5rem;
  }
  .cta-banner-text {
    font-size: 0.95rem;
  }
  .cta-banner-button {
    width: 90%;
    padding: 1rem;
  }
  .sp-only {
    display: inline;
  }
}








/* アニメーション対応 */
/* アニメーション初期状態 */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 表示状態 */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
