/* ============================================
   コンテンツページ専用のスタイル
   ============================================ */

/* ============================================
   タイトル背景
   ============================================ */
.title-bg {
  position: relative;
  height: 159.28px;
  width: 101%;
  margin-bottom: -159.28px;
  margin-top: -159.28px;
  clip-path: polygon(0 109px, 100% 0, 100% 50px, 0 100%);
  z-index: 11;
}

.title-bg--yellow {
  background-color: var(--boat-yellow);
}

.title-bg--green {
  background-color: var(--boat-green);
}

.title-bg--red {
  background-color: var(--boat-red);
}

/* 斜めストライプパターン（TOPの.what-section::before参考） */
.title-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 9px,
    rgba(255, 255, 255, 0.3) 9px,
    rgba(255, 255, 255, 0.3) 10px
  );
  clip-path: polygon(0 109px, 100% 0, 100% 50px, 0 100%);
  pointer-events: none;
  z-index: 1;
}

.title-bg__pattern {
  position: absolute;
  inset: 0;
  clip-path: polygon(0 109px, 100% 0, 100% 50px, 0 100%);
  z-index: 2;
}

/* ============================================
   ページコンテンツ
   ============================================ */
.page-contents {
  padding: 40px 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ============================================
   コンテンツセクション
   ============================================ */
.content-section {
  position: relative;
  width: 100%;
}

.content-section__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.content-section__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.content-section__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-section__text {
  font-weight: 400;
  font-size: 14.024778366088867px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--boat-text);
}

.content-section__icon-background {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   待遇・サポートページのアイコン位置
   ============================================ */
.page-finance .content-section:nth-child(1) .content-section__icon-background {
  right: -50px;
  top: -40px;
  width: 200px;
  height: 175px;
}

.page-finance .content-section:nth-child(2) .content-section__icon-background {
  left: -125px;
  top: -40px;
  width: 200px;
  height: 175px;
}

.page-finance .content-section:nth-child(3) .content-section__icon-background {
  right: -50px;
  top: -20px;
  width: 200px;
  height: 175px;
}

.page-finance .content-section:nth-child(4) .content-section__icon-background {
  left: -34.65px;
  top: -4.04px;
  width: 200px;
  height: 168px;
}

/* ============================================
   仕事の特徴ページのアイコン位置
   ============================================ */
.page-fulfilling .content-section:nth-child(1) .content-section__icon-background {
  right: -50px;
  top: -40px;
  width: 200px;
  height: 175px;
}

.page-fulfilling .content-section:nth-child(2) .content-section__icon-background {
  left: -90px;
  top: -20px;
  width: 206px;
  height: 175px;
}

.page-fulfilling .content-section:nth-child(3) .content-section__icon-background {
  right: -70px;
  top: 0px;
  width: 200px;
  height: 175px;
}

.page-fulfilling .content-section:nth-child(4) .content-section__icon-background {
  left: -60px;
  top: -30px;
  width: 200px;
  height: 175px;
}

.page-fulfilling .content-section:nth-child(5) .content-section__icon-background {
  right: -60px;
  top: -10px;
  width: 200px;
  height: 180px;
}

/* ============================================
   ワークライフバランスページのアイコン位置
   ============================================ */
.page-worklife .content-section:nth-child(1) .content-section__icon-background {
  right: -50px;
  top: -40px;
  width: 200px;
  height: 175px;
}

.page-worklife .content-section:nth-child(2) .content-section__icon-background {
  left: -81px;
  top: -20px;
  width: 200px;
  height: 175px;
}

.page-worklife .content-section:nth-child(3) .content-section__icon-background {
  right: -70px;
  top: -20px;
  width: 200px;
  height: 175px;
}

.page-worklife .content-section:nth-child(4) .content-section__icon-background {
  left: -70.52px;
  top: -14.04px;
  width: 177.08px;
  height: 170px;
}

.page-worklife .content-section:nth-child(5) .content-section__icon-background {
  right: -70px;
  top: -20px;
  width: 200px;
  height: 175px;
}

.content-section__image {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.content-section__image img {
  width: 100%;
  object-position: center;
}

/* ============================================
   ヘッディングバー
   ============================================ */
.heading-with-bar {
  position: relative;
  padding: 12px 0 0 11.9px;
}

.heading-with-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 0;
  width: 2.9px;
  background-color: var(--boat-green);
}

.heading-with-bar--yellow::before {
  background-color: var(--boat-yellow);
}

.heading-with-bar--red::before {
  background-color: var(--boat-red);
}

.heading-with-bar__bar {
  display: none;
}

.heading-with-bar__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--boat-text);
}

