@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  min-width: 320px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
}

p {
  line-break: strict;
}

:root {
  --site-header-height: 60px;
}

body {
  padding-top: var(--site-header-height);
}
body.is-top-page {
  padding-top: 0;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: auto;
  height: var(--site-header-height);
  background: #fff;
  box-shadow: none;
  transition: top 0.35s ease, right 0.35s ease, left 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
  animation: header-fade-in 0.6s ease both;
}
body.is-loading .header {
  transition: none !important;
}
.header a.comingsoon {
  pointer-events: none;
  opacity: 0.4;
}
@media screen and (min-width: 901px) {
  .header.is-fv {
    top: 20px;
    right: 25px;
    left: 25px;
    background: transparent;
  }
  .header.is-fv .header__inner {
    padding-left: 0;
  }
  .header.is-fv .header__identity {
    width: 340px;
    padding: 0 30px 0 20px;
    background: #fff;
  }
  .header.is-fv .header__nav {
    padding-right: 26px;
  }
  .header.is-fv .header__nav a {
    color: #fff;
  }
  .header.is-fv .header__nav a:hover {
    color: #fff;
    opacity: 0.75;
  }
  .header.is-fv .header__menu {
    background: #fff;
  }
  .header.is-fv .header__menu::before, .header.is-fv .header__menu::after {
    background: #000;
  }
}

@keyframes header-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 60px;
  transition: padding 0.35s ease;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 14px;
  }
}

.header__identity {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  box-sizing: border-box;
  height: 100%;
  transition: background-color 0.35s ease, padding 0.35s ease, width 0.35s ease;
}
.header__identity .header__identity-link {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  transition: gap 0.35s ease;
}
@media screen and (max-width: 768px) {
  .header__identity .header__identity-link {
    gap: 12px;
  }
}
.header__identity .header__logo {
  display: block;
  flex: 0 0 auto;
  width: 143.603px;
  height: 26.672px;
}
@media screen and (max-width: 768px) {
  .header__identity .header__logo {
    width: 130px;
    height: 24.15px;
  }
}
@media screen and (max-width: 390px) {
  .header__identity .header__logo {
    width: 118px;
  }
}
.header__identity .header__site-title {
  flex: 0 0 auto;
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .header__identity .header__site-title {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 390px) {
  .header__identity .header__site-title {
    font-size: 1.2rem;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 0 26px 0 30px;
  transition: padding 0.35s ease;
}
@media screen and (max-width: 1100px) {
  .header__nav {
    padding-right: 20px;
  }
}
@media screen and (max-width: 900px) {
  .header__nav {
    display: none;
  }
}
.header__nav .header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 1100px) {
  .header__nav .header__nav-list {
    gap: 18px;
  }
}

.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
}
.header__nav-item > span {
  display: block;
  color: #000;
  font-family: "Roboto", sans-serif, "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  white-space: nowrap;
  transition: color 0.35s ease, opacity 0.35s ease;
  cursor: pointer;
}
.header__nav-item > span:hover {
  color: #536fb9;
}
@media screen and (max-width: 1100px) {
  .header__nav-item > span {
    font-size: 1.4rem;
  }
}
.header__nav-item:hover .header__nav-sublist, .header__nav-item:focus-within .header__nav-sublist {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.header__nav-item .header__nav-sublist {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  z-index: 5;
  width: max-content;
  min-width: 240px;
  max-width: 320px;
  padding: 4px 24px;
  border-radius: 12px;
  background: #5ab6c3;
  box-shadow: 0 14px 30px rgba(0, 30, 108, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.header__nav-item .header__nav-sublist::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #5ab6c3 transparent;
  transform: translateX(-50%);
}
.header__nav-item .header__nav-sublist li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.header__nav-item .header__nav-sublist a {
  display: block;
  padding: 14px 0;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
  white-space: normal;
}
.header__nav-item .header__nav-sublist a:hover {
  opacity: 0.8;
}

.header__menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: #001e6c;
  border: 0;
  outline: 0;
  cursor: pointer;
  transition: background-color 0.35s ease;
}
.header__menu::before, .header__menu::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 28.516px;
  height: 2px;
  background: #fff;
  transform: translateX(-50%);
  transition: top 0.25s ease, transform 0.25s ease, background-color 0.35s ease;
}
.header__menu::before {
  top: 26px;
}
.header__menu::after {
  top: 34px;
}
.header__menu.is-active::before {
  top: 30px;
  transform: translateX(-50%) rotate(45deg);
}
.header__menu.is-active::after {
  top: 30px;
  transform: translateX(-50%) rotate(-45deg);
}
.header__menu .header__menu-bars {
  position: relative;
  display: block;
  width: 28.516px;
  height: 8px;
}
.header__menu .header__menu-bars span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  opacity: 0;
  transition: top 0.25s ease, bottom 0.25s ease, transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}
.header__menu .header__menu-bars span:nth-child(1) {
  top: 0;
}
.header__menu .header__menu-bars span:nth-child(2) {
  bottom: 0;
}
.header__menu:hover .header__menu-bars span:nth-child(1) {
  top: -2px;
}
.header__menu:hover .header__menu-bars span:nth-child(2) {
  bottom: -2px;
}
.header__menu.is-active .header__menu-bars span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__menu.is-active .header__menu-bars span:nth-child(2) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.header__menu.is-active:hover .header__menu-bars span:nth-child(1) {
  top: 50%;
}
.header__menu.is-active:hover .header__menu-bars span:nth-child(2) {
  bottom: 50%;
}

