/* resetCSS */

@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: none;
zoom: 1;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
table {
border-collapse: collapse;
font-family: inherit;
}
h1,h2,h3,h4,h5 {
font-size: 100%;
font-weight: normal;
line-height: 1;
}
input,textarea,select {
font-family: inherit;
font-size: 16px;
}
input[type="button"],input[type="text"],input[type="submit"] {
-webkit-appearance: none;
border-radius: 0;
}
textarea {
resize: none;
-webkit-appearance: none;
border-radius: 0;
}
th,td {
border-collapse: collapse;
}
table th,table td {
white-space: nowrap;
}
ul,ol {
list-style-type: none;
}
img {
vertical-align: text-bottom;
vertical-align: -webkit-baseline-middle;
max-width: 100%;
height: auto;
width :auto;
}
*, *::before, *::after { box-sizing: border-box; }

/* 共通CSS */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #212d3d;
}

section {
    position: relative;
    padding: 100px 0;
  }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.section-title .subtitle {
  font-size: 24px;
}
.section-title-bg-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-200%, -50%);
  font-size: 180px;
  opacity: 0.15;
  z-index: -1;
  color: #2589c9;
  pointer-events: none;
}
.section-describe {
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.5;
}
.section-describe span {
  color:#2589c9; 
  font-weight: 600 ;
}  

.sp {
  display: none;
}
.pc {
  display: block;
}
/* =========================
   SP最適化
   ========================= */
   @media (max-width: 600px) {

    /* 全体の余白を詰める */
    section {
      padding: 64px 0; /* PCは100pxなのでSPは詰める */
    }
  
    .container {
      padding: 0 16px;
    }
  
    .section-title {
      font-size: 24px;
      margin-bottom: 18px;
      line-height: 1.4;
    }

    .section-title-bg-icon {
      transform: translate(-50%, -50%);
    }
  
    .section-title .subtitle {
      font-size: 18px;
    }
  
    .section-describe {
      margin-bottom: 1.5rem;
      font-size: 14px;
      line-height: 1.7;
      text-align: start;
    }
  
    /* ヘッダー固定のアンカーずれ対策（JS使ってても効く） */
    section[id] {
      scroll-margin-top: 80px;
    }

    .sp {
      display: block;
    }
    .pc {
      display: none;
    }

  }
/* ---------------------------------
   基本設定
---------------------------------- */
.global-header {
  width: 100%;
  background: #55ace4;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 38px;
}

.is-embedded .global-header { display:none !important; } 

/* ---------------------------------
   PCメニュー
---------------------------------- */

.nav-menu {
  margin-left: auto;
  margin-right: 30px;
}

.nav-menu ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-menu a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.nav-btn {
  background: #ff6668;
  padding: 8px 18px;
  border-radius: 20px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 12px rgb(129 129 129 / 70%);
}

/* ---------------------------------
   ハンバーガー
---------------------------------- */
.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------------------------------
   スマホメニュー（非表示）
---------------------------------- */
.mobile-menu {
  display: none;
  background: #74bfe9;
  padding: 12px 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.mobile-btn {
  display: inline-block;
  margin-top: 10px;
  background: #ffbd6e;
  padding: 10px 16px;
  border-radius: 20px;
}

/* ---------------------------------
   レスポンシブ
---------------------------------- */
@media (max-width: 900px) {

  /* PCナビ非表示 → SP表示 */
  .nav-menu,
  .nav-btn {
    display: none;
  }

  /* ハンバーガー表示 */
  .hamburger {
    display: block;
  }

  /* 開いた時に表示 */
  .mobile-menu.open {
    display: block;
  }
}

/* ---------------------------------
   ハンバーガー開閉アニメ
---------------------------------- */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}



