@charset "UTF-8";
/*
$c_main: #DB0000;
$c_sub: #E9A87D;
$c_accent: #E64D4D;
$c_btn: #FF7043;
$c_btn_hover: #F4511E;
$c_sns_line: #06C755;
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap&family=Oswald&display=swap");
/* ============================================================
   index.scss
   - Front page sections for キャリアナビ薬学生
   - Hero / Menu / Event slider / Support / Pickup / Content
   - HowTo / Seminar / Column
============================================================ */
/* ------------------------------------------------------------
   Layout container（トップページ専用）
------------------------------------------------------------ */
/* ------------------------------------------------------------
   Color tokens（LP専用）
------------------------------------------------------------ */
/* ------------------------------------------------------------
   セクション見出し共通
------------------------------------------------------------ */
.section-heading {
  text-align: center;
  margin-bottom: 5rem;
}
.section-heading__bg {
  position: relative;
  margin-inline: auto;
  width: clamp(300px, 31.25vw, 600px);
  container-type: inline-size;
}
.section-heading__bg img {
  display: block;
  width: 100%;
  height: auto;
}
.section-heading__inner {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  margin-bottom: 5%;
}
.section-heading__label {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: #00a0e9;
  line-height: 1.2;
  font-size: 8cqw;
}
.section-heading__title {
  margin: 0.4rem 0 0;
  font-weight: 700;
  color: #00a0e9;
  line-height: 1.4;
  font-size: 4cqw;
}

