@charset "UTF-8";
/* --------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 このファイルはsassでコンパイルされています
 以下の内容を変更したい場合は構成するscssファイルを
 ご確認ください
 ※※※※※※※※※※※※※※※※※※※※※※※※
-------------------------------------------------- */
@import url("https://use.typekit.net/sip6pkt.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/*
html5doctor.com Reset Stylesheet
v1.4
2009-07-27
Author: Richard Clark - http://richclarkdesign.com
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  /*	vertical-align:middle;*/
}

li {
  list-style: none;
}

/* =====================
  ■ variables 共通定義
===================== */
/* =====================
  ■ その他
===================== */
@media screen and (max-width: 767.9px) {
  /* 画面サイズが767pxまではここを読み込む */
  /* =====================
    ■ function 共通定義
  ===================== */
  /* =====================
    ■ variables SP
  ===================== */
  /* =====================
    ■ base SP
  ===================== */
  html {
    font-size: 10px;
    scroll-behavior: smooth;
    scroll-padding-top: 64px;
  }
  body {
    color: #0b214e;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  body.is-fixed {
    overflow: hidden;
  }
  div,
  h1,
  h2,
  h3,
  p,
  ul,
  ol,
  dl,
  dd,
  table,
  th,
  td {
    margin: 0;
    padding: 0;
  }
  li {
    list-style-type: none;
  }
  a {
    color: #0b214e;
    text-decoration: none;
  }
  img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
  }
  .text-list__item {
    position: relative;
    padding-left: 16px;
  }
  .text-list__item::before {
    content: "・";
    position: absolute;
    left: 0;
  }
  .text-list--far {
    margin-bottom: 20px;
  }
  .text-box:not(:last-of-type) {
    margin-bottom: 24px;
  }
  .text-link {
    text-decoration: underline;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border-width: 0;
    white-space: nowrap;
  }
  /* =====================
    ■ about PC
  ===================== */
  .about-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .about-box__title {
    display: inline-block;
    position: relative;
    margin-bottom: 24px;
    padding-block: 36px;
    color: #3264c6;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .about-box__title::before, .about-box__title::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 24px;
    height: 24px;
    background: url("../images/icon/gray/icon_quotation.svg") no-repeat center/contain;
  }
  .about-box__title::before {
    top: 0;
    left: 0;
  }
  .about-box__title::after {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
  }
  .about-box__text:not(:last-of-type) {
    margin-bottom: 24px;
  }
  /* =====================
    ■ button SP
  ===================== */
  .button {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-evenly;
    height: 64px;
    padding-bottom: 2px;
    transition: all 0.2s ease-out;
    border-radius: 8px;
    background: #0eacdb;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
  }
  .button::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 24px;
    width: 16px;
    height: 18px;
    background: url("../images/icon/white/icon_arrow_right.svg") no-repeat bottom center/contain;
  }
  .button-recruit {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-evenly;
    height: 64px;
    padding-bottom: 2px;
    transition: all 0.2s ease-out;
    border-radius: 8px;
    background: #0eacdb;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    justify-content: center;
    gap: 16px;
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  .button-recruit::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 24px;
    width: 16px;
    height: 18px;
    background: url("../images/icon/white/icon_arrow_right.svg") no-repeat bottom center/contain;
  }
  .button-recruit__eng {
    font-family: "sofia-pro", sans-serif;
    font-size: 32px;
    font-weight: 200;
    line-height: 1.2;
  }
  .button-recruit__jp {
    font-size: 20px;
    font-weight: 700;
  }
  .button-recruit__icon::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    margin-top: 10px;
    background: url("../images/icon/white/icon_entry.svg") no-repeat center/contain;
  }
  .button-recruit::after {
    content: none;
  }
  .button-box__item:not(:last-of-type) {
    margin-bottom: 24px;
  }
  /* =====================
    ■ footer SP
  ===================== */
  .footer {
    position: relative;
  }
  .footer-entry {
    width: calc(100% - min(4.267vw, 16px));
    height: 687px;
    margin-left: min(4.267vw, 16px);
    padding-top: min(4.267vw, 16px);
    border-radius: 24px 0 0;
    background: url("../images/common/footer-bg.png") no-repeat center/cover;
  }
  .footer-entry__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
  }
  .footer-entry__eng {
    font-family: "sofia-pro", sans-serif;
    font-size: 32px;
    font-weight: 200;
    line-height: 1.2;
  }
  .footer-entry__jp {
    font-size: 20px;
    font-weight: 700;
  }
  .footer-entry__icon::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    margin-top: 8px;
    background: url("../images/icon/white/icon_entry.svg") no-repeat center/contain;
  }
  .footer-entry__text {
    margin: min(4.267vw, 16px);
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
  }
  .footer-main {
    position: absolute;
    top: 145px;
    width: calc(100% - 16px);
    margin-right: 16px;
    padding: 40px 0 90px;
    border-radius: 0 24px 0 0;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .footer-main__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .footer-main__item {
    text-align: center;
  }
  .footer-main__item:not(:last-of-type) {
    margin-bottom: 32px;
  }
  .footer-main__link {
    color: #fff;
    font-weight: 700;
  }
  .footer-main__logo {
    width: 168px;
    height: 35px;
  }
  .footer-main__copyright {
    color: #fff;
    font-family: "sofia-pro", sans-serif;
    font-size: 1.2rem;
    font-weight: 200;
  }
  .footer-recruit {
    position: fixed;
    z-index: 2;
    right: 0;
    bottom: 40px;
  }
  .footer-recruit__box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 16px 4px 12px;
    border-radius: 8px 0 0 8px;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  .footer-recruit__logo {
    width: 40px;
  }
  .footer-recruit__jp {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
  }
  .footer-recruit__eng {
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 10px;
    font-weight: 200;
    line-height: 1.2;
  }
  /* =====================
    ■ header SP
  ===================== */
  .header {
    position: fixed;
    z-index: 3;
    width: 100%;
  }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease-out;
  }
  .header__inner.is-scroll {
    background: rgba(255, 255, 255, 0.8);
  }
  .header__inner.is-open {
    height: 62px;
    background: #fff;
  }
  .header-logo {
    padding-left: 14px;
  }
  .header-logo__link {
    display: block;
    width: 168px;
    height: 35px;
  }
  .header-menu__box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .header-menu__icon {
    display: block;
    position: relative;
    width: 22px;
    height: 3px;
    border-radius: 30px;
    background: #fff;
  }
  .header-menu__icon::before {
    content: "";
    display: block;
    position: absolute;
    top: -8px;
    width: 22px;
    height: 3px;
    transition: all 0.2s ease-out;
    border-radius: 30px;
    background: #fff;
  }
  .header-menu__icon::after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    width: 22px;
    height: 3px;
    transition: all 0.2s ease-out;
    border-radius: 30px;
    background: #fff;
  }
  .header-menu__icon.is-open {
    background: transparent;
  }
  .header-menu__icon.is-open::before {
    top: 0;
    transform: rotate(-45deg);
  }
  .header-menu__icon.is-open::after {
    top: 0;
    transform: rotate(45deg);
  }
  .header-menu-list {
    display: block;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 46px 0 0 56px;
    background: #fff;
  }
  .header-menu-list.is-close {
    display: none;
  }
  .header-menu-list__item:not(:last-of-type) {
    margin-bottom: 48px;
  }
  .header-menu-list__link {
    font-size: 2.4rem;
    font-weight: 700;
  }
  /* =====================
    ■ heading SP
  ===================== */
  .heading01-box {
    margin-bottom: 24px;
    padding: 0 min(4.267vw, 16px);
  }
  .heading01-box__title {
    width: fit-content;
    margin-bottom: 12px;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-color: #3264c6;
    background-image: linear-gradient(to right, #3264c6, #0eacdb);
    font-family: "sofia-pro", sans-serif;
    font-size: 4.8rem;
    font-weight: 200;
    line-height: 1;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }
  .heading01-box__sub {
    font-size: 1.6rem;
    font-weight: 700;
  }
  .heading02-box {
    margin-bottom: 24px;
    padding: 0 min(4.267vw, 16px);
  }
  .heading02-box__title {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-color: #3264c6;
    background-image: linear-gradient(to right, #3264c6, #0eacdb);
    font-family: "sofia-pro", sans-serif;
    font-size: 2rem;
    font-weight: 200;
    line-height: 1.4;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }
  .heading02-box__sub {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .heading02-box__text {
    margin-top: 18px;
  }
  .heading02-box::before {
    content: "";
    display: block;
    width: 120px;
    height: 8px;
    margin-bottom: 16px;
    border-radius: 30px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .heading02-interview {
    margin-bottom: 24px;
    padding: 0 min(4.267vw, 16px);
  }
  .heading02-interview__title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .heading02-interview::before {
    content: "";
    display: block;
    width: 120px;
    height: 8px;
    margin-bottom: 16px;
    border-radius: 30px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .heading03 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 700;
  }
  .heading03::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 8px;
    border-radius: 30px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  /* =====================
    ■ interview SP
  ===================== */
  .interview-card-list {
    display: flex;
    gap: 23px;
    margin: 0 auto;
    padding: 0 min(4.267vw, 16px) 24px;
    overflow-x: scroll;
    line-height: 1.5;
  }
  .interview-card-list::-webkit-scrollbar {
    height: 8px;
  }
  .interview-card-list::-webkit-scrollbar-track {
    border-radius: 30px;
    background: #fafafa;
  }
  .interview-card-list::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background: #0eacdb;
  }
  .interview-card-list__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 220px;
  }
  .interview-card-list__image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    aspect-ratio: 2/3;
  }
  .interview-card-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .interview-card-list__num {
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 40px;
    font-weight: 200;
    line-height: 1;
    margin-block: 12px 4px;
  }
  .interview-card-list__name {
    font-size: 24px;
    font-weight: 700;
  }
  .interview-card-list__entry {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .interview-card-list__role {
    line-height: 1.5;
  }
  .interview-card-list--hero {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: unset;
  }
  .interview-card-list--hero .interview-card-list__num {
    font-size: 48px;
  }
  .interview-card-list--hero::-webkit-scrollbar {
    display: none;
  }
  .interview-catch {
    padding: 0 min(4.267vw, 16px);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
  }
  .interview-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 min(4.267vw, 16px);
  }
  .interview-box__image {
    width: 100%;
    max-height: 360px;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 3/2;
  }
  .interview-box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .interview-box__text:not(:last-of-type) {
    margin-bottom: 16px;
  }
  .interview-box--reverse {
    flex-direction: column-reverse;
  }
  .other-interview {
    width: 343px;
    height: 114px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 47px;
    border-radius: 24px 24px 24px 24px;
    border-radius: 24px 24px 24px 24px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/interview/common/footer-button.png");
    background-size: cover;
  }
  .other-interview__button {
    display: flex;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 160px;
    height: 85px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 100px;
    background-image: transparent;
    color: #fff;
  }
  .other-interview__eng {
    margin-top: -8px;
    font-family: "sofia-pro", sans-serif;
    font-size: 20px;
    font-weight: 200;
    line-height: 1;
  }
  /* =====================
    ■ hero SP
  ===================== */
  .hero {
    position: relative;
    margin-bottom: 88px;
  }
  .hero__image {
    width: 84.5%;
    margin-left: 15.5%;
    border-bottom-left-radius: 24px;
    background: url("../images/common/hero.png") no-repeat center/cover;
    aspect-ratio: 3/4;
  }
  .hero__image::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -6.4vw;
    width: 49.867vw;
    height: 6.4vw;
    border-bottom-left-radius: 24px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .hero-catch {
    position: absolute;
    top: 69.867vw;
    width: fit-content;
    padding-left: 4.267vw;
  }
  .hero-catch__text {
    display: block;
    position: relative;
    z-index: 0;
    width: fit-content;
    font-size: 6.933vw;
    font-weight: 700;
    line-height: 1.65;
  }
  .hero-catch__text::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: calc(100% + 8px);
    height: 100%;
    background: #fff;
  }
  .hero-catch__text:not(:last-of-type) {
    margin-bottom: -0.533vw;
  }
  .hero-title {
    padding-top: 76px;
  }
  .hero-title--no-photo {
    padding-top: 116px;
  }
  .hero-title__image {
    position: relative;
    z-index: -1;
    width: calc(100% - min(4.267vw, 16px));
    height: 42.667vw;
    max-height: 360px;
    margin-left: min(4.267vw, 16px);
    overflow: hidden;
    border-radius: 24px 0 0 24px;
  }
  .hero-title__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-info {
    margin: -16px min(4.267vw, 16px) 48px 0;
    padding: 16px 0 20px 24px;
    border-radius: 0 30px 30px 0;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .hero-info__title-box {
    margin-bottom: 8px;
  }
  .hero-info__title {
    color: #fff;
    font-family: "sofia-pro", sans-serif;
    font-size: 4.8rem;
    font-weight: 200;
    line-height: 1;
  }
  .hero-info__sub {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .hero-info__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0 22px;
  }
  .hero-info__breadcrumb-item {
    position: relative;
    color: #fff;
    font-size: 1.2rem;
  }
  .hero-info__breadcrumb-item:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: -15px;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    background: url("../images/icon/white/icon_arrow_right.svg") no-repeat center/contain;
  }
  .hero-info__icon {
    margin-right: 14px;
  }
  .hero-info__icon::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background: url("../images/icon/white/icon_home.svg") no-repeat center/contain;
  }
  .hero-info__link {
    color: #fff;
  }
  .hero-title-interview {
    margin-bottom: 64px;
    padding-top: 76px;
  }
  .hero-title-interview__image {
    width: calc(100% - min(4.267vw, 16px));
    height: 64vw;
    max-height: 360px;
    margin-left: min(4.267vw, 16px);
    overflow: hidden;
    border-radius: 24px 0 0 24px;
  }
  .hero-title-interview__image img {
    width: 100%;
    object-fit: cover;
  }
  .hero-title-interview .hero-info {
    margin: 0 min(4.267vw, 16px) min(4.267vw, 16px) 0;
  }
  /* =====================
    ■ list SP
  ===================== */
  .list-count {
    list-style: none;
    counter-reset: number;
  }
  .list-count__item {
    text-indent: -0.8em;
    padding-left: 2em;
  }
  .list-count__item::before {
    display: inline-block;
    counter-increment: number;
    content: counter(number);
    width: 0.5em;
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1;
    vertical-align: text-bottom;
  }
  .list-count__item:not(:last-of-type) {
    margin-bottom: 24px;
  }
  .list-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
  .list-flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: subgrid;
    grid-row: span 40px;
  }
  .list-flow__list--blue {
    position: relative;
  }
  .list-flow__list--blue::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0px;
    display: inline-block;
    width: 50%;
    height: calc(100% + 20px);
    border: #edf6fd solid 10px;
    border-radius: 10px;
  }
  .list-flow__item {
    display: grid;
    position: relative;
    grid-row: span 2;
    grid-template-rows: subgrid;
    justify-items: center;
    gap: 8px;
  }
  .list-flow__item::before {
    content: "";
    position: absolute;
    top: 14px;
    right: -6px;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("../images/icon/black/icon_arrow.svg") no-repeat center/contain;
  }
  .list-flow__list--blue .list-flow__item::before {
    background: url("../images/icon/blue/icon_arrow.svg") no-repeat center/contain;
  }
  .list-flow__list--blue .list-flow__item:last-of-type::before {
    content: none;
  }
  .list-flow__item img {
    width: auto;
    height: 40px;
  }
  .list-flow__text {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
  }
  /* =====================
    ■ ly/layout SP
  ===================== */
  .ly-section {
    margin-bottom: 64px;
  }
  .ly-section--closer {
    margin-bottom: 24px;
  }
  .ly-content {
    padding: 0 min(4.267vw, 16px);
  }
  /* =====================
    ■ news SP
  ===================== */
  .news-list {
    width: auto;
    max-height: 250px;
    margin: 0 min(4.267vw, 16px);
    overflow-y: scroll;
  }
  .news-list::-webkit-scrollbar {
    width: 8px;
  }
  .news-list::-webkit-scrollbar-track {
    border-radius: 100px;
    background: #fafafa;
  }
  .news-list::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #0eacdb;
  }
  .news-list__item {
    margin-right: 20px;
    padding: 20px 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #ccc;
  }
  .news-list__item:first-child {
    padding: 0 0 20px;
    border-width: 0;
  }
  .news-list__item:last-child {
    padding-bottom: 0;
  }
  .news-list__item .news-flexbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .news-list__item .news-list__time-p {
    display: flex;
    flex: 1;
    flex-direction: column;
  }
  .news-list__item .news-list__time {
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-weight: 700;
  }
  .news-list__item .news-list__text {
    padding-right: 20px;
  }
  .news-image {
    margin-bottom: 40px;
  }
  /* =====================
    ■ recruit PC
  ===================== */
  .recruit-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 10px;
  }
  .recruit-card {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 20px 32px 20px 24px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    line-height: 1.5;
    box-sizing: border-box;
  }
  .recruit-card::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 24px;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .recruit-card::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 16px;
    width: 16px;
    height: 16px;
    background: url("../images/icon/accent/icon_arrow_right.svg") no-repeat center/contain;
  }
  .recruit-card__eng {
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 2.4rem;
    font-weight: 200;
    line-height: 1.2;
  }
  .recruit-card__jp {
    font-weight: 700;
  }
  /* =====================
    ■ table SP
  ===================== */
  .table-wrapper {
    margin-bottom: 24px;
    padding: 0 min(4.267vw, 16px);
  }
  .table {
    border-top: 1px solid #ccc;
    line-height: 2;
  }
  .table__title {
    display: block;
    padding: 16px 0 8px;
    text-align: left;
  }
  .table__data {
    display: block;
    padding-bottom: 16px;
    border-bottom: 1px solid #ccc;
  }
  /* =====================
    ■ top SP
  ===================== */
  .top-message__content {
    margin-bottom: 24px;
    padding: 0 min(4.267vw, 16px);
  }
  .top-message__image {
    width: calc(100% - min(4.267vw, 16px));
    max-height: 300px;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
    aspect-ratio: 1.5/1;
  }
  .top-message__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-message__text {
    margin-bottom: 24px;
  }
  .top-message .heading01-box {
    padding: 0;
  }
  .top-product {
    position: relative;
  }
  .top-product-box__content {
    padding: 0 min(4.267vw, 16px);
  }
  .top-product-box__image {
    position: relative;
    height: 300px;
    margin-left: auto;
  }
  .top-product-box__image img {
    width: 100%;
    object-fit: contain;
    object-position: right;
  }
  .top-product-box__image::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 45px;
    width: calc(100% - min(4.267vw, 16px));
    height: 120px;
    border-radius: 24px 0 0 24px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .top-product-box--left {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
  }
  .top-product-box--left .top-product-box__image {
    width: 307px;
    height: 268px;
    margin: 16px 0 auto;
  }
  .top-product-box--left .top-product-box__image::after {
    content: none;
  }
  .top-product-title {
    margin-bottom: 16px;
  }
  .top-product-title__logo {
    width: 200px;
    height: 63px;
  }
  .top-product-title__logo img {
    object-fit: contain;
  }
  .top-product-title__name {
    font-size: 2rem;
    font-weight: 700;
  }
  .top-product-title__title {
    font-family: "sofia-pro", sans-serif;
    font-size: 36px;
    font-weight: 200;
    line-height: 1.2;
  }
  .top-interview__image {
    width: calc(100% - min(4.267vw, 16px));
    max-height: 360px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
    aspect-ratio: 1.35/1;
  }
  .top-interview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-interview-main {
    margin-bottom: 24px;
    padding: 0 min(4.267vw, 16px);
  }
  .top-interview-main__num {
    display: block;
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 48px;
    font-weight: 200;
    line-height: 1;
    margin-block: 12px 4px;
  }
  .top-interview-main__headline {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }
  .top-interview-main__name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
  }
  .top-interview-main__entry {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .top-interview-main__role {
    margin-bottom: 16px;
    line-height: 1.8;
  }
  .top-interview-card-list {
    display: flex;
    gap: 23px;
    margin: 0 auto;
    padding: 0 min(4.267vw, 16px) 24px;
    overflow-x: scroll;
    line-height: 1.5;
  }
  .top-interview-card-list::-webkit-scrollbar {
    height: 8px;
  }
  .top-interview-card-list::-webkit-scrollbar-track {
    border-radius: 30px;
    background: #fafafa;
  }
  .top-interview-card-list::-webkit-scrollbar-thumb {
    border-radius: 30px;
    background: #0eacdb;
  }
  .top-interview-card-list__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 220px;
  }
  .top-interview-card-list__image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    aspect-ratio: 2/3;
  }
  .top-interview-card-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-interview-card-list__num {
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 40px;
    font-weight: 200;
    line-height: 1;
    margin-block: 12px 4px;
  }
  .top-interview-card-list__name {
    font-size: 24px;
    font-weight: 700;
  }
  .top-interview-card-list__entry {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .top-interview-card-list__role {
    line-height: 1.5;
  }
  .top-interview-card-list--hero {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: unset;
  }
  .top-interview-card-list--hero .top-interview-card-list__num {
    font-size: 48px;
  }
  .top-interview-card-list--hero::-webkit-scrollbar {
    display: none;
  }
  .top-work-box__content {
    margin-bottom: 24px;
    padding: 0 min(4.267vw, 16px);
  }
  .top-work-box__text {
    margin-bottom: 16px;
  }
  .top-work-box__image {
    width: calc(100% - min(4.267vw, 16px));
    max-height: 300px;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
    aspect-ratio: 1.35/1;
  }
  .top-work-box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-recruit-box__content {
    margin-bottom: 24px;
    padding: 0 min(4.267vw, 16px);
  }
  .top-recruit-box__text {
    margin-bottom: 16px;
  }
  .top-recruit-box__image {
    width: calc(100% - min(4.267vw, 16px));
    max-height: 300px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
    aspect-ratio: 1.35/1;
  }
  .top-recruit-box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* =====================
    ■ work SP
  ===================== */
  .work-grid__big {
    padding: 16px;
    border-radius: 8px;
    background: #fafafa;
  }
  .work-grid__big:not(:last-child) {
    margin-bottom: 24px;
  }
  .work-grid__small {
    padding: 16px;
    border-radius: 8px;
    background: #fafafa;
  }
  .work-grid__small:not(:last-child) {
    margin-bottom: 24px;
  }
  .work-box__title {
    margin-bottom: 8px;
    color: #3264c6;
  }
  .is-onlyPC {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  /* 画面サイズが768pxからはここを読み込む */
  /* =====================
    ■ function 共通定義
  ===================== */
  /* =====================
    ■ variables PC
  ===================== */
  /* =====================
    ■ base PC
  ===================== */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
  }
  body {
    min-width: 1200px;
    color: #0b214e;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 2;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  div,
  h1,
  h2,
  h3,
  p,
  ul,
  ol,
  dl,
  dd,
  table,
  th,
  td {
    margin: 0;
    padding: 0;
  }
  li {
    list-style-type: none;
  }
  a {
    color: #0b214e;
    text-decoration: none;
  }
  img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
  }
  .text-list--number {
    list-style: none;
    counter-reset: number;
  }
  .text-list__item {
    position: relative;
    padding-left: 20px;
  }
  .text-list__item::before {
    content: "・";
    position: absolute;
    left: 0;
  }
  .text-list--number .text-list__item::before {
    counter-increment: number;
    content: counter(number) ".";
  }
  .text-list--far {
    margin-bottom: 20px;
  }
  .text-box {
    font-size: 20px;
    line-height: 2;
  }
  .text-box:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .text-link {
    transition: all 0.4s ease;
    text-decoration: underline;
  }
  .text-link:hover {
    text-decoration: none;
  }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border-width: 0;
    white-space: nowrap;
  }
  /* =====================
    ■ about PC
  ===================== */
  .about-box {
    display: flex;
    gap: 40px;
  }
  .about-box__title {
    display: inline-block;
    position: relative;
    margin-bottom: 40px;
    padding-inline: 64px;
    color: #3264c6;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
  }
  .about-box__title::before, .about-box__title::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 40px;
    height: 40px;
    background: url("../images/icon/gray/icon_quotation.svg") no-repeat center/contain;
  }
  .about-box__title::before {
    top: 0;
    left: 0;
  }
  .about-box__title::after {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
  }
  .about-box__text:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .about-box__image {
    flex-shrink: 0;
  }
  .swiper {
    width: 70%;
  }
  /* =====================
    ■ button PC
  ===================== */
  .button {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-evenly;
    width: 400px;
    height: 80px;
    padding-bottom: 3px;
    transition: all 0.4s ease;
    border: 2px solid #0eacdb;
    border-radius: 8px;
    background: #0eacdb;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
  }
  .button::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 24px;
    width: 16px;
    height: 19px;
    background: url("../images/icon/white/icon_arrow_right.svg") no-repeat bottom center/contain;
  }
  .button:hover {
    border: 2px solid #0eacdb;
    background: #fff;
    color: #0eacdb;
  }
  .button:hover::after {
    background: url("../images/icon/accent/icon_arrow_right.svg") no-repeat center/contain;
  }
  .button-recruit {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-evenly;
    width: 400px;
    height: 80px;
    padding-bottom: 3px;
    transition: all 0.4s ease;
    border: 2px solid #0eacdb;
    border-radius: 8px;
    background: #0eacdb;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    justify-content: center;
    gap: 32px;
    width: 640px;
    height: 120px;
    margin: 0 auto;
  }
  .button-recruit::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 24px;
    width: 16px;
    height: 19px;
    background: url("../images/icon/white/icon_arrow_right.svg") no-repeat bottom center/contain;
  }
  .button-recruit:hover {
    border: 2px solid #0eacdb;
    background: #fff;
    color: #0eacdb;
  }
  .button-recruit:hover::after {
    background: url("../images/icon/accent/icon_arrow_right.svg") no-repeat center/contain;
  }
  .button-recruit__eng {
    font-family: "sofia-pro", sans-serif;
    font-size: 48px;
    font-weight: 200;
    line-height: 1.2;
  }
  .button-recruit__jp {
    font-size: 32px;
    font-weight: 700;
  }
  .button-recruit__icon::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    margin-top: 14px;
    background: url("../images/icon/white/icon_entry.svg") no-repeat center/contain;
  }
  .button-recruit::after {
    content: none;
  }
  .button-recruit:hover .button-recruit__icon::after {
    background: url("../images/icon/accent/icon_entry.svg") no-repeat center/contain;
  }
  .button-box__item {
    display: flex;
    justify-content: center;
  }
  .button-box__item:not(:last-of-type) {
    margin-bottom: 24px;
  }
  /* =====================
    ■ footer PC
  ===================== */
  .footer {
    position: relative;
  }
  .footer-entry {
    width: calc(100% - 80px);
    height: 648px;
    margin-left: auto;
    padding-top: 47px;
    border-radius: 24px 0 0;
    background: url("../images/common/footer-bg.png") no-repeat center/cover;
  }
  .footer-entry__button {
    display: flex;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 670px;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 100px;
    background-image: transparent;
    color: #fff;
  }
  .footer-entry__button::before {
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.4s ease;
    opacity: 0;
    background-image: linear-gradient(to right, #3264c6, #0eacdb);
    inset: 0;
  }
  .footer-entry__button:hover::before {
    opacity: 1;
  }
  .footer-entry__eng {
    margin-top: -8px;
    font-family: "sofia-pro", sans-serif;
    font-size: 80px;
    font-weight: 200;
    line-height: 1;
  }
  .footer-entry__jp {
    font-size: 40px;
    font-weight: 700;
  }
  .footer-entry__icon::after {
    content: "";
    display: inline-block;
    position: relative;
    width: 56px;
    height: 56px;
    margin-top: 14px;
    background: url("../images/icon/white/icon_entry.svg") no-repeat center/contain;
  }
  .footer-entry__text {
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-bottom: 47px;
  }
  .footer-main {
    position: absolute;
    top: 265px;
    width: calc(100% - 80px);
    height: auto;
    padding: 90px 0;
    border-radius: 0 24px 0 0;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .footer-main__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    margin-inline: 80px 24px;
  }
  .footer-main__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 56px;
  }
  .footer-main__link {
    transition: all 0.4s ease;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
  }
  .footer-main__link:hover {
    opacity: 0.5;
  }
  .footer-main__logo {
    width: 280px;
  }
  .footer-main__copyright {
    color: #fff;
    font-family: "sofia-pro", sans-serif;
    font-size: 16px;
    font-weight: 200;
  }
  .footer-recruit {
    position: fixed;
    z-index: 3;
    right: 0;
    bottom: 80px;
  }
  .footer-recruit__box {
    display: flex;
    position: relative;
    align-items: center;
    gap: 12px;
    padding: 8px 56px 8px 16px;
    border-radius: 8px 0 0 8px;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  .footer-recruit__box::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 20px;
    width: 16px;
    height: 16px;
    transition: all 0.4s ease;
    background: url("../images/icon/accent/icon_arrow_right.svg") no-repeat center/contain;
  }
  .footer-recruit__box:hover::after {
    right: 16px;
  }
  .footer-recruit__logo {
    width: 48px;
  }
  .footer-recruit__jp {
    font-weight: 700;
    line-height: 1.2;
  }
  .footer-recruit__eng {
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 12px;
    font-weight: 200;
    line-height: 1.2;
  }
  /* =====================
    ■ header PC
  ===================== */
  .header-menu-list {
    display: flex;
    justify-content: flex-end;
    gap: 0 4%;
    padding-right: 8%;
  }
  .header-menu-list__link {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
  }
  .header-menu-list__link::after {
    content: "";
    display: block;
    height: 4px;
    transition: all 0.4s ease;
    border-radius: 30px;
    opacity: 0;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .header-menu-list__link:hover::after {
    opacity: 1;
  }
  .header-menu-list--page .header-menu-list__link {
    color: #0b214e;
  }
  .header-button {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-evenly;
    width: 400px;
    height: 80px;
    padding-bottom: 3px;
    transition: all 0.4s ease;
    border: 2px solid #0eacdb;
    border-radius: 8px;
    background: #0eacdb;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    width: 280px;
    height: 56px;
    font-size: 18px;
  }
  .header-button::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 24px;
    width: 16px;
    height: 19px;
    background: url("../images/icon/white/icon_arrow_right.svg") no-repeat bottom center/contain;
  }
  .header-button:hover {
    border: 2px solid #0eacdb;
    background: #fff;
    color: #0eacdb;
  }
  .header-button:hover::after {
    background: url("../images/icon/accent/icon_arrow_right.svg") no-repeat center/contain;
  }
  .header {
    position: relative;
    z-index: 3;
  }
  .header__inner {
    display: grid;
    grid-template-columns: minmax(200px, 15%) 1fr 280px;
    align-items: center;
    min-width: 1152px;
    height: 104px;
    padding: 0 24px;
  }
  .header__inner.is-scroll {
    position: fixed;
    top: 0;
    width: calc(100% - 48px);
    height: 80px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.8);
  }
  .header__inner.is-scroll .header-menu-list__link {
    color: #0b214e;
    font-size: 20px;
  }
  .header__content {
    display: flex;
    align-items: center;
    gap: 56px;
  }
  .header-logo__link {
    transition: all 0.4s ease;
  }
  .header-logo__link:hover {
    opacity: 0.5;
  }
  /* =====================
    ■ heading PC
  ===================== */
  .heading01-box {
    width: 1200px;
    margin: 0 auto 80px;
  }
  .heading01-box__title {
    width: fit-content;
    margin-bottom: 16px;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-color: #3264c6;
    background-image: linear-gradient(to right, #3264c6, #0eacdb);
    font-family: "sofia-pro", sans-serif;
    font-size: 120px;
    font-weight: 200;
    line-height: 1;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }
  .heading01-box__sub {
    font-size: 32px;
    font-weight: 700;
  }
  .heading02-box {
    width: 1200px;
    margin: 0 auto 40px;
  }
  .heading02-box__title {
    display: block;
    width: fit-content;
    margin-bottom: 16px;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-color: #3264c6;
    background-image: linear-gradient(to right, #3264c6, #0eacdb);
    font-family: "sofia-pro", sans-serif;
    font-size: 32px;
    font-weight: 200;
    line-height: 1.4;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
  }
  .heading02-box__sub {
    font-size: 40px;
    font-weight: 700;
  }
  .heading02-box__text {
    margin-top: 40px;
  }
  .heading02-box::before {
    content: "";
    display: block;
    width: 160px;
    height: 8px;
    margin-bottom: 32px;
    border-radius: 30px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .heading02-interview {
    width: 1200px;
    margin: 0 auto 40px;
  }
  .heading02-interview__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
  }
  .heading02-interview::before {
    content: "";
    display: block;
    width: 160px;
    height: 8px;
    margin-bottom: 32px;
    border-radius: 30px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .heading03 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
  }
  .heading03::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 8px;
    border-radius: 30px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  /* =====================
    ■ interview PC
  ===================== */
  .interview-card-list {
    display: flex;
    gap: 48px;
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    line-height: 1.5;
  }
  .interview-card-list__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .interview-card-list__image {
    width: 320px;
    height: 480px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  }
  .interview-card-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .interview-card-list__num {
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 56px;
    font-weight: 200;
  }
  .interview-card-list__name {
    font-size: 40px;
    font-weight: 700;
  }
  .interview-card-list__entry {
    font-size: 16px;
    line-height: 1.5;
  }
  .interview-card-list__role {
    line-height: 1.5;
  }
  .interview-card-list--hero {
    position: absolute;
    top: 360px;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 8px;
    overflow-x: hidden;
  }
  .interview-card-list--hero .interview-card-list__num {
    padding: 32px 0 16px;
    font-size: 96px;
    line-height: 1.5;
  }
  .interview-catch {
    width: 1200px;
    margin: 0 auto;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5;
  }
  .interview-box {
    display: flex;
    gap: 40px;
    width: 1200px;
    margin: 0 auto;
  }
  .interview-box__content {
    width: 680px;
  }
  .interview-box__image {
    width: 480px;
    height: 320px;
    overflow: hidden;
    border-radius: 24px;
  }
  .interview-box__image__height {
    width: 480px;
    height: 640px;
    overflow: hidden;
    border-radius: 24px;
  }
  .interview-box__image img {
    width: 100%;
    object-fit: cover;
  }
  .interview-box__text:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .other-interview {
    width: 1200px;
    height: 300px;
    margin-left: auto;
    border-radius: 24px 24px 24px 24px;
    border-radius: 24px 24px 24px 24px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/interview/common/footer-button.png");
    background-size: cover;
  }
  .other-interview__button {
    display: flex;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 670px;
    height: 352px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 100px;
    background-image: transparent;
    color: #fff;
  }
  .other-interview__eng {
    margin-top: -8px;
    font-family: "sofia-pro", sans-serif;
    font-size: 50px;
    font-weight: 200;
    line-height: 1;
  }
  /* =====================
    ■ hero PC
  ===================== */
  .hero {
    position: relative;
    min-width: 1200px;
    height: 51.042vw;
    min-height: 800px;
    margin-bottom: 80px;
  }
  .hero__image {
    position: absolute;
    top: -126px;
    right: 0;
    width: 80%;
    height: 100%;
    border-bottom-left-radius: 24px;
    background: url("../images/common/hero.png") no-repeat center/cover;
  }
  .hero__image::before {
    content: "";
    display: block;
    height: 220px;
    background: linear-gradient(rgba(11, 33, 78, 0.5), transparent);
  }
  .hero__image::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -80px;
    width: 70%;
    height: 80px;
    border-bottom-left-radius: 24px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .hero-catch {
    position: relative;
    bottom: -280px;
    left: 5%;
    width: fit-content;
  }
  .hero-catch__text {
    display: block;
    position: relative;
    z-index: 0;
    width: fit-content;
    font-size: max(60px, 4.167vw);
    font-weight: 700;
    line-height: 1.65;
  }
  .hero-catch__text::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 5px;
    left: 0;
    width: calc(100% + 32px);
    height: 100%;
    background: #fff;
  }
  .hero-title {
    position: relative;
    margin-bottom: 240px;
  }
  .hero-title::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: -80px;
    width: 48%;
    height: 320px;
    border-radius: 0 24px 24px 0;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .hero-title--no-photo {
    margin-bottom: 160px;
  }
  .hero-title--no-photo::after {
    top: 0;
  }
  .hero-title__image {
    position: relative;
    right: 0;
    width: 82%;
    height: 600px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
  }
  .hero-title__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-info {
    display: flex;
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -80px;
    left: 0;
    box-sizing: border-box;
    flex-direction: column;
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
  .hero-title--no-photo .hero-info {
    position: relative;
    bottom: 0;
    margin-top: 80px;
  }
  .hero-info__title-box {
    margin-bottom: 32px;
  }
  .hero-info__title {
    color: #fff;
    font-family: "sofia-pro", sans-serif;
    font-size: 120px;
    font-weight: 200;
    line-height: 1.2;
  }
  .hero-info__sub {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
  }
  .hero-info__breadcrumb {
    display: flex;
    gap: 26px;
    margin-bottom: 42px;
  }
  .hero-info__breadcrumb-item {
    position: relative;
    color: #fff;
    font-size: 16px;
  }
  .hero-info__breadcrumb-item:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: -19px;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    background: url("../images/icon/white/icon_arrow_right.svg") no-repeat center/contain;
  }
  .hero-info__icon {
    margin-right: 18px;
  }
  .hero-info__icon::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background: url("../images/icon/white/icon_home.svg") no-repeat center/contain;
  }
  .hero-info__link {
    color: #fff;
  }
  .hero-info__link:hover {
    text-decoration: underline;
  }
  .hero-title-interview {
    position: relative;
    margin-bottom: 240px;
  }
  .hero-title-interview__image {
    position: relative;
    right: 0;
    width: 50%;
    height: 37.5vw;
    min-height: 640px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
  }
  .hero-title-interview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-title-interview::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 40px;
    width: 52%;
    height: 320px;
    border-radius: 0 24px 24px 0;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .hero-title-interview .hero-info {
    top: 40px;
  }
  /* =====================
    ■ list PC
  ===================== */
  .list-count {
    list-style: none;
    counter-reset: number;
  }
  .list-count__item {
    text-indent: -1em;
    padding-left: 2em;
  }
  .list-count__item::before {
    display: inline-block;
    width: 0.6em;
    counter-increment: number;
    content: counter(number);
    font-family: "sofia-pro", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #3264c6;
  }
  .list-count__item:not(:last-of-type) {
    margin-bottom: 24px;
  }
  .list-flow {
    display: flex;
    margin-bottom: 40px;
  }
  .list-flow__list {
    display: flex;
    flex-shrink: 0;
  }
  .list-flow__list--blue {
    position: relative;
  }
  .list-flow__list--blue::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 25px;
    display: inline-block;
    width: 360px;
    height: calc(100% + 60px);
    border: #edf6fd solid 10px;
    border-radius: 10px;
  }
  .list-flow__item {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    flex: 1;
    align-content: flex-start;
    justify-content: center;
    gap: 20px;
    width: 200px;
  }
  .list-flow__item::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../images/icon/black/icon_arrow.svg") no-repeat center/contain;
  }
  .list-flow__list--blue .list-flow__item::before {
    background: url("../images/icon/blue/icon_arrow.svg") no-repeat center/contain;
  }
  .list-flow__list--blue .list-flow__item:last-of-type::before {
    content: none;
  }
  .list-flow__text {
    width: 100%;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
  }
  /* =====================
    ■ ly/layout PC
  ===================== */
  .ly-section {
    margin-bottom: 160px;
    overflow: hidden;
  }
  .ly-section--medium:not(:last-child) {
    margin-bottom: 80px;
  }
  .ly-section--closer:not(:last-of-type) {
    margin-bottom: 40px;
  }
  .ly-content {
    width: 1200px;
    margin: 0 auto;
  }
  /* =====================
    ■ news PC
  ===================== */
  .news-list {
    width: 1200px;
    max-height: 300px;
    margin: 0 auto;
    overflow-y: scroll;
  }
  .news-list::-webkit-scrollbar {
    width: 8px;
  }
  .news-list::-webkit-scrollbar-track {
    border-radius: 100px;
    background: #fafafa;
  }
  .news-list::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #0eacdb;
  }
  .news-list__item {
    margin-right: 40px;
    padding: 24px 0;
    border-width: 1px 0 0;
    border-style: solid;
    border-color: #ccc;
    transition: all 0.2s ease-in-out;
  }
  .news-list__item:has(a:hover) {
    transition: all 0.2s ease-in-out;
    opacity: 50%;
  }
  .news-list__item:first-child {
    padding-top: 0;
    border-width: 0;
  }
  .news-list__item:last-child {
    padding-bottom: 0;
  }
  .news-list__item .news-flexbox {
    display: flex;
    justify-content: space-between;
  }
  .news-list__item .news-list__time-p {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .news-list__item .news-list__time {
    width: 120px;
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: -5px;
  }
  .news-list__item .news-list__text {
    flex: 1;
  }
  .news-list__item .news-list__arrow {
    width: 16px;
    height: 16px;
  }
  .news-image {
    margin-bottom: 40px;
  }
  /* =====================
    ■ recruit PC
  ===================== */
  .recruit-list {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 10px;
  }
  .recruit-card {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    height: 140px;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  .recruit-card::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    left: 32px;
    width: 120px;
    height: 4px;
    transition: width 0.5s ease, left 0.5s ease;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .recruit-card::after {
    content: "";
    display: inline-block;
    position: absolute;
    right: 16px;
    width: 16px;
    height: 16px;
    background: url("../images/icon/accent/icon_arrow_right.svg") no-repeat center/contain;
  }
  .recruit-card:hover::before {
    left: 0;
    width: 100%;
  }
  .recruit-card__eng {
    padding-left: 32px;
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 40px;
    font-weight: 200;
    line-height: 1.2;
  }
  .recruit-card__jp {
    padding-left: 32px;
    font-size: 24px;
    font-weight: 700;
  }
  /* =====================
    ■ table PC
  ===================== */
  .table-wrapper {
    width: 1200px;
    margin: 0 auto 80px;
  }
  .table {
    border-top: 1px solid #ccc;
    line-height: 2;
  }
  .table__title {
    box-sizing: border-box;
    width: 240px;
    padding: 40px 40px 40px 0;
    border-bottom: 1px solid #ccc;
    text-align: left;
  }
  .table__data {
    box-sizing: border-box;
    padding: 40px 0;
    border-bottom: 1px solid #ccc;
  }
  /* =====================
    ■ top PC
  ===================== */
  .top-message__content {
    width: 1200px;
    margin: 0 auto 80px;
  }
  .top-message__image {
    width: 80%;
    height: 480px;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
  }
  .top-message__image img {
    height: 100%;
    object-fit: cover;
  }
  .top-message__text {
    margin-bottom: 40px;
  }
  .top-message__button {
    display: flex;
    justify-content: flex-end;
  }
  .top-message .heading01-box {
    margin-bottom: 40px;
  }
  .top-product-box {
    position: relative;
    margin-top: -80px;
    padding: 50px 0 200px;
  }
  .top-product-box:last-of-type {
    padding: 50px 0 0;
  }
  .top-product-box__inner {
    width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
  }
  .top-product-box__content {
    width: calc(50% - 80px);
  }
  .top-product-box::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    width: 50%;
    max-height: 940px;
    background-image: url("../images/common/top-product01.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    aspect-ratio: 0.8/1;
  }
  .top-product-box::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 160px;
    border-radius: 24px 0 0 24px;
    background: linear-gradient(to right, #3264c6, #0eacdb);
  }
  .top-product-box--left .top-product-box__content {
    padding-left: 50%;
  }
  .top-product-box--left .top-product-box__inner {
    padding-top: 90px;
  }
  .top-product-box--left::after {
    content: none;
  }
  .top-product-box--left::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 52%;
    max-height: 110%;
    background-image: url("../images/common/top-product02.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    aspect-ratio: 1.15/1;
  }
  .top-product-title {
    margin-bottom: 40px;
  }
  .top-product-title__logo {
    margin-bottom: 32px;
  }
  .top-product-title__name {
    font-size: 32px;
    font-weight: 700;
  }
  .top-product-title__title {
    font-family: "sofia-pro", sans-serif;
    font-size: 72px;
    font-weight: 200;
    line-height: 1.2;
  }
  .top-interview {
    position: relative;
  }
  .top-interview__image {
    position: absolute;
    z-index: -1;
    right: 0;
    width: 56%;
    height: 800px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
  }
  .top-interview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-interview-main {
    padding-bottom: 130px;
  }
  .top-interview-main__inner {
    width: 1200px;
    margin: 0 auto;
  }
  .top-interview-main__num {
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 96px;
    font-weight: 200;
    line-height: 1.2;
  }
  .top-interview-main__headline {
    margin-bottom: 24px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.5;
  }
  .top-interview-main__headline span {
    padding: 1px;
    background: #fff;
  }
  .top-interview-main__name {
    margin-bottom: 8px;
    font-size: 40px;
    font-weight: 700;
  }
  .top-interview-main__entry {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .top-interview-main__role {
    margin-bottom: 24px;
  }
  .top-interview-card {
    margin-top: -82px;
  }
  .top-interview-card-list {
    display: flex;
    gap: 48px;
    width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    overflow-x: scroll;
    line-height: 1.5;
  }
  .top-interview-card-list__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .top-interview-card-list__image {
    width: 320px;
    height: 480px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  }
  .top-interview-card-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-interview-card-list__num {
    color: #3264c6;
    font-family: "sofia-pro", sans-serif;
    font-size: 56px;
    font-weight: 200;
  }
  .top-interview-card-list__name {
    font-size: 40px;
    font-weight: 700;
  }
  .top-interview-card-list__entry {
    font-size: 16px;
    line-height: 1.5;
  }
  .top-interview-card-list__role {
    line-height: 1.5;
  }
  .top-interview-card-list--hero {
    position: absolute;
    top: 360px;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 8px;
    overflow-x: hidden;
  }
  .top-interview-card-list--hero .top-interview-card-list__num {
    padding: 32px 0 16px;
    font-size: 96px;
    line-height: 1.5;
  }
  .top-work {
    display: flex;
    position: relative;
    align-items: center;
    height: 41.667vw;
    min-height: 500px;
  }
  .top-work__image {
    position: absolute;
    left: 0;
    width: 56%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
    background-image: url("../images/common/top-work.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1080px 800px;
  }
  .top-work-box {
    display: flex;
    z-index: 2;
    justify-content: flex-end;
    width: 1200px;
    margin: 0 auto;
  }
  .top-work-box__text {
    display: block;
    width: 400px;
    margin-bottom: 24px;
  }
  .top-recruit {
    display: flex;
    position: relative;
    align-items: center;
    height: 41.667vw;
    min-height: 500px;
  }
  .top-recruit__image {
    position: absolute;
    right: 0;
    width: 56%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px 0 0 24px;
    background-image: url("../images/common/top-recruit.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1080px 800px;
  }
  .top-recruit-box {
    z-index: 2;
    width: 1200px;
    margin: 0 auto;
  }
  .top-recruit-box__text {
    display: block;
    width: 400px;
    margin-bottom: 24px;
  }
  /* =====================
    ■ work PC
  ===================== */
  .work-grid {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
  .work-grid__big {
    grid-column: 1/4;
    padding: 24px;
    border-radius: 8px;
    background: #fafafa;
  }
  .work-grid__small {
    padding: 24px;
    border-radius: 8px;
    background: #fafafa;
  }
  .work-box {
    font-size: 16px;
    line-height: 1.8;
  }
  .work-box__title {
    margin-bottom: 20px;
    color: #3264c6;
    font-size: 20px;
  }
  .is-onlySP {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */