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

/*-- 選べる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;
}

/*-- 研修内容 --*/
.contentOptions-contentBlock{
  margin-bottom: 4rem;
}

.contentOptions-contentBlock-text{
  margin-bottom: 2rem;
}

.contentOptions-contentList{
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .contentOptions-contentList{
    flex-direction: column;
  }
}

.contentOptions-contentItem{
  background: #fff;
  border-left: 5px solid #006cb7;
  padding: 16px 20px;
  flex: 1 1 calc(33.333% - 20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 15px;
}

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

.contentOptions-contentItem-tag{
  display: inline-block;
  background-color: #006cb7;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 8px;
}

.contentOptions-contentItem-text{
  font-size: 1.2rem;
}

/*-- 研修期間 --*/
/*-- 勤務形態 --*/
.duration-contentsBlock,
.workStyle-contentsBlock{
  margin-bottom: 2rem;
}

.curriculum-durationTabl{

}

/* テーブルスタイル */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
th{
  border: 1px solid #ddd;
  padding: 6px 6px;
  font-size: 1.2rem;
  text-align: left;
  color: #fff;
}
td {
  border: 1px solid #ddd;
  padding: 6px 6px;
  font-size: 1.2rem;
  text-align: left;
}
thead {
  background-color: #006cb7;
  color: #fff;
}
tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

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

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