/* ヒーローセクション */
.hero {
  padding: 120px 20px 25px;
  background: #edf8ff;
  font-family: "Noto Sans JP", sans-serif;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-label {
  font-size: 14px;
  font-weight: 600;
  color: #2589c9;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: #2589c9;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.hero-price {
  font-size: 18px;
  margin-bottom: 16px;
}

.hero-price span {
  font-size: 22px;
  font-weight: 600;
}

.hero-btn {
  display: inline-block;
  background: #2589c9;
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgb(0 94 149 / 70%);
  
}

.hero-btn:hover {
  opacity: 0.9;
}

.hero-note {
  font-size: 13px;
  color: #777;
  margin-top: 8px;
}

.hero-visual {
  flex: 1;
}

.hero-fade-carousel {
  width: 100%;
  height: 400px;
  position: relative;
  width: 100%;
  /* max-width: 450px;  */
  aspect-ratio: 4 / 3; 
  overflow: visible;
}

.hero-fade-carousel img {
  object-fit: contain;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-fade-carousel img.active {
  opacity: 1;
}

.hero-bubble {
  position: absolute;
  padding: 12px 18px;
  background: #ff6e6ede;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  white-space: nowrap;
  --arrow: 50%;
}

.hero-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: var(--arrow); 
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ff6e6ede;
}



.hero-cert-logos {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.hero-cert-logos img {
  height: 140px;
  object-fit: contain;
}

.hero small {
  margin-top: 1rem;
  display: block;
  text-align: end;
  color: #777;
}

/* スマホ対応 */
@media (max-width: 820px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-cert-logos img {
      height: 90px;
  }
}

 @media (max-width: 600px) {
 .hero {
  padding: 92px 16px 18px; /* fixed header考慮。現状120pxは大きい */
}

.hero-title {
  font-size: 22px;
}

.hero-desc {
  font-size: 14px;
}

.hero-btn {
  font-size: 18px;
  padding: 12px 16px;
  width: 100%;
  text-align: center;
  border-radius: 10px;
}

.hero-visual {
  margin-top: 35px;
}

.hero-fade-carousel {
  height: 280px;
}

/* 吹き出し：nowrap だとSPで溢れやすいので解除 */
.hero-bubble {
  font-size: 14px;
  white-space: normal;
  max-width: 86vw;
  padding: 10px 12px;
}

.hero-cert-logos {
  gap: 14px;
  flex-wrap: wrap;
}

.hero-cert-logos img {
  height: 92px;
}
}

/* なぜセクション */
/* --------------------------
   Section Layout
---------------------------*/

.why-section {
    background: #152235;
    padding-bottom: 40px;
  }
  
  .why-section .section-title{
    color: #fff;
  }
  
  .why-lead {
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 50px;
  }
  
  /* --------------------------
     Cards
  ---------------------------*/
  
  .why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto 60px;
  }
  
  .why-card {
    background: #f7fbff;
    padding: 28px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2edf5;
  }
  
  .why-card img {
    object-fit: contain;
    width: 100%;
    height: 130px;
    margin-bottom: 10px;
  }
  
  .why-card-text {
    font-size: 16px;
    font-weight: 800;

  }
  .why-card-highlight {
    font-weight: 800;
    color: #2589c9;
  }
  
  @media (max-width: 600px) {
    .why-cards {
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 36px;
    }
    .why-lead {
      text-align: start;
    }
  }
  
  /* --------------------------
     Summary
  ---------------------------*/

  .diagonal-section {
    position: relative;
    background: #f0f8ff; /* ← 三角形以外の背景色（上の部分） */
    padding: 0px 20px 100px;
    z-index: 1;
    overflow: hidden;
  }
  
  /* 下側の三角形 */
  .diagonal-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200px;
    background: #152235; /* ← 三角形の色（別色にできる） */
    clip-path: polygon(50% 100%, 10% 0, 90% 0);
    z-index: -1;
  }
  @media (max-width: 600px) {
    .diagonal-section::after {
      top: -1px;
      clip-path: polygon(50% 100%, -10% 0, 110% 0);
    }
  }
  
  .why-summary {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-size: 28px;
    line-height: 2;
    font-weight: 700;
  }
  
  .why-highlight {
    font-weight: 800;
    color: #55ace4;
  }

  .why-highlight-box {
    display: inline-block;
    color: #2589c9;
    font-weight: 800;
    background-color: #fff;
    padding: 0px 12px;
    line-height: 1.5;
  }
  
  /* --------------------------
     Responsive
  ---------------------------*/
  
  @media (max-width: 1024px) {
    .why-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    
  
    .why-title {
      font-size: 24px;
    }
  
    .why-cards {
      grid-template-columns: 1fr;
    }
  
    .sp {
      display: block;
    }
    .why-summary {
      font-size: 20px;
      line-height: 1.3;
    }

  }

  /* 特徴セクション */