.header__overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--site-header-height);
  background: rgba(0, 30, 108, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.header__overlay a.comingsoon {
  pointer-events: none;
  opacity: 0.4;
}
.header__overlay .header__overlay-inner {
  width: min(996px, 100% - 64px);
  max-height: calc(100vh - var(--site-header-height) - 96px);
  overflow-y: auto;
}
@media screen and (max-width: 900px) {
  .header__overlay .header__overlay-inner {
    width: min(720px, 100% - 48px);
  }
}
.header__overlay .header__overlay-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 480px));
  gap: 40px 36px;
}
@media screen and (max-width: 900px) {
  .header__overlay .header__overlay-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.header__overlay .header__overlay-item {
  position: relative;
  overflow: hidden;
  background: #001e6c;
}
.header__overlay .header__overlay-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 180px;
  height: 180px;
  background: #5ab6c3;
  opacity: 0.4;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .header__overlay .header__overlay-item::after {
    width: 110px;
    height: 110px;
  }
}
.header__overlay .header__overlay-item .header__overlay-photo {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  clip-path: polygon(56.5% 0, 100% 0, 100% 100%, 23.3% 100%);
  padding-left: 23%;
  opacity: 0.85;
}
@media screen and (max-width: 900px) {
  .header__overlay .header__overlay-item .header__overlay-photo {
    height: 160px;
  }
}
.header__overlay .header__overlay-parent {
  position: absolute;
  top: 17px;
  left: 17px;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 4px solid rgba(90, 182, 195, 0.8);
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 900px) {
  .header__overlay .header__overlay-parent {
    top: 16px;
    left: 20px;
    font-size: 1.8rem;
  }
}
.header__overlay .header__overlay-sublist {
  padding: 14px 17px 17px 14px;
}
.header__overlay .header__overlay-sublist a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 34px;
}
.header__overlay .header__overlay-sublist .c-arrow {
  opacity: 0.6;
  width: 30px;
}
.header__overlay .header__overlay-sublist .c-arrow::before {
  width: 44px;
}
.header__overlay .header__overlay-sublist .c-arrow::after {
  width: 12px;
}
@media screen and (max-width: 900px) {
  .header__overlay .header__overlay-sublist {
    padding: 16px 20px 20px;
  }
  .header__overlay .header__overlay-sublist a {
    font-size: 1.4rem;
    line-height: 28px;
  }
}
.header__overlay .header__overlay-nav a:hover {
  color: #fff;
  opacity: 0.7;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  background: #fff;
}

.footer__copyright {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .footer__copyright {
    font-size: 1.2rem;
  }
}

