@charset "UTF-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
  font-size: 16px;
  height: auto;
}

body {
  font-family: YakuHanJP, 'Noto Sans JP';
  color: var(--black);
  font-weight: 400;
  text-align: justify;
  line-height: 1.4;
  letter-spacing: normal;
  background: var(--gray);
  margin: 0;
  height: auto;
  position: relative;
  overflow: auto;
}

body::before {
  content: '';
  position: fixed;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../img/PC_bg.jpg') center / cover no-repeat;
  inset: 0;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

* {
  box-sizing: border-box;
}

.tb,
.tbpc,
.pc {
  display: none;
}

.fadein {
  opacity: 0;
  transition: all 1s ease;
  transform: translate(0, 50px);
  transition-delay: 0s;
}

.fadein.scrollin {
  transform: translate(0, 0px);
  opacity: 1;
}

.alatsi {
  font-family: Alatsi;
}

.abel {
  font-family: 'Abel';
}

.flexBox {
  display: flex;
  justify-content: space-between;
}

/* ========== Liquid layout tokens ========== */
:root {
  --min: 340px;
  --design: 390px;
  --max: 450px;

  --padding-design: 25px;

  scrollbar-gutter: stable;

  /* color */
  --black: #27251f;
  --blue: #3d4298;
  --gray: #efefef;
  --orange: #f4a351;
  --light_orange: #f8efe2;
  --hover_orange: #f28f2c;
  --pink: #ec7484;
  --light_pink: #faebed;
  --hover_pink: #e95d70;
  --aqua: #47bcc6;
  --light_aqua: #ebfaf7;
  --hover_aqua: #37a9b3;
  --green: #9bc55e;
  --light_green: #eff8e2;
  --hover_green: #83b040;
}

.gray {
  background-color: var(--gray);
}

.font_white {
  color: #fff;
}

.font_blue {
  color: #3d4298;
}

.bg_white {
  background-color: #fff;
}

.bg_blue {
  background-color: #3d4298;
}

.padding25 {
  padding-inline: clamp(
    16px,
    calc((100vw - var(--design)) / 2 + var(--padding-design)),
    40px
  );
}

.department_padding {
  padding-inline: clamp(0px, calc(25px + (100vw - 390px) * 0.5), 55px);
}

.padding45 {
  padding-inline: 45px;
}

small {
  font-size: 14px;
  line-height: 1.64;
  letter-spacing: 0.4px;
}

/* ===== modal ===== */
body.modal-open {
  position: fixed;
  width: 100%;
}

/* ===== layout ===== */
.lp {
  display: grid;
  grid-template-columns: 1fr minmax(var(--min), var(--max)) 1fr;
}

.lp__center {
  grid-column: 2;
  width: 100%;
  margin-inline: auto;
}

.lp__center .stage {
  width: 100%;
  margin: 0 auto;
}

.lp__side {
  position: fixed;
  top: 0;
  height: 100dvh;
  display: none; /* mobile default */
  overflow-y: auto;
  z-index: 10;
}

.lp__side--left {
  grid-column: 1;
}

.lp__side--right {
  grid-column: 3;
}

/* header */

header {
  position: relative;
  width: 100%;
  max-width: 450px;
  min-width: 340px;
  margin-inline: auto;
  height: 80px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  z-index: 200;
  margin: 0;
  background: var(--gray);
}

header .logo {
  width: 200px;
  height: 39.977px;
  flex-shrink: 0;
  position: relative;
  z-index: 9;
}

/* humburger-button */

.lp__center > header > .menu {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(450px, 100%);
  z-index: 20;
  margin: 0;
  pointer-events: auto;
}

header details.menu summary.menu__toggle {
  pointer-events: auto;
  margin-left: auto;
  margin-right: 25px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  list-style: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 999;
  position: relative;
  background: var(--blue);
  border-radius: 20px;
}

.menu__toggle::-webkit-details-marker {
  display: none;
}

/* 3本線 */
.menuBtn__line {
  display: block;
  width: 16px;
  height: 1.143px;
  background: #fff;
  border-radius: 999px;

  grid-area: 1 / 1; /* 3本重ねる */
  transition:
    transform 240ms ease,
    opacity 160ms ease,
    width 240ms ease;
}

/* 通常時：上下にずらす */
.menuBtn__line:nth-child(1) {
  transform: translateY(-5.83px);
}
.menuBtn__line:nth-child(2) {
  transform: translateY(0);
}
.menuBtn__line:nth-child(3) {
  transform: translateY(5.83px);
}

/* open時：✖︎ */
.menu[open] .menuBtn__line:nth-child(1) {
  transform: rotate(45deg);
}
.menu[open] .menuBtn__line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.menu[open] .menuBtn__line:nth-child(3) {
  transform: rotate(-45deg);
}

/* humburger-contents */
nav.menu__panel {
  text-align: center;
  padding-top: 89px;
  position: fixed;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOSの慣性スクロール */
  top: -20px;
  right: 0;
  width: 100%;
  max-width: 450px;
  min-width: 340px;
  height: 100dvh;
  max-height: 100dvh;
  margin-inline: auto;
}

nav.menu__panel h2 {
  font-size: 36px;
  color: var(--blue);
  letter-spacing: 1.8px;
}

nav.menu__panel ul.global-nav__list {
  display: flex;
  width: 200px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 70px;
  margin-top: 65px;
  margin-inline: auto;
}

nav.menu__panel ul.global-nav__list li {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  position: relative;
  margin-left: 31px;
}

nav.menu__panel ul.global-nav__list li::before {
  position: absolute;
  content: '';
  width: 12px;
  aspect-ratio: 12 / 17;
  background: url('../img/i_ribbon_o.png') no-repeat center / contain;
  top: 58%;
  transform: translateY(-50%);
  left: -31px;
}

nav.menu__panel ul.global-nav__list li.nur::before {
  background: url('../img/i_ribbon_p.png') no-repeat center / contain;
}

nav.menu__panel ul.global-nav__list li.eco::before {
  background: url('../img/i_ribbon_a.png') no-repeat center / contain;
}

nav.menu__panel ul.global-nav__list li.hum::before {
  background: url('../img/i_ribbon_g.png') no-repeat center / contain;
}

nav.menu__panel a.global-nav__cta,
footer a.footer-cta {
  display: flex;
  width: 200px;
  height: 50px;
  padding-left: 22px;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.5px;
  border-radius: 5px;
  border: 1px solid var(--blue);
  position: relative;
  margin-inline: auto;
}

nav.menu__panel a.global-nav__cta::after,
footer a.footer-cta::after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  background: url('../img/ex_link_blue.png') no-repeat center / contain;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

header details.menu nav.menu__panel section.global-nav__sns,
footer section.sns {
  width: 100%;
  height: 190px;
  padding: 48px 0 49px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 4.8px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

header details.menu nav.menu__panel section.global-nav__sns {
  margin-top: 84px;
}

header details.menu nav.menu__panel section.global-nav__sns ul,
footer section.sns ul {
  margin-top: 21px;
  height: 49px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 20px 40px;
  display: flex;
}

header details.menu nav.menu__panel section.global-nav__sns ul li a img,
footer section.sns ul li a img {
  width: 25.8px;
}

header details.menu nav.menu__panel section.global-nav__sns ul li.note a img,
footer section.sns ul li.note a img {
  width: 22px;
}

header details.menu nav.menu__panel section.global-nav__sns ul li.line a img,
header details.menu nav.menu__panel section.global-nav__sns ul li.youtube a img,
header details.menu nav.menu__panel section.global-nav__sns ul li.x a img,
footer section.sns ul li.line a img,
footer section.sns ul li.youtube a img,
footer section.sns ul li.x a img {
  width: 27px;
}

/* hero */

.hero {
  padding-top: 5px;
  padding-bottom: 58px;
  position: relative;
  overflow: hidden;
}

.hero_inner {
  padding-inline: clamp(20px, calc(30px + (100vw - 390px) * 0.5), 67px);
  text-align: center;
}

.hero h1 {
  margin-top: 313px;
  margin-bottom: clamp(
    546.667px,
    calc(600px + (100vw - 390px) * 1.0666666667),
    664px
  );
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 30.2843px;
  letter-spacing: 0.2em;
  line-height: 1;
  position: relative;
  z-index: 10;
  font-feature-settings: 'palt' on;
}

.hero h1 span {
  display: inline-block;
  padding: 15px 9px 18px 15px;
  background: transparent; /* ← 背景色は疑似要素へ */
  position: relative;
  overflow: hidden;
}

.hero h1 span:first-child,
.hero h1 span:last-child {
  padding: 15px 0px 18px 15px;
}

.hero h1 span::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: -1;
}

.hero h1 span.fadein.scrollin::before {
  transform: scaleX(1);
}

.hero h1 span:nth-child(1)::before {
  transition-delay: 0.45s;
}
.hero h1 span:nth-child(2)::before {
  transition-delay: 0.55s;
}
.hero h1 span:nth-child(3)::before {
  transition-delay: 0.65s;
}

.hero p {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 2.17;
  letter-spacing: 1.5px;
  font-feature-settings: 'palt' on;
  font-weight: 600;
  text-align: left;
}

.hero p:last-child {
  margin-bottom: 918px;
}

.hero img {
  position: absolute;
  width: clamp(385px, calc(431px + (100vw - 390px) * 0.9183), 486.097px);
  height: auto;
  top: 5px;
  left: -49px;
  max-width: none;
  transition-delay: 0.2s;
}

.hero img.hero_img2 {
  width: clamp(232.3px, calc(260px + (100vw - 390px) * 0.55395), 293.237px);
  height: auto;
  top: 510px;
  right: clamp(-53px, calc(-53px + (100vw - 390px) * 0.3527833333), -31.833px);
  left: auto;
  transition-delay: 0.4s;
}

.hero img.hero_img3 {
  width: clamp(
    159.932px,
    calc(179px + (100vw - 390px) * 0.3813666667),
    201.882px
  );
  height: auto;
  top: 615px;
  left: clamp(-24px, calc(-11px + (100vw - 390px) * -0.2166666667), -0.167px);
  transition-delay: 0.5s;
}

.hero img.hero_img4 {
  width: clamp(140.275px, calc(157px + (100vw - 390px) * 0.3345), 177.07px);
  top: clamp(717.5px, calc(745px + (100vw - 390px) * 0.55), 778px);
  left: auto;
  right: 28px;
  transition-delay: 0.55s;
}

.hero img.hero_img5 {
  width: clamp(
    240.343px,
    calc(269px + (100vw - 390px) * 0.5731333333),
    303.388px
  );
  height: auto;
  top: clamp(829.167px, calc(860px + (100vw - 390px) * 0.6166666667), 897px);
  left: -38px;
}

.hero img.hero_img6 {
  width: clamp(
    129.177px,
    calc(148px + (100vw - 390px) * 0.3764666667),
    170.588px
  );
  height: auto;
  top: clamp(1433.667px, calc(1487px + (100vw - 390px) * 1.0666666667), 1551px);
  left: auto;
  right: 20px;
}

.hero img.hero_img7 {
  width: clamp(
    175.436px,
    calc(201px + (100vw - 390px) * 0.5112833333),
    231.677px
  );
  height: auto;
  top: auto;
  bottom: clamp(
    623px,
    calc(658px + (100vw - 390px) * -0.5833333333),
    687.167px
  );

  left: clamp(-20.5px, calc(-18px + (100vw - 390px) * 0.05), -15px);
}

.hero img.hero_img8 {
  width: clamp(
    211.222px,
    calc(242px + (100vw - 390px) * 0.6155666667),
    278.934px
  );
  height: auto;
  top: auto;
  left: auto;
  bottom: clamp(
    477px,
    calc(530px + (100vw - 390px) * -0.8833333333),
    574.167px
  );

  right: clamp(-39px, calc(-28px + (100vw - 390px) * -0.1833333333), -18.833px);
}

.hero img.hero_img9 {
  width: clamp(377.93px, calc(433px + (100vw - 390px) * 1.1014), 499.084px);
  height: auto;
  top: auto;
  bottom: clamp(10px, calc(107px + (100vw - 390px) * -1.6166666667), 187.833px);
  left: -20px;
}

/* features */
section.features {
  padding-top: clamp(
    24.167px,
    calc(40px + (100vw - 390px) * 0.3166666667),
    59px
  );
  align-items: center;
  text-align: center;
  padding-inline: clamp(0px, calc(16px + (100vw - 390px) * 0.5), 40px);
}

section.features--gifu {
  padding-bottom: 10px;
}

section.features h2 {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--h2-mb);
}

