@charset "UTF-8";
:root {
  --base-font-color: #000;
  --base-font-family: "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
  --base-font-size: 1.6rem;
  --base-font-weight: 500;
  --base-line-height: 1.65;
  --base-border-color: #b9b9b9;
  --base-border-radius: 1rem;
  --base-grid-gap: 2rem;
  --font-family-en: "Roboto", sans-serif;
  --line-height-x-wide: 2.05;
  --line-height-wide: 1.85;
  --line-height-narrow: 1.45;
  --line-height-x-narrow: 1.25;
  --color-blue: #1103ce;
  --color-sky: #00adff;
  --color-green: #0dbc7d;
  --container-gutter: 5rem;
}
@media (width <= 768px) {
  :root {
    --base-grid-gap: .8rem;
    --base-border-radius: .8rem;
    --container-gutter: 1.5rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

address {
  font-style: normal;
}

em {
  font-style: inherit;
}

html, body {
  overflow-x: clip;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height-narrow);
}
@media (width <= 1366px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media (width <= 768px) {
  html {
    scroll-padding-top: 25.6vw;
    font-size: 2.6666666667vw;
  }
}

body {
  color: var(--color-black);
  line-height: var(--base-line-height);
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  font-weight: var(--base-font-weight);
  padding-top: var(--header-height);
}

img {
  width: 100%;
}

:root {
  --drawer-toggle-size: 7rem;
  --drawer-toggle-color: #000;
  --drawer-padding-top: 0rem;
}
@media (width <= 768px) {
  :root {
    --drawer-toggle-size: 6rem;
  }
}
:root:has(.l-header.--active), :root:has(#drawer-flag:checked) {
  --drawer-toggle-color: #000!important;
}

.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  padding-block-start: calc(var(--header-height) + var(--drawer-padding-top));
  width: 100%;
  height: 100vh;
  background-color: #fff;
  translate: 0 -100%;
  transition: translate 0.3s ease-in-out;
}
.l-drawer__flag {
  display: none;
}
.l-drawer__toggle {
  position: fixed;
  z-index: 350;
  top: 0.8rem;
  right: 5rem;
  display: flex;
  align-items: center;
  aspect-ratio: 1/1;
  width: var(--drawer-toggle-size);
  cursor: pointer;
}
@media (width <= 768px) {
  .l-drawer__toggle {
    top: calc((var(--header-height) - var(--drawer-toggle-size)) / 2);
    right: 2.5rem;
  }
}
.l-drawer__toggle .icon {
  position: relative;
  height: 0.3rem;
  width: 100%;
}
.l-drawer__toggle .icon::before, .l-drawer__toggle .icon::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--drawer-toggle-color);
  rotate: 0deg;
  transition: 0.3s ease;
}
.l-drawer__toggle .icon::before {
  translate: 0 -0.8rem;
}
.l-drawer__toggle .icon::after {
  translate: 0 0.8rem;
}
.l-drawer__contents {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  height: calc(100dvh - var(--header-height) - var(--drawer-padding-top));
}
@media (width > 768px) {
  .l-drawer__contents {
    padding-block: 5rem;
  }
}
@media (width <= 768px) {
  .l-drawer__contents {
    padding-block: 0 2.5rem;
  }
}
.l-drawer__contents::-webkit-scrollbar {
  display: none;
}
@media (width > 768px) {
  .l-drawer__buttons {
    display: none;
  }
}
.l-drawer__menu {
  color: #0731b6;
}
@media (width > 768px) {
  .l-drawer__menu {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.6rem;
    padding-inline-end: 13.5rem;
  }
}
@media (width <= 768px) {
  .l-drawer__menu {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3.5rem 1.5rem 0;
  }
}
.l-drawer__menu .column.--open .heading .icon::before, .l-drawer__menu .column.--open .heading .icon::after {
  rotate: 0deg;
}
.l-drawer__menu .heading {
  position: relative;
  font-size: 1.8rem;
}
@media (width > 768px) {
  .l-drawer__menu .heading {
    display: grid;
    margin-block-end: 2.4rem;
    color: #fff;
  }
}
@media (width <= 768px) {
  .l-drawer__menu .heading {
    font-weight: 700;
  }
}
@media (width > 768px) {
  .l-drawer__menu .heading .image {
    grid-area: 1/1/-1/-1;
    border-radius: var(--base-border-radius);
  }
}
@media (width <= 768px) {
  .l-drawer__menu .heading .image {
    display: none;
  }
}
@media (width > 768px) {
  .l-drawer__menu .heading .label {
    grid-area: 1/1/-1/-1;
    place-content: flex-end flex-start;
    padding: 0 0 1.5rem 2rem;
  }
}
.l-drawer__menu .heading .icon {
  position: absolute;
  top: 50%;
  right: 0rem;
  width: 2rem;
  aspect-ratio: 1/1;
  translate: 0 -50%;
}
@media (width > 768px) {
  .l-drawer__menu .heading .icon {
    display: none;
  }
}
.l-drawer__menu .heading .icon::before, .l-drawer__menu .heading .icon::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  inset-inline: 0;
  height: 0.2rem;
  background-color: currentColor;
  border-radius: 50vw;
  transition: rotate 0.3s ease;
}
.l-drawer__menu .heading .icon::before {
  rotate: -90deg;
}
.l-drawer__menu .heading .icon::after {
  rotate: -180deg;
}
.l-drawer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  line-height: var(--line-height-narrow);
}
@media (width > 768px) {
  .l-drawer__menu ul {
    font-size: 1.4rem;
  }
}
@media (width <= 768px) {
  .l-drawer__menu ul {
    margin-block-start: 1.2rem;
  }
}
.l-drawer__menu ul ul {
  margin-block-start: 0.3rem;
  gap: 0.2rem;
}
@media (width <= 768px) {
  .l-drawer__menu ul ul {
    margin-block-start: 0.9rem;
    gap: 0.6rem;
  }
}
.l-drawer__menu ul ul li::before {
  content: "-";
  margin-inline-end: 0.25em;
}
.l-drawer__menu a {
  transition: opacity 0.3s ease;
}
.l-drawer__menu a:active, .l-drawer__menu a:hover {
  opacity: 0.7;
}
.l-drawer__menu a:hover {
  text-decoration: underline;
}