/* ============================================
   動画カード
   ============================================ */
.video-card {
  background-color: var(--boat-yellow);
  padding: 16px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-card__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--boat-text);
  margin: 0;
}

.video-card__player {
  position: relative;
  width: 100%;
  height: 174px;
  padding-bottom: 49%;
  background-color: #ECECEC;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.8px;
  overflow: hidden;
}

.video-card__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 9px 20px;
  background-color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: var(--boat-text);
}

.video-card__link img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================
   比較表
   ============================================ */
.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-table__item {
  border: 1.5px solid #DEDEDE;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--white);
}

.comparison-table__item--active {
  border-color: var(--boat-green);
}

.comparison-table__header {
  background-color: var(--boat-green);
  padding: 8px 16px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: var(--boat-text);
}

.comparison-table__header--gray {
  background-color: #ECECEC;
  font-weight: 500;
  font-size: 13px;
}

.comparison-table__body {
  background-color: var(--white);
  padding: 16px 12px 18px;
}

.comparison-table__row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 4px;
}

.comparison-table__age-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.comparison-table__divider {
  width: 1px;
  height: 52px;
  background-color: #DEDEDE;
  flex-shrink: 0;
}

.comparison-table__label {
  font-weight: 500;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  color: var(--boat-text);
  white-space: nowrap;
}

.comparison-table__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  min-height: 32px;
}

.comparison-table__num {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--boat-darkblue);
}

.comparison-table__num--gray {
  font-weight: 500;
  font-size: 28px;
  color: #666666;
}

.comparison-table__unit {
  font-weight: 500;
  font-size: 11px;
  line-height: 1.4;
  color: var(--boat-text);
}

.comparison-table__free {
  font-weight: 900;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--boat-darkblue);
  text-align: center;
  padding: 8px 0;
}

.comparison-table__equipment {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--boat-text);
  text-align: left;
  padding: 4px 8px;
}

.comparison-table__note {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #999999;
  margin-top: 8px;
  text-align: center;
}

/* 比較表（経済面用） */
.finance-table .comparison-table__item--active {
  border-color: var(--boat-green);
  border-width: 2px;
}

.finance-table .comparison-table__header {
  background-color: var(--boat-green);
}

/* ============================================
   用意するものリスト
   ============================================ */
.equipment-list {
  border: 1px solid var(--boat-green);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
}

.equipment-list__header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 22px;
  background-color: var(--boat-green);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.448;
  color: var(--boat-text);
}

.equipment-list__body {
  padding: 14px 12px 16px;
}

.equipment-list__items {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--boat-text);
}

.equipment-list__items li {
  position: relative;
  padding-left: 1em;
}

.equipment-list__items li::before {
  content: '・';
  position: absolute;
  left: 0;
}

.equipment-image {
  width: 100%;
  height: 180px;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 20px;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================
   用意するもの（新デザイン）
   ============================================ */
.equipment-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.equipment-new__supplied {
  border: 1px solid var(--boat-green);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
  width: 100%;
}

.equipment-new__supplied-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 22px;
  background-color: var(--boat-green);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16.03px;
  line-height: 1.2;
  color: var(--boat-text);
}

.equipment-new__supplied-body {
  padding: 20px 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.equipment-new__supplied-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.equipment-new__supplied-item {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--boat-text);
  margin: 0;
}

.equipment-new__supplied-free {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 8px;
  height: 33px;
}