section.features h2 span.features-title__en {
  width: 340px;
  margin-bottom: 12px;
  margin-inline: auto;
  letter-spacing: 0;
  font-size: 45px;
}

section.features.features--gsgu h2 span.features-title__en img {
  width: 142px;
  height: 48.893px;
  aspect-ratio: 142/48.89;
  display: inline;
  margin-bottom: 10px;
}

section.features h2 span.features-title__en span,
dialog .modal p.modal__kicker span {
  color: #118ccf;
  margin-left: 10px;
}

section.features h2 span.features-title__jp {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  padding-top: 16px;
  display: block;
  border-top: 1px solid var(--black);
  font-feature-settings: 'palt' on;
}

section.features .feature-grid {
  display: grid;
  width: 340px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 39px;
  margin-inline: auto;
}

section.features .feature-grid button {
  width: 160px;
  height: 250px;
  border-radius: 10px;
  position: relative;
  align-items: center;
  color: #fff;
  text-align: center;
  padding-inline: 10px;
  overflow: hidden;
}

section.features .feature-grid button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/shinkansen_bg.jpg') center / cover no-repeat;
  z-index: -1;
  transition: transform 0.4s ease;
}

section.features .feature-grid button.shirakawagou::before {
  background: url('../img/shirakawagou_bg.jpg') center / cover no-repeat;
}