body:has(#drawer-flag:checked) .l-drawer {
  translate: 0 0;
}
body:has(#drawer-flag:checked) .l-drawer__toggle .icon::before {
  rotate: 25deg;
  translate: 0 0;
}
body:has(#drawer-flag:checked) .l-drawer__toggle .icon::after {
  rotate: -25deg;
  translate: 0 0;
}

:root {
  --header-height: 13.2rem;
  --header-height-narrow: 8.6rem;
  --header-bg: #fff;
}
@media (width <= 768px) {
  :root {
    --header-height: 9.6rem;
    --header-height-narrow: 9.6rem;
  }
}
:root:has(.l-header.--active), :root:has(#drawer-flag:checked) {
  --header-bg: #fff!important;
}
:root:has(body[data-header-change-color=both]) {
  --header-bg: transparent;
}
@media (width > 768px) {
  :root:has(body[data-header-change-color=pc]) {
    --drawer-toggle-color: #fff;
    --header-bg: transparent;
  }
}
@media (width <= 768px) {
  :root:has(body[data-header-change-color=sp]) {
    --header-bg: transparent;
  }
}

body[data-header-change-color=both] {
  padding-block-start: 0;
}
@media (width > 768px) {
  body[data-header-change-color=pc] {
    padding-block-start: 0;
  }
}
@media (width <= 768px) {
  body[data-header-change-color=sp] {
    padding-block-start: 0;
  }
}

.l-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 300;
  background-color: var(--header-bg);
  transition: 0.1s linear;
}
.l-header__inner {
  display: flex;
  align-items: center;
  padding-inline: var(--container-gutter);
  height: var(--header-height);
  transition: 0.1s linear;
}
.l-header__logo {
  background-color: #fff;
}
@media (width > 768px) {
  .l-header__logo {
    display: grid;
    place-content: center;
    margin-inline-start: -2.1rem;
    padding-block: 1.5rem;
    padding-inline: 1.8rem;
  }
}
@media (width <= 768px) {
  .l-header__logo {
    margin-inline-start: 0.5rem;
  }
}
.l-header.--scrolled .l-header__inner {
  height: var(--header-height-narrow);
}
@media (width > 768px) {
  .l-header.--scrolled .l-header__logo {
    padding-block: 0.5rem;
  }
}

