/*-- 制度の概要と目的 --*/
.program-hero{
  background-image: url(/img/hero-program.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overview-inner{
  max-width: 800px;
}

.overview-contentsBox{
    text-align: left;
    margin-bottom: 4rem;
}

/*-- 選べる3つの研修要素 --*/
/* 1. グリッドレイアウト */
.curriculum-contentsBox .curriculum-contentsBlock{
  display: grid;
  /* 最小250px、余裕があれば等分 */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; /* カード間の余白 */
  margin: 0;
  padding: 0;
  list-style: none;
}

.curriculum-contentsBox{
  margin-bottom: 4rem;
}

/* 2. カードベース */
.curriculum-contentsCard{
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ホバーで浮き上がり */
.curriculum-contentsCard:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 3. アイコン */
.curriculum-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

/* 背景色は nth-child で例示 */
.curriculum-contentsCard:nth-child(1) .curriculum-icon { background-color: #05ffff60; /* 青系 */ }
.curriculum-contentsCard:nth-child(2) .curriculum-icon { background-color: #00ada460; /* 緑系 */ }
.curriculum-contentsCard:nth-child(3) .curriculum-icon { background-color: #5cb92a60; /* オレンジ系 */ }


/* SVGアイコンは幅・高さ100%で収める */
.curriculum-icon img {
  width: 12rem;
  height: 12rem;
}

/* 4. タイポグラフィ */
.curriculum-item-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.curriculum-item-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: #444;
}

/*-- 応募対象・応募資格 --*/
.eligibility-contentsBox{
  margin-bottom: 4rem;
}

.eligibility-contentsBlock{
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 4rem 4rem;
}

@media (max-width: 768px) {
  .eligibility-contentsBlock{
    padding: 4rem 2rem;
  }
}

.eligibility-contentsBlock li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.eligibility-contentsBlock li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #2a6f5b;
  font-size: 0.7em;
  top: 0.5em;
}


/*--- 募集要項セクション ---*/
.zoom-contentsBox{
  text-align: center;
}

@media (max-width: 768px) {
  .zoom-contentsBox{
  text-align: left;
  }
}