@charset "UTF-8";

/* 画面下部固定バーを細くする */
.cta-banner {
    padding: 6px 0;
    min-height: 40px;
}

/* ボタンも少し小さく */
.cta-btn {
    padding: 7px 10px;
    max-width: 360px;
    font-size: 20px;
    border-radius: 10px;
}

.cta-btn__icon {
    width: 24px;
    height: 24px;
}

/* 合同企業説明会 見出し */
.mv__event-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.4;
    white-space: nowrap;
    text-shadow:
        -2px -2px 0 #fff,
         2px -2px 0 #fff,
        -2px  2px 0 #fff,
         2px  2px 0 #fff,
         0 4px 6px rgba(0, 0, 0, 0.18);
    color: #52B4DD;
}

/* スマートフォン */
@media screen and (max-width: 767px) {
    .mv__event-title {
        font-size: clamp(16px, 4.6vw, 22px);
        margin-bottom: 18px;
        white-space: nowrap;
        letter-spacing: -0.03em;
    }
}




/* =========================================================
   特典エリア レイアウト調整
   ========================================================= */

/* 各特典を2カラムのグリッドにする */
.benefit-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
}

/* 「事前参加特典」「参加特典」を1行で表示 */
.benefit-item__num {
    white-space: nowrap;
    margin-right: 0;
}

/* 見出し */
.benefit-item__text h3 {
    margin-top: 0;
}

/* 説明文は特典ラベルと同じ左位置から開始 */
.benefit-item__text p {
    grid-column: 1 / -1;
}

/*
 * pは .benefit-item__text の中にあるため、
 * contentsでh3とpをグリッド直下として扱う
 */
.benefit-item__text {
    display: contents;
}

/* 1つ目と2つ目の特典の間隔 */
.benefit-item + .benefit-item {
    margin-top: 4px;
}


/* =========================================================
   特典エリア SP表示
   ========================================================= */
@media screen and (max-width: 767px) {

    /* SPでは縦並びにする */
    .benefit-item {
        display: block;
    }

    /* 特典ラベル */
    .benefit-item__num {
        display: inline-block;
        margin-bottom: 6px;
    }

    /* display: contents を解除 */
    .benefit-item__text {
        display: block;
    }

    /* 見出しをラベルの下へ */
    .benefit-item__text h3 {
        display: block;
        margin-bottom: 8px;
    }

    /* 本文 */
    .benefit-item__text p {
        display: block;
        margin-bottom: 20px;
    }

    /* 2つ目の特典との間隔 */
    .benefit-item + .benefit-item {
        margin-top: 8px;
    }
}




/* ========================================
   ヘッダーロゴ
======================================== */

/* PC：横並び */
.l-header__logo {
  width: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.l-header__logo a {
  display: block;
  flex-shrink: 0;
}

.l-header__logo img {
  width: auto;
  height: 25px;
}


/* SP：ロゴ2段表示 */
@media (max-width: 768px) {

  .l-header__logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .l-header__logo img {
    width: auto;
    height: 20px;
  }

}



/* 東広島会場：上部スケジュール */
.schedule-card__label.is-higashi-hiroshima {
  background-color: #ffffff !important;
  color: #FF9819 !important;
}



/* ========================================
   東広島会場タブ
======================================== */

/* 東広島：非選択時 */
.tab-btn[data-target="tab-higashi.html"] {
  background-color: #FFF6E2 !important;
  color: #666 !important;
  border: 4px solid #FF9819 !important;
  border-bottom: 0 !important;
}

/* 東広島：選択時 */
.tab-btn[data-target="tab-higashi.html"].is-active {
  background-color: #ffffff !important;
  color: #FF9819 !important;
  border: 4px solid #FF9819 !important;
  border-bottom: 4px solid #ffffff !important;
}


/* ========================================
   タブ共通設定：PC
======================================== */

/* 下のオレンジ線との位置を統一 */
.tab-btn,
.tab-btn.is-active {
  top: 4px !important;
}

/* 非選択時 */
.tab-btn:not(.is-active) {
  height: 62px;
  padding: 0 40px !important;
  font-size: 20px !important;
  vertical-align: bottom;
}

/* 選択時 */
.tab-btn.is-active {
  height: 82px !important;
  min-height: 82px !important;
  padding: 0 40px !important;

  font-size: 26px !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  vertical-align: bottom;
}


/* ========================================
   東広島「※セミナーのみ」
======================================== */

/* 非選択時 */
.tab-btn[data-target="tab-higashi.html"] span {
  font-size: 12px !important;
}

/* 選択時 */
.tab-btn[data-target="tab-higashi.html"].is-active span {
  font-size: 14px !important;
  margin-top: 5px;
  display: block;
}


/* ========================================
   SP：タブレイアウト
======================================== */

@media screen and (max-width: 767px) {

  /* 3タブを横一列に配置 */
  .tab-nav-inner {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    gap: 3px;
  }

  /* 3タブを均等幅にする */
  .tab-btn,
  .tab-btn:not(.is-active),
  .tab-btn.is-active {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    margin: 0 !important;

    padding-left: 4px !important;
    padding-right: 4px !important;

    font-size: 15px !important;
  }

  /* 非選択時 */
  .tab-btn:not(.is-active) {
    height: 62px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* 選択時 */
  .tab-btn.is-active {
    height: 68px !important;
    min-height: 68px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  /* 東広島「※セミナーのみ」非選択時 */
  .tab-btn[data-target="tab-higashi.html"] span {
    font-size: 10px !important;
  }

  /* 東広島「※セミナーのみ」選択時 */
  .tab-btn[data-target="tab-higashi.html"].is-active span {
    font-size: 11px !important;
    margin-top: 4px;
  }

}