section.features .feature-grid button.onsen::before {
  background: url('../img/onsen_bg.jpg') center / cover no-repeat;
}

section.features .feature-grid button.ceramics::before {
  background: url('../img/ceramics_bg.jpg') center / cover no-repeat;
}

section.features .feature-grid button.teacher::before {
  background: url('../img/teacher_bg.jpg') center / cover no-repeat;
}

section.features .feature-grid button.presentation::before {
  background: url('../img/presentation_bg.jpg') center / cover no-repeat;
}

section.features .feature-grid button.nurse::before {
  background: url('../img/nurse_bg.jpg') center / cover no-repeat;
}

section.features .feature-grid button.students::before {
  background: url('../img/students_bg.jpg') center / cover no-repeat;
}

section.features .feature-grid button::after {
  content: '';
  position: absolute;
  background-color: rgba(61, 66, 152, 0.9);
  position: absolute;
  inset: 0;
  border-radius: 10px;
  z-index: 0;
  transition: background-color 0.3s ease;
}

.nurse .feature_card_inner {
  margin-top: -18px;
}

.students .feature_card_inner {
  margin-top: -21px;
}

section.features span {
  z-index: 10;
  display: inline-block;
  max-width: 100%;
  word-break: keep-all;
  line-break: strict;
  line-height: 1.45;
  position: relative;
}

section.features span.feature-card__title {
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: 1.15px;
}

section.features .ceramics span.feature-card__title,
section.features button.teacher span.feature-card__title,
section.features button.presentation span.feature-card__title,
section.features .students span.feature-card__title {
  width: 100%;
  padding-top: 6px;
}

section.features .students span.feature-card__title span {
  width: 100%;
}

section.features span.feature-card-subtitle {
  font-size: 18px;
}

section.features span.feature-card__label {
  font-size: 17px;
}

section.features span.feature-card_sm_label {
  font-size: 16px;
}

section.features span.feature-card_sm_label span {
  line-height: 1.43;
}

section.features span.feature-card_bg_number {
  font-size: 66px;
  line-height: 1.2;
  position: relative;
}

section.features button.presentation span.feature-card_bg_number,
section.features button.teacher span.feature-card_bg_number {
  top: 0.05em;
  margin-left: 17px;
}

section.features span.feature-card_unit {
  font-size: 35px;
  margin-left: 3px;
}

section.features span.feature-card_value {
  font-size: 45px;
  margin-top: -10px;
  margin-left: 6px;
  letter-spacing: 2.25px;
}

section.features button.feature-card small {
  display: inline-block;
  margin-top: 11px;
  position: relative;
  z-index: 10;
}

sup {
  vertical-align: super;
  font-size: 0.7em;
  position: relative;
  z-index: 10;
  top: -1.5em;
}

.nurse sup {
  font-size: 0.4em;
  margin-left: -9px;
  top: -1.8em;
}

section.features span.feature-card__icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  z-index: 10;
}

.features small.gsgu {
  text-align: left;
  display: inline-block;
  margin-top: 40px;
  line-height: 1.64;
  letter-spacing: 0.7px;
  width: 340px;
}