.equipment-new__supplied-free-arrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--boat-text);
}

.equipment-new__supplied-free-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: var(--boat-darkblue);
}

.equipment-new__supplied-free-mark {
  font-family: 'DIN 2014', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.7;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--boat-darkblue);
}

.equipment-new__self {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.equipment-new__self-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--boat-text);
  margin: 0;
}

.equipment-new__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.equipment-new__items-row {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  width: 100%;
}

.equipment-new__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: calc((100% - 8px) / 3);
  flex-shrink: 0;
}

.equipment-new__item-image {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: transparent;
}

.equipment-new__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-new__item-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--boat-text);
  margin: 0;
}

.equipment-new__item-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--boat-text);
  margin: 0;
}

.equipment-new__bottom-image {
  width: 100%;
  height: 180px;
  border-radius: 4px;
  overflow: hidden;
}

.equipment-new__bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   学費比較表
   ============================================ */
.tuition-comparison {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.tuition-comparison__item {
  display: flex;
  flex-direction: column;
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
}

.tuition-comparison__item--free {
  border-color: var(--boat-green);
  border-width: 1px;
}

.tuition-comparison__header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 22px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  color: var(--boat-text);
  background-color: #DEDEDE;
}

.tuition-comparison__header--green {
  background-color: var(--boat-green);
  font-weight: 700;
  font-size: 16px;
  padding: 6px 22px;
}

.tuition-comparison__body {
  display: flex;
  gap: 8px;
  padding: 8px 48px 12px;
}

.tuition-comparison__body--highschool {
  justify-content: center;
  align-items: stretch;
}

.tuition-comparison__body--university {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 12px;
}

.tuition-comparison__body--free {
  justify-content: center;
  align-items: center;
  padding: 14px 12px 16px;
}

.tuition-comparison__row {
  display: flex;
  align-items: center;
  gap: 37px;
}

.tuition-comparison__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tuition-comparison__group--fixed {
  width: 72px;
  flex-shrink: 0;
}

.tuition-comparison__group--fill {
  flex: 1;
  min-width: 0;
}

.tuition-comparison__group--wide {
  width: 290px;
  height: 44px;
}

.tuition-comparison__label {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  color: #000000;
  width: 72px;
}

.tuition-comparison__value {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  width: 71px;
  height: 22px;
}

.tuition-comparison__group--wide .tuition-comparison__value {
  width: auto;
}

.tuition-comparison__number {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: var(--boat-text);
}

.tuition-comparison__unit {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: #000000;
}

.tuition-comparison__divider {
  background-color: transparent;
  flex-shrink: 0;
}

.tuition-comparison__divider--highschool {
  width: 0.5px;
  background-color: #C2C2C2;
  align-self: stretch;
}

.tuition-comparison__divider--vertical {
  width: 0px;
  height: 44px;
  border-left: 0.5px solid #C2C2C2;
}

.tuition-comparison__divider--horizontal {
  width: 100%;
  height: 0.5px;
  background-color: #C2C2C2;
}

.tuition-comparison__free {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 36px;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.23em;
  color: var(--boat-darkblue);
}

.tuition-comparison__free-italic {
  font-style: italic;
  letter-spacing: 0;
}

/* ============================================
   キャリア比較表（横並び3列）
   ============================================ */
.career-comparison {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.career-comparison__tables {
  display: flex;
  gap: 4px;
  width: 100%;
}

.career-comparison__table {
  flex: 1;
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}

.career-comparison__table--boat {
  border-color: var(--boat-yellow);
  min-width: 108px;
}

.career-comparison__table--general {
  border-color: #DEDEDE;
  min-width: 98px;
}

.career-comparison__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  height: 84px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--boat-text);
}

.career-comparison__table--boat .career-comparison__header {
  background-color: var(--boat-yellow);
}

.career-comparison__table--general .career-comparison__header {
  background-color: #DEDEDE;
  font-weight: 500;
  font-size: 14px;
}

.career-comparison__icon {
  width: 50px;
  height: 50px;
}