.inner {
  position: relative;
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.grid_box {
  display: flex;
  flex-wrap: wrap;
}
.grid_box.jc_center {
  justify-content: center;
}
.grid_box.ai_center {
  align-items: center;
}
.grid_box.col_1 > .grid_box__item {
  width: calc(100% / 1);
}
.grid_box.col_2 > .grid_box__item {
  width: calc(100% / 2);
}
.grid_box.col_3 > .grid_box__item {
  width: calc(100% / 3);
}
.grid_box.col_4 > .grid_box__item {
  width: calc(100% / 4);
}
.grid_box.col_5 > .grid_box__item {
  width: calc(100% / 5);
}
.grid_box.gap_10 {
  margin: calc(10px / -2);
}
.grid_box.gap_10 > .grid_box__item {
  padding: calc(10px / 2);
}
.grid_box.gap_15 {
  margin: calc(15px / -2);
}
.grid_box.gap_15 > .grid_box__item {
  padding: calc(15px / 2);
}
.grid_box.gap_20 {
  margin: calc(20px / -2);
}
.grid_box.gap_20 > .grid_box__item {
  padding: calc(20px / 2);
}
.grid_box.gap_25 {
  margin: calc(25px / -2);
}
.grid_box.gap_25 > .grid_box__item {
  padding: calc(25px / 2);
}
.grid_box.gap_30 {
  margin: calc(30px / -2);
}
.grid_box.gap_30 > .grid_box__item {
  padding: calc(30px / 2);
}
.grid_box.gap_40 {
  margin: calc(40px / -2);
}
.grid_box.gap_40 > .grid_box__item {
  padding: calc(40px / 2);
}
.grid_box.gap_50 {
  margin: calc(50px / -2);
}
.grid_box.gap_50 > .grid_box__item {
  padding: calc(50px / 2);
}
.grid_box.gap_60 {
  margin: calc(60px / -2);
}
.grid_box.gap_60 > .grid_box__item {
  padding: calc(60px / 2);
}
.grid_box.gap_80 {
  margin: calc(80px / -2);
}
.grid_box.gap_80 > .grid_box__item {
  padding: calc(80px / 2);
}
.grid_box.gap_100 {
  margin: calc(100px / -2);
}
.grid_box.gap_100 > .grid_box__item {
  padding: calc(100px / 2);
}
@media screen and (max-width: 768px) {
  .grid_box.col_1_sp > .grid_box__item {
    width: calc(100% / 1);
  }
  .grid_box.col_2_sp > .grid_box__item {
    width: calc(100% / 2);
  }
  .grid_box.col_3_sp > .grid_box__item {
    width: calc(100% / 3);
  }
  .grid_box.col_4_sp > .grid_box__item {
    width: calc(100% / 4);
  }
  .grid_box.col_5_sp > .grid_box__item {
    width: calc(100% / 5);
  }
  .grid_box.gap_10_sp {
    margin: calc(10px / -2);
  }
  .grid_box.gap_10_sp > .grid_box__item {
    padding: calc(10px / 2);
  }
  .grid_box.gap_15_sp {
    margin: calc(15px / -2);
  }
  .grid_box.gap_15_sp > .grid_box__item {
    padding: calc(15px / 2);
  }
  .grid_box.gap_20_sp {
    margin: calc(20px / -2);
  }
  .grid_box.gap_20_sp > .grid_box__item {
    padding: calc(20px / 2);
  }
  .grid_box.gap_25_sp {
    margin: calc(25px / -2);
  }
  .grid_box.gap_25_sp > .grid_box__item {
    padding: calc(25px / 2);
  }
  .grid_box.gap_30_sp {
    margin: calc(30px / -2);
  }
  .grid_box.gap_30_sp > .grid_box__item {
    padding: calc(30px / 2);
  }
  .grid_box.gap_40_sp {
    margin: calc(40px / -2);
  }
  .grid_box.gap_40_sp > .grid_box__item {
    padding: calc(40px / 2);
  }
  .grid_box.gap_50_sp {
    margin: calc(50px / -2);
  }
  .grid_box.gap_50_sp > .grid_box__item {
    padding: calc(50px / 2);
  }
  .grid_box.gap_60_sp {
    margin: calc(60px / -2);
  }
  .grid_box.gap_60_sp > .grid_box__item {
    padding: calc(60px / 2);
  }
  .grid_box.gap_80_sp {
    margin: calc(80px / -2);
  }
  .grid_box.gap_80_sp > .grid_box__item {
    padding: calc(80px / 2);
  }
  .grid_box.gap_100_sp {
    margin: calc(100px / -2);
  }
  .grid_box.gap_100_sp > .grid_box__item {
    padding: calc(100px / 2);
  }
}

.inv__fadeUp {
  opacity: 0;
  transform: translateY(var(--o, 28px));
  transition: opacity var(--t, 0.7s) ease var(--d, 0s), transform var(--t, 0.7s) ease var(--d, 0s);
}
.inv__fadeUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.inv__fadeIn {
  opacity: 0;
  transition: opacity var(--t, 0.7s) ease var(--d, 0s);
}
.inv__fadeIn.is-inview {
  opacity: 1;
}

.inv__slideR {
  opacity: 0;
  transform: translateX(var(--o, 60px));
  transition: opacity var(--t, 0.7s) ease var(--d, 0s), transform var(--t, 0.7s) ease var(--d, 0s);
}
.inv__slideR.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.inv__slideL {
  opacity: 0;
  transform: translateX(calc(var(--o, 60px) * -1));
  transition: opacity var(--t, 0.7s) ease var(--d, 0s), transform var(--t, 0.7s) ease var(--d, 0s);
}
.inv__slideL.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.inv__zoomIn {
  opacity: 0;
  scale: var(--scale-from, 1.12);
  transition: opacity var(--t, 0.8s) ease var(--d, 0s), scale var(--t, 0.8s) ease var(--d, 0s);
}
.inv__zoomIn.is-inview {
  opacity: 1;
  scale: 1;
}

.inv__fromTopRight {
  opacity: 0;
  translate: var(--o, 30px) calc(var(--o, 30px) * -1);
  transition: opacity var(--t, 0.7s) ease var(--d, 0s), translate var(--t, 0.7s) ease var(--d, 0s);
}
.inv__fromTopRight.is-inview {
  opacity: 1;
  translate: 0 0;
}

.inv__fromTopLeft {
  opacity: 0;
  translate: calc(var(--o, 30px) * -1) calc(var(--o, 30px) * -1);
  transition: opacity var(--t, 0.7s) ease var(--d, 0s), translate var(--t, 0.7s) ease var(--d, 0s);
}
.inv__fromTopLeft.is-inview {
  opacity: 1;
  translate: 0 0;
}

.inv__revealLeft {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition: -webkit-clip-path var(--t, 0.8s) cubic-bezier(0.2, 0.8, 0.2, 1) var(--d, 0s), clip-path var(--t, 0.8s) cubic-bezier(0.2, 0.8, 0.2, 1) var(--d, 0s), opacity var(--t, 0.8s) ease var(--d, 0s);
}
.inv__revealLeft.is-inview {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.inv__delay-02 {
  --d: 0.2s !important;
}

.inv__delay-04 {
  --d: 0.4s !important;
}

.inv__delay-06 {
  --d: 0.6s !important;
}

.inv__delay-08 {
  --d: 0.8s !important;
}

@media (prefers-reduced-motion: reduce) {
  .inv__fadeUp,
  .inv__fadeIn,
  .inv__slideR,
  .inv__slideL,
  .inv__fromTopRight,
  .inv__fromTopLeft,
  .inv__zoomIn,
  .inv__revealLeft {
    opacity: 1;
    transform: none;
    translate: 0 0;
    scale: 1;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    transition: none;
  }
}
@media screen and (max-width: 768px) {
  .view_pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .view_sp {
    display: none !important;
  }
}

.fs_16 {
  font-size: 1.6rem !important;
}

@media screen and (max-width: 768px) {
  .fs_16__sp {
    font-size: 1.6rem !important;
  }
}

.fs_18 {
  font-size: 1.8rem !important;
}

@media screen and (max-width: 768px) {
  .fs_18__sp {
    font-size: 1.8rem !important;
  }
}

.fs_20 {
  font-size: 2rem !important;
}

@media screen and (max-width: 768px) {
  .fs_20__sp {
    font-size: 2rem !important;
  }
}

.fs_22 {
  font-size: 2.2rem !important;
}

@media screen and (max-width: 768px) {
  .fs_22__sp {
    font-size: 2.2rem !important;
  }
}

.fs_24 {
  font-size: 2.4rem !important;
}

@media screen and (max-width: 768px) {
  .fs_24__sp {
    font-size: 2.4rem !important;
  }
}

.fs_26 {
  font-size: 2.6rem !important;
}

@media screen and (max-width: 768px) {
  .fs_26__sp {
    font-size: 2.6rem !important;
  }
}

.fs_28 {
  font-size: 2.8rem !important;
}

@media screen and (max-width: 768px) {
  .fs_28__sp {
    font-size: 2.8rem !important;
  }
}

.fs_30 {
  font-size: 3rem !important;
}

@media screen and (max-width: 768px) {
  .fs_30__sp {
    font-size: 3rem !important;
  }
}

.fs_32 {
  font-size: 3.2rem !important;
}

@media screen and (max-width: 768px) {
  .fs_32__sp {
    font-size: 3.2rem !important;
  }
}

.c-arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 60px;
  height: 16px;
  color: currentColor;
}
@media screen and (max-width: 560px) {
  .c-arrow {
    width: 45px;
    height: 12px;
  }
}

.c-arrow::before,
.c-arrow::after {
  content: "";
  position: absolute;
  display: block;
  background: currentColor;
  transform-origin: right center;
}

.c-arrow::before {
  right: 0;
  bottom: 3px;
  width: 60px;
  height: 1px;
}

.c-arrow::after {
  right: 0;
  bottom: 3px;
  width: 16px;
  height: 1px;
  transform: rotate(45deg);
}

.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  transition: opacity 0.25s ease;
}

.c-btn:hover {
  opacity: 0.85;
}

.c-btn::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: var(--btn-corner-size, 200px);
  height: var(--btn-corner-size, 200px);
  background: var(--btn-corner-color, rgba(49, 173, 190, 0.35));
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.c-btn__text,
.c-btn__icon,
.c-btn__body,
.c-btn__description,
.c-btn__arrow {
  position: relative;
  z-index: 1;
}

.c-btn__text {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5625;
  word-break: keep-all;
}
@media screen and (max-width: 560px) {
  .c-btn__text {
    font-size: 2.2rem;
    line-height: 1.55;
  }
}

.c-btn__arrow {
  position: absolute;
  right: 28px;
  bottom: 29px;
}
.c-btn--primary {
  min-height: 200px;
  padding: 40px 160px 40px 40px;
  background: #013388;
  --btn-corner-color: rgba(49, 173, 190, 0.42);
  --btn-corner-size: 200px;
}
@media screen and (max-width: 560px) {
  .c-btn--primary {
    min-height: 154px;
    padding: 30px 58px 28px 28px;
    --btn-corner-size: 140px;
  }
}

