/* reset
================================================== */
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}

a {
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

ins {
  text-decoration: none;
}

ins, mark {
  background-color: #ff9;
  color: #000;
}

mark {
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* base
================================================== */
html {
  scroll-behavior: smooth;
}

body {
  background: #000f3c;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-feature-settings: "palt";
  color: #000f3c;
}

*:lang(en) {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

/* top
================================================== */
.top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding-top: 32px;
  z-index: 200;
}
.top__inner {
  position: relative;
  max-width: 85.375vw;
  margin: 0 auto;
}
.top__logo {
  width: 134px;
}
@media (max-width: 767px) {
  .top {
    padding-top: 5.3333333333vw;
  }
  .top__inner {
    padding: 0 5.3333333333vw;
    max-width: unset;
  }
  .top__logo {
    width: 21.6vw;
  }
}

/* header
================================================== */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding-top: 32px;
  z-index: 200;
}
.header__inner {
  position: relative;
  max-width: 85.375vw;
  margin: 0 auto;
}
.header__logo {
  width: 134px;
}
.header__btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 18px;
  cursor: pointer;
  overflow: visible;
}
.header__btn > span {
  transition: all .3s ease;
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #00aeeb;
}
.header__btn > span:nth-child(1) {
  top: 0;
}
.header__btn > span:nth-child(2) {
  top: 8px;
}
.header__btn > span:nth-child(3) {
  bottom: 0;
}
.is-gnav-open .header__btn > span {
  background: #000f3c;
}
.is-gnav-open .header__btn > span:nth-child(1) {
  top: 50%;
  transform: translateY(-1px) rotate(18deg);
}
.is-gnav-open .header__btn > span:nth-child(2) {
  opacity: 0;
}
.is-gnav-open .header__btn > span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-1px) rotate(-18deg);
}
@media (max-width: 767px) {
  .header {
    padding-top: 5.3333333333vw;
  }
  .header__inner {
    padding: 0 5.3333333333vw;
    max-width: unset;
  }
  .header__logo {
    width: 21.6vw;
  }
  .header__btn {
    top: 1.8666666667vw;
    right: 5.3333333333vw;
    width: 8.5333333333vw;
    height: 3.2vw;
  }
  .header__btn > span {
    height: 0.2666666667vw;
  }
  .header__btn > span:nth-child(2) {
    top: 1.4666666667vw;
  }
}

/* gnav
================================================== */
.gnav {
  transition: transform .3s ease;
  transform: translateX(100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 31.25vw;
  background: #00aeeb;
  color: #000f3c;
  text-align: right;
  z-index: 100;
}
.gnav__items {
  display: flex;
  flex-direction: column;
  gap: 3.125vw;
}
.gnav__item {
  font-size: 2.5vw;
  font-weight: 700;
  line-height: 1;
}
.gnav__item a {
  transition: opacity .3s ease;
  color: inherit;
  text-decoration: none;
}
.gnav__item a:hover {
  opacity: .6;
}
.is-gnav-open .gnav {
  transform: translateX(0);
}
@media (max-width: 1023px) {
  .gnav__item {
    font-size: 2.9325513196vw;
  }
}
@media (max-width: 767px) {
  .gnav {
    width: 78.6666666667vw;
  }
  .gnav__items {
    gap: 6.6666666667vw;
  }
  .gnav__item {
    font-size: 6.6666666667vw;
  }
}

/* footer
================================================== */
.footer {
  padding-bottom: 3.75vw;
  color: #fff;
}
.footer__inner {
  position: relative;
  max-width: 85.375vw;
  margin: 0 auto;
}
.footer__sns {
  margin-bottom: 6.25vw;
}
.footer__sns__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875vw;
}
.footer__sns__item {
  flex: 0 0 3.875vw;
}
.footer__sns__item a {
  display: block;
}
.footer__nav {
  margin-bottom: 1.875vw;
}
.footer__nav__items {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__nav__item {
  font-size: 1vw;
}
.footer__nav__item + .footer__nav__item {
  border-left: solid 2px #fff;
  margin-left: 2.8125vw;
  padding-left: 2.8125vw;
}
.footer__copyright {
  font-size: 0.75vw;
  text-align: center;
}
.footer__pagetop {
  position: fixed;
  right: 7.3125vw;
  bottom: 3.75vw;
  width: 2.5vw;
}
@media (max-width: 1023px) {
  .footer__sns__item {
    flex: 0 0 6.0606060606vw;
  }
  .footer__nav__item {
    font-size: 1.7595307918vw;
  }
  .footer__copyright {
    font-size: 1.3685239492vw;
  }
  .footer__pagetop {
    width: 3.9100684262vw;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 24vw;
  }
  .footer__inner {
    max-width: unset;
    padding: 0 5.3333333333vw;
  }
  .footer__sns {
    margin-bottom: 13.3333333333vw;
  }
  .footer__sns__items {
    gap: 8vw;
  }
  .footer__sns__item {
    flex: 0 0 11.7333333333vw;
  }
  .footer__nav {
    margin-bottom: 13.3333333333vw;
  }
  .footer__nav__items {
    flex-direction: column;
    gap: 6vw;
  }
  .footer__nav__item {
    font-size: 4.2666666667vw;
  }
  .footer__nav__item + .footer__nav__item {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }
  .footer__copyright {
    font-size: 3.2vw;
  }
  .footer__pagetop {
    right: 4.8vw;
    bottom: 7.4666666667vw;
    width: 9.4666666667vw;
  }
}

/* section
================================================== */
.section__title {
  font-size: 9.125vw;
  line-height: 1;
  color: #00aeeb;
  text-align: center;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 11.2vw;
  }
  .section__title--gallery {
    font-size: 18.6666666667vw;
  }
  .section__title--agent {
    font-size: 11.7333333333vw;
  }
  .section__title--mission {
    font-size: 18.6666666667vw;
  }
}