.career-comparison__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 8px 20px;
  flex: 1;
}

.career-comparison__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.career-comparison__label {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  color: #000000;
}

.career-comparison__value {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
}

.career-comparison__number {
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 0.6;
  color: var(--boat-darkblue);
}

.career-comparison__number--gray {
  font-weight: 400;
  font-size: 32px;
  color: var(--boat-text);
}

.career-comparison__note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #000000;
  margin-top: 4px;
}

.career-comparison__unit {
  font-weight: 500;
  font-size: 16px;
  line-height: 0.7;
  color: #000000;
}

.career-comparison__divider {
  width: 100%;
  height: 0.5px;
  background-color: #C2C2C2;
}

/* ============================================
   趣味コラージュ
   ============================================ */
.hobby-collage {
  width: 100%;
}

.hobby-collage img {
  width: 100%;
  height: auto;
}

/* ============================================
   好きな場所の画像
   ============================================ */
.location-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  margin-top: 20px;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   人生チャートカード
   ============================================ */
.life-chart-card {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background-color: var(--boat-red);
  border-radius: 4px;
  margin-top: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.life-chart-card:hover {
  opacity: 0.9;
}

.life-chart-card__image {
  width: 100px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.life-chart-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-chart-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex: 1;
}

.life-chart-card__text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
}

.life-chart-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  text-decoration: none;
}

/* ============================================
   年収比較表（横並び2列）
   ============================================ */
.salary-comparison {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.salary-comparison__tables {
  display: flex;
  gap: 4px;
  width: 100%;
}

.salary-comparison__table {
  flex: 1;
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}

.salary-comparison__table--boat {
  border-color: var(--boat-green);
}

.salary-comparison__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  height: 84px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--boat-text);
}

.salary-comparison__table--boat .salary-comparison__header {
  background-color: var(--boat-green);
}

.salary-comparison__table--general .salary-comparison__header {
  background-color: #DEDEDE;
  font-weight: 500;
  font-size: 14px;
}

.salary-comparison__icon {
  width: 50px;
  height: 50px;
}

.salary-comparison__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 8px 20px;
  flex: 1;
}

.salary-comparison__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 48px;
}

.salary-comparison__label {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  color: #000000;
  width: 84px;
}

.salary-comparison__table--general .salary-comparison__label {
  width: 72px;
}

.salary-comparison__value {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 22px;
}

.salary-comparison__number {
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.276;
  color: var(--boat-darkblue);
}

.salary-comparison__number--gray {
  font-weight: 400;
  font-size: 28px;
  color: var(--boat-text);
}

.salary-comparison__unit {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  color: #000000;
}

.salary-comparison__divider {
  width: 100%;
  height: 0.5px;
  background-color: #C2C2C2;
}

.salary-comparison__note {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #000000;
  margin: 0;
}

/* ============================================
   カレンダー
   ============================================ */
.calendar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calendar {
  border: 1px solid var(--boat-red);
  border-radius: 4px;
  overflow: hidden;
}

.calendar__header {
  background-color: var(--boat-red);
  padding: 6.010619163513184px 22.038938522338867px;
  text-align: center;
  border-radius: 4px 4px 0 0;
}

.calendar__title {
  font-weight: 700;
  font-size: 16.028318405151367px;
  line-height: 1.2;
  color: var(--white);
}

.calendar__body {
  background-color: var(--white);
  padding: 4px 8px 8px;
  position: relative;
}

.calendar__dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px 0;
}

.calendar__date-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 52px;
  position: relative;
}

/* スケジュールのある日の背景 */
.calendar__date-day--race::before,
.calendar__date-day--practice::before,
.calendar__date-day--off::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 28px;
  z-index: 0;
}

.calendar__date-day--race::before {
  background-color: var(--boat-red);
}

.calendar__date-day--practice::before {
  background-color: var(--boat-yellow);
}

.calendar__date-day--off::before {
  background-color: #BFE1F8;
}

/* スケジュール開始日（左側の丸） */
.calendar__date-day--start::before {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  left: 2px;
}