/* modal-contents template */
.feature-dialog {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.feature-dialog::backdrop {
  background: transparent;
}

dialog .modal {
  padding-block: 70px;
  width: 320px;
  margin-inline: auto;
}

/*close_button*/
.feature-dialog__close {
  position: absolute;
  top: 20px;
  right: 20px;
  margin: 0;
}

dialog form button {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

dialog form button:focus,
dialog form button:focus-visible {
  outline: none;
  box-shadow: none;
}

dialog form button.modal-close {
  position: relative;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}

.modal-close::before,
.modal-close::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 50%;
  width: 45px;
  height: 1px;
  background: #27251f;
  transform-origin: center;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/*close_button end*/

dialog .modal figure img {
  width: 200px;
  height: 200px;
  margin-inline: auto;
}

dialog .modal p.modal__kicker {
  font-size: 14px;
  color: var(--blue);
  margin-block: 39px 25px;
  padding-left: 2px;
}

dialog .modal p.modal__kicker span {
  margin-left: 2px;
}

dialog .modal p.modal__kicker span img {
  width: 54px;
  display: inline-block;
  margin-bottom: 1px;
}

dialog .modal .modal_label {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-block;
  padding-bottom: 10px;
  width: 320px;
  border-bottom: 1px solid var(--blue);
  letter-spacing: 2px;
}

dialog .modal.gifu-04 .modal_label {
  letter-spacing: 1.2px;
}

dialog .modal.gsgu-03 .modal_label,
dialog .modal.gsgu-04 .modal_label {
  line-height: 1.3;
}

dialog .modal.gsgu-02 .modal_label span.last {
  display: block;
}

dialog .modal.gsgu-02 .modal_label span.last sup {
  top: 0;
  font-size: 0.6em;
}

dialog .modal.gsgu-03 .modal_label.last {
  margin-top: 10px;
}

dialog .modal .modal_label small {
  margin-top: 6px;
  margin-left: -2px;
}

dialog .modal .modal_title {
  display: inline-flex;
  height: 36px;
  padding: 10px 10px 13px 10px;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  color: #fff;
  margin-block: 30px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
}

dialog .modal.gifu-04 .modal_title,
dialog .modal.gsgu-01 .modal_title,
dialog .modal.gsgu-02 .modal_title,
dialog .modal.gsgu-03 .modal_title,
dialog .modal.gsgu-04 .modal_title {
  margin-block: 30px 0px;
}

dialog .modal.gifu-04 .modal_title.last,
dialog .modal.gsgu-01 .modal_title.last,
dialog .modal.gsgu-03 .modal_title.last,
dialog .modal.gsgu-04 .modal_title.last {
  margin-block: 10px 30px;
}

dialog .modal small.modal_title_memo {
  font-size: 14px;
  color: #3d4298;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.7px;
  margin-block: 15px 22px;
  margin-left: -2px;
}

dialog .modal p.modal_text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.16px;
}

dialog .modal small {
  margin-top: 24px;
  display: inline-block;
  letter-spacing: 0.14px;
}

/* departments */

section.departments h2 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 40px;
  letter-spacing: 2.5px;
  text-align: center;
  padding-block: 30px 35px;
}

details.department {
  z-index: 10;
  position: relative;
}

section.departments
  .departments-list
  details
  summary
  div.department__summary-inner {
  padding: 44px 0px 62px 0px;
  position: relative;
  width: 340px;
}

section.departments
  .departments-list
  details
  summary.department__summary
  span.department__name {
  display: flex;
  width: 250px;
  height: 80px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 3px solid var(--black);
  box-shadow: 0 4px 0 0 var(--black);
  position: relative;
  margin-left: 0px;
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 2.2px;
  font-weight: 500;
}

section.departments
  .departments-list
  details
  summary.department__summary
  span.department__name::after {
  content: '';
  width: 14px;
  height: 19px;
  position: absolute;
  right: 18px;
  top: -3px;
  background: url('../img/ribbon_o.png') no-repeat center / contain;
}

section.departments .departments-list details summary.department__summary ul {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

section.departments
  .departments-list
  details
  summary.department__summary
  ul
  li {
  padding: 0px 9px 1px 31px;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  letter-spacing: 1.4px;
  position: relative;
  line-height: 2;
  font-feature-settings: 'palt' on;
  font-weight: 600;
}

section.departments
  .departments-list
  details#eco
  summary.department__summary
  ul
  li.shrink {
  letter-spacing: 1.07px;
}

section.departments
  .departments-list
  details
  summary.department__summary
  ul
  li::before {
  content: '';
  width: 15px;
  height: 15px;
  background: url('../img/check_circle_o.png') no-repeat center / contain;
  position: absolute;
  display: block;
  top: 7px;
  left: 9px;
}

section.departments
  .departments-list
  details
  summary.department__summary
  ul
  li
  sup {
  font-size: 0.6em;
  top: 0;
}

section.departments
  .departments-list
  details
  summary.department__summary
  .department__summary-cta {
  font-size: 12px;
  letter-spacing: 1.2px;
  position: absolute;
  bottom: 19px;
  right: clamp(-5px, calc(26px + (100vw - 390px) * -0.5166666667), 51.833px);
  font-feature-settings: 'palt' on;
}

.department__summary-cta .toggle_icon {
  display: inline-block;
  position: relative;
  top: 50%;
  right: -34px;
  width: 25px;
  height: 25px;
  border: 1px solid var(--black);
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
}

/* ＋の縦棒 */
.department__summary-cta .toggle_icon::before,
.department__summary-cta .toggle_icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--black);
  transform: translate(-50%, -50%);
}

/* 縦線 */
.department__summary-cta .toggle_icon::before {
  width: 1px;
  height: 12px;
}

/* 横線 */
.department__summary-cta .toggle_icon::after {
  width: 12px;
  height: 1px;
}

/*====OPEN　CLOSE=====*/
.department__summary-cta .is-open,
.department__summary-cta .is-close {
  display: inline;
}