.features-section {
    background-color: aliceblue;
  }
  
  .features-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 28px;
    font-weight: 800;
  }
  .features-title span {
    display: block;
    font-size: 16px;
    color: #555;
    margin-top: 6px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
  }
  .feature-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  @media (max-width: 600px) {
    .feature-item:nth-child(even) {
      flex-direction: column;
    }
  }    
  .feature-text {
    flex: 1;
    background: #d5ebf9;
    padding: 30px 30px 30px 75px;
    border-radius: 12px;
    border: 1px solid #d7e8f2;
    position: relative;
  }
  @media (max-width: 600px) {
  .feature-text {
  padding: 20px 20px 20px 50px;
  }
  }
  
  .point-label {
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translate(-50%, -50%);
    background: #55ace4;
    color: #fff;
    border-radius: 0 8px 8px 0;
    font-weight: 700;
    font-size: 1.5rem;
    width: 60px;
    height: 70px;
    text-align: center;
    line-height: 85px;
  }
  .point-label::before {
    content: "POINT";
    position: absolute;
    top: -18px;
    left: 8px;
    font-size: 11px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
  }
  
  .feature-heading {
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1.5;
    font-weight: 800;
  }
  
  .certification-list {
    list-style: none;
    padding: 0;
    margin: 12px 12px 18px;
  }
  .certification-list li {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .certification-list i {
    color: #2589c9;
  }
  .certification-list p {
    margin-left: -8px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .certification-list a {
    text-decoration: none;
    color: #2589c9;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 12px 12px 18px;
  }
  .feature-list li {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .feature-list i {
    color: #2589c9;
  }

  .feature-note {
    color: #2589c9;
    font-weight: 800;
    margin-top: 10px;
  }
  
  .feature-image {
    flex: 1;
  }
  .feature-image img {
    width: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    object-fit: contain;
  }

  .feature-image video {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }
  
  @media (max-width: 900px) {

    .feature-item {
      flex-direction: column;
      gap: 16px;
    }
  
    .feature-image video,
    .feature-image img {
      width: 100%;
      height: auto;
    }
  }

  .fade-carousel {
    position: relative;
    width: 100%;
    max-width: 450px; /* 任意 */
  }
  
  .fade-carousel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 370px;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
  }
  
  .fade-carousel img.active {
    opacity: 1;
    position: relative; /* 高さ確保 */
  }


  

  .small-title {
    color: #2589c9;
    font-size: 20px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 800;
  }
  
  .main-title {
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
  }

  @media (max-width: 600px) {
    .small-title {
      font-size: 16px;
    }
    
    .main-title {
      font-size: 20px;
    }
  }
  
  
  /* ================================
     左の縦ラベル
  ================================ */
  .left-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    background: #55ace4;
    color: #fff;
    padding: 10px 26px;
    border-radius: 0 0 6px 6px;
    letter-spacing: 1px;
  }
  @media (max-width: 600px) {
    .left-label {
    display: none; /* SPで邪魔なら消す */
  } 
}
  
  
  /* ================================
     資格カバー
  ================================ */
  .global-credentials ,
  .study-supports
  {
    background: #d5ebf9;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    margin-top: 50px;
    border: 1px solid #d7e8f2;
  }
  
  .credentials-inner {
    width: 100%;
    margin: auto;
  }
  
  .credential-cards {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  
  .cred-card {
    width: 260px;
    text-align: center;
    display: flex;
    flex-direction: column;
  }


  
  /* ===== 各ブロックを縦方向で高さ揃え ===== */
  .block {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* ▼高さを揃える3ブロック ▼ */
  .circle-block { height: 120px; }
  .list-block   { height: 85px; }
  .bottom-block { height: 60px; }
  
  
  /* --- 丸アイコン --- */
  .cred-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
  }
  .cred-circle img {
    width: 100%;
  }

  .cred-descbox {
    border-radius: 12px;
    background-color: #fff;

  }
  /* --- リスト --- */
  .cred-list {
    width: 120px;
    text-align: left;
    margin: 0 auto;
    padding: 0;
  }
  .cred-list li {
    list-style: none;
    font-size: 15px;
  }
  .cred-list i { margin-right: 6px; }
  
  /* --- 説明文・バッジ --- */
  .cred-desc {
    font-size: 14px;
  }
  
  .cred-badge {
    background: #212d3d;
    color: #fff;
    padding: 6px 12px;
    border-radius: 32px;
    font-size: 12px;
    display: inline-block;
    width: 120px;
    margin: auto;
  }


  @media (max-width: 600px) { 
    .global-credentials ,
    .study-supports {
      padding: 20px;
     }

    .credential-cards {
      flex-direction: column;
      gap: 16px;
      align-items: stretch;
    }
  
    .cred-card {
      width: 100%;
      max-width: 520px;
      margin: 0 auto;
      flex-direction: row;
    } 
    .cred-circle img {
      width: 80%;
    }
    .list-block {
      width: 180px;
    }
    .circle-block {
      margin: auto;
    }
  }
  
  /* ================================
     7つのサポート
  ================================ */
 
  .supports-grid {
    margin-top: 40px;
    width: 80%;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .support-item {
    text-align: center;
  }
  
  .support-icon-circle {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .support-icon-circle i {
    font-size: 48px;
    color: #2589c9;
  }
  
  .support-item p {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
  }

  /* スマホ（最大768px）：3カラム */
@media (max-width: 768px) {
    .supports-grid {
      grid-template-columns: repeat(3, 1fr);
      width: 95%;
      gap: 16px;
    }
    .support-icon-circle {
      width: 70px;
    height: 70px;
    }
  }

    /* ================================
     価値とは？
  ================================ */

  .value-section {
    background: #ffffff;
    padding-bottom: 0;
  }
  

  
  /* ---------- タイトルエリア（中央揃え） ---------- */
  .hr-title-wrapper {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
  }
  

  
  /* ---------- 本文 & 画像の2カラム ---------- */
  .hr-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 85%;
    margin: 0 auto;
  }
  
  .hr-text-block {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    width: 150px;
  }
  
  .hr-text-block p {
    margin-bottom: 8px;
  }
  
  .joblist {

    color: #2589c9;
    font-weight: 500;
    margin-right: 6px;
  }
  
  .hr-img-block img {
    width: 280px;
    max-width: 100%;
  }
  
  
  /* ---------- レスポンシブ ---------- */
  @media (max-width: 768px) {
    .hr-title {
      font-size: 26px;
    }
    
    .hr-subtitle {
      font-size: 16px;
    }
  
    .hr-title-bg-icon {
      width: 150px;
    }
  
    .hr-content-wrapper {
      flex-direction: column;
      align-items: center;
      text-align: left;
    }
  
    .hr-img-block {
      text-align: center;
      margin-top: 20px;
    }
    .hr-text-block {
      width: 100%;
    }
  }
  
  /* 全体カード */
.merit-card {
    background: #f0f8ff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #d7e8f2;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .merit-inner {
    width: 100%;
  }
  
  /* ---------- タイトル行 ---------- */
  .merit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .merit-icon {
    width: 80px;
    height: auto;
  }
  
  .merit-title {
    font-size: 28px;
    font-weight: 800;
    color: #2589c9;
  }
  
  /* ---------- メイン3カラム ---------- */
  .merit-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .merit-block {
    text-align: left;
  }
  
  .merit-caption {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }
 
  .merit-caption span {
    font-size: 12px;
    color: #777;
  }
  
  .merit-img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    margin-bottom: 12px;
  }
  
  .merit-note {
    font-size: 14px;
    line-height: 1.6;
  }
  .merit-note i {
    color:  #747474;
    margin-right: 6px;
  }
  
  /* ---------- レスポンシブ ---------- */
  @media (max-width: 900px) {
    .merit-card {
      padding: 18px;
      margin: 22px auto;
    }
  
    .merit-header {
      gap: 8px;
      margin-bottom: 16px;
    }
  
    .merit-icon {
      width: 52px;
    }
  
    .merit-title {
      font-size: 20px;
    }
  
    .merit-content {
      grid-template-columns: 1fr; /* 3→1 */
      gap: 16px;
    }

    .merit-block {
        border-bottom: solid 1px #d7e8f2;
        padding-bottom: 15px;
    }
    .merit-block:last-child {
      border-bottom: none;
    }
  
    .merit-img {
      height: 180px;
    }
    .salary14-15-img {
      height: 100px !important;
    }
  }


  /* ③の特殊レイアウト */
.merit-3-layout {
    grid-template-columns: 1fr 1fr;
  }
  
  /* チェックリスト */
  .merit-checklist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
  }
  
  .merit-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 6px;
    font-size: 14px;
  }
  
  .merit-checklist li::before {
    font-family: "Font Awesome 5 Free"; /* これ必須!! */
    font-weight: 900; /* solid を使うなら 900 */
    content: "\f14a"; /* ← チェック入り四角 */
    color: #f2a85a;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 1;
  }

  .merit-3-layout .merit-caption {
    margin-bottom: 18px;
  }
  .merit-3-layout .merit-note {
    margin-top: 30px;
  }
  .merit-3-layout .merit-checklist {
    margin-top: 20px;
  }
  
  .merit-baloon {
    position: relative;
    background: #ffd8a8; /* 好きな色に変更OK */
    padding: 12px 16px;
    text-align: center;
    border-radius: 8px;
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* 上の三角 */
  .merit-baloon::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffd8a8; /* 吹き出し本体と同じ色 */
  }
    
  /* ④の特殊レイアウト（2カラム） */
  .merit-4-layout {
    grid-template-columns: 1fr 1fr;
  }
  
  /* スマホ対応 */
  @media (max-width: 900px) {
    /* 2列固定っぽい所があれば1列へ（念のため） */
    .merit-3-layout,
    .merit-4-layout {
      grid-template-columns: 1fr !important;
    }
  }
  .source-ref {
    color: #777;
  }
  .sources-block {
    margin-top: 12px;
    font-size: 11px;
    color: #5b6b7a;
    line-height: 1.6;
  }
  .sources-title {
    font-weight: 700;
    margin-bottom: 6px;
  }
  .sources-list {
    padding-left: 18px;
  }
  .sources-list a {
    color: inherit;
    text-decoration: underline;
  }
  

  