.c-btn--schedule {
  min-height: 196px;
  gap: 32px;
  padding: 35px 85px 35px 35px;
  border: 2px solid #5ab6c3;
  background: #fff;
  color: #5ab6c3;
  --btn-corner-color: #dff3f6;
  --btn-corner-size: 200px;
}
@media screen and (max-width: 900px) {
  .c-btn--schedule {
    display: block;
    padding-right: 70px;
  }
}
@media screen and (max-width: 560px) {
  .c-btn--schedule {
    min-height: 154px;
    padding: 30px 58px 28px 28px;
    --btn-corner-size: 140px;
  }
}

.c-btn--schedule .c-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 108px;
  width: 108px;
  height: 108px;
}
@media screen and (max-width: 560px) {
  .c-btn--schedule .c-btn__icon {
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
  }
}

.c-btn--schedule .c-btn__icon img {
  width: 100%;
  height: 100%;
}

.c-btn--schedule .c-btn__body {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 58px;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .c-btn--schedule .c-btn__body {
    display: block;
  }
}

.c-btn--schedule .c-btn__description {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.875;
  word-break: break-all;
}
@media screen and (max-width: 900px) {
  .c-btn--schedule .c-btn__description {
    margin-top: 14px;
  }
}
@media screen and (max-width: 560px) {
  .c-btn--schedule .c-btn__description {
    font-size: 1.4rem;
  }
}

.c-btn--back {
  width: min(600px, 100%);
  min-height: 80px;
  padding: 20px 160px 20px 30px;
  border: 1px solid #001e6c;
  background: #001e6c;
  --btn-corner-color: #013388;
  --btn-corner-size: 160px;
}

.c-btn--back::after {
  height: 80px;
}

.c-btn--back .c-btn__text {
  flex: 1 1 auto;
  font-size: 2rem;
  line-height: 1.5;
}

.c-deco {
  position: absolute;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.c-deco--dotline {
  width: 135px;
  height: 135px;
  background-image: url("../img/obj_dotline.svg");
}

.c-deco--dot-diamond {
  width: 400px;
  height: 400px;
  background-image: url("../img/obj_sq_1.svg");
}

.c-deco--dot-diamond-large {
  width: 900px;
  height: 900px;
}

.c-deco--dot-diamond-large.c-deco--white {
  background-image: url("../img/obj_sq_1_w.svg");
}

.c-deco--white {
  --deco-color: #fff;
}

.c-deco--pale {
  --deco-color: #013388;
}

.c-deco--teal {
  --deco-color: #5ab6c3;
}

.c-deco--stripe-diamond {
  width: 400px;
  height: 389px;
  background-image: url("../img/obj_sq_2.svg");
}

.c-deco--stripe-diagonal {
  width: 474px;
  height: 474px;
  background-image: url("../img/obj_sq_3.svg");
}

.c-page-header {
  overflow: hidden;
}

.c-page-header__body {
  position: relative;
  padding: 40px 40px 24px;
  z-index: 1;
  --d: 0.2s;
}
@media screen and (max-width: 768px) {
  .c-page-header__body {
    padding: 24px 20px 16px;
  }
}

.c-page-header__en {
  display: block;
  width: fit-content;
  position: relative;
  color: #013388;
  font-family: "Roboto", sans-serif;
  font-size: 10rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}
.c-page-header__en::after {
  content: "";
  position: absolute;
  bottom: 46px;
  left: 110%;
  width: 100vw;
  height: 2px;
  background: #013388;
}
@media screen and (max-width: 768px) {
  .c-page-header__en {
    font-size: 5rem;
  }
  .c-page-header__en::after {
    bottom: 10px;
    height: 1px;
  }
}

.c-page-header__ja {
  margin-top: 10px;
  color: #000;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-page-header__ja {
    margin-top: 6px;
    font-size: 1.3rem;
  }
}

.c-page-header__visual {
  position: relative;
  height: 300px;
  margin-top: -80px;
  background-color: #EEF4F9;
  z-index: -1;
  padding-left: 22%;
  transition-duration: 1s !important;
}
@media screen and (max-width: 768px) {
  .c-page-header__visual {
    height: 150px;
    margin-top: 0px;
    padding-left: 16%;
  }
}

.c-page-header__img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right center;
  clip-path: polygon(300px 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 768px) {
  .c-page-header__img {
    clip-path: polygon(150px 0, 100% 0, 100% 100%, 0 100%);
  }
}

.c-page-header__deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  background: #013388;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-page-header__deco {
    width: 100px;
    height: 100px;
  }
}

.ttl_1 {
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding-bottom: 8px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #000;
}
.ttl_1::after {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  bottom: 0;
  height: 18px;
  background: linear-gradient(to right, rgba(90, 182, 195, 0.15) 50%, rgba(90, 182, 195, 0.3) 50%);
  clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .ttl_1 {
    font-size: 2.2rem;
  }
  .ttl_1::after {
    left: -16px;
    right: -16px;
    height: 12px;
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  }
}

.faq-section {
  padding: 60px 0 80px;
}
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 40px 0 60px;
  }
}

.faq-list {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .faq-list {
    margin-top: 32px;
  }
}

.faq-item + .faq-item {
  margin-top: 20px;
}

.faq-item__q {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-right: 20px;
  background: #f6f6f6;
  border: none;
  cursor: pointer;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .faq-item__q {
    gap: 12px;
    padding-right: 12px;
  }
}

.faq-item__label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 80px;
  align-self: stretch;
  padding: 26px 0;
  background: #011e6c;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .faq-item__label {
    flex: 0 0 56px;
    font-size: 1.8rem;
  }
}

.faq-item__question {
  flex: 1;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 768px) {
  .faq-item__question {
    font-size: 1.5rem;
  }
}

.faq-item__toggle {
  flex: 0 0 40px;
  height: 40px;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item__toggle::before, .faq-item__toggle::after {
  content: "";
  position: absolute;
  background: #013388;
  border-radius: 1px;
}
.faq-item__toggle::before {
  width: 2px;
  height: 16px;
  transition: transform 0.35s ease;
}
.faq-item.is-open .faq-item__toggle::before {
  transform: rotate(90deg);
}
.faq-item__toggle::after {
  width: 16px;
  height: 2px;
  transition: opacity 0.35s ease;
}
.faq-item.is-open .faq-item__toggle::after {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .faq-item__toggle {
    flex: 0 0 32px;
    height: 32px;
  }
  .faq-item__toggle::before {
    height: 12px;
  }
  .faq-item__toggle::after {
    width: 12px;
  }
}

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
}