.department:not([open]) .department__summary-cta .is-open {
  display: none;
}

.department[open] .department__summary-cta .is-close {
  display: none;
}

.department[open] .department__summary-cta .toggle_icon {
  transform: translateY(-50%) rotate(45deg);
}

/*department__content*/
.department__content {
  padding-top: 35px;
  padding-bottom: 1px;
}

.department__content h3 {
  font-size: 28px;
  line-height: 1.7;
  letter-spacing: 2.8px;
  margin-bottom: 40px;
  font-weight: 500;
}

.department__content h3 sup {
  top: 0em;
  font-size: 0.6em;
}

.department__content figure {
  width: 340px;
  margin-bottom: 23px;
  margin-inline: auto;
}

.department__content figure.department__photo img {
  border-radius: 10px;
}

.department__content p.department_lead_text {
  text-align: justify;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.16px;
}

.department__content small.memo {
  margin-block: 13px 0px;
  line-height: 1.7;
  letter-spacing: 0.1px;
  display: inline-block;
  letter-spacing: 0.14px;
}

.department__content .accs {
  margin-top: 40px;
}

.department__content details.dept-acc {
  width: 100%;
  margin-bottom: 20px;
}

.department__content details.dept-acc summary.dept-acc__summary {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 2.2px;
  position: relative;
  width: 340px;
  height: 85px;
}

.department__content
  details.dept-acc
  summary.dept-acc__summary
  span.dept-acc__title {
  position: absolute;
  top: 50%;
  left: 19px;
  transform: translateY(-50%);
}

.department__content
  details.dept-acc
  summary.dept-acc__summary
  span.dept-acc__label {
  display: block;
  max-width: 100%;
}

.department__content
  details.dept-acc
  summary.dept-acc__summary
  span.dept-acc__sub {
  font-size: 17px;
  letter-spacing: 1.7px;
}

.department__content details.dept-acc summary.dept-acc__summary::after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  background: url('../img/sum_arrow.png') no-repeat center / contain;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
}

.department__content details.dept-acc[open] summary.dept-acc__summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.department__content details.dept-acc div.dept-acc__content {
  padding: 30px;
}

.department__content details.dept-acc div.dept-acc__content figure {
  width: 280px;
  height: auto;
}

.department__content details.dept-acc div.dept-acc__content figure img {
  border-radius: 10px;
}

.department__content
  details.dept-acc
  div.dept-acc__content
  figure.dept-acc__table
  img {
  border-radius: 0px;
}

.department__content details.dept-acc div.dept-acc__content small {
  display: inline-block;
  letter-spacing: 0.14px;
  line-height: 1.71;
}

.department__content
  details.dept-acc
  div.dept-acc__content
  p.dept-acc__career-list {
  font-size: var(--f16);
  line-height: 2;
}

.department__content section.pickup {
  margin-top: 45px;
}

.department__content section.pickup h4 {
  width: 340px;
  height: 130px;
  border-top: 4px solid var(--black);
  padding-top: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2.4px;
  font-feature-settings: 'palt' on;
}

.department__content section.pickup h4 span.pickup-label {
  width: 112px;
  height: 36px;
  border-radius: 25px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 10;
  font-size: 19px;
  display: flex;
  align-items: center;
  letter-spacing: 0.1px;
  justify-content: center;
}

.department__content section.pickup h4 span.pickup-label::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  --h: 20px;
  border-left: calc(var(--h) * 0.66) solid transparent;
  border-right: calc(var(--h) * 0.66) solid transparent;
  border-top: var(--h) solid var(--orange);
  z-index: -1;
}

.department__content section.pickup figure.pickup__image {
  width: 340px;
  height: 258px;
  margin: 25px auto;
  position: relative;
}

.pickup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pickup__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 7px solid var(--orange);
  pointer-events: none;
  z-index: 1;
}

.department__content section.pickup p.pickup_text {
  text-align: justify;
  font-size: 16px;
  line-height: 2;
}

.department__content
  section.pickup
  details.dept-acc
  .dept-acc__content
  figure.ept-acc__image {
  width: 280px;
  height: 212px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.department__content section.pickup details.dept-acc .dept-acc__content p,
.department__content details.dept-acc .dept-acc__content p {
  width: 281px;
  letter-spacing: 0.16px;
  line-height: 2;
}

.department__content .round_bg {
  position: relative;
  isolation: isolate;
}

.round_bg::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 809px;
  width: 100%;
  height: 77%;
  background: #fff;

  /* 上だけ丸くする */
  border-radius: 250px 250px 0 0;

  transform: translateX(-50%);
  z-index: -1;
}

.department__content section.pickup article.pickup__interview h5 {
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 1.1px;
  text-align: center;
  margin-block: 39px 31px;
  font-weight: 400;
}

.department__content section.pickup article.pickup__interview figure.voice {
  width: 240px;
  height: 240px;
  border-radius: 240px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.department__content
  section.pickup
  article.pickup__interview
  figure.voice
  figcaption {
  display: flex;
  width: 115px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  font-size: 18px;
  letter-spacing: 0.9px;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 300;
}

.department__content
  section.pickup
  article.pickup__interview
  p.interview_title {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 2.1px;
  margin-bottom: 25px;
}

.department__content section.pickup article.pickup__interview p.interview_data {
  border-left: 5px solid var(--orange);
  height: auto;
  padding: 0 0 0 15px;
  align-items: center;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 1.8px;
}

.department__content section.pickup article.pickup__interview p.job_place {
  font-size: 18px;
  letter-spacing: 1.8px;
  display: flex;
  height: 50px;
  padding: 10px 0;
  border-top: 1px solid var(--orange);
  border-bottom: 1px solid var(--orange);
  margin: 27px auto;
  align-items: center;
}

.department__content section.pickup article.pickup__interview p.job_place span {
  display: flex;
  width: 57px;
  height: 25px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.7px;
  font-size: 14px;
  margin-right: 13px;
}

.department__content section.pickup article.pickup__interview p.interview_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}