/* ============================================================
   Hero（メインビジュアル）
============================================================ */
.hero {
  position: relative;
  background: #f5fcff;
  color: #333;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: calc(1040px + 32px);
  margin-inline: auto;
  padding-inline: 16px;
  position: relative;
  z-index: 1;
  padding-top: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1400px) {
  .hero__inner {
    padding-inline: 0;
  }
}
.hero__visual {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 60%;
  max-width: 260px;
}
.hero__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.hero__content {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  max-width: 520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  text-align: center;
}
.hero__headline {
  max-width: 360px;
  margin-inline: auto;
}
.hero__headline img {
  display: block;
  width: 100%;
  height: auto;
}
.hero__lead {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.8;
}
.hero__btn {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.8rem;
  border-radius: 999px;
  border: 2px solid #ff8a00;
  background-color: #ff8a00;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  line-height: 1;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.hero__btn-label {
  line-height: 1;
}
.hero__btn-arrow {
  --arrow-size: 1.6rem;
  --arrow-icon-scale: 0.75;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-radius: 50%;
  background: #ffb400;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.hero__btn-arrow::before {
  content: "";
  width: calc(var(--arrow-size) * var(--arrow-icon-scale));
  height: calc(var(--arrow-size) * var(--arrow-icon-scale));
  background-image: url("/assets/img/common/icon-arrow-r.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}
.hero__btn:hover {
  background-color: #ffffff;
  color: #ff8a00;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(255, 138, 0, 0.35);
          box-shadow: 0 4px 12px rgba(255, 138, 0, 0.35);
}
@media (min-width: 768px) {
  .hero__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
  }
  .hero__visual {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 320px;
  }
  .hero__content {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .hero__headline {
    margin-inline: 0;
    max-width: 400px;
  }
  .hero__btn {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

/* ============================================================
   MENU ICONS（薬学生向けメニュー）
============================================================ */
.menu {
  background: var(--bg-white);
  padding-block: 4rem;
}
.menu__heading {
  margin: 0 0 0.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}
.menu__lead {
  margin: 0 0 2.4rem;
  font-size: 1.3rem;
  color: #777;
}
.menu__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 1.6rem minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem 1.6rem;
  justify-items: center;
}
@media (min-width: 576px) {
  .menu__grid {
    -ms-grid-columns: minmax(0, 1fr) 2.4rem minmax(0, 1fr) 2.4rem minmax(0, 1fr) 2.4rem minmax(0, 1fr);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3.6rem 2.4rem;
  }
}

.menu-card {
  container-type: inline-size;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.menu-card__icon {
  width: 100%;
  max-width: 132px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 0.6rem;
}
.menu-card__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.menu-card__label {
  margin: 0;
  font-size: 6.66cqw;
  color: #555;
  line-height: 1.4;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  --arrow-size: 1em;
  --arrow-icon-scale: 0.8;
}
.menu-card__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-radius: 50%;
  background: #ff6c00;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.menu-card__arrow::before {
  content: "";
  width: calc(var(--arrow-size) * var(--arrow-icon-scale));
  height: calc(var(--arrow-size) * var(--arrow-icon-scale));
  background-image: url("/assets/img/common/icon-arrow-r.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}
.menu-card:hover .menu-card__icon {
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
}

/* ============================================================
   Event Slider（メニュー直下のバナー）
============================================================ */
.event-slider {
  background: var(--bg-white);
  padding-block: 4rem;
}
.event-slider__inner {
  max-width: 1432px;
  margin-inline: auto;
}
.event-slider__link {
  display: block;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.event-slider__link img {
  width: 100%;
  height: auto;
  display: block;
}
.event-slider .slick-slide {
  padding: 0 1.2rem;
}
.event-slider .slick-dots {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.6rem;
  padding: 0;
  list-style: none;
  bottom: -50px;
}
.event-slider .slick-dots li {
  margin: 0;
}
.event-slider .slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  border: none;
  background: #d9d9d9;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.event-slider .slick-dots .slick-active button {
  background: #ff9900;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* ============================================================
   Support（サポートバナー）
============================================================ */
.support {
  background: #e5f7ff;
  padding-top: 4rem;
  padding-bottom: 8rem;
}
.support__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  max-width: 800px;
  margin-inline: auto;
}
.support__banner {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.support__banner:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.support__banner-figure {
  margin: 0;
}
.support__banner-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.support__banner-caption {
  display: none;
}
@media (min-width: 768px) {
  .support__banners {
    gap: 2rem;
    max-width: 720px;
  }
}

/* ============================================================
   PICKUP 企業一覧
============================================================ */
.pickup {
  background-color: var(--bg-white);
  background-image: repeating-linear-gradient(135deg, #f8f8f5 0, #f8f8f5 2px, #ffffff 2px, #ffffff 6px);
  padding-bottom: 8rem;
}
.pickup__list {
  margin: 3.2rem 0 0;
  padding: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
  justify-items: center;
}
.pickup__item {
  width: 100%;
  max-width: 480px;
}
.pickup__link {
  display: block;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.pickup__link img {
  display: block;
  width: 100%;
  height: auto;
}
.pickup__link:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  opacity: 0.98;
}
@media (min-width: 768px) {
  .pickup__list {
    -ms-grid-columns: minmax(0, 1fr) 3.2rem minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 3.2rem;
    -webkit-column-gap: 3.2rem;
       -moz-column-gap: 3.2rem;
            column-gap: 3.2rem;
  }
}
@media (min-width: 992px) {
  .pickup__item {
    max-width: 520px;
  }
}

/* ============================================================
   CONTENT
============================================================ */
.content {
  background: #e5f7ff;
  padding-bottom: 8rem;
}
.content__list {
  max-width: 900px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  margin: auto;
}
.content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content__thumb {
  margin: 0 0 1.6rem;
}
.content__thumb img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.content__body {
  max-width: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.content__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
.content__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .content__list {
    -ms-grid-columns: minmax(0, 1fr) 6.4rem minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-column-gap: 6.4rem;
       -moz-column-gap: 6.4rem;
            column-gap: 6.4rem;
    row-gap: 6.4rem;
  }
  .content__body {
    max-width: none;
  }
}
.content__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  gap: 0.6rem;
  padding: 0.7rem 2.6rem 0.7rem 2.8rem;
  border-radius: 999px;
  border: 2px solid #ff8a00;
  background-color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  color: #555555;
  text-decoration: none;
  line-height: 1;
  margin-top: auto;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.content__btn-label {
  line-height: 1;
}
.content__arrow {
  --arrow-size: 1.6rem;
  --arrow-icon-scale: 0.75;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-radius: 50%;
  background: #ff6c00;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.content__arrow::before {
  content: "";
  width: calc(var(--arrow-size) * var(--arrow-icon-scale));
  height: calc(var(--arrow-size) * var(--arrow-icon-scale));
  background-image: url("/assets/img/common/icon-arrow-r.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}
.content__btn:hover {
  background-color: #ff8a00;
  color: #ffffff;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 10px rgba(255, 138, 0, 0.35);
          box-shadow: 0 4px 10px rgba(255, 138, 0, 0.35);
}
.content__btn:hover .content-grid__arrow {
  background: #ffffff;
}
.content__btn:hover .content-grid__arrow::before {
  background-image: url("/assets/img/common/icon-arrow-r-orange.svg");
}

/* ============================================================
   HOW TO
============================================================ */
.howto {
  background: var(--bg-white);
  padding-bottom: 8rem;
}
.howto__video-inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  aspect-ratio: 16/9;
}
.howto__video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   Seminar / Event section（Top）
============================================================ */
.seminar {
  background: #e5f7ff;
  padding-bottom: 8rem;
}
.seminar .section-heading__title {
  font-size: 6cqw;
}
.seminar__banners {
  margin-top: 2.4rem;
}
.seminar__banners .seminar-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  justify-items: center;
}
.seminar__banners .seminar-list__item {
  width: 100%;
  max-width: 360px;
}
@media (min-width: 768px) {
  .seminar__banners .seminar-list {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seminar__banners .seminar-list__item {
    max-width: none;
  }
}
.seminar__banners .seminar-card {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-filter 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-filter 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, filter 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-filter 0.2s ease;
}
.seminar__banners .seminar-card__thumb {
  margin: 0;
}
.seminar__banners .seminar-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.seminar__banners .seminar-card--dim {
  -webkit-filter: brightness(0.85);
          filter: brightness(0.85);
}
.seminar__banners .seminar-card:hover {
  opacity: 0.98;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.seminar__banners .seminar-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 0.4rem 0.9rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  letter-spacing: 0.04em;
}
.seminar__banners .seminar-card__badge--closed {
  background: rgba(255, 140, 0, 0.95);
}
.seminar__banners .seminar-card__badge--finished {
  background: rgba(102, 102, 102, 0.95);
}
.seminar__more {
  margin-top: 2.4rem;
  text-align: center;
}
.seminar__more-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 220px;
  padding: 0.9rem 2.8rem;
  border-radius: 999px;
  border: 2px solid #ff8a00;
  background-color: #ff8a00;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  line-height: 1;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.seminar__more-link:hover {
  background-color: #ffffff;
  color: #ff8a00;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(255, 138, 0, 0.35);
          box-shadow: 0 4px 12px rgba(255, 138, 0, 0.35);
}

/* ============================================================
   column（情報特集グリッド）
============================================================ */
.column {
  background-color: var(--bg-white);
  background-image: radial-gradient(circle, #e3e3e3 1px, transparent 1px);
  background-size: 14px 14px;
  padding-top: 4rem;
  padding-bottom: 8rem;
  /* 見出し画像（column 固有） */
}
.column .column-heading {
  margin-bottom: 2.4rem;
}
.column .column-heading .feature-heading__figure {
  margin: 0;
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}
.column .column-heading .feature-heading__figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .column .column-heading {
    margin-bottom: 3.2rem;
  }
  .column .column-heading .feature-heading__figure {
    max-width: 840px;
  }
}
.column__banners {
  margin-top: 0;
  /* グリッド（SP1列 → mdから2列） */
  /* バナーカード */
}
.column__banners .column-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  justify-items: center;
}
.column__banners .column-list__item {
  width: 100%;
  max-width: 480px;
}
@media (min-width: 768px) {
  .column__banners .column-list {
    -ms-grid-columns: minmax(0, 1fr) 3.2rem minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem 3.2rem;
  }
  .column__banners .column-list__item {
    max-width: none;
  }
}
.column__banners .column-card {
  position: relative;
  display: block;
  width: 100%;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background-color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  /* ラベル（投稿タイプ＋カテゴリー） */
  /* ベース色（現状共通） */
  /* 投稿タイプ別カラー（必要になったら中身を指定） */
  /* カテゴリー別カラー（タームスラッグに合わせる） */
}
.column__banners .column-card__meta {
  position: absolute;
  top: 8px;
  left: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  z-index: 2;
}
.column__banners .column-card__label, .column__banners .column-card__cat {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.column__banners .column-card__label {
  color: #ffffff;
  background: #00bfd4;
}
.column__banners .column-card__cat {
  color: #00bfd4;
  background: #ffffff;
  border: 1px solid #00bfd4;
}
.column__banners .column-card__cats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.column__banners .column-card__thumb {
  margin: 0;
}
.column__banners .column-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.column__banners .column-card:hover {
  opacity: 0.98;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}