body:has(#drawer-flag:checked) .l-header .l-header__inner {
  height: var(--header-height) !important;
}

.l-footer {
  padding-block: 6rem 2rem;
  background: url(../img/footer_bg.jpg) center/cover;
}
@media (width <= 768px) {
  .l-footer {
    padding-block: 3.4rem 1rem;
    background-image: url(../img/footer_bg_sp.jpg);
  }
}
.l-footer__inner {
  padding-inline: 2rem;
}
@media (width <= 768px) {
  .l-footer__inner {
    padding-inline: 1.5rem;
  }
}
@media (width <= 768px) {
  .l-footer__logo {
    margin-inline-start: -0.4rem;
  }
}
.l-footer__catchcopy {
  width: 40.8rem;
  margin-block-start: -1.5rem;
  margin-inline: auto;
}
@media (width <= 768px) {
  .l-footer__catchcopy {
    margin-block-start: 4.5rem;
    width: 16.3rem;
  }
}
@media (width > 768px) {
  .l-footer__navi {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-block-start: 8.5rem;
  }
}
@media (width <= 768px) {
  .l-footer__navi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4.5rem;
    margin-block-start: 6.5rem;
  }
}
.l-footer__navi .column {
  color: #353535;
}
.l-footer__navi .column .heading {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .l-footer__navi .column .heading {
    font-size: 1.2rem;
  }
}
.l-footer__navi .column ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block-start: 2rem;
  font-size: 1.4rem;
}
@media (width <= 768px) {
  .l-footer__navi .column ul {
    margin-block-start: 1rem;
    font-size: 1rem;
    gap: 0.5rem;
  }
}
.l-footer__navi a {
  transition: opacity 0.3s ease;
}
.l-footer__navi a:active, .l-footer__navi a:hover {
  opacity: 0.7;
}
.l-footer__navi a:hover {
  text-decoration: underline;
}
.l-footer__copyright {
  margin-block-start: 10rem;
  font-size: 1.2rem;
}
@media (width <= 768px) {
  .l-footer__copyright {
    margin-block-start: 6.5rem;
    font-size: 0.8rem;
  }
}

.l-container {
  container-type: inline-size;
  margin-inline: auto;
  width: min(1366px - var(--container-gutter) * 2, 100% - var(--container-gutter) * 2);
}
.l-container.--narrow {
  max-width: 115.2rem;
}
.l-container.--both-narrow {
  max-width: 115.2rem;
}
@media (width <= 768px) {
  .l-container.--both-narrow {
    max-width: calc(100% - 6rem);
  }
}
.l-container.--wide {
  width: min(1366px, 100%);
}
.l-container.--full {
  width: 100%;
}
.l-container.--gutter {
  width: calc(100% - var(--container-gutter) * 2);
}