.department__content section.pickup article.pickup__interview dl.qa {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}

.department__content section.pickup article.pickup__interview dl.qa dt,
.department__content
  section.pickup
  article.pickup__interview
  table.voice_history
  caption {
  font-weight: 600;
  letter-spacing: 1.6px;
}

.department__content section.pickup article.pickup__interview dl.qa dd {
  letter-spacing: 0.03em;
  margin-bottom: 25px;
}

.department__content
  section.pickup
  article.pickup__interview
  dl.qa
  dd
  figure.QA {
  margin-top: 23px;
}

.department__content
  section.pickup
  article.pickup__interview
  dl.qa
  dd
  figure.QA
  img {
  border-radius: 10px;
}

.department__content
  section.pickup
  article.pickup__interview
  table.voice_history
  caption {
  text-align: left;
  margin-bottom: 14px;
}

.department__content a.department_cta {
  width: 280px;
  height: 90px;
  padding-left: 25px;
  font-size: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2px;
  border-radius: 5px;
  position: relative;
  margin-bottom: 60px;
  margin-top: 60px;
  margin-inline: auto;
}

.department__content a.department_cta::after {
  position: absolute;
  content: '';
  width: 26px;
  height: 26px;
  background: url('../img/ex_link.png') no-repeat center / contain;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

/* departments_edu */
.edu_bg_o {
  background-color: var(--edu-bg, var(--orange));
}

.edu_bg_lo {
  background-color: var(--light_orange);
}

.edu_fo_o {
  color: var(--orange);
}

.department__content
  section.pickup
  article.pickup__interview
  table.voice_history {
  width: 340px;
  height: 556px;
  border-top: 1px solid var(--orange);
  font-size: 16px;
}

.department__content
  section.pickup
  article.pickup__interview
  table.voice_history
  tr {
  display: flex;
  padding-block: 12px;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid var(--orange);
  line-height: 1.1;
}

.department__content
  section.pickup
  article.pickup__interview
  table.voice_history
  tr {
  position: relative;
}

th {
  font-weight: normal;
  width: 99px;
}

td {
  line-height: 1.3;
}

td span.td_small {
  display: block;
}

.department__content
  section.pickup
  article.pickup__interview
  table.voice_history
  tr
  td
  span.balloon {
  position: absolute;
  border-radius: 5px;
  right: 0;
  top: -49px;
  width: 91px;
  padding: 10px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
}

.department__content
  section.pickup
  article.pickup__interview
  table.voice_history
  tr
  td
  span.balloon2 {
  top: -91px;
}

.department__content
  section.pickup
  article.pickup__interview
  table.voice_history
  tr
  td
  span.balloon_big {
  top: -28px;
}

.department__content
  section.pickup
  article.pickup__interview
  table.voice_history
  tr
  td
  span.balloon::after {
  content: '';
  position: absolute;
  left: 20px;
  bottom: -10.5px;
  width: 28px;
  height: 18px;
  background: var(--orange);
  clip-path: polygon(23% 0%, 100% 0%, 2% 100%);
}

.department__content
  section.pickup
  article.pickup__interview
  table.voice_history
  tr
  td
  span.balloon.balloon_big::after {
  left: -6px;
  bottom: 41px;
  transform: rotate(53deg);
  transform-origin: top center;
}

/* departments_nur */

.nur_bg_p {
  background-color: var(--nur-bg, var(--pink));
}

.nur_bg_lp {
  background-color: var(--light_pink);
}

.nur_fo_p {
  color: var(--pink);
}

section.departments
  .departments-list
  details.department--nur
  summary.department__summary
  span.department__name::after {
  background: url('../img/ribbon_p.png') no-repeat center / contain;
}

section.departments
  .departments-list
  details.department--nur
  summary.department__summary
  ul
  li::before {
  background: url('../img/check_circle_p.png') no-repeat center / contain;
}

details.department--nur
  .department__content
  section.pickup
  h4
  span.pickup-label::after {
  border-top: var(--h) solid var(--pink);
}

details.department--nur
  .department__content
  section.pickup
  figure.pickup__image::after {
  border: 7px solid var(--pink);
}

details.department--nur
  .department__content
  section.pickup
  article.pickup__interview
  p.interview_data {
  border-left: 5px solid var(--pink);
}

details.department--nur
  .department__content
  section.pickup
  article.pickup__interview
  p.job_place {
  border-top: 1px solid var(--pink);
  border-bottom: 1px solid var(--pink);
}

.voice2_wrap {
  margin-top: 48px;
}

details.department--nur .round_bg::before {
  top: 143px;
  height: 105%;
}

/* departments_eco */

.eco_bg_a {
  background-color: var(--eco-bg, var(--aqua));
}

.eco_bg_la {
  background-color: var(--light_aqua);
}

.eco_fo_a {
  color: var(--aqua);
}

section.departments
  .departments-list
  details.department--eco
  summary.department__summary
  span.department__name::after {
  background: url('../img/ribbon_a.png') no-repeat center / contain;
}

section.departments
  .departments-list
  details.department--eco
  summary.department__summary
  ul
  li::before {
  background: url('../img/check_circle_a.png') no-repeat center / contain;
}

.department__content details.dept-acc div.dept-acc__content ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  position: relative;
  padding-left: 20px;
}

.department__content details.dept-acc div.dept-acc__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 16px;
  background-color: var(--aqua);
  border-radius: 50%;
}

details.department--eco
  .department__content
  section.pickup
  h4
  span.pickup-label::after {
  border-top: var(--h) solid var(--aqua);
}

details.department--eco
  .department__content
  section.pickup
  figure.pickup__image::after {
  border: 7px solid var(--aqua);
}