/* kv
================================================== */
.kv {
  position: relative;
  aspect-ratio: 1600/900;
}
.kv__intro, .kv__main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.kv__main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.kv__main picture {
  width: 100%;
  height: 100%;
  display: block;
}
.kv__main img {
  width: 100%;
  height: auto;
  display: block;
}
.kv__intro {
  pointer-events: auto;
  overflow: hidden;
}
.kv__intro img {
  height: auto;
}
.kv__intro__part {
  position: absolute;
}
.kv__intro__part--01 {
  left: 38.25vw;
  top: 18.8125vw;
}
.kv__intro__part--01 img {
  width: 23.5vw;
}
.kv__intro__part--02 {
  left: 34.375vw;
  top: 8.875vw;
}
.kv__intro__part--02 img {
  width: 31.25vw;
}
.kv__intro__part--03 {
  left: 34.375vw;
  top: 21.5625vw;
}
.kv__intro__part--03 img {
  width: 32.3125vw;
}
.kv__intro__part--04 {
  left: 34.375vw;
  top: 34.5625vw;
}
.kv__intro__part--04 img {
  width: 37.6875vw;
}
.kv__intro__part--05 {
  left: 48.625vw;
  top: 6.25vw;
  width: 2.8125vw;
  padding-bottom: 2.5vw;
}
@media (max-width: 767px) {
  .kv {
    aspect-ratio: 750/1100;
  }
  .kv__intro__part--01 {
    left: 30.1333333333vw;
    top: 59.7333333333vw;
  }
  .kv__intro__part--01 img {
    width: 33.8666666667vw;
  }
  .kv__intro__part--02 {
    left: 9.8666666667vw;
    top: 33.2vw;
  }
  .kv__intro__part--02 img {
    width: 66.6666666667vw;
  }
  .kv__intro__part--03 {
    left: 9.8666666667vw;
    top: 60.2666666667vw;
  }
  .kv__intro__part--03 img {
    width: 68.9333333333vw;
  }
  .kv__intro__part--04 {
    left: 9.8666666667vw;
    top: 88vw;
  }
  .kv__intro__part--04 img {
    width: 80.4vw;
  }
  .kv__intro__part--05 {
    left: 44vw;
    top: 26.6666666667vw;
    width: 6vw;
    padding-bottom: 5.3333333333vw;
  }
}

