@charset "UTF-8";
/*====================================
 * Base
=====================================*/
/* :root {

} */

html {
  scroll-behavior: auto;
}

html:has(body.modaal-noscroll) {
  overflow-y: scroll;
}

body {
  color: #28343B;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: var(--font-size-16);
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
}

.container {
    isolation: isolate;
    overflow-x: clip;
}

/* ドロワー表示時のスクロール防止 (モバイル表示時のみ) */
@media screen and (max-width: 1023.98px) {
  body.drawer-open {
    overflow: hidden !important;
  }
}

/* 背景透過マスク */
.drawer-overlay {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

@media screen and (max-width: 1023.98px) {
  body.drawer-open .drawer-overlay {
    display: block;
  }
}

main :where(a:link),
main :where(a:visited),
main :where(a:active) {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  transition: all 0.3s;
  text-decoration-thickness: 1px;
}

a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

img {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.text--color-red {
  color: var(--color-red);
}

.text--size-small {
  font-size: 0.9em;

  @media screen and (min-width: 1281px) {
    font-size: 0.85em;
  }
}

/*====================================
 * Header
 =====================================*/
.header {
  & .header__inner {
    height: 60px;
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media screen and (min-width: 768px) and (max-width: 1280px) {
      height: 60px;
      background-color: #FFF;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    @media screen and (min-width: 1281px) {
      height: 70px;
    }

    & .header__logo {
      font-size: 14px;
      color: #4C5155;
      padding-left: 15px;
      letter-spacing: 0.02em;
      font-weight: 700;
      line-height: 1.5;

      @media screen and (min-width: 768px) and (max-width: 1280px) {
        font-size: 15px;
      }

      @media screen and (min-width: 1281px) {
        font-size: min(1.56vw, 21px);
        padding-left: 30px;
        line-height: 1.2;
        letter-spacing: 0.2em;
      }

      & .header__logo-link {
        & br {
          @media screen and (max-width: 767px) {
            display: inline;
          }

          @media screen and (min-width: 768px) and (max-width: 1280px) {
            display: inline;
          }

          @media screen and (min-width: 1281px) {
            display: none;
          }
        }
      }
    }
  }
}

/*====================================
 * Header Actions & Navigation (Flat Structure)
 =====================================*/
.header__actions {
  display: flex;
}

/* モバイル表示時（1023px以下）のレイアウトと挙動 */
@media screen and (max-width: 1023.98px) {
  .header__actions {
    position: fixed;
    z-index: 2;
    left: 0;
    width: 100%;
    top: -100vh; /* 初期状態は画面外の上部に配置 */
    height: 100vh !important;
    max-height: 100vh !important;
    box-sizing: border-box !important;
    touch-action: pan-y !important;
    transition: top 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    flex-direction: column;
    background: rgba(251, 254, 255, 0.85);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    will-change: transform, opacity;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-top: 60px; /* ヘッダーの高さ分押し下げる */
    padding-bottom: 80px; /* スクロール時の最下部余白 */
    padding-right: 40px;
    padding-left: 40px;
  }

  .header__actions > * {
    flex-shrink: 0; /* 子要素（メニュー項目とボタン）の縮小を防ぐ */
  }
}

/* PC表示時（1024px以上）のレイアウト */
@media screen and (min-width: 1024px) {
  .header__actions {
    flex-direction: row;
    min-height: auto;
    height: 100%;
  }
}

.header__nav {
  position: sticky;
  top: 0;
  margin-inline: auto;
}

@media screen and (max-width: 1023.98px) {
  .header__nav {
    position: static !important;
  }
}

@media screen and (min-width: 1024px) {
  .header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header__nav-item {
  margin-right: min(1.17vw, 30px);
  margin-bottom: 24px;
}

@media screen and (min-width: 1024px) {
  .header__nav-item {
    margin-bottom: 0;
  }
}

.header__nav-item:last-child {
  margin-bottom: 0;
}

.header__nav-link {
  color: #35A7EE;
  font-weight: bold;
  font-size: 21px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 1024px) {
  .header__nav-link {
    font-weight: 500;
    font-size: 15px;
    color: #4C5155;
  }
}

.header__nav-link span {
  font-size: 15px;
  margin-left: 16px;
  font-family: "Ubuntu Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

@media screen and (min-width: 1024px) {
  .header__nav-link span {
    display: none;
  }
}

.header__nav-submenu {
  display: grid;
  gap: 4px;
  justify-content: left;
  color: #65696C;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

@media screen and (min-width: 1024px) {
  .header__nav-submenu {
    display: none;
  }
}

.header__nav-submenu.col-2 {
  grid-template-columns: auto auto;
  gap: 4px 16px;
}

@media screen and (min-width: 1024px) {
  .header__nav-submenu.col-2 {
    display: none;
  }
}

.header__nav-submenu li {
  position: relative;
  padding-left: 18px;
}

.header__nav-submenu li::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 1px;
  background-color: #4DB0EE;
  top: 0.75em;
  left: 0;
  margin: auto 0;
}

.header__entry {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F8EB76;
  height: 45px;
  line-height: 45px;
  width: 100%;
  max-width: 300px;
  color: #2E9CE0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.12em;
  border: solid 1px #35A7EE;
  margin-inline: auto;
}

@media screen and (max-width: 1023.98px) {
  .header__entry {
    margin-top: 32px !important;
  }
}

@media screen and (min-width: 1024px) {
  .header__entry {
    height: 100%;
    line-height: normal;
    width: clamp(160px, 12.5vw, 254px);
    max-width: auto;
    letter-spacing: 0.25em;
    border: none;
  }
}

.header.drawer-navbar--fixed {
  position: sticky;
  top: 0;
  z-index: 3;
}

/* ドロワーが開いている時のメニュー位置 (モバイルのみ) */
@media screen and (max-width: 1023.98px) {
  body.drawer-open .header .header__actions {
    top: 0;
  }

  /* メニュー項目とエントリーボタンの初期状態（閉じているときは非表示＆少し下に配置） */
  .header__nav-item,
  .header__entry {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* メニュー展開時の表示状態（元の位置に戻りフェードイン） */
  body.drawer-open .header__nav-item,
  body.drawer-open .header__entry {
    opacity: 1;
    transform: translateY(0);
  }

  /* 上から順に段階的に表示するためのディレイ（Stagger）設定 */
  body.drawer-open .header__nav-item:nth-child(1) { transition-delay: 0.12s; }
  body.drawer-open .header__nav-item:nth-child(2) { transition-delay: 0.18s; }
  body.drawer-open .header__nav-item:nth-child(3) { transition-delay: 0.24s; }
  body.drawer-open .header__nav-item:nth-child(4) { transition-delay: 0.30s; }
  body.drawer-open .header__nav-item:nth-child(5) { transition-delay: 0.36s; }
  body.drawer-open .header__nav-item:nth-child(6) { transition-delay: 0.42s; }
  body.drawer-open .header__entry { transition-delay: 0.48s; }
}

.drawer-hamburger {
  position: relative;
  z-index: 4;
  box-sizing: content-box;
  width: 33px;
  padding: 0 15px 0 27px;
  display: flex !important;
  align-items: center;
  height: 60px;
  border: none;
  outline: 0;
  background: transparent;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateZ(0);

  @media screen and (min-width: 1024px) {
    display: none !important;
  }
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  width: 33px;
  margin-top: 0 !important; /* ライブラリのmargin干渉をリセット */
  height: 11px;
  background: linear-gradient(180deg, #DAF1FF 0%, #5FB6ED 100%);
  border-radius: 15px;
  transition: background-color 0.3s ease;

  &::before, &::after {
    content: "";
    position: absolute;
    display: block;
    height: 11px;
    background: linear-gradient(180deg, #DAF1FF 0%, #5FB6ED 100%);
    border-radius: 15px;
    transition: transform 0.3s ease, top 0.3s ease, width 0.3s ease;
  }

  &::before {
    width: 45px;
    top: -15px;
    right: 0;
    left: auto;
  }

  &::after {
    width: 18px;
    top: 15px;
    right: 0;
    left: auto;
  }
}

/* メニュー展開時のハンバーガーボタン「×」印変形アニメーション */
@media screen and (max-width: 1023.98px) {
  body.drawer-open .drawer-hamburger-icon {
    background: transparent !important; /* 真ん中の線を透明化 */
  }

  body.drawer-open .drawer-hamburger-icon::before {
    width: 33px;
    top: 0;
    transform: rotate(45deg);
  }

  body.drawer-open .drawer-hamburger-icon::after {
    width: 33px;
    top: 0;
    transform: rotate(-45deg);
  }
}

/*====================================
 * ENTRY
 =====================================*/
.entry__inner {
  padding: 50px 20px 0 20px;
  background: linear-gradient(270deg, #A8D8F6 0%, #6FBEF0 25.48%, #5CB6EE 45.67%, #6FBEF0 60.1%, #A8D8F6 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.5);

  @media screen and (min-width: 1281px) {
    padding: 80px 20px 0 20px;
  }

  & .entry__title {
    text-align: center;
    font-size: 25px;
    font-family: "Ubuntu Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #FFF;
    letter-spacing: 0.25em;
    margin-bottom: 30px;

    @media screen and (min-width: 768px) and (max-width: 1280px) {
      font-size: 45px;
      margin-bottom: 40px;
    }

    @media screen and (min-width: 1281px) {
      font-size: 45px;
      margin-bottom: 40px;
    }
  }

  & .entry__cards {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;

    @media screen and (min-width: 768px) and (max-width: 1280px) {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      width: 90%;
      max-width: 830px;
      margin-inline: auto;
      margin-bottom: 80px;
    }

    @media screen and (min-width: 1281px) {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      max-width: 1330px;
      margin-inline: auto;
      margin-bottom: 64px;
    }
  }

  & .entry__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    height: 135px;
    margin-inline: auto;
    background: #FFFFFF;
    box-shadow: 5px 8px 8px #48ACEB, inset -4px -7px 8px #B1CDDF;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    &:hover {
      transform: translateY(-6px);
      box-shadow: 8px 14px 16px #48ACEB, inset -4px -7px 8px #B1CDDF;
      opacity: 1;
    }

    @media screen and (min-width: 1281px) {
      flex-direction: row;
      max-width: 100%;
      height: 165px;
      gap: 24px;
    }

    & .entry__card-title {
      font-size: 35px;
      font-weight: bold;
      line-height: 1;

      @media screen and (min-width: 1281px) {
        font-size: 41px;
        line-height: 1.6;
        letter-spacing: 0.02em;
      }
    }

    & .entry__card-text {
      font-size: 15px;
      line-height: 1.3;
      padding-right: 26px;
      background-size: 18px 18px;
      background-position: right center;
      background-repeat: no-repeat;

      @media screen and (min-width: 1281px) {
        font-size: 20px;
        letter-spacing: 0.25em;
        line-height: 40px;
        padding-right: 55px;
        background-size: 40px 40px;
      }
    }

    &.entry__card--career {
      & .entry__card-title {
        color: #38A2E4;
      }

      & .entry__card-text {
        background-image: url(../images/common/entry_card_arrow_blue.svg);
      }
    }

    &.entry__card--graduate {
      & .entry__card-title {
        color: #FF6596;
      }

      & .entry__card-text {
        background-image: url(../images/common/entry_card_arrow_pink.svg);
      }
    }
  }

  & .entry__message {
    font-family: "Ubuntu Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    text-align: center;
    color: #FFF;

    & .entry__message-main {
      display: inline-block;
      font-size: 26px;
      margin-bottom: 8px;
      line-height: 1.7;
      letter-spacing: 0.2em;
      background-image: url(../images/common/entry_message_bg.svg);
      background-repeat: no-repeat;
      background-position: 8px bottom;
      background-size: 258px;
      padding-bottom: 4px;

      @media screen and (min-width: 768px) and (max-width: 1280px) {
        font-size: 64px;
        line-height: 1.3;
        background-size: 634px;
        background-position: 16px bottom;
        padding-bottom: 20px;
      }

      @media screen and (min-width: 1281px) {
        font-size: 64px;
        line-height: 1.3;
        background-size: 634px;
        background-position: 16px bottom;
        padding-bottom: 20px;
      }
    }

    & .entry__message-sub {
      font-size: 14px;
      letter-spacing: 0.2em;
      margin-bottom: 24px;

      @media screen and (min-width: 768px) and (max-width: 1280px) {
        font-size: 32px;
        margin-bottom: 60px;
      }

      @media screen and (min-width: 1281px) {
        font-size: 32px;
        margin-bottom: 60px;
      }
    }

    & .entry__message-image {
      width: 235px;
      margin-inline: auto;

      @media screen and (min-width: 768px) and (max-width: 1280px) {
        width: 606px;
      }

      @media screen and (min-width: 1281px) {
        width: 606px;
      }

      & img {
        width: 100%;
      }
    }
  }
}

/*====================================
 * Footer
 =====================================*/
.footer {
  position: relative;
  z-index: 2;
  transform: translateZ(0);
}

.footer__inner {
  background-color: #FFF;
  padding: 30px 20px 10px 20px;

  @media screen and (min-width: 768px) and (max-width: 1280px) {
    padding: 40px 20px 10px 20px;
  }

  @media screen and (min-width: 1281px) {
    padding: 40px 20px 10px 20px;
  }

  & .footer__nav {
    font-size: 14px;
    margin-bottom: 50px;

    @media screen and (min-width: 1281px) {
      font-size: 15px;
      margin-bottom: 64px;
    }

    & ul {
      display: flex;
      flex-direction: column;
      gap: 12px;

      @media screen and (min-width: 768px) and (max-width: 1280px) {
        justify-content: center;
        flex-direction: row;
        gap: 20px;
      }

      @media screen and (min-width: 1281px) {
        justify-content: center;
        flex-direction: row;
        gap: 20px;
      }
    }

    & .footer__nav-link a {
      color: #28343B;
    }
  }

  & .footer__logo {
    text-align: center;
    margin-bottom: 20px;

    & img {
      max-width: 250px;

      @media screen and (min-width: 768px) and (max-width: 1280px) {
        max-width: 350px;
      }

      @media screen and (min-width: 1281px) {
        max-width: 350px;
      }
    }
  }

  & .footer__copyright {
    font-size: 13px;
    text-align: center;

    @media screen and (min-width: 768px) and (max-width: 1280px) {
      font-size: 12px;
    }

    @media screen and (min-width: 1281px) {
      font-size: 12px;
    }
  }
}


/*====================================
Breadcrumbs
=====================================*/
& .breadcrumbs {
  max-width: 1280px;
  margin-inline: auto;

  & .breadcrumbs__list {
    padding: 16px 8px 0 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    & .breadcrumbs__item {
      font-size: 13px;
      color: #FFF;

      &::after {
        content:"－";
        margin-left: 8px;
      }

      &:last-child::after {
        display: none;
      }

      & .breadcrumbs__link {
        text-decoration: underline;
      }
    }
  }
}

/*====================================
Common
=====================================*/
.page-header-group:has(.page-header) {
  position: sticky;
  top: 60px;
  z-index: -1;

  @media screen and (min-width: 1281px) {
    top: 70px;
  }
}
.page-header {
  height: 144px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 61.06%, rgba(188, 229, 255, 0.9) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12.5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  @media screen and (min-width: 768px) {
    height: 230px;
  }

  & .page-header__title {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #4DB0EE;
    line-height: 1.2;
    padding-bottom: 24px;

    @media screen and (min-width: 768px) {
      font-size: 40px;
      letter-spacing: 0.1em;
      padding-bottom: 38px;
    }

    &::after {
      position: absolute;
      content: "";
      display: block;
      width: 159px;
      height: 23px;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
        /* margin: 0 auto; */
      background-image: url(../images/common/title_line.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: top center;

      @media screen and (min-width: 768px) {
        width: 256px;
        height: 37px;
      }
    }

    & .page-header__title-en {
      display: block;
      font-family: "Ubuntu Sans", sans-serif;
      font-optical-sizing: auto;
      font-weight: 700;
      font-style: normal;
      font-variation-settings: "wdth" 100;
      font-size: 15px;
      letter-spacing: 0.16em;
      color: #8ECBF1;
      margin-bottom: 10px;
      line-height: 1.2;

      @media screen and (min-width: 768px) {
        font-size: 22px;
        margin-bottom: 24px;
      }
    }

    & .page-header__title-br {
      @media screen and (min-width: 1024px) {
        display: none;
      }
    }
  }
}

.page__contents-wrap {
  padding: 0 16px;

  @media screen and (min-width: 1024px) {
    padding: 0 30px;
  }
}


/*====================================
Page Top
=====================================*/
.pagetop-white {
  padding: 64px 0 32px 0;
  display: flex;
  justify-content: center;

  @media screen and (min-width: 768px) {
    padding: 104px 0 72px 0;
  }

    & .pagetop__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-family: "Ubuntu Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 18px;
    line-height: 1.0;
    letter-spacing: 0.1em;
    text-decoration: none;

    @media screen and (min-width: 768px) {
      gap: 16px;
      font-size: 24px;
    }

    &::before {
      content: "";
      display: block;
      width: 30px;
      height: 32px;
      background-image: url(../images/common/toptoarrow_white.svg);
      background-repeat: no-repeat;
      background-size: contain;

      @media screen and (min-width: 768px) {
        width: 46px;
        height: 50px;
      }
    }
  }
}


.pagetop-blue {
  padding: 64px 0 32px 0;
  display: flex;
  justify-content: center;

  @media screen and (min-width: 768px) {
    padding: 104px 0 72px 0;
  }

    & .pagetop__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #35A7EE;
    font-family: "Ubuntu Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 18px;
    line-height: 1.0;
    letter-spacing: 0.1em;
    text-decoration: none;

    @media screen and (min-width: 768px) {
      gap: 16px;
      font-size: 24px;
    }

    &::before {
      content: "";
      display: block;
      width: 30px;
      height: 32px;
      background-image: url(../images/common/toptoarrow_blue.svg);
      background-repeat: no-repeat;
      background-size: contain;

      @media screen and (min-width: 768px) {
        width: 46px;
        height: 50px;
      }
    }
  }
}


/*====================================
Adjust
=====================================*/
.tL {
  text-align: left !important;
}

.tR {
  text-align: right !important;
}

.tC {
  text-align: center !important;
}