details.department--eco
  .department__content
  section.pickup
  img.pickup__image_mdash {
  margin-top: 30px;
}

details.department--eco
  .department__content
  section.pickup
  figure.pickup__image_mdash {
  width: 340px;
  height: 156px;
}

details.department--eco
  .department__content
  section.pickup
  article.pickup__interview
  p.interview_data {
  border-left: 5px solid var(--aqua);
}

details.department--eco
  .department__content
  section.pickup
  article.pickup__interview
  p.job_place {
  border-top: 1px solid var(--aqua);
  border-bottom: 1px solid var(--aqua);
}

details.department--eco .round_bg::before {
  top: 141px;
  height: 109%;
}

/* departments_hum */

.hum_bg_g {
  background-color: var(--hum-bg, var(--green));
}

.hum_bg_lg {
  background-color: var(--light_green);
}

.hum_fo_g {
  color: var(--green);
}

section.departments
  .departments-list
  details.department--hum
  summary.department__summary
  span.department__name::after {
  background: url('../img/ribbon_g.png') no-repeat center / contain;
}

section.departments
  .departments-list
  details.department--hum
  summary.department__summary
  ul
  li::before {
  background: url('../img/check_circle_g.png') no-repeat center / contain;
}

section.departments
  .departments-list
  details
  summary.department__summary
  ul
  li
  small {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.2px;
}

details.department--hum
  .department__content
  section.pickup
  h4
  span.pickup-label::after {
  border-top: var(--h) solid var(--green);
}

details.department--hum
  .department__content
  section.pickup
  figure.pickup__image::after {
  border: 7px solid var(--green);
}