/* スケジュール終了日（右側の丸） */
.calendar__date-day--end::before {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  right: 2px;
}

/* 単独日（両側の丸） */
.calendar__date-day--single::before {
  border-radius: 100px;
  left: 2px;
  right: 2px;
}

.calendar__date-number {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--boat-text);
  line-height: 1.2;
  padding: 4px 0;
  z-index: 2;
  position: relative;
}

.calendar__date-number--sat {
  color: var(--boat-darkblue);
}

.calendar__date-number--sun {
  color: var(--boat-red);
}

.calendar__schedule-item {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

/* 複数日にまたがるラベルの中央揃え */
.calendar__schedule-item--span-2 {
  width: calc(200% + 4px);
}

.calendar__schedule-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 11.5px;
  line-height: 1.48;
  text-align: center;
  white-space: nowrap;
  color: var(--white);
  z-index: 2;
  position: relative;
}

.calendar__date-day--practice .calendar__schedule-label {
  color: var(--boat-text);
}

.calendar__dots {
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
  position: relative;
}

.calendar__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--boat-red);
  flex-shrink: 0;
  display: block;
}

.calendar__legend {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.calendar__legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.calendar__legend-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.calendar__legend-icon--race {
  background-color: var(--boat-red);
}

.calendar__legend-icon--practice {
  background-color: var(--boat-yellow);
}

.calendar__legend-icon--off {
  background-color: #BFE1F8;
}

.calendar__legend-text {
  font-weight: 400;
  font-size: 14.024778366088867px;
  line-height: 1.2;
  color: var(--boat-text);
}

/* レーサーの一日ボタン */
.calendar__button {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.calendar__button-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 9px 20px;
  background-color: var(--white);
  border: 2px solid var(--boat-red);
  text-decoration: none;
  color: var(--boat-text);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.04em;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.calendar__button-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.calendar__button-link:focus {
  outline: 2px solid var(--boat-blue);
  outline-offset: 2px;
}

.calendar__button-link:active {
  transform: translateY(0);
}

.calendar__button-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ============================================
   イメージカード
   ============================================ */
.image-card {
  background-color: var(--boat-red);
  padding: 16px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-card__image {
  width: 100px;
  height: 120px;
  background-color: var(--gray);
  border-radius: 4px;
}

.image-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 12px;
}

.image-card__text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--white);
}

.image-card__link {
  width: 100%;
  background-color: var(--white);
  border-radius: 30px;
  color: var(--boat-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 9px 20px;
  gap: 10px;
}

/* ============================================
   ページリンク
   ============================================ */
.page-links {
  position: relative;
  background-color: var(--gray-light);
  margin-top: -90px;
  padding: 125px 22px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  clip-path: polygon(0 105px, 100% 0, 100% 100%, 0 100%);
}

.page-links__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.page-links__bottom {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* page-links内のTOPに戻るボタン */
.page-links__bottom .top-return-link__button {
  width: 100%;
}

.page-links::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 9px,
    #F2F2F2 9px,
    #F2F2F2 10px
  );
  pointer-events: none;
  z-index: 0;
}

.page-link {
  position: relative;
  z-index: 2;
  background-color: var(--white);
  padding: 12px 10px;
  width: 140px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  color: var(--boat-darkblue);
  text-align: center;
  transition: transform 0.3s;
}

.page-link:hover {
  transform: scale(1.05);
}

/* 待遇・サポートページ */
.page-finance .page-link--left {
  gap: 10px;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.04em;
  box-shadow: 3px 3px 0px #FFE434, -2px -2px 0px var(--boat-blue);
}

.page-finance .page-link--right {
  gap: 4px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.08em;
  box-shadow: 3px 3px 0px #FF5C5C, -2px -2px 0px var(--boat-blue);
}

/* 仕事の特徴ページ */
.page-fulfilling .page-link--left {
  gap: 10px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  box-shadow: 3px 3px 0px #63EE1E, -2px -2px 0px var(--boat-blue);
}