.faq-item__a-inner {
  overflow: hidden;
  display: flex;
  gap: 20px;
  padding: 0 20px 0 0;
  transition: padding 0.35s ease;
}
.faq-item.is-open .faq-item__a-inner {
  padding: 24px 20px 32px 0;
}
@media screen and (max-width: 768px) {
  .faq-item__a-inner {
    gap: 12px;
  }
  .faq-item.is-open .faq-item__a-inner {
    padding: 16px 12px 24px 0;
  }
}

.faq-item__a-label {
  flex: 0 0 80px;
  padding-top: 2px;
  text-align: center;
  color: #5ab6c3;
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .faq-item__a-label {
    flex: 0 0 56px;
    font-size: 1.8rem;
  }
}

.faq-item__answer {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
  color: #000;
}
@media screen and (max-width: 768px) {
  .faq-item__answer {
    font-size: 1.4rem;
  }
}

.link_txt {
  color: #013388;
  text-decoration: underline;
  transition: opacity 0.25s ease;
}
.link_txt:hover {
  opacity: 0.7;
}

.interview__slider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 330px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .interview__slider {
    height: auto;
    overflow: visible;
  }
}

.interview__track .slick-list {
  /* 左端に70px確保してクローンカードをのぞかせる */
  overflow: visible !important;
  padding-left: 70px !important;
}
@media screen and (max-width: 900px) {
  .interview__track .slick-list {
    padding: 0 !important;
    overflow: hidden !important;
  }
}

.interview__track,
.interview__track .slick-list,
.interview__track .slick-track {
  height: 330px !important;
}

.interview__track .slick-slide {
  /*
   * グローバル box-sizing: border-box だと padding が幅を削ってしまうため
   * content-box に戻し、padding 分がカード幅(380px)に加算されるようにする
   * → スライド幅 = 380 + 20×2 = 420px
   */
  box-sizing: content-box !important;
  display: flex !important;
  flex-direction: column;
  width: 380px !important;
  height: 330px !important;
  padding: 0 20px;
}
@media screen and (max-width: 900px) {
  .interview__track .slick-slide {
    box-sizing: border-box !important;
  }
}

.interview__track .slick-slide > div {
  height: auto;
}

.interview-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 380px;
  height: 330px;
  overflow: visible;
  transition: opacity 0.25s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 560px) {
  .interview-card {
    width: min(78vw, 320px);
    height: 278px;
  }
}

.interview-card:hover {
  opacity: 0.85;
}

.interview-card__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  flex: 0 0 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 560px) {
  .interview-card__photo {
    flex-basis: 166px;
    height: 166px;
  }
}

.interview-card__bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
@media screen and (max-width: 560px) {
  .interview-card__bg {
    inset: 0;
    width: 100%;
    height: 100%;
  }
}

.interview-card__person {
  position: absolute;
  z-index: 4;
  top: -170px;
  left: 0;
  width: 150px;
  height: 360px;
}
@media screen and (max-width: 560px) {
  .interview-card__person {
    top: -142px;
    left: 0;
    width: 126px;
    height: 240px;
  }
}

.interview-card__person img {
  position: absolute;
  display: block;
  top: 5px;
  left: 20px;
  width: 120px;
  height: auto;
  max-width: none;
}
@media screen and (max-width: 560px) {
  .interview-card__person img {
    left: 21px;
    top: 8px;
    width: 84px;
  }
}

.interview-card__body {
  position: relative;
  z-index: 3;
  flex: 1;
  min-height: 130px;
  padding: 16px 15px 16px 150px;
  border-bottom: 1px solid #013388;
}
@media screen and (max-width: 560px) {
  .interview-card__body {
    min-height: 112px;
    padding: 8px 58px 8px 130px;
  }
}

.interview-card__dept,
.interview-card__year {
  position: relative;
  z-index: 5;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.03em;
  color: #000;
}
@media screen and (max-width: 560px) {
  .interview-card__dept,
  .interview-card__year {
    font-size: 1.3rem;
  }
}

.interview-card__link {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 50px;
  overflow: hidden;
  background: #013388;
  color: #fff;
}
@media screen and (max-width: 560px) {
  .interview-card__link {
    left: auto;
    right: 0;
    top: auto;
    bottom: 0;
    width: 58px;
    height: 42px;
  }
}

.interview-card__link .c-arrow {
  width: 56px;
  transform: translate(-14px, 2px);
}

.interview-card__link .c-arrow::before {
  width: 54px;
}

.interview-card__link .c-arrow::after {
  width: 16px;
}

:root {
  --fv-bg-size: 358px;
  --fv-bg-origin-y: 142px;
}
.fv {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background-color: #8fc8d3;
  background-image: image-set(url("../img/fv/bg_main.webp") type("image/webp"), url("../img/fv/bg_main.png") type("image/png"));
  background-repeat: repeat;
  background-position: center;
  background-size: var(--fv-bg-size) var(--fv-bg-size);
}
@media screen and (max-width: 560px) {
  .fv {
    background-size: calc(var(--fv-bg-size) / 2) calc(var(--fv-bg-size) / 2);
  }
}

.fv__frame {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.fv__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 5px solid #fff;
  pointer-events: none;
  opacity: 0;
}

body.is-loading .fv__frame::after {
  transition: none !important;
}

@keyframes fv-frame-enter {
  from {
    inset: 0;
    opacity: 0;
  }
  to {
    inset: 20px 25px 25px;
    opacity: 1;
  }
}
@keyframes fv-center-enter {
  from {
    opacity: 0;
    transform: translateX(-50%) rotate(45deg) scale(1.12);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg) scale(1);
  }
}
@media screen and (min-width: 901px) {
  .fv__frame::after {
    inset: 20px 25px 25px;
    opacity: 1;
    animation: fv-frame-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-play-state: paused;
    transition: inset 0.35s ease, opacity 0.35s ease;
  }
  .fv__center {
    scale: 1 !important;
    animation: fv-center-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
    animation-play-state: paused;
  }
  .fv.is-animated .fv__frame::after,
  .fv.is-animated .fv__center {
    animation-play-state: running;
  }
  .fv:not(.is-fv) .fv__frame::after {
    inset: 0;
    opacity: 0;
  }
}
.fv__center {
  position: absolute;
  top: calc(50vh - 254px);
  left: 50%;
  z-index: 5;
  width: 508px;
  height: 508px;
  background: #013388;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 560px) {
  .fv__center {
    transform: translateX(-50%) rotate(45deg) scale(0.5);
  }
}

.fv__center-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  transform: rotate(-45deg);
}

.fv__title {
  width: 626px;
  height: 390.238px;
  margin-top: -28px;
}
.fv__title img {
  display: block;
  width: 100%;
  height: 100%;
}

.fv__sub {
  margin-top: 24px;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-style: italic;
  letter-spacing: 0.15em;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fv__scroll {
  position: absolute;
  bottom: -86px;
  left: 50%;
  color: #8fc8d3;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-style: italic;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fv__scroll::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 18px auto 0;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-top: 18px solid #8fc8d3;
}

.fv__person,
.fv__note,
.fv__word,
.fv__line {
  position: absolute;
}

.fv__person {
  z-index: 3;
  max-width: none;
  user-select: none;
  pointer-events: none;
}

.fv__person--01 {
  top: calc(50vh - 90px);
  left: calc(50vw - 643px);
  width: 206px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 560px) {
  .fv__person--01 {
    top: calc(50vh - 228px);
    left: calc(50vw - 135px);
    width: 103px;
  }
}

.fv__person--02 {
  top: calc(50vh - 270px);
  left: calc(50vw + 145px);
  width: 306px;
  transform: rotate(45deg);
}
@media screen and (max-width: 560px) {
  .fv__person--02 {
    top: calc(50vh + 175px);
    left: calc(50vw - 150px);
    width: 153px;
  }
}

.fv__person--03 {
  top: calc(50vh + 235px);
  left: calc(50vw + 25px);
  width: 347px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 560px) {
  .fv__person--03 {
    top: calc(50vh + 90px);
    left: calc(50vw + 55px);
    width: 163px;
  }
}

.fv__person--04 {
  top: calc(50vh - 330px);
  left: calc(50vw - 390px);
  width: 94px;
  transform: rotate(45deg);
}
@media screen and (max-width: 560px) {
  .fv__person--04 {
    top: calc(50vh - 240px);
    left: calc(50vw + 70px);
    width: 47px;
  }
}

.fv__person--05 {
  top: calc(50vh - 150px);
  left: calc(50vw + 520px);
  width: 94px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 560px) {
  .fv__person--05 {
    top: calc(50vh - 140px);
    left: calc(50vw + 130px);
    width: 47px;
  }
}

.fv__person--06 {
  top: calc(50vh + 100px);
  left: calc(50vw - 330px);
  width: 98px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 560px) {
  .fv__person--06 {
    top: calc(50vh + 55px);
    left: calc(50vw - 150px);
    width: 49px;
  }
}

.fv__person--07 {
  top: calc(50vh + 150px);
  left: calc(50vw + 490px);
  width: 104px;
  transform: rotate(45deg);
}
@media screen and (max-width: 560px) {
  .fv__person--07 {
    top: calc(50vh + 160px);
    left: calc(50vw + 10px);
    width: 50px;
  }
}

.fv__word {
  z-index: 1;
  color: transparent;
  font-family: "Roboto", sans-serif;
  font-size: 10rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(123, 116, 109, 0.82);
}
@media screen and (max-width: 560px) {
  .fv__word {
    font-size: 5rem;
  }
}

.fv__word--work {
  top: calc(50vh - 190px);
  left: calc(50vw - 675px);
}
@media screen and (max-width: 560px) {
  .fv__word--work {
    top: calc(50vh - 125px);
    left: calc(50vw - 195px);
  }
}

.fv__word--environment {
  top: calc(50vh - 360px);
  left: calc(50vw - 245px);
}
@media screen and (max-width: 560px) {
  .fv__word--environment {
    top: calc(50vh - 270px);
    left: calc(50vw - 70px);
  }
}

.fv__word--people {
  top: calc(50vh + 250px);
  left: calc(50vw - 595px);
}
@media screen and (max-width: 560px) {
  .fv__word--people {
    top: calc(50vh + 140px);
    left: calc(50vw - 180px);
  }
}

.fv__word--future {
  top: calc(50vh + 60px);
  left: calc(50vw + 285px);
}
@media screen and (max-width: 560px) {
  .fv__word--future {
    top: calc(50vh + 250px);
    left: calc(50vw + 40px);
  }
}

.fv__note {
  z-index: 4;
  display: block;
  max-width: none;
  height: auto;
}
.fv__note--01 {
  top: calc(50vh - 200px);
  left: calc(50vw - 310px);
  width: 82px;
}
@media screen and (max-width: 560px) {
  .fv__note--01 {
    top: calc(50vh - 170px);
    left: calc(50vw - 170px);
    width: 48px;
  }
}

.fv__note--02 {
  top: calc(50vh + 78px);
  left: calc(50vw - 443px);
  width: 123px;
}
@media screen and (max-width: 560px) {
  .fv__note--02 {
    top: calc(50vh - 220px);
    left: calc(50vw - 25px);
    width: 71px;
  }
}

.fv__note--03 {
  top: calc(50vh + 215px);
  left: calc(50vw - 517px);
  width: 159px;
}
@media screen and (max-width: 560px) {
  .fv__note--03 {
    top: calc(50vh + 250px);
    left: calc(50vw - 185px);
    width: 79px;
  }
}

.fv__note--04 {
  top: calc(50vh - 300px);
  left: calc(50vw + 370px);
  width: 116px;
}
@media screen and (max-width: 560px) {
  .fv__note--04 {
    top: calc(50vh - 150px);
    left: calc(50vw + 80px);
    width: 62px;
  }
}

.fv__note--05 {
  top: calc(50vh - 10px);
  left: calc(50vw + 400px);
  width: 128px;
}
@media screen and (max-width: 560px) {
  .fv__note--05 {
    top: calc(50vh - 70px);
    left: calc(50vw - 185px);
    width: 68px;
  }
}

.fv__note--06 {
  top: calc(50vh + 180px);
  left: calc(50vw + 250px);
  width: 106px;
}
@media screen and (max-width: 560px) {
  .fv__note--06 {
    top: calc(50vh + 140px);
    left: calc(50vw + 60px);
    width: 60px;
  }
}

.fv__note--07 {
  top: calc(50vh + 200px);
  left: calc(50vw + 380px);
  width: 125px;
}
@media screen and (max-width: 560px) {
  .fv__note--07 {
    top: calc(50vh + 270px);
    left: calc(50vw - 35px);
    width: 68px;
  }
}

.fv__line {
  z-index: 8;
  width: 135px;
  height: 135px;
  background: url("../img/obj_dotline.svg") center/contain no-repeat;
}
@media screen and (max-width: 560px) {
  .fv__line {
    width: 67px;
    height: 67px;
  }
}

.fv__line--01 {
  top: calc(50vh - 310px);
  left: calc(50vw - 550px);
}
@media screen and (max-width: 560px) {
  .fv__line--01 {
    top: calc(50vh - 245px);
    left: calc(50vw - 180px);
  }
}

.fv__line--02 {
  top: calc(50vh - 290px);
  left: calc(50vw + 505px);
}
@media screen and (max-width: 560px) {
  .fv__line--02 {
    top: calc(50vh - 204px);
    left: calc(50vw + 140px);
  }
}

.fv__line--03 {
  top: calc(50vh + 340px);
  left: calc(50vw - 485px);
}
@media screen and (max-width: 560px) {
  .fv__line--03 {
    top: calc(50vh + 150px);
    left: calc(50vw - 215px);
  }
}

.fv__line--04 {
  top: calc(50vh + 69px);
  left: calc(50vw + 505px);
}
@media screen and (max-width: 560px) {
  .fv__line--04 {
    top: calc(50vh + 190px);
    left: calc(50vw + 105px);
  }
}

.fv__line--05 {
  top: calc(50vh + 80px);
  left: calc(50vw - 580px);
}
@media screen and (max-width: 560px) {
  .fv__line--05 {
    top: calc(50vh + 310px);
    left: calc(50vw - 200px);
  }
}

.top-page {
  overflow: hidden;
  background: #fff;
}

.top-heading {
  color: #013388;
  font-family: "Roboto", sans-serif, "Arial", "Noto Sans JP", sans-serif;
  line-height: 1;
}

.top-heading__en {
  display: block;
  font-size: 10rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
}
@media screen and (max-width: 900px) {
  .top-heading__en {
    font-size: clamp(5.4rem, 13vw, 8rem);
  }
}

.top-heading__ja {
  display: block;
  margin-top: 5px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.923;
}
@media screen and (max-width: 900px) {
  .top-heading__ja {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}

.top-text {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2;
  line-break: anywhere;
  overflow-wrap: anywhere;
  word-break: break-all;
}
@media screen and (max-width: 560px) {
  .top-text {
    font-size: 1.4rem;
    padding-right: 12px;
  }
}

.top-deco {
  position: absolute;
  pointer-events: none;
}

@media screen and (max-width: 560px) {
  .top-deco--diamond {
    display: none;
  }
}

.top-deco--diamond-01 {
  top: -350px;
  right: -500px;
}

.top-deco--diamond-02 {
  right: -20px;
  bottom: 70px;
}

.top-deco--dots {
  top: 70px;
  left: -40px;
  z-index: 0;
}
@media screen and (max-width: 560px) {
  .top-deco--dots {
    display: none;
  }
}

.top-deco--stripe {
  right: 10px;
  bottom: -220px;
  z-index: 0;
}
@media screen and (max-width: 560px) {
  .top-deco--stripe {
    display: none;
  }
}

.top-location > .top-deco--stripe-diagonal {
  top: -180px;
  left: max(0px, 50% - 700px);
  bottom: auto;
  z-index: 0;
}
@media screen and (max-width: 560px) {
  .top-location > .top-deco--stripe-diagonal {
    display: none;
  }
}

.top-deco--interview-stripe {
  left: 26px;
  bottom: -88px;
  z-index: 0;
  opacity: 0.38;
}
@media screen and (max-width: 560px) {
  .top-deco--interview-stripe {
    display: none;
  }
}

.top-message {
  position: relative;
  padding-top: 88px;
  padding-bottom: 30px;
}
.top-message::before {
  content: "";
  position: absolute;
  right: -190px;
  top: 136.6904748px;
  z-index: 0;
  width: 660px;
  height: 660px;
  background: rgba(90, 182, 195, 0.15);
  transform: rotate(45deg);
  transform-origin: center;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .top-message {
    height: auto;
    padding: 0px 0 80px;
  }
}

.message__inner {
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .message__inner {
    height: auto;
  }
}

.message__lead {
  position: relative;
  z-index: 1;
  width: 621px;
}
.message__lead .top-text {
  margin-top: 22px;
}
@media screen and (max-width: 900px) {
  .message__lead {
    width: 100%;
  }
}

.message__visual {
  position: absolute;
  top: 0;
  right: -161px;
  z-index: 0;
  width: 490px;
  height: 348px;
}
@media screen and (max-width: 1200px) {
  .message__visual {
    right: -80px;
    opacity: 0.75;
  }
}
@media screen and (max-width: 900px) {
  .message__visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 490px);
    margin: 34px auto 0;
    opacity: 1;
  }
}
@media screen and (max-width: 560px) {
  .message__visual {
    height: 270px;
  }
}

.message__visual-img {
  position: absolute;
  display: block;
  width: 360px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 560px) {
  .message__visual-img {
    width: 78%;
    height: 154px;
  }
}

.message__visual-img--01 {
  top: 0;
  right: 0;
}

.message__visual-img--02 {
  left: 0;
  bottom: 0;
}

.message__links {
  position: relative;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 490px);
  gap: 20px;
  width: 1000px;
}
@media screen and (max-width: 1200px) {
  .message__links {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 900px) {
  .message__links {
    margin-top: 54px;
    grid-template-columns: 1fr;
  }
}

.message-card {
  position: relative;
  display: flex;
  min-height: 200px;
  overflow: hidden;
  transition: opacity 0.25s ease;
}
@media screen and (max-width: 560px) {
  .message-card {
    min-height: 154px;
  }
}

.message-card:hover {
  opacity: 0.85;
}

.message-card--blue {
  align-items: center;
  padding: 40px 160px 40px 40px;
  background: #013388;
  color: #fff;
}
@media screen and (max-width: 560px) {
  .message-card--blue {
    padding: 30px 58px 30px 28px;
  }
}

.message-card--blue::after {
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  background: rgba(49, 173, 190, 0.42);
  border-radius: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.message-card--schedule {
  grid-column: 1/-1;
  align-items: center;
  gap: 32px;
  min-height: 196px;
  padding: 35px 85px 35px 35px;
  border: 2px solid #5ab6c3;
  background: #fff;
  color: #5ab6c3;
}
@media screen and (max-width: 900px) {
  .message-card--schedule {
    grid-column: auto;
    gap: 30px;
    padding-right: 70px;
  }
}
@media screen and (max-width: 560px) {
  .message-card--schedule {
    display: block;
    padding: 30px 58px 28px 28px;
  }
}

.message-card--schedule::after {
  right: 0;
  bottom: 0;
  width: 200px;
  height: 200px;
  background: #dff3f6;
  border-radius: 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.message-card__text {
  display: block;
  color: inherit;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5625;
  word-break: keep-all;
}
@media screen and (max-width: 560px) {
  .message-card__text {
    font-size: 2.2rem;
  }
}

.message-card--schedule .message-card__text {
  color: #5ab6c3;
}

.message-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 108px;
  width: 108px;
  height: 108px;
}
@media screen and (max-width: 560px) {
  .message-card__icon {
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
  }
}

.message-card__icon img {
  width: 100%;
  height: 100%;
}

.message-card__body {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 58px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .message-card__body {
    display: block;
  }
}

.message-card__description {
  display: block;
  max-width: none;
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.875;
  line-break: anywhere;
  overflow-wrap: anywhere;
  word-break: break-all;
}
@media screen and (max-width: 900px) {
  .message-card__description {
    margin-top: 14px;
  }
}

.message-card__arrow {
  position: absolute;
  right: 28px;
  bottom: 29px;
  z-index: 1;
  width: 60px;
  height: 16px;
}

.message-card__arrow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  background: currentColor;
}

.message-card__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  width: 11px;
  height: 11px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
}

.message-card--schedule .message-card__arrow {
  color: #5ab6c3;
}

.top-interview {
  position: relative;
  padding: 100px 0 64px;
}
.top-interview::after {
  content: "";
  position: absolute;
  left: -200px;
  bottom: 0;
  z-index: 0;
  width: 1500px;
  height: 1500px;
  background: #EDF1F7;
  transform: translateY(50%) rotate(45deg);
  transform-origin: center;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .top-interview {
    padding: 20px 0 20px;
  }
}

.top-interview__button {
  display: flex;
  margin: 80px auto 0;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .top-interview__button {
    margin-top: 48px;
  }
}

.interview__heading {
  position: relative;
  z-index: 1;
  margin-bottom: 52px;
}
@media screen and (max-width: 900px) {
  .interview__heading {
    margin-bottom: 28px;
  }
}

.top-interview .interview__slider {
  position: relative;
  z-index: 1;
}

.top-location {
  position: relative;
  height: 929px;
  padding-top: 75px;
  background: #EDF1F7;
}
@media screen and (max-width: 900px) {
  .top-location {
    height: auto;
    padding: 70px 0 90px;
  }
}

.location__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 467px 480px;
  gap: 53px;
  align-items: start;
}
@media screen and (max-width: 900px) {
  .location__heading .top-text {
    margin-top: 24px;
  }
}
@media screen and (max-width: 900px) {
  .location__heading {
    display: block;
  }
}

.location__map {
  position: relative;
  width: 1300px;
  height: 560px;
  margin-top: 74px;
  margin-left: -150px;
}
@media screen and (max-width: 1200px) {
  .location__map {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 900px) {
  .location__map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 20px;
    height: auto;
    margin-top: 48px;
  }
}
@media screen and (max-width: 560px) {
  .location__map {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(320px, 100%);
    margin-right: auto;
    margin-left: auto;
  }
}

.location-card {
  position: absolute;
  display: block;
  width: 320px;
  height: 320px;
  overflow: visible;
}
@media screen and (max-width: 900px) {
  .location-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 200px;
    height: 200px;
    aspect-ratio: 1;
  }
}

.location-card--01 {
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .location-card--01 {
    left: 0;
  }
}
@media screen and (max-width: 900px) {
  .location-card--01 {
    top: auto;
    left: auto;
  }
}

.location-card--02 {
  top: 0;
  left: 640px;
}
@media screen and (max-width: 1200px) {
  .location-card--02 {
    left: 52%;
  }
}
@media screen and (max-width: 900px) {
  .location-card--02 {
    top: auto;
    left: auto;
  }
}

.location-card--03 {
  top: 220px;
  left: 320px;
}
@media screen and (max-width: 1200px) {
  .location-card--03 {
    left: 26%;
  }
}
@media screen and (max-width: 900px) {
  .location-card--03 {
    top: auto;
    left: auto;
  }
}

.location-card--04 {
  top: 220px;
  left: 960px;
}
@media screen and (max-width: 1200px) {
  .location-card--04 {
    left: auto;
    right: 0;
  }
}
@media screen and (max-width: 900px) {
  .location-card--04 {
    top: auto;
    right: auto;
    left: auto;
  }
}

.location-card__photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 320px;
  transition: transform 0.25s ease;
}
@media screen and (max-width: 560px) {
  .location-card__photo {
    width: 100%;
    height: 100%;
  }
}

.location-card__photo::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #5ab6c3;
  opacity: 0.2;
}
@media screen and (max-width: 560px) {
  .location-card__photo::before {
    right: -6%;
    bottom: -6%;
    width: 100%;
    height: 100%;
  }
}

.location-card:hover .location-card__photo {
  transform: scale(1.03);
}

.location-card__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.location-card__label {
  position: absolute;
  z-index: 2;
  display: block;
  width: 260px;
  white-space: nowrap;
  color: #000;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 5rem;
}
@media screen and (max-width: 560px) {
  .location-card__label {
    top: auto;
    left: 50%;
    bottom: 20px;
    width: 120px;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: right;
    transform: translateX(-50%);
  }
}

.location-card__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 260px;
  height: 1px;
  background: #013388;
}
@media screen and (max-width: 560px) {
  .location-card__label::after {
    top: 30px;
    left: auto;
    right: 0;
    width: 160px;
  }
}

.location-card--01 .location-card__label,
.location-card--02 .location-card__label {
  top: 6px;
  left: 210px;
  text-align: right;
}
@media screen and (max-width: 560px) {
  .location-card--01 .location-card__label,
  .location-card--02 .location-card__label {
    top: 20px;
    left: 260px;
  }
}

.location-card--03 .location-card__label,
.location-card--04 .location-card__label {
  bottom: auto;
  top: 220px;
  left: -160px;
  text-align: left;
}
@media screen and (max-width: 560px) {
  .location-card--03 .location-card__label,
  .location-card--04 .location-card__label {
    top: 20px;
    left: 260px;
    text-align: right;
  }
}/*# sourceMappingURL=page_top.css.map */