/* movie
================================================== */
.movie {
  padding: 6.25vw 0;
  overflow: hidden;
}
.movie__inner {
  position: relative;
  max-width: 85.375vw;
  margin: 0 auto;
}
.movie__item a {
  position: relative;
  display: block;
  aspect-ratio: 640/360;
  overflow: hidden;
}
.movie__item a img {
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.movie__item a:hover img {
  transform: scale(1.1);
}
.movie__item a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 5.125vw;
  height: 5.125vw;
  background: url("../images/icn_movie-play.svg") no-repeat;
  background-size: 100%;
}
.movie__item:not(.is-visible) a {
  pointer-events: none;
}
.movie__item > div {
  margin-top: 1em;
  font-size: 1.5vw;
  line-height: 1.1;
  font-weight: 700;
  color: #00aeeb;
  text-align: center;
}
.movie__item > div span {
  font-size: 0.875vw;
}
.movie__note {
  margin-top: 2.25em;
  font-size: 1.25vw;
  color: #00aeeb;
  font-weight: 500;
  text-align: center;
}
.movie .splide__track {
  overflow: visible;
}
.movie .splide__pagination {
  display: none;
}
.movie .splide__arrow {
  position: absolute;
  top: 9.375vw;
  appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0;
  margin: 0;
  width: 4.375vw;
  height: 4.375vw;
  background: #00aeeb;
  cursor: pointer;
}
.movie .splide__arrow img {
  width: 1.5625vw;
  height: auto;
}
.movie .splide__arrow--prev {
  left: -6.875vw;
}
.movie .splide__arrow--prev img {
  transform: rotate(180deg);
}
.movie .splide__arrow--next {
  right: -6.875vw;
}
.movie .splide__arrow:disabled {
  display: none;
}
@media (max-width: 1023px) {
  .movie__item > div {
    font-size: 2.1505376344vw;
  }
  .movie__item > div span {
    font-size: 1.3685239492vw;
  }
  .movie__note {
    font-size: 1.9550342131vw;
  }
}
@media (max-width: 767px) {
  .movie {
    padding: 13.3333333333vw 0;
  }
  .movie__inner {
    max-width: unset;
    padding: 0 5.3333333333vw;
  }
  .movie__item a::after {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
  .movie__item > div {
    font-size: 4.5333333333vw;
    line-height: 1.3;
  }
  .movie__item > div span {
    font-size: 3.2vw;
  }
  .movie__note {
    font-size: 3.7333333333vw;
    line-height: 1.5;
  }
  .movie .splide__arrow {
    top: 19.3333333333vw;
    width: 11.7333333333vw;
    height: 11.7333333333vw;
  }
  .movie .splide__arrow img {
    width: 5.4666666667vw;
  }
  .movie .splide__arrow--prev {
    left: -5.3333333333vw;
  }
  .movie .splide__arrow--next {
    right: -5.3333333333vw;
  }
}

/* intro
================================================== */
.intro {
  padding-top: 5.3125vw;
  aspect-ratio: 1600/1293;
  background: url("../images/intro_bg-pc.png") no-repeat center;
  background-size: cover;
}
.intro__main {
  margin: 3.125vw auto 0.625vw;
  width: 41.375vw;
}
.intro__body {
  margin: 0 auto;
  max-width: 85.375vw;
  color: #fff;
  letter-spacing: .05em;
  text-align: center;
}
.intro__body h3 {
  margin-bottom: 1em;
  font-size: 1.8125vw;
  line-height: 1.724;
  font-weight: 700;
}
.intro__body p {
  font-size: 1.375vw;
  line-height: 1.9;
}
@media (max-width: 1023px) {
  .intro__body h3 {
    font-size: 2.3460410557vw;
  }
  .intro__body p {
    font-size: 1.5640273705vw;
  }
}
@media (max-width: 767px) {
  .intro {
    padding-top: 11.3333333333vw;
    aspect-ratio: 750/1646;
    background: url("../images/intro_bg-sp.png") no-repeat center;
    background-size: cover;
  }
  .intro__main {
    margin: 8vw auto 2.6666666667vw;
    width: 88.2666666667vw;
  }
  .intro__body {
    width: 84.8vw;
  }
  .intro__body h3 {
    margin-bottom: 6.6666666667vw;
    font-size: 5.3333333333vw;
    line-height: 1.45;
  }
  .intro__body p {
    font-size: 4vw;
    line-height: 1.73;
  }
}

/* gallery
================================================== */
.gallery {
  padding-top: 5.3125vw;
  background: #000;
}
.gallery__items {
  margin-top: 3.75vw;
  display: flex;
  flex-wrap: wrap;
}
.gallery__item {
  flex: 0 0 calc(1 / 3 * 100%);
}
.gallery__item img {
  display: block;
}
@media (max-width: 767px) {
  .gallery {
    padding-top: 11.3333333333vw;
  }
  .gallery__items {
    margin-top: 5.3333333333vw;
  }
}

/* agent
================================================== */
.agent {
  position: relative;
  padding-top: 5.3125vw;
  aspect-ratio: 1600/960;
  background: url("../images/agent_bg-pc.png") no-repeat center;
  background-size: cover;
}
.agent .section__title {
  z-index: 3;
}
.agent__body {
  position: relative;
  max-width: 85.375vw;
  margin: 0 auto;
}
.agent__body__item {
  position: absolute;
  z-index: 2;
}
.agent__body__item h3 {
  margin-bottom: .2em;
  font-size: 3.125vw;
  font-weight: 900;
  color: #00aeeb;
  line-height: 1;
}
.agent__body__item dl {
  margin-bottom: .8em;
  font-size: 1vw;
  line-height: 1.625;
}
.agent__body__item dl dt {
  margin-bottom: .5em;
  font-size: 0.875vw;
}
.agent__body__item div {
  font-size: 2.1875vw;
  line-height: 1;
}
.agent__body__item div span {
  color: #00aeeb;
}
.agent__body__item--d {
  left: 0;
  top: 5.625vw;
}
.agent__body__item--n {
  right: 0;
  top: 16.875vw;
  text-align: right;
}
.agent__main {
  position: absolute;
  left: 16.25vw;
  bottom: 0;
  width: 65.3125vw;
  filter: brightness(0) saturate(0.5);
  transition: filter 1s ease;
  animation-delay: 0.6s;
  z-index: 1;
}
.agent__main.is-inview {
  filter: brightness(1) saturate(1);
}
.agent__main img {
  display: block;
}
@media (max-width: 1023px) {
  .agent__body__item dl {
    font-size: 1.2707722385vw;
  }
  .agent__body__item dl dt {
    font-size: 1.0752688172vw;
  }
}
@media (max-width: 767px) {
  .agent {
    padding-top: 11.3333333333vw;
    aspect-ratio: auto;
    background: url("../images/agent_bg-sp.png") no-repeat center;
    background-size: cover;
  }
  .agent__body {
    margin: 6.6666666667vw auto;
    max-width: 84vw;
  }
  .agent__body__item {
    position: static;
  }
  .agent__body__item h3 {
    font-size: 7.4666666667vw;
  }
  .agent__body__item dl {
    font-size: 4vw;
    line-height: 1.73;
  }
  .agent__body__item dl dt {
    font-size: 2.9333333333vw;
  }
  .agent__body__item div {
    font-size: 6.6666666667vw;
  }
  .agent__body__item + .agent__body__item {
    margin-top: 8vw;
  }
  .agent__main {
    position: static;
    width: 100%;
  }
}

/* mission
================================================== */
.mission {
  padding: 6.875vw 0 0;
}
.mission__inner {
  max-width: 85.375vw;
  margin: 0 auto;
}
.mission__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.875vw;
  aspect-ratio: 1366/478;
  background: url("../images/mission_title-pc.png") no-repeat center;
  background-size: cover;
}
.mission__item {
  background: #fff;
}
.mission__item + .mission__item {
  margin-top: 1.875vw;
}
.mission__item__title {
  display: table;
}
.mission__item__title > div, .mission__item__title > h3 {
  display: table-cell;
  vertical-align: middle;
}
.mission__item__title > div {
  width: 25.625vw;
  padding: 2.5vw 0 1.25vw;
  border-right: solid 2px #00aeeb;
  font-size: 8vw;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.mission__item__title > h3 {
  padding: 0.625vw 0 0.625vw 2.1875vw;
  font-size: 3.125vw;
  line-height: 1.4;
  font-weight: 700;
}
.mission__item__desc {
  display: flex;
  border-top: solid 2px #00aeeb;
  border-bottom: solid 2px #00aeeb;
}
.mission__item__desc > figure {
  flex: 0 0 calc(704 / 1366 * 100%);
}
.mission__item__desc > div {
  flex: 1 0 0;
  align-self: center;
  padding: 1.25vw 3.125vw;
}
.mission__item__desc > div h4 {
  margin-bottom: .5em;
  font-size: 2.5vw;
  line-height: 1.35;
  font-weight: 700;
}
.mission__item__desc > div p {
  font-size: 1.375vw;
  line-height: 1.9;
  font-weight: 700;
}
.mission__item__body {
  padding: 3.125vw 4.375vw;
}
.mission__item__body dl {
  margin: 2em 0;
}
.mission__item__body dl dt {
  margin-bottom: .75em;
  padding-bottom: .75em;
  border-bottom: solid 0.25vw #cdd1dc;
  font-size: 1.375vw;
  font-weight: 700;
}
.mission__item__body dl dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
}
.mission__item__body dl dd ul li {
  padding: .4em 1.5em .45em;
  background: #f3f6f9;
  border: solid 0.125vw #cdd1dc;
  border-radius: 1.5em;
  font-size: 1.125vw;
}
.mission__item__body h5 {
  margin-bottom: .5em;
  font-size: 1.875vw;
  line-height: 1.6;
  font-weight: 700;
}
.mission__item__body h6 {
  margin: 1em 0 .5em;
  padding-left: 0.875vw;
  border-left: solid 0.375vw #000f3c;
  font-size: 1.5vw;
  line-height: 1.4;
  font-weight: 700;
}
.mission__item__body p, .mission__item__body ul {
  font-size: 1.125vw;
  line-height: 1.78;
}
.mission__item__body p sup, .mission__item__body ul sup {
  display: inline-block;
  vertical-align: super;
  font-size: 80%;
}
.mission__item__body > ul {
  margin-top: 1em;
  font-size: 0.9375vw;
}
.mission__item__banners {
  padding: 4.375vw;
}
.mission__item__banners ul {
  display: flex;
  gap: 4.125vw;
}
.mission__item__banners ul > li {
  flex: 1 0 0;
}
.mission__item__banner h5 {
  margin-bottom: .85em;
  font-size: 1.5vw;
  line-height: 1.4;
  font-weight: 700;
}
.mission__item__banner a {
  position: relative;
  display: block;
  overflow: hidden;
}
.mission__item__banner a img {
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mission__item__banner a:hover img {
  transform: scale(1.1);
}
.mission__item__banner a span {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 2.5vw;
  font-size: 1.875vw;
  line-height: 1.33;
  font-weight: 700;
  color: #fff;
}
.mission__item__banner a::after {
  position: absolute;
  right: 1.5vw;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1.875vw;
  height: 1.875vw;
  background: url("../images/icn_arw.svg") no-repeat;
  background-size: 100%;
}
@media (max-width: 1023px) {
  .mission__item__desc > div h4 {
    font-size: 2.9325513196vw;
  }
  .mission__item__desc > div p {
    font-size: 1.5640273705vw;
  }
  .mission__item__body dl dt {
    font-size: 1.7595307918vw;
  }
  .mission__item__body dl dd ul li {
    font-size: 1.5640273705vw;
  }
  .mission__item__body h5 {
    font-size: 2.3460410557vw;
  }
  .mission__item__body h6 {
    font-size: 1.9550342131vw;
  }
  .mission__item__body p {
    font-size: 1.5640273705vw;
  }
  .mission__item__body > ul {
    font-size: 1.2707722385vw;
  }
  .mission__item__banner h5 {
    font-size: 1.9550342131vw;
  }
  .mission__item__banner a span {
    font-size: 2.3460410557vw;
  }
}
@media (max-width: 767px) {
  .mission {
    padding: 13.3333333333vw 5.3333333333vw 0;
  }
  .mission__inner {
    max-width: unset;
  }
  .mission__title {
    margin-bottom: 4vw;
    aspect-ratio: 678/608;
    background: url("../images/mission_title-sp.png") no-repeat center;
    background-size: cover;
  }
  .mission__item + .mission__item {
    margin-top: 4vw;
  }
  .mission__item__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.6666666667vw;
    padding: 0 4vw 4vw;
  }
  .mission__item__title > div {
    width: auto;
    padding: 4vw 6.6666666667vw 0 0;
    font-size: 12vw;
  }
  .mission__item__title > h3 {
    padding: 0;
    font-size: 6.6666666667vw;
  }
  .mission__item__desc {
    display: flex;
    flex-direction: column;
  }
  .mission__item__desc > figure {
    flex: 0 0 auto;
  }
  .mission__item__desc > div {
    flex: 0 0 auto;
    padding: 2.6666666667vw;
    align-self: flex-start;
  }
  .mission__item__desc > div h4 {
    font-size: 6.4vw;
  }
  .mission__item__desc > div p {
    font-size: 4.5333333333vw;
  }
  .mission__item__body {
    padding: 6.6666666667vw 4vw;
  }
  .mission__item__body dl dt {
    border-bottom-width: 0.5333333333vw;
    font-size: 4.5333333333vw;
  }
  .mission__item__body dl dd ul li {
    font-size: 4vw;
  }
  .mission__item__body h5 {
    margin-bottom: .7em;
    font-size: 4.8vw;
    line-height: 1.5;
  }
  .mission__item__body h6 {
    margin: 1.5em 0 .65em;
    padding-left: 2.9333333333vw;
    border-left: solid 1.0666666667vw #000f3c;
    font-size: 4.8vw;
    line-height: 1.5;
  }
  .mission__item__body > p, .mission__item__body > ul {
    font-size: 4vw;
    line-height: 1.73;
  }
  .mission__item__body > ul {
    font-size: 3.4666666667vw;
  }
  .mission__item__banners {
    padding: 8vw 4vw 9.3333333333vw;
  }
  .mission__item__banners ul {
    flex-direction: column;
    gap: 8vw;
  }
  .mission__item__banners ul > li {
    flex: 0 0 auto;
  }
  .mission__item__banner h5 {
    font-size: 4.5333333333vw;
  }
  .mission__item__banner a span {
    padding-left: 5.3333333333vw;
    font-size: 5.3333333333vw;
    line-height: 1.25;
  }
  .mission__item__banner a::after {
    right: 4vw;
    width: 6vw;
    height: 6vw;
  }
}

/* recruit
================================================== */
.recruit {
  padding: 6.25vw 0;
  text-align: center;
}
.recruit__btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 26.25vw;
  height: 6.25vw;
  background: #00aeeb;
  font-size: 1.875vw;
  line-height: 1;
  font-weight: 700;
}
.recruit__btn::after {
  position: absolute;
  right: 1.875vw;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1.875vw;
  height: 1.875vw;
  background: url("../images/icn_arw-dark.svg") no-repeat;
  background-size: 100%;
}
@media (max-width: 767px) {
  .recruit {
    padding: 13.3333333333vw 5.3333333333vw;
  }
  .recruit__btn {
    display: flex;
    width: 100%;
    height: 21.3333333333vw;
    font-size: 4.5333333333vw;
  }
  .recruit__btn::after {
    right: 4vw;
    width: 6vw;
    height: 6vw;
  }
}

/* Utility
================================================== */
@media (min-width: 1024px) {
  .u-for-tb,
  .u-for-sp {
    display: none !important;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .u-for-pc,
  .u-for-sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .u-for-pc,
  .u-for-tb {
    display: none !important;
  }
}
img.u-liquid {
  width: 100%;
  height: auto;
}
img.u-liquid--max {
  max-width: 100%;
}

.u-invert {
  display: inline-block;
  padding: 0 .1em .15em;
  background: #000f3c;
  color: #fff;
  line-height: 1 !important;
}

.u-oro {
  transition: opacity .3s ease;
}
.u-oro:hover {
  opacity: .75;
}

/* animation
================================================== */
h2 {
  position: relative;
  overflow: hidden;
  transform: translateY(1em);
  clip-path: inset(0 0 100% 0);
  transition: transform .4s ease-in-out, clip-path .4s ease-in-out;
}
h2.is-inview {
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.u-invert {
  position: relative;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .4s ease-in-out;
}
.u-invert.is-inview {
  clip-path: inset(0 0 0 0);
}
.u-invert .u-invert__char {
  display: inline-block;
  opacity: 0;
}
.u-invert.typing .u-invert__char {
  opacity: 1;
}

/* gallery animation */
.gallery__item {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery__item.is-inview {
  opacity: 1;
  transform: scale(1);
}

/* kv animation */
.kv__intro__part {
  opacity: 0;
}
.kv__intro__part.show {
  opacity: 1;
}
.kv__intro__part--05 {
  clip-path: inset(0 0 100% 0);
  overflow: hidden;
}
.kv__intro__part--05.show {
  animation: p5Typing 1.2s steps(12, end) forwards;
}

@keyframes p5Typing {
  0% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 7.5%, 0% 9%);
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 98.5%, 0% 100%);
  }
}
.kv__intro.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.kv__main {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity .8s ease, transform .8s ease;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kv__main.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