/* aside fixed */
aside.fixed-cta {
  position: fixed;
  width: 100%;
  max-width: 450px;
  min-width: 340px;
  height: 50px;
  border-top: 1px solid var(--blue);
  background: rgba(255, 255, 255, 0.95);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

aside.fixed-cta a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

aside.fixed-cta a p {
  width: clamp(322.333px, calc(344px + (100vw - 390px) * 0.4333333333), 370px);
  display: flex;
  justify-content: space-between;
  font-size: clamp(16px, calc(16px + (100vw - 367px) * (1 / 23)), 17px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.85px;
  font-feature-settings: 'palt' on;
}

aside.fixed-cta a p img {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

/* footer */

footer .footer-main {
  width: 100%;
  padding: 33px 0 39px 0;
  text-align: center;
  margin-inline: auto;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 2.25px;
  font-size: 15px;
}

footer .footer-main a img {
  width: 280px;
  height: auto;
  margin-inline: auto;
  display: block;
  margin-bottom: 29px;
}

footer .footer-main nav {
  margin-top: 22px;
}

footer .footer-main nav p.campus {
  margin-bottom: 2px;
}

footer .footer-main nav p.dep {
  display: inline-block;
  padding-inline: 10px 2px;
  border-left: 1px solid var(--black);
  font-weight: 400;
  line-height: 1;
}

footer .footer-main nav p.dep.last {
  border-right: 1px solid var(--black);
  padding-right: 7px;
}

footer .footer-main nav p.address {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.8px;
  margin-top: 6px;
}

footer address {
  width: 340px;
  height: 35px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.7px;
  margin: 31px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
}

footer a.footer-cta {
  width: 340px;
  height: 60px;
}

.recruit_logo_wrap {
  width: 100%;
  padding-block: 15px 80px;
  background-color: #fff;
}

footer div.recruit_logo {
  width: 340px;
  margin-inline: auto;
}

@media (min-width: 340px) {
  .hero p {
    font-size: 16px;
  }
}
@media (min-width: 451px) {
  .feature-dialog {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    height: 100vh;
    max-width: 450px;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
  }

  aside.fixed-cta {
    height: 60px;
    padding-bottom: 10px;
  }
}

@media (min-width: 900px) {
  .pc {
    display: block;
  }

  .sptb {
    display: none;
  }

  .lp a.recruit_logo_white {
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: block;
    z-index: 1000;
  }

  .recruit_logo_wrap {
    background-color: var(--gray);
  }

  .lp__side {
    display: block;
  }

  .lp__side--left {
    left: 0;
    width: calc((100vw - min(var(--max), 100vw)) / 2);
  }

  .lp__side--right {
    right: 0;
    width: calc((100vw - min(var(--max), 100vw)) / 2);
  }

  aside.fixed-cta {
    height: 50px;
    padding-bottom: 0px;
  }

  /* ===== lp__center  ===== */

  .lp__center .stage {
    padding-top: 35px;
  }

  /* ===== lp__side--left  ===== */

  .lp_side_inner {
    width: auto;
    height: auto;
    margin-top: clamp(37px, 3.1481vw + 8.6667px, 54px);
    margin-inline: auto;
    margin-bottom: 10px;
  }

  .lp_side_inner .logo {
    margin-inline: auto;
    width: clamp(215px, 46.1111vw - 200px, 298px);
    height: auto;
  }

  .lp__side nav.menu__panel {
    position: static;
    width: 200px;
    max-width: 200px;
    min-width: 200px;
    height: 423px;
    margin-top: clamp(70px, 24.0741vw - 146.6667px, 200px);
    padding-top: 0px;
  }

  .lp__side nav.menu__panel h2 {
    color: #fff;
    text-align: left;
  }

  .lp__side nav.menu__panel ul.global-nav__list {
    width: auto;
    gap: 30px;
    margin-bottom: 60px;
    margin-top: 60px;
  }

  .lp__side nav.menu__panel a.global-nav__cta {
    border: 1px solid #fff;
  }

  .lp__side nav.menu__panel a.global-nav__cta::after {
    background: url('../img/ex_link_white_pc.png') no-repeat center / contain;
  }

  /* ===== lp__side--right  ===== */

  section.schedule {
    height: auto;
    width: 220px;
    margin-inline: auto;
    text-align: center;
    margin-top: clamp(50px, 14.8148vw - 83.3333px, 130px);
    margin-bottom: 10px;
  }

  section.schedule h2 {
    font-size: 36px;
    letter-spacing: 1.8px;
  }

  section.schedule p.schedule__lead {
    font-feature-settings: 'palt' on;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.76;
    letter-spacing: 1.7px;
    margin-block: 24px 40px;
    width: 192px;
    margin-inline: auto;
  }

  section.schedule ul.schedule__list {
    display: grid;
    gap: 32.35px;
    width: 220px;
  }

  section.schedule ul.schedule__list li.schedule__item a {
    width: 220px;
    border-radius: 12.941px;
    border: 1px solid var(--blue);
    display: flex;
    height: 122.9412px;
    align-items: center;
    overflow: hidden;
    position: relative;
    background: #fff;
  }

  /*oc*/
  section.schedule ul.schedule__list li.schedule__item.oc a {
    background: url('../img/schedule_oc_n.png') no-repeat center / contain;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.oc
    a
    div.schedule-card__body {
    flex: initial;
    margin-top: 0px;
    text-align: left;
    padding-inline: 20px;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.oc
    a
    div.schedule-card__body
    p.schedule-card__badge {
    font-size: 12.6757px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.268px;
    background: var(--blue);
    padding: 4px 5px 5px 6px;
    display: inline-block;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.oc
    a
    div.schedule-card__body
    p.schedule-card__heading {
    font-size: 26.5294px;
    font-weight: 400;
    line-height: 1.09;
    margin-top: 6px;
    border-top: 0px solid var(--blue);
    border-bottom: 0px solid var(--blue);
    letter-spacing: 0px;
    color: var(--blue);
  }

  /*consult*/

  section.schedule
    ul.schedule__list
    li.schedule__item
    a
    div.schedule-card__body {
    flex: 1;
    padding-inline: 13px;
    margin-top: 0px;
    text-align: center;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item
    a
    div.schedule-card__body
    p.schedule-card__kicker {
    font-weight: 600;
    line-height: 1.69;
    letter-spacing: 1.035px;
    padding-bottom: 7px;
    color: var(--blue);
    font-size: 10.353px;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item
    a
    div.schedule-card__body
    p.schedule-card__heading {
    font-size: 14.882px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.488px;
    padding-block: 2px 4px;
    border-top: 1.5px solid var(--blue);
    border-bottom: 1.5px solid var(--blue);
    color: var(--blue);
  }

  section.schedule
    ul.schedule__list
    li.schedule__item
    a
    figure.schedule-card__media
    img {
    flex: 1;
    width: 110px;
    height: 123px;
    object-fit: cover;
  }

  /*early & general*/
  section.schedule
    ul.schedule__list
    li.schedule__item.early
    a
    div.schedule-card__body {
    margin-top: 0px;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.general
    a
    div.schedule-card__body {
    padding-inline: 11px 9px;
    margin-top: 0px;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.early
    a
    div.schedule-card__body
    p.schedule-card__badge,
  section.schedule
    ul.schedule__list
    li.schedule__item.general
    a
    div.schedule-card__body
    p.schedule-card__badge {
    font-size: 8.412px;
    font-weight: 400;
    line-height: 1.38;
    letter-spacing: 0.421px;
    background: #118ccf;
    color: #fff;
    padding: 5px 16px 5px 16px;
    display: inline-block;
    border-radius: 16.176px;
    margin-bottom: 3px;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.general
    a
    div.schedule-card__body
    p.schedule-card__badge {
    padding: 5px 10px 5px 10px;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.early
    a
    div.schedule-card__body
    p.schedule-card__kicker {
    padding-bottom: 2px;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.general
    a
    div.schedule-card__body
    p.schedule-card__kicker {
    font-size: 9.706px;
    line-height: 1.6;
    letter-spacing: 0.485px;
    padding-bottom: 3px;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.early
    a
    div.schedule-card__body
    p.schedule-card__heading,
  section.schedule
    ul.schedule__list
    li.schedule__item.general
    a
    div.schedule-card__body
    p.schedule-card__heading {
    line-height: 1.77;
    letter-spacing: 1.229px;
    font-size: 12.294px;
    padding-block: 1px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.general
    a
    div.schedule-card__body
    p.schedule-card__heading {
    line-height: 1.21;
    padding-block: 4px 5px;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.early
    a
    div.schedule-card__body
    p.schedule-card__heading
    span.sub {
    font-size: 8.412px;
    letter-spacing: 0.841px;
  }

  section.schedule
    ul.schedule__list
    li.schedule__item.early
    a
    div.schedule-card__body
    p.schedule-card__heading
    span.last {
    margin-top: -4px;
  }
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }

  section.features .feature-grid button:hover::before {
    transform: scale(1.1);
  }

  section.features .feature-grid button:hover::after {
    background-color: rgba(61, 66, 152, 0.7);
  }

  .edu_bg_o.is-hoverable:hover {
    --edu-bg: var(--hover_orange);
  }
  .nur_bg_p.is-hoverable:hover {
    --nur-bg: var(--hover_pink);
  }
  .eco_bg_a.is-hoverable:hover {
    --eco-bg: var(--hover_aqua);
  }
  .hum_bg_g.is-hoverable:hover {
    --hum-bg: var(--hover_green);
  }

  aside.fixed-cta:hover {
    height: 60px;
    padding-bottom: 10px;
  }

  section.schedule ul.schedule__list li.schedule__item a:hover::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }

  aside.fixed-cta a:hover,
  section.schedule ul.schedule__list li.schedule__item a:hover {
    opacity: 1;
  }
}