.l-key-visual {
  --kv-height: 53.5rem;
  --kv-layer-color: #2a2d84;
  --kv-layer-opacity: .45;
  position: relative;
  margin-block-end: 5rem;
  height: var(--kv-height);
  color: #fff;
}
@media (width <= 768px) {
  .l-key-visual {
    --kv-height: 30rem;
  }
}
.l-key-visual__image {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.l-key-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-key-visual__inner {
  position: relative;
  display: grid;
  place-content: center flex-start;
  height: var(--kv-height);
}
.l-key-visual__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.2;
  text-shadow: 0 0 2.5rem color-mix(in srgb, #021654 75%, transparent);
}
.l-key-visual__title .en {
  font-family: var(--font-family-en);
  font-size: 8rem;
  font-weight: 300;
  text-transform: uppercase;
}
@media (width <= 768px) {
  .l-key-visual__title .en {
    font-size: 4.1rem;
  }
}
.l-key-visual__title .en .sub {
  display: block;
  font-size: 0.625em;
  line-height: 0.95;
}
@media (width <= 768px) {
  .l-key-visual__title .en .sub {
    margin-block-end: 0.5rem;
  }
}
.l-key-visual__title .ja {
  font-size: 3rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .l-key-visual__title .ja {
    font-size: 1.5rem;
  }
}
.l-key-visual.--colored .l-key-visual__image::after {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  inset: 0;
  background-color: var(--kv-layer-color);
  opacity: var(--kv-layer-opacity);
  mix-blend-mode: multiply;
}
@media (width > 768px) {
  .l-key-visual.--pc-tall {
    --kv-height: 59rem;
  }
}
.l-key-visual__title {
  transition: 0.6s ease;
  transition-property: transform, opacity;
  opacity: 0;
  transform: translate(0, 4rem);
}
.l-key-visual.--inview .l-key-visual__title {
  opacity: 1;
  transform: translate(0, 0);
}

.l-side-buttons {
  position: fixed;
  right: 0;
  top: 8.6rem;
  z-index: 350;
  width: 10.7rem;
}
@media (width <= 768px) {
  .l-side-buttons {
    display: none;
  }
}

@media (width > 768px) {
  .l-bottom-buttons {
    display: none;
  }
}

.c-logo-group {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: fit-content;
}
.c-logo-group > img {
  width: 100%;
}
.c-logo-group > span {
  margin-block-start: 8.064516129cqi;
  margin-inline-start: 2.2580645161cqi;
  font-family: var(--font-family-en);
  font-size: 5.6935483871cqi;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
:is(.l-header) .c-logo-group {
  width: 25.6rem;
}
@media (width <= 768px) {
  :is(.l-header) .c-logo-group {
    width: 15.6rem;
  }
}
:is(.l-footer) .c-logo-group {
  width: 31rem;
}
@media (width <= 768px) {
  :is(.l-footer) .c-logo-group {
    width: 15.8rem;
  }
}
a.c-logo-group {
  transition: opacity 0.3s ease;
}
a.c-logo-group:active, a.c-logo-group:hover {
  opacity: 0.7;
}

.c-photo-card {
  position: relative;
  border-radius: var(--base-border-radius);
  overflow: hidden;
  aspect-ratio: var(--aspect, auto);
  font-feature-settings: "halt";
  line-height: 1.5;
}
.c-photo-card > picture img,
.c-photo-card > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}
.c-photo-card::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: var(--layer-bg, #000);
  opacity: var(--layer-opacity, 0.2);
  transition: 0.3s ease;
}
.c-photo-card .layer {
  --stroke-color: color-mix(in srgb, #000 20%, transparent);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 3;
  padding: 2rem 2.4rem;
  height: 100%;
  color: #fff;
  gap: 0.3rem;
}
@media (width <= 768px) {
  .c-photo-card .layer {
    padding: 1.5rem 1.8rem;
  }
}
.c-photo-card .category {
  margin-block-end: auto;
  font-size: 1.5rem;
}
@media (width <= 768px) {
  .c-photo-card .category {
    font-size: 1.2rem;
  }
}
.c-photo-card .sub-title {
  font-size: 1.5rem;
}
@media (width <= 768px) {
  .c-photo-card .sub-title {
    font-size: 1.2rem;
  }
}
.c-photo-card .title {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .c-photo-card .title {
    font-size: 1.4rem;
  }
}
.c-photo-card.--light {
  --layer-opacity: .08;
  border: 1px solid var(--base-border-color);
}
.c-photo-card.--light .layer {
  --stroke-color: transparent;
  color: #000;
}
a.c-photo-card {
  display: block;
}
a.c-photo-card:hover::before {
  opacity: 0;
}
a.c-photo-card:hover > picture img,
a.c-photo-card:hover > img {
  scale: 1.1;
}
a.c-photo-card:hover .layer {
  -webkit-text-stroke: 0.1rem var(--stroke-color);
  text-stroke: 0.1rem var(--stroke-color);
  paint-order: stroke;
}

.c-photo-card.--interview {
  --layer-bg: var(--color-blue);
  aspect-ratio: 552/337;
}
@media (width <= 768px) {
  .c-photo-card.--interview {
    aspect-ratio: auto;
    min-height: 100cqi;
  }
}
.c-photo-card.--interview::before {
  right: 50%;
}
@media (width <= 768px) {
  .c-photo-card.--interview img {
    object-position: 75% center;
  }
}
.c-photo-card.--interview .layer {
  --stroke-color: transparent;
  gap: 1rem;
}
@media (width <= 768px) {
  .c-photo-card.--interview .layer {
    gap: 0.5rem;
  }
}
.c-photo-card.--interview .category {
  padding-block: 1.5rem;
  width: fit-content;
  background-color: var(--color-blue);
  box-shadow: 0 0 0 5rem var(--color-blue);
  clip-path: inset(0 -2.4rem);
  color: #fff;
  font-family: var(--font-family-en);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
@media (width <= 768px) {
  .c-photo-card.--interview .category {
    margin-block-start: 0.8rem;
    padding-block: 1.2rem;
    clip-path: inset(0 -1.8rem);
    font-size: 1.6rem;
  }
}
.c-photo-card.--interview .title {
  font-size: 2.4rem;
  line-height: var(--line-height-narrow);
}
.c-photo-card.--interview .sub-title {
  font-size: 1.8rem;
  line-height: var(--line-height-narrow);
}
@media (width <= 768px) {
  .c-photo-card.--interview .sub-title {
    font-size: 1.6rem;
  }
}
.c-photo-card.--interview:hover::before {
  opacity: var(--layer-opacity, 0.2);
}

.c-topics-card {
  margin-inline: auto;
  border: 0.2rem solid var(--color-blue);
  border-radius: 1rem;
  background-color: #e8eaee;
}
@media (width > 768px) {
  .c-topics-card {
    display: grid;
    grid-template-columns: 23.8rem 1fr;
    align-content: flex-start;
    align-items: center;
    gap: 3.8rem;
    padding: 4rem 3rem;
  }
}
@media (width <= 768px) {
  .c-topics-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.4rem;
    padding: 2.4rem 2.4rem 2rem;
    border-width: 0.1rem;
    width: 26rem;
  }
}
@media (width > 768px) {
  .c-topics-card .eyecatch {
    align-self: flex-start;
  }
}
.c-topics-card .eyecatch img {
  aspect-ratio: 1/1;
  overflow: hidden;
  object-fit: cover;
  border-radius: var(--base-border-radius);
}
@media (width <= 768px) {
  .c-topics-card .eyecatch img {
    aspect-ratio: 210/123;
  }
}
@media (width > 768px) {
  .c-topics-card .main {
    padding-inline-end: 4rem;
    align-self: center;
  }
}
.c-topics-card .main > :first-child {
  margin-block-start: 0;
}
.c-topics-card .main > :last-child {
  margin-block-end: 0;
}
.c-topics-card .category {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block-end: 2.8rem;
}
@media (width <= 768px) {
  .c-topics-card .category {
    margin-block-end: 1.6rem;
  }
}
.c-topics-card .category > span {
  display: grid;
  place-content: center;
  padding-inline: 1.2rem;
  background: var(--color-green);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 3.4rem;
}
@media (width <= 768px) {
  .c-topics-card .category > span {
    padding-inline: 0.6rem;
    line-height: 1.6rem;
  }
}
.c-topics-card .title {
  margin-block-end: 1.5rem;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (width <= 768px) {
  .c-topics-card .title {
    font-size: 1.6rem;
  }
}
@media (width <= 768px) {
  .c-topics-card .desc {
    font-size: 1.2rem;
  }
}
.c-topics-card .link {
  display: block;
  margin-block-start: 2.4rem;
  margin-inline-start: auto;
  width: fit-content;
  color: var(--color-blue);
  transition: opacity 0.3s ease;
}
.c-topics-card .link:active, .c-topics-card .link:hover {
  opacity: 0.7;
}
@media (width <= 768px) {
  .c-topics-card .link {
    margin-block-start: 2rem;
    font-size: 1.2rem;
  }
}
.c-topics-card .link[target=_blank] {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.c-topics-card .link[target=_blank]::after {
  content: "";
  width: 1lh;
  aspect-ratio: 1/1;
  background-color: currentColor;
  mask: url(../img/icn_window.svg) no-repeat center/70%;
}
.c-topics-card .link.--comingsoon {
  pointer-events: none;
}

.c-card-grid-01 {
  display: grid;
}
@media (width > 768px) {
  .c-card-grid-01 {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8rem;
  }
}
@media (width <= 768px) {
  .c-card-grid-01 {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
@media (width <= 768px) {
  .c-card-grid-01.--sp-narrow {
    gap: 1.2rem;
  }
}

.c-entry-buttons {
  display: flex;
  list-style: none;
}
@media (width > 768px) {
  .c-entry-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.c-entry-buttons > li {
  flex: 1;
}
.c-entry-buttons > li > a {
  transition: filter 0.3s ease;
  display: grid;
  place-content: center;
  color: #fff;
  font-family: var(--font-family-en);
  line-height: var(--line-height-narrow);
  text-align: center;
}
.c-entry-buttons > li > a:active, .c-entry-buttons > li > a:hover {
  filter: brightness(1.2);
}
@media (width > 768px) {
  .c-entry-buttons > li > a {
    aspect-ratio: 1/1;
    font-size: 1.8rem;
  }
}
@media (width <= 768px) {
  .c-entry-buttons > li > a {
    font-size: 1.6rem;
    height: 6.5rem;
  }
}
.c-entry-buttons > li.--intern a {
  background-color: var(--color-sky);
}
.c-entry-buttons > li.--entry a {
  background-color: var(--color-blue);
}
.c-entry-buttons > li.--comingsoon > a {
  pointer-events: none;
}
.c-entry-buttons > li.--comingsoon span:not(.comingsoon) {
  opacity: 0.4;
}
@media (width > 768px) {
  .c-entry-buttons > li.--comingsoon .comingsoon {
    font-size: 1.6rem;
  }
}

.c-heading-01 {
  margin-block-end: 2rem;
  font-family: var(--font-family-en);
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 1.3513513514;
}
@media (width <= 768px) {
  .c-heading-01 {
    margin-block-end: 1.8rem;
    font-size: 2.5rem;
  }
}
.c-heading-02 {
  margin-block-end: 2.5rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: var(--line-height-narrow);
  text-align: center;
}
@media (width <= 768px) {
  .c-heading-02 {
    margin-block-end: 2rem;
    font-size: 2.4rem;
  }
}
.c-heading-02.--blue {
  color: var(--color-blue);
}
.c-heading-02.--underline {
  margin-inline: auto;
  padding-block-end: 1rem;
  padding-inline: 1rem;
  border-bottom: 0.1rem solid;
  width: fit-content;
}
@media (width <= 768px) {
  .c-heading-02.--underline {
    padding-block-end: 0.5rem;
  }
}

.c-lead-text {
  margin-block-end: 6.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: var(--line-height-x-wide);
}
@media (width <= 768px) {
  .c-lead-text {
    margin-block-end: 5rem;
    font-size: 1.6rem;
  }
}
.c-lead-text:last-child {
  margin-block-end: 0;
}
.c-lead-text.--center {
  text-align: center;
}

@media (width <= 768px) {
  .c-tab {
    margin-inline: calc(50% - 50vw);
  }
}
.c-tab__nav {
  display: flex;
  gap: 1px;
  box-shadow: 0 0 0 50vw #e6e6e6;
  clip-path: inset(0 -50vw);
}
.c-tab__nav li {
  display: grid;
  place-content: center;
  flex: 1;
  background-color: #b8b3f0;
  color: #fff;
  font-size: 2rem;
  line-height: var(--line-height-x-narrow);
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  transition-property: background-color;
}
@media (width > 768px) {
  .c-tab__nav li {
    min-height: 8.4rem;
  }
}
@media (width <= 768px) {
  .c-tab__nav li {
    min-height: 6.5rem;
    font-size: 1.6rem;
  }
}
.c-tab__nav li.--active {
  background-color: var(--color-blue);
}
.c-tab__panel {
  display: none;
  opacity: 0;
  transition-behavior: allow-discrete;
  transition: 0.3s ease;
  transition-property: opacity;
  padding: 10rem 8rem;
  background-color: #e8eaee;
}
@media (width <= 768px) {
  .c-tab__panel {
    padding-block: 5rem 6rem;
    padding-inline: var(--container-gutter);
  }
}
.c-tab__panel.--active {
  display: block;
  opacity: 1;
}
@starting-style {
  .c-tab__panel.--active {
    opacity: 0;
  }
}

.c-swiper-controller {
  --swiper-pagination-bullet-inactive-color: #dadada;
  --swiper-pagination-bullet-inactive-opacity: .8;
  --swiper-pagination-color: var(--color-blue);
  --swiper-pagination-bullet-horizontal-gap: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
@media (width <= 768px) {
  .c-swiper-controller {
    --swiper-pagination-bullet-size: 1rem;
    --swiper-pagination-bullet-horizontal-gap: .7rem;
  }
}
.c-swiper-controller .swiper-pause {
  position: relative;
  color: #5d5d5d;
  border: 1px solid;
  background-color: color-mix(in srgb, #fff 80%, transparent);
  width: 2.2rem;
  aspect-ratio: 1/1;
  cursor: pointer;
}
@media (width <= 768px) {
  .c-swiper-controller .swiper-pause {
    width: 2.6rem;
  }
}
.c-swiper-controller .swiper-pause::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
  mask: no-repeat center;
  mask-size: 70%;
}
.c-swiper-controller .swiper-pause:not(.--paused)::before {
  mask-image: url(../img/icn_pause.svg);
}
.c-swiper-controller .swiper-pause.--paused::before {
  mask-image: url(../img/icn_play.svg);
}
.c-swiper-controller .swiper-pagination {
  position: relative !important;
  width: fit-content !important;
  bottom: 0 !important;
}
.c-swiper-controller .swiper-pagination-bullet {
  transition: 0.3s ease;
}
.c-swiper-controller .swiper-pagination-bullet-active {
  box-shadow: 0 0 0 0.1rem #fff;
}
@media (width <= 768px) {
  .c-swiper-controller .swiper-pagination-bullet-active {
    scale: 1.55;
  }
}
.c-swiper-navigation {
  --swiper-navigation-size: 7.8rem;
  --swiper-navigation-offset: -4.8rem;
  --swiper-navigation-color: #fff;
  height: var(--swiper-navigation-size);
  pointer-events: none;
}
@media (width <= 768px) {
  .c-swiper-navigation {
    --swiper-navigation-size: 4.8rem;
    --swiper-navigation-offset: -3.2rem;
  }
}
.c-swiper-navigation .swiper-button-next,
.c-swiper-navigation .swiper-button-prev {
  width: var(--swiper-navigation-size);
  background-color: var(--color-blue);
  border-radius: 50vw;
  pointer-events: all;
  transition: filter 0.3s ease;
}
.c-swiper-navigation .swiper-button-next:active, .c-swiper-navigation .swiper-button-next:hover,
.c-swiper-navigation .swiper-button-prev:active,
.c-swiper-navigation .swiper-button-prev:hover {
  filter: brightness(1.2);
}
.c-swiper-navigation .swiper-button-next::after,
.c-swiper-navigation .swiper-button-prev::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
  mask: no-repeat center/50%;
}
.c-swiper-navigation .swiper-button-prev {
  left: var(--swiper-navigation-offset);
}
.c-swiper-navigation .swiper-button-prev::after {
  mask-image: url(../img/icn_arrow_02_l.svg);
}
.c-swiper-navigation .swiper-button-next {
  right: var(--swiper-navigation-offset);
}
.c-swiper-navigation .swiper-button-next::after {
  mask-image: url(../img/icn_arrow_02_r.svg);
}

@media (width <= 1366px) {
  .u-hide-max-pc {
    display: none;
  }
}
@media (width <= 768px) {
  .u-hide-max-tab {
    display: none;
  }
}
@media (width <= 480px) {
  .u-hide-max-sp {
    display: none;
  }
}
@media (width > 1366px) {
  .u-hide-min-pc {
    display: none;
  }
}
@media (width > 768px) {
  .u-hide-min-tab {
    display: none;
  }
}
@media (width > 480px) {
  .u-hide-min-sp {
    display: none;
  }
}

.u-hidden-contents {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.u-animation-fade-up {
  transition: 0.8s ease;
  transition-property: transform, opacity;
  opacity: 0;
  transform: translate(0, 4rem);
}
.u-animation-fade-up.--inview {
  opacity: 1;
  transform: translate(0, 0);
}/*# sourceMappingURL=common.css.map */