.page-fulfilling .page-link--right {
  gap: 4px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.08em;
  box-shadow: 3px 3px 0px #FF5C5C, -2px -2px 0px var(--boat-blue);
}

/* ワークライフバランスページ */
.page-worklife .page-link--left {
  gap: 10px;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: -0.04em;
  box-shadow: 3px 3px 0px #FFE434, -2px -2px 0px var(--boat-blue);
}

.page-worklife .page-link--right {
  gap: 10px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  box-shadow: 3px 3px 0px #63EE1E, -2px -2px 0px var(--boat-blue);
}

.page-link img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================
   TOPにもどるリンク（青枠版）
   ============================================ */
.top-return-link {
  position: relative;
  margin: 42px 20px 50px;
  padding: 0;
}

.top-return-link__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 58px;
  background-color: var(--white);
  border: 2px solid var(--boat-blue);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.top-return-link__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 153, 255, 0.2);
}

.top-return-link__content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-return-link__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--boat-blue);
  white-space: nowrap;
}

/* ============================================
   テキスト強調スタイル
   ============================================ */
.highlight-red {
  color: var(--boat-red);
  font-weight: 700;
}

/* ============================================
   Figmaデザイン対応レース用品セクション
   ============================================ */
.equipment-figma {
  margin-top: 20px;
}

.equipment-figma__self {
  margin-bottom: 20px;
}

.equipment-figma__self-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--boat-text);
  margin-bottom: 8px;
}

.equipment-figma__items {
  display: grid;
  grid-template-columns: repeat(3, 98.72px);
  grid-template-rows: repeat(2, auto);
  gap: 16px 4px;
  justify-content: center;
}

.equipment-figma__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 98.72px;
}

/* 下段2つのアイテムを左寄せに配置 */
.equipment-figma__item:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2;
}

.equipment-figma__item:nth-child(5) {
  grid-column: 2 / 3;
  grid-row: 2;
}

.equipment-figma__item--etc {
  justify-content: flex-end;
}

.equipment-figma__item-etc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  width: 100%;
  padding-left: 8px;
  color: var(--boat-text);
  margin: 0;
  padding-bottom: 0;
}

.equipment-figma__item-image {
  width: 98.72px;
  height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}

.equipment-figma__item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* ヘルメット画像の特別な調整 */
.equipment-figma__item-image img[src*="helmet"] {
  object-fit: cover;
  object-position: center center;
}

.equipment-figma__item-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  color: var(--boat-text);
  margin: 0;
}

.equipment-figma__item-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
  color: var(--boat-text);
  margin: 0;
}

/* Q&Aセクション */
.equipment-figma__qa {
  margin: 20px 0;
}

.equipment-figma__question {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.equipment-figma__q-mark {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-size: 43.58px;
  line-height: 1em;
  color: var(--boat-green);
}

.equipment-figma__q-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--boat-text);
}

.equipment-figma__divider {
  width: 100%;
  height: 0.5px;
  background-color: #C2C2C2;
  margin-bottom: 8px;
}

.equipment-figma__answer {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--boat-text);
  margin: 0;
}

/* 下部画像 */
.equipment-figma__bottom-image {
  margin-top: 20px;
  height: 180px;
  overflow: hidden;
}

.equipment-figma__bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ちなみに吹き出し */
.equipment-figma__note {
  margin-top: 16px;
}

.equipment-figma__note-bubble {
  background-color: var(--boat-green);
  border-radius: 12px;
  padding: 6px 12px;
  position: relative;
  display: inline-block;
}

.equipment-figma__note-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background-color: var(--boat-green);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}

.equipment-figma__note-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.equipment-figma__note-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--boat-text);
  margin: 8px 0 0 0;
}

/* ============================================
   SP版固定表示ナビゲーション
   ============================================ */