/* 資格説明 */
  /* -------------- 共通 -------------- */

.credential-section {
  /* padding-top: 50px; */
  }
  .credential-section  .section-title-bg-icon {
    transform: translate(-50%, -50%);
  }
  /* 見出し部分 */
  .credential-heading {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
  }
  
  .credential-heading-icon {
    width: 110px;
    opacity: 0.15;
    display: block;
    margin: 0 auto -20px auto;
  }
  
  .credential-heading h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1b3c73;
  }
  
  /* -------------- SHRM カード -------------- */
  
  .credential-card {
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    margin-top: 70px;
  }
  
  /* 上段レイアウト */
  .credential-card-top {
    display: grid;
    grid-template-columns: 260px 1fr;
    align-items: center;
    padding: 40px;
    gap: 20px;
  }

  .shrm .credential-card-top {background: linear-gradient(90deg, #D4EAF7 0%, #F1F6FA 100%);}
  .hrci .credential-card-top {background: linear-gradient(90deg, #E9E0F1 0%, #FAEBF0 100%);}
  .atd .credential-card-top {background: linear-gradient(90deg, #D9FEED 0%, #EBF5E2 70%);}

  .shrm a, .shrm i {color: #2589c9; text-decoration: none;}
  .hrci a, .hrci i {color: #bf00a6; text-decoration: none;}
  .atd a, .atd i {color: #74c837; text-decoration: none;}


  /* ロゴ */
  .credential-logo {
    text-align: center;
  }
  
  .credential-logo img {
    width: 150px;
  }
  /* テキスト */
  .credential-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
  }
  
  .credential-title span {
    font-size: 16px;
    font-weight: 500;
 
  }
  
  .credential-description p {
    line-height: 1.7;

  }
  

  
  /* -------------- 下段：2カラム -------------- */

  
  .credential-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 40px;
    gap: 30px;
  }
  
  .credential-box {
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    padding: 0 30px 30px 0;
  }
  
  /* --- 多段ば対応：最終行だけ border-bottom を消す --- */
  .credential-box:last-child,
  .credential-box:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
    padding-bottom: 0px;
  }
  
  /* --- 行末（右端）の border-right を消す --- */
  .credential-box:nth-child(2n) {
    border-right: none;
  }
  
  
  /* 小見出し */
  .credential-subtitle {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
  }
  
  .credential-subtitle span {
    font-size: 14px;
    color: #555;
  }

  .credential-col {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  
  .credential-box i {
    font-weight: 800;
    margin-top: 5px;
    font-size: 22px;
  }

  .credential-lead {
    margin-bottom: 14px;

  }
  
  /* 特徴リスト */

  .credential-features {
    margin: 0 0 16px 0;
    padding-left: 50px;
  }
  
  .credential-features li {
    margin-bottom: 3px;
    list-style: square;
  }
  
  
  .credential-col:last-child span {
    margin-top: 5px;
    font-weight: 700;
  }

  /* -------------- レスポンシブ -------------- */
  
  @media (max-width: 900px) {
    .credential-card-top {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 10px;
    }
  
    .credential-logo img {
      margin: 0 auto;
      width: 100px;
    }
  
    .credential-bottom {
      grid-template-columns: 1fr;
      padding: 30px 20px;
    }
  
    .credential-box {
      border-right: none;
      padding-right: 0;
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 20px;
    }

    .credential-box:last-child,
    .credential-box:nth-last-child(2):nth-child(odd) {
      border-bottom: solid 1px #e0e0e0;
      padding-bottom: 20px;
    }
    .credential-bottom .credential-box:last-child {
      border-bottom: none;
    }

    .credential-description p {
      text-align: start;
  
    }
  }

  /* 料金 */
  /* -----------------------------------
   Hero Section 背景
----------------------------------- */
.pricing-hero {
  background: linear-gradient(21.27deg, #9AD8FF 11.21%, #289EE9 78.77%);
    text-align: center;
    color: white;
  }
  
  .pricing-hero-inner {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .pricing-hero-icon {
    width: 120px;
    opacity: 0.25;
    margin-bottom: 20px;
  }
  
  .pricing-hero-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
  }
  
  .pricing-hero-subtitle {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
  }
  
 

  
  /* -----------------------------------
     Steps
  ----------------------------------- */
  .learning-steps {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  
  .step-item {
    background: white;
    color: #2589c9;
    padding: 10px 0px 10px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 220px;
    height: 45px;
    line-height: 45px
  }
  
  .step-item i {
    display: inline-block;
    font-size: 24px;
    margin-top: 5px;
  }

  .step-item span {
    font-size: 20px;
    font-weight: 600;

  }
  
  
  .step-arrow {
    font-size: 20px;
    font-weight: 800;
    color: white;
  }
  
  /* スマホの時は縦並び */
  @media (max-width: 600px) {
    .learning-steps {
      flex-direction: column;
      gap: 0px;
    }
    .step-arrow {
      transform: rotate(90deg);
    }
  }
  
  /* -----------------------------------
     Price Card
  ----------------------------------- */
  
  .price-card {
    color: #212d3d;
    max-width: 600px;
    margin: 50px auto 0;
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    text-align: center;
  }
  
  .price-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .price-title i {
    color: #55ace4;
  }
  
  .price-lead {
    font-size: 20px;
    margin: 20px 0 40px;
  }
  
  .price-row {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 3px;
  }
  
  .price-label {
    background: #e6f3ff;
    color: #0072c6;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    margin-right: 12px;
  }
  
  .price-amount {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #2589c9;
  }
  
  .price-yen {
    font-size: 24px;
    font-weight: 600;
    color: #2589c9;
  }
  
  .price-month {
    font-size: 16px;
    color: #666;
    font-weight: 400;
  }
  
  .trial-text {
    font-size: 20px;
    font-weight: 600;
    color: #2589c9;
    margin: 15px 0 15px;
  }

  .price-benefits {
    margin: 50px auto 30px;
    width: 250px;
    text-align: start;
    list-style: none;
    padding: 0;
    font-size: 20px;
  }
  
  .price-benefits i {
    color: #55ace4;
    margin-right: 12px;
  }
  
  .cta-btn {
    display: inline-block;
    background: #ff6668;
    padding: 14px 40px;
    border-radius: 36px;
    color: white;
    font-size: 32px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgb(255 90 92);
  }
  
  .cta-btn:hover {
    opacity: 0.85;
  }
  
  .cta-note {
    font-size: 14px;
    color: #666;
  }

   /* ===== Price（#price）SP最適化 ===== */
@media (max-width: 600px) {

  /* セクション全体（背景＋余白） */
  .pricing-hero {
    padding-top: 72px; /* fixed headerぶん少し余裕 */
  }

  /* カードを詰めて読みやすく */
  .price-card {
    margin: 26px auto 0;
    padding: 22px 16px;
    border-radius: 14px;
  }

  .price-title {
    font-size: 24px;
  }

  .price-lead {
    font-size: 16px;
    margin: 14px 0 18px;
    line-height: 1.5;
  }

  /* 金額行：詰める＆折り返し対応 */
  .price-row {
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .price-label {
    font-size: 12px;
    padding: 3px 8px;
    margin-right: 8px;
  }

  .price-amount {
    font-size: 36px;
    line-height: 1.1;
  }

  .price-yen {
    font-size: 18px;
  }

  .price-month {
    font-size: 13px;
  }

  .trial-text {
    font-size: 16px;
    margin: 12px 0;
  }

  /* 箇条書き：幅固定をやめて、文字を小さく */
  .price-benefits {
    width: 50%;
    max-width: 320px;
    margin: 18px auto 18px;
    font-size: 14px;
  }

  .price-benefits i {
    margin-right: 8px;
  }

  /* CTA：押しやすく、1行に収める */
  .cta-btn {
    width: 100%;
    max-width: 340px;
    padding: 14px 18px;
    font-size: 18px;
    border-radius: 28px;
    box-sizing: border-box;
  }

  .cta-note {
    font-size: 12px;
    line-height: 1.6;
  }
}
  

 /* =========================
   help-section 3カード化
   ========================= */

/* 3枚を横並びにするラッパー */
.help-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* 各カード（縦積み） */
.help-card{
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px;
  border: 1px solid #dbeaf6;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-sizing: border-box;
}

.help-card-head{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.help-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e8f5ff;
  color: #0f7ec7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  font-size: 20px;
}

.help-text h3{
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 6px;
}

.help-text p{
  font-size: 13px;
  line-height: 1.6;
  color: #4b5a6a;
}

.help-illust{
  margin: 10px 0 14px;
  display: flex;
  justify-content: center;
}

.help-illust img{
  width: 100%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
}

.help-links{
  margin-top: 6px;
  display: grid;
  gap: 6px;
}

.help-links a{
  font-size: 12px;
  line-height: 1.5;
  color: #ff8a00;
  text-decoration: underline;
}

/* ボタン（カード下に寄せる） */
.help-btn{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;

  background: #f6b15a;
  color: #fff;

  box-sizing: border-box;
  max-width: 100%;
}

.help-btn.outline{
  background: transparent;
  color: #ff8a00;
  border: 2px solid #f6b15a;
  box-sizing: border-box;
  max-width: 100%;
}


/* =========================
   SP（1列 or 2列）
   ========================= */
@media (max-width: 900px){
  .help-cards{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px){
  .help-card{
    padding: 18px 16px;
    border-radius: 16px;
  }

  .help-text h3{
    font-size: 17px;
  }

  .help-illust img{
    max-width: 240px;
  }
}


  /* QA */
  /* セクション全体 */
.faq-section {
    background: #fff;
  }
  
  .faq-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 40px;
  }
  
  /* Q&Aリスト全体 */
  .faq-list {
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* 個々のQ&Aカード */
  .faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 20px;
    border: solid 1px #c1daeb;
  }

  
  /* 質問ボタン */
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 800;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 0;
    color: #212d3d;
  }
  
  /* Qアイコン */
  .faq-q-icon {
    background: #55ace4;
    color: #fff;
    font-weight: 800;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
/* ▼アイコン回転 */
.faq-toggle {
  margin-left: auto;
  color: #55ace4;
  transition: transform 0.3s ease;
}
  
.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}
/* 回答ラッパー（高さ制御専用） */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
    display: flex;
  align-items: flex-start; 
}


/* 開いた状態 */
.faq-item.open .faq-answer {
  max-height: 800px; /* 念のため大きめ */
  opacity: 1;
  transform: translateY(0);
  margin-top: 1rem;
}

  
  .faq-answer p {
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.7;
  }
  
  /* Aアイコン */
  .faq-a-icon {
    background: #a7d3ff;
    color: #fff;
    font-weight: 800;
    min-width: 32px;
    height: 32px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  
  /* スマホ対応 */
  @media (max-width: 600px) {

    .faq-answer {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
  
    .faq-a-icon {
      flex: 0 0 32px;
      margin-right: 0;
    }
  
    .faq-answer > div {
      flex: 1;
      min-width: 0;
    }
  }

  /* 問い合わせ */
  /* 背景の水色セクション */
.contact-section {
    background: #cfefff; /* スクショと同じ薄いブルー */
  }
  
  /* 中央寄せの白カードではなく、そのまま直入れタイプ */
  .contact-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* 上の小見出し */
  .contact-label-top {
    text-align: center;
    font-size: 20px;
    color: #2589c9;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  /* 大見出し */
  .contact-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  /* 下の説明文 */
  .contact-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
  }
  
  /* フォームを包む枠（Mautic JSがここに入る） */
  .contact-form-wrapper {
    padding: 32px 24px;
    text-align: left; /* フォーム内は左揃え */
  }
  
  .mauticform-button-wrapper .mauticform-button{
    display: inline-block;
    background: #ff6668;
    padding: 14px 40px;
    border-radius: 36px;
    color: white;
    font-size: 18px !important;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 12px rgb(255 90 92);
  }
  #mauticform_wenhesezigeduice_submit {
    text-align: center;
  }


  /* レスポンシブ */
  @media (max-width: 600px) {
    .contact-title {
      font-size: 22px;
    }
    .contact-form-wrapper {
      padding: 24px 16px;
    }
  }

  /* フッター */
  .footer-section {
    padding: 60px 30px;
    background: #212d3d; 
    text-align: center;
    color: #d8e6ee;
  }
  
  .footer-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
  }
  
  .footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #b7ccd7;
  }
  
  .footer-link {
    display: inline-block;
    font-size: 14px;
    color: #b7ccd7;
    margin-bottom: 32px;
    text-decoration: none;
  }
  
  .footer-link:hover {
    text-decoration: underline;
  }
  
  .footer-copy {
    font-size: 12px;
    color: #9ab3bf;
    margin-top: 20px;
  }
  .footer-copy-desc {
    border-top: 0.5px solid gray;
    padding-top: 0.5px; /* 必要に応じて線とテキストの間にスペースを追加 */  
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #9ab3bf;
    margin-top: 20px;
  }
  
  
  