/* SP版での固定表示 */
@media (max-width: 1023px) {
  /* 通常表示のボタンを非表示（グレー背景は残す） */
  /* TOPに戻るボタンは表示するため、page-links__topのみ非表示 */
  .page-links > .page-links__top {
    display: none;
  }

  /* 固定表示内のボタンは表示 */
  .sp-fixed-nav .page-links__top {
    display: flex !important;
  }

  .sp-fixed-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }

  .sp-fixed-nav .page-links {
    width: 360px;
    background-color: transparent;
    margin-top: 0;
    padding: 8px;
    clip-path: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .sp-fixed-nav .page-links__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }

  .sp-fixed-nav .page-links::before {
    display: none;
  }

  .sp-fixed-nav .page-link {
    height: 64px;
  }

  /* 待遇・サポートページ */
  .page-finance .sp-fixed-nav .page-link--left {
    box-shadow: 3px 3px 0px #FFE434, -2px -2px 0px var(--boat-blue);
  }

  .page-finance .sp-fixed-nav .page-link--right {
    box-shadow: 3px 3px 0px #FF5C5C, -2px -2px 0px var(--boat-blue);
  }

  /* 仕事の特徴ページ */
  .page-fulfilling .sp-fixed-nav .page-link--left {
    box-shadow: 3px 3px 0px #63EE1E, -2px -2px 0px var(--boat-blue);
  }

  .page-fulfilling .sp-fixed-nav .page-link--right {
    box-shadow: 3px 3px 0px #FF5C5C, -2px -2px 0px var(--boat-blue);
  }

  /* ワークライフバランスページ */
  .page-worklife .sp-fixed-nav .page-link--left {
    box-shadow: 3px 3px 0px #FFE434, -2px -2px 0px var(--boat-blue);
  }

  .page-worklife .sp-fixed-nav .page-link--right {
    box-shadow: 3px 3px 0px #63EE1E, -2px -2px 0px var(--boat-blue);
  }

  @media (max-width: 389px) {
    .sp-fixed-nav {
      width: calc(100% - 30px);
      min-width: 360px;
    }
  }
}

/* PC版でも固定表示 */
@media (min-width: 1024px) {
  /* 通常表示のボタンを非表示（グレー背景は残す） */
  /* TOPに戻るボタンは表示するため、page-links__topのみ非表示 */
  .page-links > .page-links__top {
    display: none;
  }

  /* 固定表示内のボタンは表示 */
  .sp-fixed-nav .page-links__top {
    display: flex !important;
  }

  .sp-fixed-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 390px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
  }

  .sp-fixed-nav .page-links {
    width: 360px;
    background-color: transparent;
    margin-top: 0;
    padding: 8px;
    clip-path: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .sp-fixed-nav .page-links__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }

  .sp-fixed-nav .page-links::before {
    display: none;
  }

  .sp-fixed-nav .page-link {
    height: 64px;
  }

  /* 待遇・サポートページ */
  .page-finance .sp-fixed-nav .page-link--left {
    box-shadow: 3px 3px 0px #FFE434, -2px -2px 0px var(--boat-blue);
  }

  .page-finance .sp-fixed-nav .page-link--right {
    box-shadow: 3px 3px 0px #FF5C5C, -2px -2px 0px var(--boat-blue);
  }

  /* 仕事の特徴ページ */
  .page-fulfilling .sp-fixed-nav .page-link--left {
    box-shadow: 3px 3px 0px #63EE1E, -2px -2px 0px var(--boat-blue);
  }

  .page-fulfilling .sp-fixed-nav .page-link--right {
    box-shadow: 3px 3px 0px #FF5C5C, -2px -2px 0px var(--boat-blue);
  }

  /* ワークライフバランスページ */
  .page-worklife .sp-fixed-nav .page-link--left {
    box-shadow: 3px 3px 0px #FFE434, -2px -2px 0px var(--boat-blue);
  }

  .page-worklife .sp-fixed-nav .page-link--right {
    box-shadow: 3px 3px 0px #63EE1E, -2px -2px 0px var(--boat-blue);
  }
}

/* ============================================
   レスポンシブ対応
   ============================================ */

@media (min-width: 480px) {
  .page-title {
    margin: 65.12px 0 0 20.04px;
  }
}
