@charset "UTF-8";
/*======================
  reset
======================*/
html, body, div, span, iframe, h1, h2, h3, h4, p, a, img, dl, dt, dd, ol, ul, li, label, table, tbody, tr, th, td, figure, blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, figure, footer, header, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

li {
  list-style: none;
}

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

video {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*======================*/
/*------------------------------
variables
------------------------------*/
/*------------------------------
common
------------------------------*/
body {
  font-family: "LINE Seed JP", "Lato", "Noto Sans Japanese", "Noto Sans JP", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #003A57;
}
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

button {
  border: none;
}

address {
  font-style: normal;
}

a:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  .is-pc {
    display: none !important;
  }
}

@media (min-width: 981px) {
  .is-tab {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .is-tab {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .is-pc {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .is-pc {
    display: none !important;
  }
}

@media (min-width: 981px) {
  .is-sp {
    display: none !important;
  }
}

.main {
  padding-top: calc(90vw / 12.8);
}
@media (max-width: 980px) {
  .main {
    padding-top: calc(70vw / 12.8);
  }
}
@media (max-width: 600px) {
  .main {
    padding-top: calc(20vw / 3.9);
  }
}

.inner {
  margin: 0 auto;
  padding: 0 calc(20vw / 12.8);
}
@media (max-width: 600px) {
  .inner {
    padding: 0 calc(16vw / 3.9);
  }
}

.anchor {
  scroll-margin-top: calc(90vw / 12.8);
}
@media (max-width: 980px) {
  .anchor {
    scroll-margin-top: calc(70vw / 12.8);
  }
}
@media (max-width: 600px) {
  .anchor {
    scroll-margin-top: calc(60vw / 3.9);
  }
}

.marker {
  display: inline;
  position: relative;
}
.marker::before {
  content: "";
  position: absolute;
  bottom: 3%;
  left: 0;
  width: 0%;
  height: 1em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFEA00));
  background: linear-gradient(transparent 60%, #FFEA00 60%);
  z-index: -1;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.marker.on::before {
  width: 100%;
}

.hover-opacity {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.hover-opacity:hover {
  opacity: 0.5;
}

.js-fade-up-trigger {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.fade-up {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
.fade-up--delay {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
.fade-up--delay-mvttl {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-name: fadeUpmvttl;
          animation-name: fadeUpmvttl;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.js-fade-up-about {
  opacity: 0;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-name: fadeUpAbout;
          animation-name: fadeUpAbout;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.js-fade-in-trigger {
  opacity: 0;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeUpmvttl {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUpmvttl {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeUpAbout {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpAbout {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-in {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  opacity: 0;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in-left {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*------------------------------
mv swiper
------------------------------*/
.mv__image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.mv__image {
  width: 100%;
}
.mv__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-swiper {
  position: relative;
}
.mv-swiper .mv-swiper-pagination {
  position: absolute;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*------------------------------
future-steps (無限スクロール)
------------------------------*/
.js-loop-infinity {
  width: 100%;
  overflow: hidden;
}
.js-loop-infinity__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-animation: scroll-left 20s linear infinite;
          animation: scroll-left 20s linear infinite;
}
.js-loop-infinity__item {
  display: inline-block;
  font-family: "m plus 1p", sans-serif;
  font-size: calc(44vw / 12.8);
  font-weight: 700;
  color: #fff;
  padding-right: calc(80vw / 12.8);
  letter-spacing: 0.15em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 600px) {
  .js-loop-infinity__item {
    font-size: calc(24vw / 3.9);
    padding-right: calc(40vw / 3.9);
  }
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
  background-color: #0C7BC7;
  background-image: url(../img/loading-bg.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loading.is-fadeout {
  opacity: 0;
  visibility: hidden;
}
.loading__inner {
  position: relative;
  width: 100%;
  height: calc(832vw / 12.8);
}
@media (max-width: 980px) {
  .loading__inner {
    height: calc(1020vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__inner {
    height: calc(600vw / 3.9);
  }
}
.loading__message {
  position: absolute;
  top: 52%;
  left: 53%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 980px) {
  .loading__message {
    top: 51%;
    left: 52%;
  }
}
@media (max-width: 600px) {
  .loading__message {
    top: 51%;
    left: 52%;
  }
}
.loading__message.is-visible {
  opacity: 1;
  visibility: visible;
}
.loading__message::before {
  content: "";
  position: absolute;
  top: calc(10vw / 12.8);
  left: calc(-90vw / 12.8);
  width: calc(130vw / 12.8);
  height: calc(116vw / 12.8);
  background-image: url(../img/loading-ico1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 980px) {
  .loading__message::before {
    top: calc(-50vw / 9.8);
    left: calc(-46vw / 9.8);
    width: calc(149vw / 9.8);
    height: calc(132vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__message::before {
    top: calc(10vw / 3.9);
    left: calc(-21vw / 3.9);
    width: calc(49vw / 3.9);
    height: calc(52vw / 3.9);
  }
}
.loading__message::after {
  content: "";
  position: absolute;
  bottom: calc(72vw / 12.8);
  right: calc(-46vw / 12.8);
  width: calc(86vw / 12.8);
  height: calc(72vw / 12.8);
  background-image: url(../img/loading-ico2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 980px) {
  .loading__message::after {
    bottom: calc(10vw / 9.8);
    right: calc(-5vw / 9.8);
    width: calc(82vw / 9.8);
    height: calc(76vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__message::after {
    bottom: calc(10vw / 3.9);
    right: calc(-5vw / 3.9);
    width: calc(32vw / 3.9);
    height: calc(26vw / 3.9);
  }
}
.loading__message-item {
  display: block;
  width: auto;
  height: auto;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-animation: mvCopyReveal 0.5s ease-out forwards;
          animation: mvCopyReveal 0.5s ease-out forwards;
}
.loading__message-item.ttl1 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  width: calc(896vw / 12.8);
}
@media (max-width: 980px) {
  .loading__message-item.ttl1 {
    width: calc(808vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__message-item.ttl1 {
    width: calc(306vw / 3.9);
  }
}
.loading__message-item.ttl2 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  width: calc(1054vw / 12.8);
  margin-top: calc(-100vw / 12.8);
}
@media (max-width: 980px) {
  .loading__message-item.ttl2 {
    width: calc(952vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__message-item.ttl2 {
    width: calc(359vw / 3.9);
  }
}
.loading__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loading__images-item {
  position: absolute;
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.loading__images-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.loading__images-item.is-visible {
  opacity: 1;
}
.loading__images-item.img1 {
  top: calc(62vw / 12.8);
  left: calc(45vw / 12.8);
  width: calc(227vw / 12.8);
  height: calc(179vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img1 {
    width: calc(227vw / 9.8);
    height: auto;
    top: calc(52vw / 9.8);
    left: calc(15vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img1 {
    width: calc(107vw / 3.9);
    height: auto;
    top: calc(62vw / 3.9);
    left: calc(15vw / 3.9);
  }
}
.loading__images-item.img2 {
  left: calc(21vw / 12.8);
  bottom: calc(266vw / 12.8);
  width: calc(267vw / 12.8);
  height: calc(211vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img2 {
    width: calc(267vw / 9.8);
    height: auto;
    left: calc(16vw / 9.8);
    bottom: calc(150vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img2 {
    width: calc(110vw / 3.9);
    height: auto;
    left: calc(16vw / 3.9);
    bottom: calc(150vw / 3.9);
  }
}
.loading__images-item.img3 {
  left: calc(191vw / 12.8);
  bottom: calc(106vw / 12.8);
  width: calc(220vw / 12.8);
  height: calc(174vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img3 {
    width: calc(220vw / 9.8);
    height: auto;
    left: calc(304vw / 9.8);
    bottom: calc(-20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img3 {
    width: calc(113vw / 3.9);
    height: auto;
    left: calc(74vw / 3.9);
    bottom: calc(91vw / 3.9);
  }
}
.loading__images-item.img4 {
  top: calc(49vw / 12.8);
  right: calc(22vw / 12.8);
  width: calc(258vw / 12.8);
  height: calc(203vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img4 {
    width: calc(258vw / 9.8);
    height: auto;
    top: calc(-80vw / 9.8);
    right: calc(10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img4 {
    width: calc(122vw / 3.9);
    height: auto;
    top: calc(20vw / 3.9);
    right: calc(10vw / 3.9);
  }
}
.loading__images-item.img5 {
  top: calc(120vw / 12.8);
  right: calc(261vw / 12.8);
  width: calc(225vw / 12.8);
  height: calc(177vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img5 {
    width: calc(225vw / 9.8);
    height: auto;
    top: calc(55vw / 9.8);
    right: calc(212vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img5 {
    width: calc(95vw / 3.9);
    height: auto;
    top: calc(80vw / 3.9);
    right: calc(121vw / 3.9);
  }
}
.loading__images-item.img6 {
  bottom: calc(41vw / 12.8);
  right: calc(241vw / 12.8);
  width: calc(229vw / 12.8);
  height: calc(184vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img6 {
    width: calc(229vw / 9.8);
    height: auto;
    bottom: calc(-69vw / 9.8);
    right: calc(41vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img6 {
    width: calc(103vw / 3.9);
    height: auto;
    bottom: calc(71vw / 3.9);
    right: calc(21vw / 3.9);
  }
}
.loading__images-item.img7 {
  top: calc(276vw / 12.8);
  right: calc(66vw / 12.8);
  width: calc(258vw / 12.8);
  height: calc(203vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img7 {
    width: calc(258vw / 9.8);
    height: auto;
    top: calc(216vw / 9.8);
    right: calc(16vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img7 {
    width: calc(125vw / 3.9);
    height: auto;
    top: calc(176vw / 3.9);
    right: calc(16vw / 3.9);
  }
}
.loading__images-item.img8 {
  top: calc(79vw / 12.8);
  left: calc(232vw / 12.8);
  width: calc(295vw / 12.8);
  height: calc(235vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img8 {
    width: calc(295vw / 9.8);
    height: auto;
    top: calc(98vw / 9.8);
    left: calc(212vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img8 {
    width: calc(138vw / 3.9);
    height: auto;
    top: calc(108vw / 3.9);
    left: calc(82vw / 3.9);
  }
}
.loading__images-item.img9 {
  bottom: calc(51vw / 12.8);
  left: calc(28vw / 12.8);
  width: calc(203vw / 12.8);
  height: calc(157vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img9 {
    width: calc(203vw / 9.8);
    height: auto;
    bottom: calc(-60vw / 9.8);
    left: calc(28vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img9 {
    width: calc(104vw / 3.9);
    height: auto;
    bottom: calc(21vw / 3.9);
    left: calc(28vw / 3.9);
  }
}
.loading__images-item.img10 {
  bottom: calc(88vw / 12.8);
  right: calc(68vw / 12.8);
  width: calc(227vw / 12.8);
  height: calc(179vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img10 {
    width: calc(227vw / 9.8);
    height: auto;
    bottom: calc(160vw / 9.8);
    right: calc(66vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img10 {
    width: calc(109vw / 3.9);
    height: auto;
    bottom: calc(120vw / 3.9);
    right: calc(66vw / 3.9);
  }
}
.loading__images-item.img11 {
  top: calc(60vw / 12.8);
  right: calc(427vw / 12.8);
  width: calc(198vw / 12.8);
  height: calc(153vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img11 {
    width: calc(198vw / 9.8);
    height: auto;
    top: calc(780vw / 9.8);
    right: calc(252vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img11 {
    width: calc(73vw / 3.9);
    height: auto;
    top: calc(510vw / 3.9);
    right: calc(12vw / 3.9);
  }
}
.loading__images-item.img12 {
  bottom: calc(45vw / 12.8);
  left: calc(378vw / 12.8);
  width: calc(208vw / 12.8);
  height: calc(167vw / 12.8);
}
@media (max-width: 980px) {
  .loading__images-item.img12 {
    width: calc(208vw / 9.8);
    height: auto;
    bottom: calc(107vw / 9.8);
    left: calc(228vw / 9.8);
  }
}
@media (max-width: 600px) {
  .loading__images-item.img12 {
    width: calc(81vw / 3.9);
    height: auto;
    bottom: calc(47vw / 3.9);
    left: calc(158vw / 3.9);
  }
}
.loading__images-item.img13 {
  display: none;
}
@media (max-width: 980px) {
  .loading__images-item.img13 {
    width: calc(227vw / 9.8);
    height: auto;
    top: calc(-100vw / 9.8);
    left: calc(145vw / 9.8);
    display: block;
  }
}
@media (max-width: 600px) {
  .loading__images-item.img13 {
    width: calc(115vw / 3.9);
    height: auto;
    top: calc(-15vw / 3.9);
    left: calc(55vw / 3.9);
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
    display: block;
  }
}

.site-main {
  padding-top: calc(76vw / 12.8);
  background-color: #0C7BC7;
}
@media (max-width: 980px) {
  .site-main {
    padding-top: calc(70vw / 9.8);
  }
}
@media (max-width: 600px) {
  .site-main {
    padding-top: calc(60vw / 3.9);
  }
}

.mv {
  position: relative;
}
.mv__inner {
  position: relative;
  padding-top: calc(20vw / 12.8);
  padding-bottom: calc(85vw / 12.8);
  max-height: calc(100vh - 76vw / 12.8);
  background-image: url(../img/mv-bg.webp);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
@media (max-width: 980px) {
  .mv__inner {
    padding-top: calc(40vw / 9.8);
    padding-bottom: calc(240vw / 9.8);
    max-height: unset;
    background-position: top left 30%;
  }
}
@media (max-width: 600px) {
  .mv__inner {
    padding-top: calc(20vw / 3.9);
    padding-bottom: calc(300vw / 3.9);
    max-height: unset;
    background-image: url(../img/mv-bg-sp.webp);
  }
}
.mv__image-wrapper {
  position: relative;
  margin-right: calc(10vw / 12.8) !important;
  width: calc(956vw / 12.8);
  height: calc(663vw / 12.8);
  max-height: calc(100vh - 76vw / 12.8 - 20vw / 12.8 - 85vw / 12.8);
}
@media (max-width: 980px) {
  .mv__image-wrapper {
    width: calc(860vw / 9.8);
    height: calc(580vw / 9.8);
    max-height: unset;
    margin-right: calc(0vw / 9.8) !important;
  }
}
@media (max-width: 600px) {
  .mv__image-wrapper {
    width: calc(345vw / 3.9);
    height: calc(240vw / 3.9);
    max-height: unset;
    margin-right: calc(0vw / 3.9) !important;
  }
}
.mv .swiper-wrapper {
  position: relative;
  width: 100%;
}
.mv .swiper-slide {
  position: relative;
  border: 6px solid #fff;
  border-radius: 15px;
  overflow: hidden;
}
@media (max-width: 980px) {
  .mv .swiper-slide {
    border-width: 4px;
    border-right: none;
  }
}
@media (max-width: 600px) {
  .mv .swiper-slide {
    border-width: 4px;
    border-right: none;
    border-radius: 15px 0 0 15px;
  }
}
.mv .swiper-slide img {
  -o-object-position: center;
     object-position: center;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__copy {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.mv__copy-line, .mv__copy-text {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mv__copy-line {
  bottom: calc(10vw / 12.8);
  left: calc(15vw / 12.8);
}
@media (max-width: 980px) {
  .mv__copy-line {
    bottom: calc(10vw / 9.8);
    left: calc(15vw / 9.8);
  }
}
@media (max-width: 600px) {
  .mv__copy-line {
    bottom: calc(110vw / 3.9);
    left: calc(5vw / 3.9);
  }
}
.mv__copy-text {
  bottom: calc(32vw / 12.8);
  left: calc(33vw / 12.8);
}
@media (max-width: 980px) {
  .mv__copy-text {
    bottom: calc(32vw / 9.8);
    left: calc(33vw / 9.8);
  }
}
@media (max-width: 600px) {
  .mv__copy-text {
    bottom: calc(122vw / 3.9);
    left: calc(13vw / 3.9);
  }
}
.mv__copy-line-item, .mv__copy-text-item {
  overflow: hidden;
}
.mv__copy-line-item img, .mv__copy-text-item img {
  display: block;
  width: 100%;
  height: auto;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  -webkit-animation: none;
          animation: none;
}
.mv__copy-line-item.line1 {
  width: calc(399vw / 12.8);
}
@media (max-width: 980px) {
  .mv__copy-line-item.line1 {
    width: calc(399vw / 9.8);
  }
}
@media (max-width: 600px) {
  .mv__copy-line-item.line1 {
    width: calc(208vw / 3.9);
  }
}
.mv__copy-line-item.line1 img {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.mv__copy-line-item.line2 {
  width: calc(608vw / 12.8);
  margin-top: calc(-38vw / 12.8);
  margin-left: calc(11vw / 12.8);
}
@media (max-width: 980px) {
  .mv__copy-line-item.line2 {
    width: calc(608vw / 9.8);
    margin-top: calc(-38vw / 9.8);
    margin-left: calc(11vw / 9.8);
  }
}
@media (max-width: 600px) {
  .mv__copy-line-item.line2 {
    width: calc(322vw / 3.9);
    margin-top: calc(-21vw / 3.9);
    margin-left: calc(6vw / 3.9);
  }
}
.mv__copy-line-item.line2 img {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.mv__copy-line-item.line3 {
  width: calc(645vw / 12.8);
  margin-top: calc(-42vw / 12.8);
  margin-left: calc(22vw / 12.8);
}
@media (max-width: 980px) {
  .mv__copy-line-item.line3 {
    width: calc(645vw / 9.8);
    margin-top: calc(-42vw / 9.8);
    margin-left: calc(22vw / 9.8);
  }
}
@media (max-width: 600px) {
  .mv__copy-line-item.line3 {
    width: calc(350vw / 3.9);
    margin-top: calc(-23vw / 3.9);
    margin-left: calc(12vw / 3.9);
  }
}
.mv__copy-line-item.line3 img {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.mv__copy-text-item.text1 {
  width: calc(349vw / 12.8);
}
@media (max-width: 980px) {
  .mv__copy-text-item.text1 {
    width: calc(349vw / 9.8);
    margin-left: calc(0vw / 9.8);
    margin-top: calc(3vw / 9.8);
  }
}
@media (max-width: 600px) {
  .mv__copy-text-item.text1 {
    width: calc(188vw / 3.9);
    margin-left: calc(0vw / 3.9);
    margin-top: calc(3vw / 3.9);
  }
}
.mv__copy-text-item.text1 img {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.mv__copy-text-item.text2 {
  width: calc(558vw / 12.8);
  margin-left: calc(10vw / 12.8);
  margin-top: calc(5vw / 12.8);
}
@media (max-width: 980px) {
  .mv__copy-text-item.text2 {
    width: calc(558vw / 9.8);
    margin-left: calc(10vw / 9.8);
    margin-top: calc(5vw / 9.8);
  }
}
@media (max-width: 600px) {
  .mv__copy-text-item.text2 {
    width: calc(302vw / 3.9);
    margin-left: calc(5vw / 3.9);
    margin-top: calc(0vw / 3.9);
  }
}
.mv__copy-text-item.text2 img {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.mv__copy-text-item.text3 {
  width: calc(610vw / 12.8);
  margin-left: calc(15vw / 12.8);
  margin-top: calc(3vw / 12.8);
}
@media (max-width: 980px) {
  .mv__copy-text-item.text3 {
    width: calc(610vw / 9.8);
    margin-left: calc(15vw / 9.8);
    margin-top: calc(3vw / 9.8);
  }
}
@media (max-width: 600px) {
  .mv__copy-text-item.text3 {
    width: calc(330vw / 3.9);
    margin-left: calc(10vw / 3.9);
    margin-top: calc(0vw / 3.9);
  }
}
.mv__copy-text-item.text3 img {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.mv__copy.is-animated .mv__copy-line-item.line1 img {
  -webkit-animation: mvCopyReveal 0.5s ease-out 0s forwards;
          animation: mvCopyReveal 0.5s ease-out 0s forwards;
}
.mv__copy.is-animated .mv__copy-line-item.line2 img {
  -webkit-animation: mvCopyReveal 0.5s ease-out 0.3s forwards;
          animation: mvCopyReveal 0.5s ease-out 0.3s forwards;
}
.mv__copy.is-animated .mv__copy-line-item.line3 img {
  -webkit-animation: mvCopyReveal 0.5s ease-out 0.6s forwards;
          animation: mvCopyReveal 0.5s ease-out 0.6s forwards;
}
.mv__copy.is-animated .mv__copy-text-item.text1 img {
  -webkit-animation: mvCopyReveal 0.5s ease-out 0.3s forwards;
          animation: mvCopyReveal 0.5s ease-out 0.3s forwards;
}
.mv__copy.is-animated .mv__copy-text-item.text2 img {
  -webkit-animation: mvCopyReveal 0.5s ease-out 0.6s forwards;
          animation: mvCopyReveal 0.5s ease-out 0.6s forwards;
}
.mv__copy.is-animated .mv__copy-text-item.text3 img {
  -webkit-animation: mvCopyReveal 0.5s ease-out 0.9s forwards;
          animation: mvCopyReveal 0.5s ease-out 0.9s forwards;
}

@-webkit-keyframes mvCopyReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes mvCopyReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.future-steps {
  padding-top: calc(20vw / 12.8);
  padding-bottom: calc(50vw / 12.8);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #9ecce8), to(#0c7bc7));
  background: linear-gradient(#9ecce8 10%, #0c7bc7 100%);
}
@media (max-width: 980px) {
  .future-steps {
    padding-top: calc(20vw / 9.8);
    padding-bottom: calc(50vw / 9.8);
  }
}
@media (max-width: 600px) {
  .future-steps {
    padding-top: calc(0vw / 3.9);
    padding-bottom: calc(40vw / 3.9);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #0b96db), to(#0c7bc7));
    background: linear-gradient(#0b96db 10%, #0c7bc7 100%);
  }
}
.future-steps__item {
  padding-right: 0;
  margin-right: calc(40vw / 12.8);
  width: calc(445vw / 12.8);
}
@media (max-width: 980px) {
  .future-steps__item {
    width: calc(445vw / 9.8);
  }
}
@media (max-width: 600px) {
  .future-steps__item {
    width: calc(230vw / 3.9);
    margin-right: calc(20vw / 3.9);
  }
}

.loading__future-steps {
  position: absolute;
  width: 100%;
  background: none;
  padding-top: calc(10vw / 12.8);
  padding-bottom: calc(10vw / 12.8);
}
.loading__future-steps.top {
  top: 0;
}
.loading__future-steps.bottom {
  bottom: 0;
}
.loading__future-steps .future-steps__item {
  width: calc(335vw / 12.8);
  font-size: 0;
}

.one-team__item {
  padding-right: 0;
  margin-right: calc(40vw / 12.8);
  width: calc(698vw / 12.8);
}
@media (max-width: 980px) {
  .one-team__item {
    width: calc(698vw / 9.8);
  }
}
@media (max-width: 600px) {
  .one-team__item {
    width: calc(350vw / 3.9);
    margin-right: calc(20vw / 3.9);
  }
}

.student-voice__item {
  padding-right: 0;
  margin-right: calc(40vw / 12.8);
  width: calc(481vw / 12.8);
}
@media (max-width: 980px) {
  .student-voice__item {
    width: calc(481vw / 9.8);
  }
}
@media (max-width: 600px) {
  .student-voice__item {
    width: calc(260vw / 3.9);
    margin-right: calc(20vw / 3.9);
  }
}

.about {
  padding-top: calc(80vw / 12.8);
  background-image: url(../img/about-bg.webp);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 980px) {
  .about {
    padding-top: calc(80vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about {
    padding-top: calc(60vw / 3.9);
    margin-top: calc(-40vw / 3.9);
    background-image: url(../img/about-bg-sp.webp);
  }
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(25vw / 12.8);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 980px) {
  .about__inner {
    gap: calc(25vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about__inner {
    gap: calc(30vw / 3.9);
  }
}
.about__title h2 {
  font-size: calc(48vw / 12.8);
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  text-shadow: 4px 4px 0 #004E95;
  font-variant-east-asian: alternate-half-width;
}
.about__title h2 span {
  letter-spacing: -0.2em;
}
@media (max-width: 980px) {
  .about__title h2 {
    font-size: calc(48vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about__title h2 {
    font-size: calc(29vw / 3.9);
  }
}
.about__content-text {
  font-size: calc(16vw / 12.8);
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 2;
}
@media (max-width: 980px) {
  .about__content-text {
    font-size: calc(17vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about__content-text {
    font-size: calc(15vw / 3.9);
  }
}
.about__content-text span {
  font-size: calc(24vw / 12.8);
  padding: calc(5vw / 12.8) calc(5vw / 12.8);
  background-color: #EA9800;
}
@media (max-width: 980px) {
  .about__content-text span {
    font-size: calc(24vw / 9.8);
    padding: calc(5vw / 9.8) calc(5vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about__content-text span {
    font-size: calc(19vw / 3.9);
    padding: calc(5vw / 3.9) calc(5vw / 3.9);
  }
}
.about__slogan {
  margin: 0 auto;
  margin-top: calc(80vw / 12.8);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding: calc(50vw / 12.8) calc(30vw / 12.8);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(50vw / 12.8);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media (max-width: 980px) {
  .about__slogan {
    margin-top: calc(80vw / 9.8);
    padding: calc(50vw / 9.8) calc(30vw / 9.8);
    gap: calc(50vw / 9.8);
    width: calc(800vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about__slogan {
    margin-top: calc(40vw / 3.9);
    padding: calc(30vw / 3.9) calc(15vw / 3.9);
    gap: calc(30vw / 3.9);
    width: calc(350vw / 3.9);
  }
}
.about__slogan::before {
  content: "";
  position: absolute;
  top: calc(50vw / 12.8);
  right: calc(-30vw / 12.8);
  width: calc(130vw / 12.8);
  height: calc(180vw / 12.8);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background-image: url(../img/slogan-balloon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 980px) {
  .about__slogan::before {
    width: calc(130vw / 9.8);
    height: calc(180vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about__slogan::before {
    width: calc(60vw / 3.9);
    height: calc(80vw / 3.9);
    right: calc(-20vw / 3.9);
    top: calc(40vw / 3.9);
    -webkit-transform: translateY(-100%) rotate(2deg);
            transform: translateY(-100%) rotate(2deg);
  }
}
.about__slogan-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(20vw / 12.8);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 980px) {
  .about__slogan-item {
    gap: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about__slogan-item {
    gap: calc(20vw / 3.9);
  }
}
.about__slogan-title {
  color: #fff;
  font-size: calc(48vw / 12.8);
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  text-stroke: 8px #0C7BC7;
  -webkit-text-stroke: 8px #0C7BC7;
  -moz-text-stroke: 8px #0C7BC7;
  -ms-text-stroke: 8px #0C7BC7;
  -o-text-stroke: 8px #0C7BC7;
  position: relative;
}
@media (max-width: 980px) {
  .about__slogan-title {
    font-size: calc(48vw / 9.8);
    line-height: 1.3;
  }
}
@media (max-width: 600px) {
  .about__slogan-title {
    font-size: calc(28vw / 3.9);
    line-height: 1.3;
  }
}
.about__slogan-title::after {
  content: "誰にでも舞台に立つ権利がある";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: calc(48vw / 12.8);
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  text-stroke: 0 #0C7BC7;
  -webkit-text-stroke: 0 #0C7BC7;
  -moz-text-stroke: 0 #0C7BC7;
  -ms-text-stroke: 0 #0C7BC7;
  -o-text-stroke: 0 #0C7BC7;
}
@media (max-width: 980px) {
  .about__slogan-title::after {
    font-size: calc(48vw / 9.8);
    line-height: 1.3;
  }
}
@media (max-width: 600px) {
  .about__slogan-title::after {
    font-size: calc(28vw / 3.9);
    line-height: 1.3;
  }
}
.about__slogan-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-10vw / 12.8);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-image: url(../img/slogan-ico.svg);
  width: calc(63vw / 12.8);
  height: calc(63vw / 12.8);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 980px) {
  .about__slogan-title::before {
    width: calc(63vw / 9.8);
    height: calc(63vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about__slogan-title::before {
    width: calc(54vw / 3.9);
    height: calc(45vw / 3.9);
    left: calc(15vw / 3.9);
    top: calc(40vw / 3.9);
  }
}
.about__slogan-title.aoharu::after {
  content: "一緒にアオハルしましょう";
}
.about__slogan-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(30vw / 12.8);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 980px) {
  .about__slogan-content {
    gap: calc(30vw / 9.8);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 600px) {
  .about__slogan-content {
    gap: calc(10vw / 3.9);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 980px) {
  .about__slogan-content.aoharu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 600px) {
  .about__slogan-content.aoharu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.about__slogan-text {
  font-size: calc(16vw / 12.8);
  color: #0C7BC7;
  line-height: 2;
  text-align: left;
  font-weight: 600;
}
@media (max-width: 980px) {
  .about__slogan-text {
    font-size: calc(16vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about__slogan-text {
    font-size: calc(14vw / 3.9);
  }
}
.about__slogan-text span {
  font-size: calc(17vw / 12.8);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, rgba(255, 255, 255, 0)), color-stop(70%, #FFEA00));
  background: linear-gradient(rgba(255, 255, 255, 0) 70%, #FFEA00 70%);
}
@media (max-width: 980px) {
  .about__slogan-text span {
    font-size: calc(17vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about__slogan-text span {
    font-size: calc(16vw / 3.9);
  }
}
.about__slogan-img {
  width: calc(320vw / 12.8);
  height: calc(241vw / 12.8);
}
@media (max-width: 980px) {
  .about__slogan-img {
    width: calc(320vw / 9.8);
    height: calc(241vw / 9.8);
  }
}
@media (max-width: 600px) {
  .about__slogan-img {
    width: calc(240vw / 3.9);
    height: calc(181vw / 3.9);
  }
}

.movie {
  padding-top: calc(80vw / 12.8);
}
@media (max-width: 980px) {
  .movie {
    padding-top: calc(80vw / 9.8);
  }
}
@media (max-width: 600px) {
  .movie {
    padding-top: calc(60vw / 3.9);
  }
}
.movie__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(40vw / 12.8);
}
@media (max-width: 980px) {
  .movie__inner {
    gap: calc(40vw / 9.8);
  }
}
@media (max-width: 600px) {
  .movie__inner {
    gap: calc(40vw / 3.9);
  }
}
.movie__title {
  width: calc(1020vw / 12.8);
  position: relative;
}
@media (max-width: 980px) {
  .movie__title {
    width: calc(910vw / 9.8);
  }
}
@media (max-width: 600px) {
  .movie__title {
    width: calc(370vw / 3.9);
  }
}
.movie__title:before, .movie__title:after {
  content: "";
  position: absolute;
  width: calc(280vw / 12.8);
  height: calc(2vw / 12.8);
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 1px 1px 12px #fff;
          box-shadow: 1px 1px 12px #fff;
}
@media (max-width: 980px) {
  .movie__title:before, .movie__title:after {
    width: calc(100vw / 9.8);
    height: calc(2vw / 9.8);
  }
}
@media (max-width: 600px) {
  .movie__title:before, .movie__title:after {
    width: calc(25vw / 3.9);
    height: calc(2vw / 3.9);
  }
}
.movie__title:before {
  left: 0;
}
.movie__title:after {
  right: 0;
}
.movie__title h2 {
  width: calc(362vw / 12.8);
  height: auto;
  margin: auto;
}
@media (max-width: 980px) {
  .movie__title h2 {
    width: calc(362vw / 9.8);
  }
}
@media (max-width: 600px) {
  .movie__title h2 {
    width: calc(290vw / 3.9);
  }
}
.movie__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(40vw / 12.8);
}
@media (max-width: 980px) {
  .movie__content {
    gap: calc(40vw / 9.8);
  }
}
@media (max-width: 600px) {
  .movie__content {
    gap: calc(40vw / 3.9);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.movie__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(20vw / 12.8);
  position: relative;
}
.movie__content-item:nth-of-type(2n) {
  margin-top: calc(60vw / 12.8);
}
@media (max-width: 980px) {
  .movie__content-item:nth-of-type(2n) {
    margin-top: calc(40vw / 9.8);
  }
}
@media (max-width: 600px) {
  .movie__content-item:nth-of-type(2n) {
    margin-top: calc(0vw / 3.9);
  }
}
.movie__content-item-title {
  font-size: calc(16vw / 12.8);
  position: absolute;
  top: calc(-20vw / 12.8);
  left: calc(-10vw / 12.8);
  color: #fff;
  background-color: #EA9800;
  line-height: 2;
  font-weight: 600;
  padding: calc(2vw / 12.8) calc(10vw / 12.8);
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}
@media (max-width: 980px) {
  .movie__content-item-title {
    font-size: calc(16vw / 9.8);
    top: calc(-20vw / 9.8);
    left: calc(-10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .movie__content-item-title {
    font-size: calc(14vw / 3.9);
    top: calc(-15vw / 3.9);
    left: calc(-10vw / 3.9);
  }
}
.movie__content-item-video {
  width: calc(419vw / 12.8);
  height: calc(235vw / 12.8);
  border: 3px solid #EA9800;
}
@media (max-width: 980px) {
  .movie__content-item-video {
    width: calc(419vw / 9.8);
    height: calc(235vw / 9.8);
  }
}
@media (max-width: 600px) {
  .movie__content-item-video {
    width: calc(350vw / 3.9);
    height: calc(200vw / 3.9);
  }
}
.movie__content-item-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery {
  padding-top: calc(80vw / 12.8);
}
@media (max-width: 980px) {
  .gallery {
    padding-top: calc(80vw / 9.8);
  }
}
@media (max-width: 600px) {
  .gallery {
    padding-top: calc(60vw / 3.9);
  }
}
.gallery__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}
.gallery__large {
  width: 100%;
  height: calc(420vw / 12.8);
  border-top: 6px solid #fff;
}
@media (max-width: 980px) {
  .gallery__large {
    height: calc(420vw / 9.8);
  }
}
@media (max-width: 600px) {
  .gallery__large {
    height: calc(240vw / 3.9);
  }
}
.gallery__large img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__small {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  pointer-events: none;
}
.gallery__small .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.gallery__small .swiper-slide {
  width: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  pointer-events: none;
}
.gallery__small-item {
  width: calc(422vw / 12.8) !important;
  height: calc(280vw / 12.8) !important;
  padding: calc(5vw / 12.8);
  background-color: #fff;
  pointer-events: none;
}
@media (max-width: 980px) {
  .gallery__small-item {
    width: calc(422vw / 9.8) !important;
    height: calc(280vw / 9.8) !important;
  }
}
@media (max-width: 600px) {
  .gallery__small-item {
    width: calc(226vw / 3.9) !important;
    height: calc(146vw / 3.9) !important;
    padding: calc(5vw / 3.9);
  }
}
.gallery__small-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
}

.class {
  padding-top: calc(100vw / 12.8);
  background-image: url(../img/class-bg.webp);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: repeat;
}
@media (max-width: 980px) {
  .class {
    padding-top: calc(100vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class {
    padding-top: calc(60vw / 3.9);
    background-image: url(../img/class-bg-sp.webp);
  }
}
.class__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.class__title {
  width: calc(1020vw / 12.8);
  position: relative;
}
@media (max-width: 980px) {
  .class__title {
    width: calc(910vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__title {
    width: calc(370vw / 3.9);
  }
}
.class__title:before, .class__title:after {
  content: "";
  position: absolute;
  width: calc(280vw / 12.8);
  height: calc(2vw / 12.8);
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 980px) {
  .class__title:before, .class__title:after {
    width: calc(280vw / 9.8);
    height: calc(2vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__title:before, .class__title:after {
    width: calc(50vw / 3.9);
    height: calc(2vw / 3.9);
  }
}
.class__title:before {
  left: 0;
}
.class__title:after {
  right: 0;
}
.class__title h2 {
  width: calc(242vw / 12.8);
  height: auto;
  margin: auto;
}
@media (max-width: 980px) {
  .class__title h2 {
    width: calc(242vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__title h2 {
    width: calc(202vw / 3.9);
  }
}
.class__content-text {
  font-size: calc(16vw / 12.8);
  color: #fff;
  line-height: 2;
  text-align: center;
  font-weight: 600;
  margin-top: calc(25vw / 12.8);
}
@media (max-width: 980px) {
  .class__content-text {
    font-size: calc(16vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__content-text {
    font-size: calc(14vw / 3.9);
    margin-top: calc(30vw / 3.9);
    text-align: left;
    width: calc(350vw / 3.9);
  }
}
.class__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(50vw / 12.8) calc(20vw / 12.8);
  margin-top: calc(68vw / 12.8);
  width: calc(970vw / 12.8);
}
@media (max-width: 980px) {
  .class__list {
    width: calc(800vw / 9.8);
    gap: calc(40vw / 9.8) calc(20vw / 9.8);
    margin-top: calc(40vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__list {
    width: calc(350vw / 3.9);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(60vw / 3.9);
    margin-top: calc(60vw / 3.9);
  }
}
.class__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(20vw / 12.8);
  width: calc(310vw / 12.8);
  background-color: #fff;
  padding: 0 calc(15vw / 12.8) calc(40vw / 12.8) calc(15vw / 12.8);
}
@media (max-width: 980px) {
  .class__item {
    padding: 0 calc(15vw / 9.8) calc(40vw / 9.8) calc(15vw / 9.8);
    width: calc(460vw / 9.8);
    gap: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__item {
    padding: 0 calc(15vw / 3.9) calc(40vw / 3.9) calc(15vw / 3.9);
    width: 100%;
    gap: calc(20vw / 3.9);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.class__item.col2 {
  width: calc(475vw / 12.8);
}
@media (max-width: 980px) {
  .class__item.col2 {
    width: calc(460vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__item.col2 {
    width: calc(350vw / 3.9);
  }
}
.class__item-title {
  font-size: calc(24vw / 12.8);
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../img/class-title-ribon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: calc(264vw / 12.8);
  height: calc(47vw / 12.8);
  padding-bottom: calc(7vw / 12.8);
  margin-top: calc(-28vw / 12.8);
}
@media (max-width: 980px) {
  .class__item-title {
    margin-top: calc(-28vw / 9.8);
    width: calc(284vw / 9.8);
    height: calc(50vw / 9.8);
    padding-bottom: calc(7vw / 9.8);
    font-size: calc(26vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__item-title {
    width: 100%;
    height: calc(47vw / 3.9);
    padding-bottom: calc(7vw / 3.9);
    margin-top: calc(-26vw / 3.9);
    font-size: calc(24vw / 3.9);
  }
}
.class__item-title.col2 {
  width: calc(354vw / 12.8);
  height: calc(48vw / 12.8);
  background-image: url(../img/class-title-ribon-col2.svg);
}
@media (max-width: 980px) {
  .class__item-title.col2 {
    width: calc(284vw / 9.8);
    height: calc(50vw / 9.8);
    background-image: url(../img/class-title-ribon.svg);
  }
}
@media (max-width: 600px) {
  .class__item-title.col2 {
    width: 100%;
    height: calc(53vw / 3.9);
    background-image: url(../img/class-title-ribon.svg);
  }
}
.class__item-img {
  width: 100%;
  height: calc(209vw / 12.8);
}
@media (max-width: 980px) {
  .class__item-img {
    height: calc(229vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__item-img {
    height: calc(209vw / 3.9);
  }
}
.class__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.class__item-img.col2 {
  width: calc(180vw / 12.8);
  height: calc(134vw / 12.8);
}
@media (max-width: 980px) {
  .class__item-img.col2 {
    width: 100%;
    height: calc(229vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__item-img.col2 {
    width: 100%;
    height: calc(209vw / 3.9);
  }
}
.class__item-intro-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(15vw / 12.8);
}
@media (max-width: 980px) {
  .class__item-intro-wrapper {
    gap: calc(15vw / 9.8);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 600px) {
  .class__item-intro-wrapper {
    gap: calc(15vw / 3.9);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.class__item-intro {
  font-size: calc(15vw / 12.8);
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  font-weight: 500;
  color: #003A57;
  width: calc(245vw / 12.8);
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media (max-width: 980px) {
  .class__item-intro {
    width: calc(345vw / 9.8);
    font-size: calc(17vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__item-intro {
    width: 100%;
    font-size: calc(15vw / 3.9);
    padding: 0 calc(5vw / 3.9);
  }
}
.class__item-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(15vw / 12.8);
}
@media (max-width: 980px) {
  .class__item-info-wrapper {
    gap: calc(15vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__item-info-wrapper {
    gap: calc(10vw / 3.9);
    padding: 0 calc(5vw / 3.9);
  }
}
.class__item-info-wrapper.col2 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 980px) {
  .class__item-info-wrapper.col2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 600px) {
  .class__item-info-wrapper.col2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 calc(5vw / 3.9);
  }
}
.class__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(20vw / 12.8);
}
@media (max-width: 980px) {
  .class__item-info {
    gap: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__item-info {
    gap: calc(20vw / 3.9);
  }
}
.class__item-info.col2 {
  min-width: calc(200vw / 12.8);
}
@media (max-width: 980px) {
  .class__item-info.col2 {
    min-width: unset;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .class__item-info.col2 {
    width: 100%;
    min-width: unset;
  }
}
.class__item-info-title {
  font-size: calc(16vw / 12.8);
  line-height: 1.2;
  text-align: center;
  width: calc(64vw / 12.8);
  font-weight: 700;
  color: #0C7BC7;
}
@media (max-width: 980px) {
  .class__item-info-title {
    font-size: calc(17vw / 9.8);
    width: calc(74vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__item-info-title {
    font-size: calc(15vw / 3.9);
    width: calc(64vw / 3.9);
  }
}
.class__item-info-title.col2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 600px) {
  .class__item-info-title.col2 {
    width: calc(64vw / 3.9);
  }
}
.class__item-info-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16vw / 12.8);
  line-height: 1.2;
  text-align: left;
  font-weight: 500;
  color: #003A57;
}
@media (max-width: 980px) {
  .class__item-info-text {
    font-size: calc(17vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__item-info-text {
    font-size: calc(15vw / 3.9);
  }
}
.class__item-info-text span {
  margin-top: calc(5vw / 12.8);
  display: inline-block;
}
@media (max-width: 980px) {
  .class__item-info-text span {
    margin-top: calc(5vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__item-info-text span {
    margin-top: calc(5vw / 3.9);
  }
}
.class__item-info-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(16vw / 12.8);
  line-height: 1.2;
  text-align: left;
  font-weight: 500;
  color: #003A57;
  margin-left: auto;
}
@media (max-width: 980px) {
  .class__item-info-note {
    font-size: calc(17vw / 9.8);
    margin: auto;
  }
}
@media (max-width: 600px) {
  .class__item-info-note {
    font-size: calc(15vw / 3.9);
    margin: auto;
  }
}
.class__item-info-note.col2 {
  margin-right: auto;
}
@media (max-width: 600px) {
  .class__item-info-note.col2 {
    margin: auto;
  }
}
.class__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(10vw / 12.8);
  background-color: #fff;
  padding: calc(15vw / 12.8) calc(35vw / 12.8) calc(45vw / 12.8) calc(35vw / 12.8);
  border-radius: 15px;
  margin-top: calc(20vw / 12.8);
}
@media (max-width: 980px) {
  .class__location {
    margin: auto;
    margin-top: calc(20vw / 9.8);
    padding: calc(15vw / 9.8) calc(35vw / 9.8) calc(45vw / 9.8) calc(35vw / 9.8);
    width: calc(800vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__location {
    margin: auto;
    margin-top: calc(20vw / 3.9);
    padding: calc(15vw / 3.9) calc(15vw / 3.9) calc(30vw / 3.9) calc(15vw / 3.9);
    width: calc(350vw / 3.9);
  }
}
.class__location-title {
  font-size: calc(32vw / 12.8);
  font-weight: 900;
  color: #EA9800;
  line-height: 1.6;
}
@media (max-width: 980px) {
  .class__location-title {
    font-size: calc(28vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__location-title {
    font-size: calc(24vw / 3.9);
  }
}
.class__location-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(100vw / 12.8);
}
@media (max-width: 980px) {
  .class__location-content {
    gap: calc(80vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__location-content {
    gap: calc(40vw / 3.9);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.class__location-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(400vw / 12.8);
  position: relative;
}
@media (max-width: 980px) {
  .class__location-item {
    width: calc(400vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__location-item {
    width: 100%;
  }
}
.class__location-item iframe {
  width: calc(400vw / 12.8);
  height: calc(250vw / 12.8);
  margin-top: calc(25vw / 12.8);
}
@media (max-width: 980px) {
  .class__location-item iframe {
    width: calc(320vw / 9.8);
    height: calc(200vw / 9.8);
    margin-top: calc(25vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__location-item iframe {
    width: 100%;
    height: calc(201vw / 3.9);
    margin-top: calc(10vw / 3.9);
  }
}
.class__location-item:first-child:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #0C7BC7;
  top: 0;
  right: 0;
  -webkit-transform: translateX(calc(50vw / 12.8));
          transform: translateX(calc(50vw / 12.8));
}
@media (max-width: 980px) {
  .class__location-item:first-child:after {
    -webkit-transform: translateX(calc(50vw / 9.8));
            transform: translateX(calc(50vw / 9.8));
  }
}
@media (max-width: 600px) {
  .class__location-item:first-child:after {
    top: unset;
    bottom: 0;
    width: 100%;
    height: 2px;
    -webkit-transform: translate(0, calc(20vw / 3.9));
            transform: translate(0, calc(20vw / 3.9));
  }
}
.class__location-item-title {
  font-size: calc(16vw / 12.8);
  font-weight: 900;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(6vw / 12.8);
}
@media (max-width: 980px) {
  .class__location-item-title {
    font-size: calc(16vw / 9.8);
    gap: calc(6vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__location-item-title {
    font-size: calc(15vw / 3.9);
    gap: calc(6vw / 3.9);
  }
}
.class__location-item-title:before {
  content: "";
  width: calc(20vw / 12.8);
  height: calc(20vw / 12.8);
  background-image: url(../img/mappin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 980px) {
  .class__location-item-title:before {
    width: calc(20vw / 9.8);
    height: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__location-item-title:before {
    width: calc(20vw / 3.9);
    height: calc(20vw / 3.9);
  }
}
.class__location-item-text {
  font-size: calc(16vw / 12.8);
  font-weight: 500;
  color: #333;
  margin-top: calc(5vw / 12.8);
  font-family: "Noto Sans JP", sans-serif;
  padding-left: calc(25vw / 12.8);
}
@media (max-width: 980px) {
  .class__location-item-text {
    font-size: calc(16vw / 9.8);
    margin-top: calc(5vw / 9.8);
    padding-left: calc(25vw / 9.8);
  }
}
@media (max-width: 600px) {
  .class__location-item-text {
    font-size: calc(15vw / 3.9);
    margin-top: calc(5vw / 3.9);
    padding-left: calc(25vw / 3.9);
  }
}

.instructor {
  padding-top: calc(50vw / 12.8);
  padding-bottom: calc(120vw / 12.8);
}
@media (max-width: 980px) {
  .instructor {
    padding-top: calc(50vw / 9.8);
    padding-bottom: calc(120vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor {
    padding-top: calc(60vw / 3.9);
    padding-bottom: calc(60vw / 3.9);
  }
}
.instructor__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.instructor__title {
  width: calc(1020vw / 12.8);
  position: relative;
}
@media (max-width: 980px) {
  .instructor__title {
    width: calc(910vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__title {
    width: calc(370vw / 3.9);
  }
}
.instructor__title:before, .instructor__title:after {
  content: "";
  position: absolute;
  width: calc(280vw / 12.8);
  height: calc(2vw / 12.8);
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 980px) {
  .instructor__title:before, .instructor__title:after {
    width: calc(280vw / 9.8);
    height: calc(2vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__title:before, .instructor__title:after {
    width: calc(50vw / 3.9);
    height: calc(2vw / 3.9);
  }
}
.instructor__title:before {
  left: 0;
}
.instructor__title:after {
  right: 0;
}
.instructor__title h2 {
  width: calc(242vw / 12.8);
  height: auto;
  margin: auto;
}
@media (max-width: 980px) {
  .instructor__title h2 {
    width: calc(242vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__title h2 {
    width: calc(163vw / 3.9);
  }
}
.instructor__profile {
  background-color: #EA9800;
  padding: calc(55vw / 12.8) calc(30vw / 12.8) calc(130vw / 12.8) calc(30vw / 12.8);
  border-radius: 20px;
  margin-top: calc(15vw / 12.8);
  position: relative;
}
@media (max-width: 980px) {
  .instructor__profile {
    padding: calc(55vw / 9.8) calc(30vw / 9.8) calc(60vw / 9.8) calc(30vw / 9.8);
    width: calc(800vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__profile {
    padding: calc(22vw / 3.9) calc(5vw / 3.9) calc(30vw / 3.9) calc(5vw / 3.9);
    width: calc(350vw / 3.9);
    margin: auto;
    margin-top: calc(20vw / 3.9);
  }
}
.instructor__image {
  width: calc(1002vw / 12.8);
  height: auto;
}
@media (max-width: 980px) {
  .instructor__image {
    width: calc(610vw / 9.8);
    margin: auto;
  }
}
@media (max-width: 600px) {
  .instructor__image {
    width: calc(340vw / 3.9);
  }
}
.instructor__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  right: calc(50vw / 12.8);
  bottom: calc(30vw / 12.8);
}
@media (max-width: 980px) {
  .instructor__info {
    position: relative;
    right: unset;
    bottom: unset;
    margin: auto;
    margin-top: calc(5vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__info {
    position: relative;
    right: unset;
    bottom: unset;
    margin: auto;
    margin-top: calc(5vw / 3.9);
  }
}
.instructor__role {
  font-size: calc(18vw / 12.8);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: calc(10vw / 12.8);
}
@media (max-width: 980px) {
  .instructor__role {
    font-size: calc(18vw / 9.8);
    margin-bottom: calc(10vw / 9.8);
    text-align: center;
  }
}
@media (max-width: 600px) {
  .instructor__role {
    font-size: calc(18vw / 3.9);
    margin-bottom: calc(5vw / 3.9);
    text-align: center;
  }
}
.instructor__name {
  font-size: calc(44vw / 12.8);
  font-weight: 900;
  color: #003A57;
  line-height: 1;
  text-stroke: 8px #fff;
  -webkit-text-stroke: 8px #fff;
  -moz-text-stroke: 8px #fff;
  -ms-text-stroke: 8px #fff;
  -o-text-stroke: 8px #fff;
  text-shadow: 4px 4px 0 #fff;
  margin-bottom: calc(15vw / 12.8);
  position: relative;
}
@media (max-width: 980px) {
  .instructor__name {
    font-size: calc(44vw / 9.8);
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
@media (max-width: 600px) {
  .instructor__name {
    font-size: calc(42vw / 3.9);
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.instructor__name::after {
  content: "YUKA";
  font-size: calc(44vw / 12.8);
  position: absolute;
  top: 0;
  left: 0;
  text-stroke: 0 #fff;
  -webkit-text-stroke: 0 #fff;
  -moz-text-stroke: 0 #fff;
  -ms-text-stroke: 0 #fff;
  -o-text-stroke: 0 #fff;
}
@media (max-width: 980px) {
  .instructor__name::after {
    font-size: calc(44vw / 9.8);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
@media (max-width: 600px) {
  .instructor__name::after {
    font-size: calc(42vw / 3.9);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.instructor__bio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding: calc(15vw / 12.8) calc(25vw / 12.8);
  border-radius: 10px;
}
@media (max-width: 980px) {
  .instructor__bio-wrapper {
    padding: calc(15vw / 9.8) calc(25vw / 9.8);
    width: calc(560vw / 9.8);
    margin: auto;
    margin-top: calc(10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__bio-wrapper {
    padding: calc(20vw / 3.9) calc(15vw / 3.9);
    width: calc(320vw / 3.9);
    margin: auto;
    margin-top: calc(10vw / 3.9);
  }
}
.instructor__bio {
  font-size: calc(18vw / 12.8);
  font-weight: 700;
  color: #003A57;
  line-height: 2;
}
@media (max-width: 980px) {
  .instructor__bio {
    font-size: calc(18vw / 9.8);
    line-height: 1.5;
  }
}
@media (max-width: 600px) {
  .instructor__bio {
    font-size: calc(15vw / 3.9);
    line-height: 1.5;
  }
}
.instructor__bio span {
  font-size: calc(23vw / 12.8);
  background-color: #EA9800;
  color: #fff;
  padding: calc(4vw / 12.8) 0;
  margin-right: calc(4vw / 12.8);
  margin-top: calc(5vw / 12.8);
  margin-bottom: calc(5vw / 12.8);
  display: inline-block;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .instructor__bio span {
    font-size: calc(23vw / 9.8);
    padding: calc(4vw / 9.8) 0;
    margin-right: calc(4vw / 9.8);
    margin-top: calc(5vw / 9.8);
    margin-bottom: calc(5vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__bio span {
    font-size: calc(21vw / 3.9);
    padding: calc(4vw / 3.9) 0;
    margin-right: calc(4vw / 3.9);
    margin-top: calc(5vw / 3.9);
    margin-bottom: calc(5vw / 3.9);
  }
}
.instructor__more {
  font-size: calc(18vw / 12.8);
  font-weight: 600;
  color: #fff;
  border-radius: 999px;
  background-color: #EA9800;
  padding: calc(10vw / 12.8) calc(30vw / 12.8);
  margin-left: auto;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: calc(15vw / 12.8);
  cursor: pointer;
}
@media (max-width: 980px) {
  .instructor__more {
    font-size: calc(18vw / 9.8);
    padding: calc(10vw / 9.8) calc(30vw / 9.8);
    margin-top: calc(15vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__more {
    font-size: calc(15vw / 3.9);
    padding: calc(10vw / 3.9) calc(30vw / 3.9);
    margin-top: calc(5vw / 3.9);
  }
}
.instructor__more:after {
  content: "";
  margin-top: calc(2vw / 12.8);
  width: calc(7vw / 12.8);
  height: calc(7vw / 12.8);
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: calc(10vw / 12.8);
}
@media (max-width: 980px) {
  .instructor__more:after {
    width: calc(7vw / 9.8);
    height: calc(7vw / 9.8);
    margin-left: calc(10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__more:after {
    width: calc(7vw / 3.9);
    height: calc(7vw / 3.9);
    margin-left: calc(10vw / 3.9);
  }
}
.instructor__blog-link {
  font-size: calc(17vw / 12.8);
  font-weight: 600;
  color: #003A57;
  border-bottom: 2px solid #003A57;
  padding-bottom: calc(2vw / 12.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: calc(15vw / 12.8);
  margin-right: calc(2vw / 12.8);
  margin-left: auto;
}
@media (max-width: 980px) {
  .instructor__blog-link {
    margin-top: calc(15vw / 9.8);
    margin-right: calc(2vw / 9.8);
    font-size: calc(17vw / 9.8);
    padding-bottom: calc(2vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__blog-link {
    margin-top: calc(10vw / 3.9);
    margin-right: calc(7vw / 3.9);
    font-size: calc(14vw / 3.9);
    padding-bottom: calc(2vw / 3.9);
  }
}
.instructor__blog-link span {
  display: block;
  width: calc(20vw / 12.8);
  height: calc(20vw / 12.8);
}
@media (max-width: 980px) {
  .instructor__blog-link span {
    width: calc(20vw / 9.8);
    height: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__blog-link span {
    width: calc(20vw / 3.9);
    height: calc(20vw / 3.9);
  }
}
.instructor__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(1060vw / 12.8);
  height: calc(697vw / 12.8);
  background-color: #EA9800;
  border-radius: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: calc(40vw / 12.8);
}
@media (max-width: 980px) {
  .instructor__modal {
    width: calc(900vw / 9.8);
    height: calc(1080vw / 9.8);
    max-height: 90vh;
  }
}
@media (max-width: 600px) {
  .instructor__modal {
    width: calc(350vw / 3.9);
    height: calc(500vw / 3.9);
    max-height: 90vh;
  }
}
.instructor__modal.is-open {
  opacity: 1;
  visibility: visible;
}
.instructor__modal-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.instructor__modal-inner::-webkit-scrollbar {
  display: none;
}
.instructor__modal-image {
  width: calc(920vw / 12.8);
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: auto;
}
@media (max-width: 980px) {
  .instructor__modal-image {
    width: calc(720vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__modal-image {
    width: calc(320vw / 3.9);
  }
}
.instructor__modal-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: calc(840vw / 12.8);
  margin: auto;
  background-color: #fff;
  padding: calc(40vw / 12.8) calc(40vw / 12.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: calc(40vw / 12.8);
  margin-bottom: calc(55vw / 12.8);
}
@media (max-width: 980px) {
  .instructor__modal-content {
    width: calc(840vw / 9.8);
    margin-top: calc(40vw / 9.8);
    margin-bottom: calc(55vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__modal-content {
    width: calc(320vw / 3.9);
    margin-top: calc(20vw / 3.9);
    margin-bottom: calc(30vw / 3.9);
  }
}
.instructor__modal-content-title {
  font-size: calc(40vw / 12.8);
  font-weight: 900;
  color: #003A57;
  line-height: 1;
  text-align: left;
  margin-top: calc(-65vw / 12.8);
  margin-left: calc(-30vw / 12.8);
  text-stroke: 6px #fff;
  -webkit-text-stroke: 6px #fff;
  -moz-text-stroke: 6px #fff;
  -ms-text-stroke: 6px #fff;
  -o-text-stroke: 6px #fff;
  position: relative;
}
@media (max-width: 980px) {
  .instructor__modal-content-title {
    font-size: calc(40vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__modal-content-title {
    font-size: calc(32vw / 3.9);
  }
}
.instructor__modal-content-title::before {
  content: "経歴";
  font-size: calc(40vw / 12.8);
  position: absolute;
  top: 0;
  left: 0;
  text-stroke: 0 #fff;
  -webkit-text-stroke: 0 #fff;
  -moz-text-stroke: 0 #fff;
  -ms-text-stroke: 0 #fff;
  -o-text-stroke: 0 #fff;
}
@media (max-width: 980px) {
  .instructor__modal-content-title::before {
    font-size: calc(40vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__modal-content-title::before {
    font-size: calc(32vw / 3.9);
  }
}
.instructor__modal-content-title-2::before {
  content: "大切にしていること";
}
.instructor__modal-content-text {
  font-size: calc(18vw / 12.8);
  font-weight: 700;
  color: #003A57;
  line-height: 2;
  text-align: left;
  margin-top: calc(15vw / 12.8);
}
@media (max-width: 980px) {
  .instructor__modal-content-text {
    font-size: calc(18vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__modal-content-text {
    font-size: calc(15vw / 3.9);
  }
}
.instructor__modal-close {
  position: absolute;
  top: calc(20vw / 12.8);
  right: calc(20vw / 12.8);
  width: calc(50vw / 12.8);
  height: calc(50vw / 12.8);
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 980px) {
  .instructor__modal-close {
    width: calc(50vw / 9.8);
    height: calc(50vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__modal-close {
    width: calc(40vw / 3.9);
    height: calc(40vw / 3.9);
    top: calc(-10vw / 3.9);
    right: calc(-10vw / 3.9);
  }
}
.instructor__modal-close:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.instructor__modal-close:before {
  content: "";
  position: absolute;
  width: calc(20vw / 12.8);
  height: calc(20vw / 12.8);
  background-image: url(../img/close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 980px) {
  .instructor__modal-close:before {
    width: calc(20vw / 9.8);
    height: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .instructor__modal-close:before {
    width: calc(20vw / 3.9);
    height: calc(20vw / 3.9);
  }
}
.instructor__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
.instructor__modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #FFEA00;
  background-image: url(../img/contact-bg.webp);
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  height: calc(697vw / 12.8);
  position: relative;
}
@media (max-width: 980px) {
  .contact__inner {
    height: calc(707vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__inner {
    height: auto;
    width: 100%;
    padding-bottom: calc(100vw / 3.9);
    background-image: url(../img/contact-bg-sp.webp);
  }
}
.contact__item-text {
  background-color: #fff;
  padding: calc(15vw / 12.8);
  border-radius: 10px;
  position: relative;
}
@media (max-width: 980px) {
  .contact__item-text {
    padding: calc(15vw / 9.8) calc(12vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-text {
    padding: calc(12vw / 3.9) calc(12vw / 3.9);
  }
}
.contact__item-text:before {
  content: "";
  position: absolute;
  border-top: 10px solid #fff;
  border-right: 10px solid #fff;
  border-bottom: 10px solid rgba(255, 255, 255, 0);
  border-left: 10px solid rgba(255, 255, 255, 0);
}
.contact__item-text p {
  font-size: calc(17vw / 12.8);
  line-height: 1.4;
  color: #003A57;
  font-weight: 900;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 980px) {
  .contact__item-text p {
    font-size: calc(16vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-text p {
    font-size: calc(15vw / 3.9);
  }
}
.contact__item-text p span {
  font-size: calc(20vw / 12.8);
}
@media (max-width: 980px) {
  .contact__item-text p span {
    font-size: calc(18vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-text p span {
    font-size: calc(18vw / 3.9);
  }
}
.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
}
@media (max-width: 980px) {
  .contact__item {
    position: absolute;
  }
}
@media (max-width: 600px) {
  .contact__item {
    position: relative;
  }
}
.contact__item-1 {
  top: calc(61vw / 12.8);
  left: calc(98vw / 12.8);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 980px) {
  .contact__item-1 {
    top: calc(61vw / 9.8);
    left: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-1 {
    top: auto;
    left: auto;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: calc(-20vw / 3.9);
  }
}
.contact__item-1 .contact__item-img {
  width: calc(238vw / 12.8);
  height: calc(178vw / 12.8);
  margin-left: auto;
}
@media (max-width: 980px) {
  .contact__item-1 .contact__item-img {
    width: calc(198vw / 9.8);
    height: calc(148vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-1 .contact__item-img {
    width: calc(205vw / 3.9);
    height: calc(154vw / 3.9);
    margin-left: 0;
    margin-right: auto;
  }
}
.contact__item-1 .contact__item-text {
  margin-top: calc(-10vw / 12.8);
  margin-right: calc(30vw / 12.8);
}
@media (max-width: 980px) {
  .contact__item-1 .contact__item-text {
    margin-top: calc(-10vw / 9.8);
    margin-right: calc(-20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-1 .contact__item-text {
    margin-top: calc(-30vw / 3.9);
    margin-right: 0;
    margin-left: calc(49vw / 3.9);
  }
}
.contact__item-1 .contact__item-text:before {
  -webkit-transform: rotate(90deg) translateX(-100%);
          transform: rotate(90deg) translateX(-100%);
  left: 55%;
  top: 0;
}
@media (max-width: 600px) {
  .contact__item-1 .contact__item-text:before {
    left: 40%;
    -webkit-transform: rotate(180deg) translateY(100%);
            transform: rotate(180deg) translateY(100%);
  }
}
.contact__item-1 span {
  color: #EA9800;
}
.contact__item-2 {
  top: calc(85vw / 12.8);
  left: calc(528vw / 12.8);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 980px) {
  .contact__item-2 {
    top: calc(85vw / 9.8);
    left: calc(385vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-2 {
    top: auto;
    left: auto;
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: calc(15vw / 3.9);
  }
}
.contact__item-2 .contact__item-img {
  width: calc(198vw / 12.8);
  height: calc(148vw / 12.8);
  margin-right: auto;
}
@media (max-width: 980px) {
  .contact__item-2 .contact__item-img {
    width: calc(198vw / 9.8);
    height: calc(148vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-2 .contact__item-img {
    width: calc(198vw / 3.9);
    height: calc(148vw / 3.9);
  }
}
.contact__item-2 .contact__item-text {
  margin-top: calc(-45vw / 12.8);
  margin-left: calc(120vw / 12.8);
}
@media (max-width: 980px) {
  .contact__item-2 .contact__item-text {
    margin-top: calc(-45vw / 9.8);
    margin-left: calc(40vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-2 .contact__item-text {
    margin-top: calc(-70vw / 3.9);
    margin-left: calc(135vw / 3.9);
  }
}
.contact__item-2 .contact__item-text:before {
  -webkit-transform: rotate(180deg) translateY(100%);
          transform: rotate(180deg) translateY(100%);
  left: 15%;
  top: 0;
}
@media (max-width: 600px) {
  .contact__item-2 .contact__item-text:before {
    left: 7%;
  }
}
.contact__item-2 span {
  color: #0C7BC7;
}
.contact__item-3 {
  top: calc(62vw / 12.8);
  right: calc(93vw / 12.8);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 980px) {
  .contact__item-3 {
    top: calc(62vw / 9.8);
    right: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-3 {
    top: auto;
    right: auto;
    position: relative;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: calc(15vw / 3.9);
    margin-left: auto;
    margin-right: calc(10vw / 3.9);
  }
}
.contact__item-3 .contact__item-img {
  width: calc(188vw / 12.8);
  height: calc(141vw / 12.8);
  margin-top: calc(-10vw / 12.8);
  margin-left: auto;
}
@media (max-width: 980px) {
  .contact__item-3 .contact__item-img {
    width: calc(188vw / 9.8);
    height: calc(141vw / 9.8);
    margin-top: calc(-10vw / 9.8);
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .contact__item-3 .contact__item-img {
    width: calc(188vw / 3.9);
    height: calc(141vw / 3.9);
    margin-top: calc(-20vw / 3.9);
    margin-left: auto;
  }
}
.contact__item-3 .contact__item-text {
  margin-right: calc(43vw / 12.8);
}
@media (max-width: 980px) {
  .contact__item-3 .contact__item-text {
    margin-right: calc(43vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-3 .contact__item-text {
    margin-right: calc(73vw / 3.9);
  }
}
.contact__item-3 .contact__item-text:before {
  -webkit-transform: rotate(0) translateY(100%);
          transform: rotate(0) translateY(100%);
  right: 35%;
  bottom: 0;
}
@media (max-width: 600px) {
  .contact__item-3 .contact__item-text:before {
    right: 30%;
  }
}
.contact__item-3 span {
  color: #FF3F3F;
}
.contact__item-4 {
  left: calc(54vw / 12.8);
  bottom: calc(111vw / 12.8);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 980px) {
  .contact__item-4 {
    left: calc(15vw / 9.8);
    bottom: calc(30vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-4 {
    top: auto;
    left: auto;
    position: relative;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: calc(45vw / 3.9);
    margin-left: auto;
    margin-right: calc(10vw / 3.9);
  }
}
.contact__item-4 .contact__item-img {
  width: calc(184vw / 12.8);
  height: calc(138vw / 12.8);
  margin-left: auto;
  margin-top: calc(-30vw / 12.8);
}
@media (max-width: 980px) {
  .contact__item-4 .contact__item-img {
    width: calc(184vw / 9.8);
    height: calc(138vw / 9.8);
    margin-top: calc(-30vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-4 .contact__item-img {
    width: calc(184vw / 3.9);
    height: calc(138vw / 3.9);
    margin-top: calc(-20vw / 3.9);
  }
}
.contact__item-4 .contact__item-text {
  margin-right: calc(18vw / 12.8);
}
@media (max-width: 980px) {
  .contact__item-4 .contact__item-text {
    margin-right: calc(18vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-4 .contact__item-text {
    margin-right: calc(40vw / 3.9);
  }
}
.contact__item-4 .contact__item-text:before {
  -webkit-transform: rotate(0) translateY(100%);
          transform: rotate(0) translateY(100%);
  right: 37%;
  bottom: 0;
}
.contact__item-4 span {
  color: #FF3F3F;
}
.contact__item-5 {
  bottom: calc(131vw / 12.8);
  right: calc(35vw / 12.8);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 980px) {
  .contact__item-5 {
    bottom: calc(30vw / 9.8);
    right: calc(15vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-5 {
    top: auto;
    right: auto;
    position: relative;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: calc(-45vw / 3.9);
    margin-right: auto;
    margin-left: calc(25vw / 3.9);
  }
}
.contact__item-5 .contact__item-img {
  width: calc(182vw / 12.8);
  height: calc(136vw / 12.8);
  margin-right: auto;
}
@media (max-width: 980px) {
  .contact__item-5 .contact__item-img {
    width: calc(182vw / 9.8);
    height: calc(136vw / 9.8);
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .contact__item-5 .contact__item-img {
    width: calc(182vw / 3.9);
    height: calc(136vw / 3.9);
    margin-left: unset;
  }
}
.contact__item-5 .contact__item-text {
  margin-left: calc(20vw / 12.8);
  margin-top: calc(-20vw / 12.8);
}
@media (max-width: 980px) {
  .contact__item-5 .contact__item-text {
    margin-top: calc(-20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__item-5 .contact__item-text {
    margin-top: calc(-20vw / 3.9);
    margin-left: calc(90vw / 3.9);
  }
}
.contact__item-5 .contact__item-text:before {
  -webkit-transform: rotate(180deg) translateY(100%);
          transform: rotate(180deg) translateY(100%);
  left: 17%;
  top: 0;
}
.contact__item-5 span {
  color: #EA9800;
}
.contact__item-img {
  width: 100%;
}
.contact__message {
  position: absolute;
  bottom: calc(229vw / 12.8);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: calc(48vw / 12.8);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  text-stroke: 14px #0C7BC7;
  -webkit-text-stroke: 14px #0C7BC7;
  -moz-text-stroke: 14px #0C7BC7;
  -ms-text-stroke: 14px #0C7BC7;
  -o-text-stroke: 14px #0C7BC7;
}
@media (max-width: 980px) {
  .contact__message {
    bottom: calc(260vw / 9.8);
    font-size: calc(49vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__message {
    font-size: calc(34vw / 3.9);
    position: relative;
    bottom: auto;
    margin-top: calc(20vw / 3.9);
    left: auto;
    right: auto;
    -webkit-transform: none;
            transform: none;
    line-height: 1.3;
    text-stroke: 9px #0C7BC7;
    -webkit-text-stroke: 9px #0C7BC7;
    -moz-text-stroke: 9px #0C7BC7;
    -ms-text-stroke: 9px #0C7BC7;
    -o-text-stroke: 9px #0C7BC7;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
.contact__message::before {
  content: "ぜひお気軽に\aお問い合わせください";
  white-space: pre-line;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-stroke: 0 #0C7BC7;
  -webkit-text-stroke: 0 #0C7BC7;
  -moz-text-stroke: 0 #0C7BC7;
  -ms-text-stroke: 0 #0C7BC7;
  -o-text-stroke: 0 #0C7BC7;
}
.contact__form-button {
  position: absolute;
  bottom: calc(107vw / 12.8);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: calc(27vw / 12.8);
  font-weight: 900;
  color: #fff;
  border-radius: 999px;
  background-color: #0C7BC7;
  padding: calc(30vw / 12.8) calc(90vw / 12.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 4px 4px 0 #fff;
          box-shadow: 4px 4px 0 #fff;
}
@media (max-width: 980px) {
  .contact__form-button {
    bottom: calc(147vw / 9.8);
    left: 50%;
    font-size: calc(27vw / 9.8);
    padding: calc(30vw / 9.8) calc(30vw / 9.8);
  }
}
@media (max-width: 600px) {
  .contact__form-button {
    font-size: calc(21vw / 3.9);
    padding: calc(30vw / 3.9) calc(20vw / 3.9);
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
    -webkit-transform: none;
            transform: none;
    margin-top: calc(10vw / 3.9);
  }
}
.contact__form-button::before {
  content: "";
  display: block;
  background-image: url(../img/mail.svg);
  width: calc(30vw / 12.8);
  height: calc(30vw / 12.8);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: calc(10vw / 12.8);
}
@media (max-width: 600px) {
  .contact__form-button::before {
    width: calc(30vw / 3.9);
    height: calc(30vw / 3.9);
    margin-right: calc(10vw / 3.9);
  }
}
.contact__form-button:after {
  content: "";
  display: block;
  width: calc(10vw / 12.8);
  height: calc(10vw / 12.8);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: calc(10vw / 12.8);
}
@media (max-width: 600px) {
  .contact__form-button:after {
    width: calc(10vw / 3.9);
    height: calc(10vw / 3.9);
    margin-left: calc(10vw / 3.9);
  }
}

.news__title {
  width: calc(1040vw / 12.8);
  margin: auto;
  position: relative;
}
@media (max-width: 980px) {
  .news__title {
    width: calc(800vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news__title {
    width: calc(370vw / 3.9);
  }
}
.news__title:before, .news__title:after {
  content: "";
  position: absolute;
  width: calc(280vw / 12.8);
  height: calc(2vw / 12.8);
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 0 10px #fff;
          box-shadow: 0 0 10px #fff;
}
@media (max-width: 980px) {
  .news__title:before, .news__title:after {
    width: calc(210vw / 9.8);
    height: calc(2vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news__title:before, .news__title:after {
    width: calc(50vw / 3.9);
    height: calc(2vw / 3.9);
  }
}
.news__title:before {
  left: 0;
}
.news__title:after {
  right: 0;
}
.news__title h2 {
  width: calc(193vw / 12.8);
  height: auto;
  margin: auto;
}
@media (max-width: 980px) {
  .news__title h2 {
    width: calc(242vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news__title h2 {
    width: calc(161vw / 3.9);
  }
}
.news__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: calc(30vw / 12.8);
}
@media (max-width: 980px) {
  .news__more {
    margin-top: calc(50vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news__more {
    margin-top: calc(20vw / 3.9);
  }
}
.news__more-link {
  font-size: calc(19vw / 12.8);
  font-weight: 600;
  color: #003A57;
  border-radius: 999px;
  background-color: #FFEA00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(340vw / 12.8);
  height: calc(60vw / 12.8);
  position: relative;
}
@media (max-width: 980px) {
  .news__more-link {
    width: calc(320vw / 9.8);
    height: calc(56vw / 9.8);
    font-size: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news__more-link {
    width: calc(320vw / 3.9);
    height: calc(56vw / 3.9);
    font-size: calc(18vw / 3.9);
  }
}
.news__more-link:after {
  position: absolute;
  content: "";
  display: block;
  width: calc(8vw / 12.8);
  height: calc(8vw / 12.8);
  border-top: 2px solid #003A57;
  border-right: 2px solid #003A57;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: calc(40vw / 12.8);
}
@media (max-width: 980px) {
  .news__more-link:after {
    width: calc(8vw / 9.8);
    height: calc(8vw / 9.8);
    right: calc(30vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news__more-link:after {
    width: calc(8vw / 3.9);
    height: calc(8vw / 3.9);
    right: calc(20vw / 3.9);
  }
}
.news.news-archive {
  min-height: unset;
  padding-top: calc(0vw / 12.8);
}
@media (max-width: 980px) {
  .news.news-archive {
    padding-top: calc(0vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news.news-archive {
    padding-top: calc(0vw / 3.9);
  }
}

.voice {
  background-image: url(../img/voice-bg.webp);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: calc(60vw / 12.8);
}
@media (max-width: 980px) {
  .voice {
    padding-bottom: calc(60vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice {
    background-image: url(../img/voice-bg-sp.webp);
  }
}
.voice__title-wrap {
  width: calc(1040vw / 12.8);
  margin: auto;
  position: relative;
}
@media (max-width: 980px) {
  .voice__title-wrap {
    width: calc(800vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice__title-wrap {
    width: calc(370vw / 3.9);
  }
}
.voice__title-wrap:before, .voice__title-wrap:after {
  content: "";
  position: absolute;
  width: calc(280vw / 12.8);
  height: calc(2vw / 12.8);
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.voice__title-wrap:before {
  left: 0;
}
.voice__title-wrap:after {
  right: 0;
}
.voice__title-wrap h2 {
  width: calc(244vw / 12.8);
  height: auto;
  margin: auto;
}
@media (max-width: 980px) {
  .voice__title-wrap h2 {
    width: calc(244vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice__title-wrap h2 {
    width: calc(204vw / 3.9);
  }
}
.voice__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-contact {
  padding-top: calc(80vw / 12.8);
  min-height: 100vh;
}
@media (max-width: 980px) {
  .page-contact {
    padding-top: calc(80vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact {
    padding-top: calc(60vw / 3.9);
  }
}
.page-contact__section {
  background-color: #0C7BC7;
  width: calc(1020vw / 12.8);
  padding-top: calc(80vw / 12.8);
  margin: auto;
}
@media (max-width: 980px) {
  .page-contact__section {
    padding-top: calc(80vw / 9.8);
    width: calc(910vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__section {
    padding-top: calc(40vw / 3.9);
    width: calc(370vw / 3.9);
  }
}
.page-contact__title {
  width: calc(1020vw / 12.8);
  position: relative;
}
@media (max-width: 980px) {
  .page-contact__title {
    width: calc(910vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__title {
    width: calc(360vw / 3.9);
    margin: auto;
  }
}
.page-contact__title:before, .page-contact__title:after {
  content: "";
  position: absolute;
  width: calc(280vw / 12.8);
  height: calc(2vw / 12.8);
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 0 10px #fff;
          box-shadow: 0 0 10px #fff;
}
@media (max-width: 980px) {
  .page-contact__title:before, .page-contact__title:after {
    width: calc(280vw / 9.8);
    height: calc(2vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__title:before, .page-contact__title:after {
    width: calc(50vw / 3.9);
    height: calc(2vw / 3.9);
  }
}
.page-contact__title:before {
  left: 0;
}
.page-contact__title:after {
  right: 0;
}
.page-contact__title h2 {
  width: calc(293vw / 12.8);
  height: auto;
  margin: auto;
}
@media (max-width: 980px) {
  .page-contact__title h2 {
    width: calc(242vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__title h2 {
    width: calc(202vw / 3.9);
  }
}
.page-contact__inner {
  margin: auto;
}
.page-contact__intro {
  font-size: calc(18vw / 12.8);
  line-height: 2;
  font-weight: 600;
  margin-top: calc(40vw / 12.8);
  color: #fff;
  text-align: center;
}
@media (max-width: 980px) {
  .page-contact__intro {
    margin-top: calc(40vw / 9.8);
    font-size: calc(18vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__intro {
    margin-top: calc(40vw / 3.9);
    font-size: calc(15vw / 3.9);
  }
}
.page-contact__form-wrapper {
  margin: auto;
  margin-top: calc(60vw / 12.8);
  padding-bottom: calc(100vw / 12.8);
  width: calc(760vw / 12.8);
}
@media (max-width: 980px) {
  .page-contact__form-wrapper {
    margin-top: calc(40vw / 9.8);
    width: calc(560vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper {
    margin-top: calc(40vw / 3.9);
    width: calc(340vw / 3.9);
  }
}
.page-contact__form-wrapper form label {
  display: block;
  font-size: calc(18vw / 12.8);
  font-weight: 600;
  margin-bottom: calc(10vw / 12.8);
  color: #fff;
}
@media (max-width: 980px) {
  .page-contact__form-wrapper form label {
    font-size: calc(18vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper form label {
    font-size: calc(15vw / 3.9);
  }
}
.page-contact__form-wrapper form label:before {
  content: "";
  display: inline-block;
  color: #fff;
  margin-right: calc(10vw / 12.8);
  font-size: calc(18vw / 12.8);
  font-weight: 600;
}
@media (max-width: 980px) {
  .page-contact__form-wrapper form label:before {
    font-size: calc(18vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper form label:before {
    font-size: calc(15vw / 3.9);
  }
}
.page-contact__form-wrapper form label:nth-of-type(1):before {
  content: "01";
}
.page-contact__form-wrapper form label:nth-of-type(2):before {
  content: "02";
}
.page-contact__form-wrapper form label:nth-of-type(3):before {
  content: "03";
}
.page-contact__form-wrapper form label:nth-of-type(4):before {
  content: "04";
}
.page-contact__form-wrapper form label:nth-of-type(5):before {
  content: "05";
}
.page-contact__form-wrapper form label .required {
  color: #EA9800;
  font-size: calc(14vw / 12.8);
  font-weight: 600;
  margin-left: calc(5vw / 12.8);
}
@media (max-width: 980px) {
  .page-contact__form-wrapper form label .required {
    font-size: calc(14vw / 9.8);
    margin-left: calc(5vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper form label .required {
    font-size: calc(12vw / 3.9);
    margin-left: calc(5vw / 3.9);
  }
}
.page-contact__form-wrapper form input {
  width: 92%;
  height: calc(46vw / 12.8);
  padding: 0 calc(10vw / 12.8);
  border: 1px solid #fff;
  border-radius: calc(5vw / 12.8);
  margin-top: calc(10vw / 12.8);
  margin-left: calc(30vw / 12.8);
  font-size: calc(16vw / 12.8);
  color: #003A57;
}
@media (max-width: 980px) {
  .page-contact__form-wrapper form input {
    margin-top: calc(5vw / 9.8);
    font-size: calc(16vw / 9.8);
    height: calc(46vw / 9.8);
    padding: 0 calc(10vw / 9.8);
    border-radius: calc(5vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper form input {
    margin-top: calc(5vw / 3.9);
    font-size: calc(14vw / 3.9);
    height: calc(40vw / 3.9);
    padding: 0 calc(10vw / 3.9);
    border-radius: calc(5vw / 3.9);
  }
}
.page-contact__form-wrapper form input.w50 {
  width: 50%;
}
.page-contact__form-wrapper form textarea {
  width: 92%;
  height: calc(130vw / 12.8);
  padding: calc(10vw / 12.8);
  border: 1px solid #fff;
  border-radius: calc(5vw / 12.8);
  font-size: calc(16vw / 12.8);
  color: #003A57;
  margin-top: calc(10vw / 12.8);
  margin-left: calc(30vw / 12.8);
}
@media (max-width: 980px) {
  .page-contact__form-wrapper form textarea {
    font-size: calc(16vw / 9.8);
    height: calc(100vw / 9.8);
    padding: calc(10vw / 9.8);
    border-radius: calc(5vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper form textarea {
    font-size: calc(14vw / 3.9);
    height: calc(100vw / 3.9);
    padding: calc(10vw / 3.9);
    border-radius: calc(5vw / 3.9);
  }
}
.page-contact__form-wrapper form button {
  width: calc(260vw / 12.8);
  height: calc(57vw / 12.8);
  border-radius: 999px;
  font-size: calc(17vw / 12.8);
  font-weight: 900;
  display: block;
  margin: auto;
  margin-top: calc(30vw / 12.8);
  color: #fff;
  background-color: #EA9800;
  cursor: pointer;
}
@media (max-width: 980px) {
  .page-contact__form-wrapper form button {
    height: calc(57vw / 9.8);
    font-size: calc(17vw / 9.8);
    width: calc(260vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper form button {
    font-size: calc(15vw / 3.9);
    height: calc(57vw / 3.9);
    width: calc(260vw / 3.9);
    border-radius: 999px;
  }
}
.page-contact__form-wrapper .wpcf7-not-valid-tip {
  color: #EA9800;
  font-size: calc(14vw / 12.8);
  font-weight: 500;
  margin-left: calc(30vw / 12.8);
}
@media (max-width: 980px) {
  .page-contact__form-wrapper .wpcf7-not-valid-tip {
    font-size: calc(14vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper .wpcf7-not-valid-tip {
    font-size: calc(12vw / 3.9);
  }
}
.page-contact__form-wrapper--confirm form input:-moz-read-only {
  border: none;
  background-color: rgba(255, 255, 255, 0);
  font-size: calc(17vw / 12.8);
  font-weight: 900;
  color: #fff;
  padding: 0;
  cursor: default;
  outline: none;
  pointer-events: none;
  margin-left: calc(40vw / 12.8);
  border-bottom: 1px solid #fff;
  border-radius: 0;
}
.page-contact__form-wrapper--confirm form input:read-only {
  border: none;
  background-color: rgba(255, 255, 255, 0);
  font-size: calc(17vw / 12.8);
  font-weight: 900;
  color: #fff;
  padding: 0;
  cursor: default;
  outline: none;
  pointer-events: none;
  margin-left: calc(40vw / 12.8);
  border-bottom: 1px solid #fff;
  border-radius: 0;
}
@media (max-width: 980px) {
  .page-contact__form-wrapper--confirm form input:-moz-read-only {
    font-size: calc(16vw / 9.8);
  }
  .page-contact__form-wrapper--confirm form input:read-only {
    font-size: calc(16vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper--confirm form input:-moz-read-only {
    font-size: calc(14vw / 3.9);
  }
  .page-contact__form-wrapper--confirm form input:read-only {
    font-size: calc(14vw / 3.9);
  }
}
.page-contact__form-wrapper--confirm form textarea:-moz-read-only {
  border: none;
  background-color: rgba(255, 255, 255, 0);
  font-size: calc(17vw / 12.8);
  font-weight: 900;
  color: #fff;
  padding: 0;
  cursor: default;
  outline: none;
  pointer-events: none;
  line-height: 1.5;
  resize: none;
  margin-left: calc(40vw / 12.8);
  border-radius: 0;
  border-bottom: 1px solid #fff;
}
.page-contact__form-wrapper--confirm form textarea:read-only {
  border: none;
  background-color: rgba(255, 255, 255, 0);
  font-size: calc(17vw / 12.8);
  font-weight: 900;
  color: #fff;
  padding: 0;
  cursor: default;
  outline: none;
  pointer-events: none;
  line-height: 1.5;
  resize: none;
  margin-left: calc(40vw / 12.8);
  border-radius: 0;
  border-bottom: 1px solid #fff;
}
@media (max-width: 980px) {
  .page-contact__form-wrapper--confirm form textarea:-moz-read-only {
    font-size: calc(16vw / 9.8);
  }
  .page-contact__form-wrapper--confirm form textarea:read-only {
    font-size: calc(16vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper--confirm form textarea:-moz-read-only {
    font-size: calc(14vw / 3.9);
  }
  .page-contact__form-wrapper--confirm form textarea:read-only {
    font-size: calc(14vw / 3.9);
  }
}
.page-contact__form-wrapper--confirm form button {
  margin-top: calc(30vw / 12.8);
}
@media (max-width: 980px) {
  .page-contact__form-wrapper--confirm form button {
    margin-top: calc(30vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper--confirm form button {
    margin-top: calc(30vw / 3.9);
  }
}
.page-contact__form-wrapper--confirm form button input:-moz-read-only {
  margin-top: 0;
  margin-left: 0;
  pointer-events: auto;
  cursor: pointer;
  border: none;
  font-size: calc(17vw / 12.8);
  font-weight: 900;
}
.page-contact__form-wrapper--confirm form button input:read-only {
  margin-top: 0;
  margin-left: 0;
  pointer-events: auto;
  cursor: pointer;
  border: none;
  font-size: calc(17vw / 12.8);
  font-weight: 900;
}
@media (max-width: 980px) {
  .page-contact__form-wrapper--confirm form button input:-moz-read-only {
    font-size: calc(17vw / 9.8);
  }
  .page-contact__form-wrapper--confirm form button input:read-only {
    font-size: calc(17vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper--confirm form button input:-moz-read-only {
    font-size: calc(15vw / 3.9);
  }
  .page-contact__form-wrapper--confirm form button input:read-only {
    font-size: calc(15vw / 3.9);
  }
}
.page-contact__form-wrapper--confirm form button .wpcf7-spinner {
  display: none;
}
.page-contact__form-wrapper--confirm form button.previous-buttons {
  margin-top: 0;
  background-color: #003A57;
  color: #fff;
}
.page-contact__form-wrapper--confirm form button.previous-buttons input:-moz-read-only {
  font-weight: 600;
  font-size: calc(15vw / 12.8);
}
.page-contact__form-wrapper--confirm form button.previous-buttons input:read-only {
  font-weight: 600;
  font-size: calc(15vw / 12.8);
}
@media (max-width: 980px) {
  .page-contact__form-wrapper--confirm form button.previous-buttons input:-moz-read-only {
    font-size: calc(15vw / 9.8);
  }
  .page-contact__form-wrapper--confirm form button.previous-buttons input:read-only {
    font-size: calc(15vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__form-wrapper--confirm form button.previous-buttons input:-moz-read-only {
    font-size: calc(13vw / 3.9);
  }
  .page-contact__form-wrapper--confirm form button.previous-buttons input:read-only {
    font-size: calc(13vw / 3.9);
  }
}

.wpcf7-response-output {
  display: none;
}

.page-contact__title--thanks {
  margin: auto;
}
.page-contact__title--thanks:before, .page-contact__title--thanks:after {
  display: none;
}
.page-contact__title--thanks h2 {
  width: calc(698vw / 12.8);
  margin: auto;
}
@media (max-width: 980px) {
  .page-contact__title--thanks h2 {
    width: calc(500vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__title--thanks h2 {
    width: calc(360vw / 3.9);
  }
}

.page-contact__button--thanks {
  width: calc(307vw / 12.8);
  height: calc(57vw / 12.8);
  border-radius: 999px;
  font-size: calc(17vw / 12.8);
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  margin-top: calc(30vw / 12.8);
  color: #fff;
  background-color: #EA9800;
}
@media (max-width: 980px) {
  .page-contact__button--thanks {
    width: calc(307vw / 9.8);
    height: calc(57vw / 9.8);
    font-size: calc(17vw / 9.8);
  }
}
@media (max-width: 600px) {
  .page-contact__button--thanks {
    width: calc(260vw / 3.9);
    height: calc(47vw / 3.9);
    font-size: calc(15vw / 3.9);
  }
}

.news-archive {
  background-color: #0C7BC7;
  padding-top: calc(80vw / 12.8);
  padding-bottom: calc(80vw / 12.8);
  min-height: 100vh;
}
@media (max-width: 980px) {
  .news-archive {
    padding-top: calc(80vw / 9.8);
    padding-bottom: calc(80vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive {
    padding-top: calc(60vw / 3.9);
    padding-bottom: calc(60vw / 3.9);
  }
}
.news-archive__inner {
  width: calc(1040vw / 12.8);
  margin: auto;
  padding-top: calc(60vw / 12.8);
}
@media (max-width: 980px) {
  .news-archive__inner {
    padding-top: calc(80vw / 9.8);
    padding-bottom: calc(80vw / 9.8);
    width: calc(800vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__inner {
    padding-top: calc(60vw / 3.9);
    padding-bottom: calc(60vw / 3.9);
    width: calc(370vw / 3.9);
  }
}
.news-archive__title-wrap {
  position: relative;
  width: calc(1040vw / 12.8);
  margin: auto;
}
@media (max-width: 980px) {
  .news-archive__title-wrap {
    width: calc(800vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__title-wrap {
    width: calc(370vw / 3.9);
  }
}
.news-archive__title-wrap:before, .news-archive__title-wrap:after {
  content: "";
  position: absolute;
  width: calc(280vw / 12.8);
  height: calc(2vw / 12.8);
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 0 10px #fff;
          box-shadow: 0 0 10px #fff;
}
@media (max-width: 980px) {
  .news-archive__title-wrap:before, .news-archive__title-wrap:after {
    width: calc(210vw / 9.8);
    height: calc(2vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__title-wrap:before, .news-archive__title-wrap:after {
    width: calc(50vw / 3.9);
    height: calc(2vw / 3.9);
  }
}
.news-archive__title-wrap:before {
  left: 0;
}
.news-archive__title-wrap:after {
  right: 0;
}
.news-archive__title-wrap h1 {
  width: calc(193vw / 12.8);
  height: auto;
  margin: auto;
}
@media (max-width: 980px) {
  .news-archive__title-wrap h1 {
    width: calc(232vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__title-wrap h1 {
    width: calc(161vw / 3.9);
  }
}
.news-archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(20vw / 12.8);
  margin-top: calc(40vw / 12.8);
}
@media (max-width: 980px) {
  .news-archive__list {
    gap: calc(20vw / 9.8);
    margin-top: calc(30vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__list {
    gap: calc(10vw / 3.9);
    margin-top: calc(20vw / 3.9);
  }
}
.news-archive .news-item {
  display: block;
  width: calc(510vw / 12.8);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 980px) {
  .news-archive .news-item {
    width: calc(390vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive .news-item {
    width: calc(365vw / 3.9);
  }
}
.news-archive .news-item__link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(15vw / 12.8);
  padding: calc(15vw / 12.8);
}
@media (max-width: 980px) {
  .news-archive .news-item__link {
    padding: calc(12vw / 9.8) calc(15vw / 9.8);
    gap: calc(10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive .news-item__link {
    padding: calc(12vw / 3.9) calc(15vw / 3.9);
    gap: calc(10vw / 3.9);
  }
}
.news-archive .news-item__thumb {
  width: calc(150vw / 12.8);
  height: calc(112vw / 12.8);
}
@media (max-width: 980px) {
  .news-archive .news-item__thumb {
    width: calc(130vw / 9.8);
    height: calc(96vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive .news-item__thumb {
    width: calc(103vw / 3.9);
    height: calc(76vw / 3.9);
  }
}
.news-archive .news-item__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-archive .news-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(13vw / 12.8);
  width: calc(314vw / 12.8);
}
@media (max-width: 980px) {
  .news-archive .news-item__body {
    width: calc(221vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive .news-item__body {
    width: calc(221vw / 3.9);
  }
}
.news-archive .news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(10vw / 12.8);
}
@media (max-width: 980px) {
  .news-archive .news-item__meta {
    gap: calc(10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive .news-item__meta {
    gap: calc(10vw / 3.9);
  }
}
.news-archive .news-item__date {
  font-size: calc(15vw / 12.8);
  color: #003A57;
  font-weight: 500;
}
@media (max-width: 980px) {
  .news-archive .news-item__date {
    font-size: calc(14vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive .news-item__date {
    font-size: calc(13vw / 3.9);
  }
}
.news-archive .news-item__cate {
  font-size: calc(15vw / 12.8);
  color: #fff;
  background-color: #EA9800;
  padding: calc(5vw / 12.8) calc(10vw / 12.8);
  border-radius: 3px;
}
@media (max-width: 980px) {
  .news-archive .news-item__cate {
    font-size: calc(14vw / 9.8);
    padding: calc(5vw / 9.8) calc(10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive .news-item__cate {
    font-size: calc(13vw / 3.9);
    padding: calc(5vw / 3.9) calc(10vw / 3.9);
  }
}
.news-archive .news-item__cate--event {
  background-color: #FF3636;
}
.news-archive .news-item__title {
  font-size: calc(17vw / 12.8);
  font-weight: 600;
  color: #003A57;
  line-height: 1.4;
  height: calc(74vw / 12.8);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 980px) {
  .news-archive .news-item__title {
    font-size: calc(14vw / 9.8);
    height: calc(62vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive .news-item__title {
    font-size: calc(14vw / 3.9);
    height: calc(43vw / 3.9);
    -webkit-line-clamp: 2;
  }
}
.news-archive__pagination {
  margin-top: calc(80vw / 12.8);
}
@media (max-width: 980px) {
  .news-archive__pagination {
    margin-top: calc(80vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__pagination {
    margin-top: calc(60vw / 3.9);
  }
}
.news-archive__pagination .nav-links {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(5vw / 3.9);
}
@media (max-width: 980px) {
  .news-archive__pagination .nav-links {
    gap: calc(7vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__pagination .nav-links {
    gap: calc(7vw / 3.9);
  }
}
.news-archive__pagination .page-numbers {
  font-size: calc(17vw / 12.8);
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  background-color: rgba(255, 255, 255, 0);
  height: unset;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  padding: 0;
}
@media (max-width: 980px) {
  .news-archive__pagination .page-numbers {
    font-size: calc(17vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__pagination .page-numbers {
    font-size: calc(17vw / 3.9);
  }
}
.news-archive__pagination .page-numbers.current {
  color: #EA9800;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0);
  height: unset;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
}
.news-archive__pagination .page-numbers.dots {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.news-archive__pagination .next.page-numbers {
  display: block;
  width: calc(34vw / 12.8);
  height: calc(34vw / 12.8);
  background-color: #EA9800;
  border-radius: 50%;
  position: relative;
  margin-left: calc(5vw / 12.8);
}
@media (max-width: 980px) {
  .news-archive__pagination .next.page-numbers {
    width: calc(34vw / 9.8);
    height: calc(34vw / 9.8);
    margin-left: calc(10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__pagination .next.page-numbers {
    width: calc(34vw / 3.9);
    height: calc(34vw / 3.9);
    margin-left: calc(5vw / 3.9);
  }
}
.news-archive__pagination .next.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(10vw / 12.8);
  height: calc(10vw / 12.8);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 980px) {
  .news-archive__pagination .next.page-numbers::before {
    width: calc(8vw / 9.8);
    height: calc(8vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__pagination .next.page-numbers::before {
    width: calc(8vw / 3.9);
    height: calc(8vw / 3.9);
  }
}
.news-archive__pagination .prev.page-numbers {
  display: block;
  width: calc(34vw / 12.8);
  height: calc(34vw / 12.8);
  background-color: #EA9800;
  border-radius: 50%;
  position: relative;
  margin-right: calc(5vw / 12.8);
}
@media (max-width: 980px) {
  .news-archive__pagination .prev.page-numbers {
    width: calc(34vw / 9.8);
    height: calc(34vw / 9.8);
    margin-right: calc(10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__pagination .prev.page-numbers {
    width: calc(34vw / 3.9);
    height: calc(34vw / 3.9);
    margin-right: calc(5vw / 3.9);
  }
}
.news-archive__pagination .prev.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(10vw / 12.8);
  height: calc(10vw / 12.8);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 980px) {
  .news-archive__pagination .prev.page-numbers::before {
    width: calc(8vw / 9.8);
    height: calc(8vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-archive__pagination .prev.page-numbers::before {
    width: calc(8vw / 3.9);
    height: calc(8vw / 3.9);
    left: 53%;
  }
}

.news-single {
  background-color: #0C7BC7;
  padding-top: calc(80vw / 12.8);
  min-height: 100vh;
}
@media (max-width: 980px) {
  .news-single {
    padding-top: calc(80vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single {
    padding-top: calc(60vw / 3.9);
  }
}
.news-single__inner {
  width: calc(1040vw / 12.8);
  margin: auto;
  padding-top: calc(60vw / 12.8);
}
@media (max-width: 980px) {
  .news-single__inner {
    padding-top: calc(80vw / 9.8);
    padding-bottom: calc(80vw / 9.8);
    width: calc(800vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__inner {
    padding-top: calc(50vw / 3.9);
    width: calc(370vw / 3.9);
  }
}
.news-single__title-wrap {
  position: relative;
  width: calc(1040vw / 12.8);
  margin: auto;
}
@media (max-width: 980px) {
  .news-single__title-wrap {
    width: calc(800vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__title-wrap {
    width: calc(370vw / 3.9);
  }
}
.news-single__title-wrap:before, .news-single__title-wrap:after {
  content: "";
  position: absolute;
  width: calc(280vw / 12.8);
  height: calc(2vw / 12.8);
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 0 10px #fff;
          box-shadow: 0 0 10px #fff;
}
@media (max-width: 980px) {
  .news-single__title-wrap:before, .news-single__title-wrap:after {
    width: calc(210vw / 9.8);
    height: calc(2vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__title-wrap:before, .news-single__title-wrap:after {
    width: calc(50vw / 3.9);
    height: calc(2vw / 3.9);
  }
}
.news-single__title-wrap:before {
  left: 0;
}
.news-single__title-wrap:after {
  right: 0;
}
.news-single__title {
  width: calc(193vw / 12.8);
  height: auto;
  margin: auto;
}
@media (max-width: 980px) {
  .news-single__title {
    width: calc(242vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__title {
    width: calc(161vw / 3.9);
  }
}
.news-single__article {
  margin-top: calc(40vw / 12.8);
}
@media (max-width: 980px) {
  .news-single__article {
    margin-top: calc(30vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__article {
    margin-top: calc(20vw / 3.9);
  }
}
.news-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(15vw / 12.8);
}
@media (max-width: 980px) {
  .news-single__header {
    gap: calc(15vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__header {
    gap: calc(15vw / 3.9);
    width: calc(350vw / 3.9);
    margin: auto;
  }
}
.news-single__date {
  font-size: calc(18vw / 12.8);
  color: #fff;
  font-weight: 500;
}
@media (max-width: 980px) {
  .news-single__date {
    font-size: calc(18vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__date {
    font-size: calc(16vw / 3.9);
  }
}
.news-single__article-title {
  font-size: calc(24vw / 12.8);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 980px) {
  .news-single__article-title {
    font-size: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__article-title {
    font-size: calc(19vw / 3.9);
  }
}
.news-single__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: calc(100vw / 12.8);
  gap: calc(44vw / 12.8);
}
@media (max-width: 980px) {
  .news-single__content-wrap {
    padding-bottom: calc(100vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__content-wrap {
    padding-bottom: calc(80vw / 3.9);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(20vw / 3.9);
  }
}
.news-single__content {
  margin-top: calc(30vw / 12.8);
}
@media (max-width: 980px) {
  .news-single__content {
    margin-top: calc(30vw / 9.8);
    width: calc(620vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__content {
    margin: auto;
    margin-top: calc(20vw / 3.9);
    width: calc(350vw / 3.9);
  }
}
.news-single__text {
  font-size: calc(18vw / 12.8);
  line-height: 2;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 980px) {
  .news-single__text {
    font-size: calc(18vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__text {
    font-size: calc(15vw / 3.9);
  }
}
.news-single__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(25vw / 12.8);
}
@media (max-width: 980px) {
  .news-single__images {
    gap: calc(25vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__images {
    gap: calc(25vw / 3.9);
  }
}
.news-single__image {
  width: calc(352vw / 12.8);
  height: auto;
}
@media (max-width: 980px) {
  .news-single__image {
    width: calc(365vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__image {
    width: calc(365vw / 3.9);
  }
}
.news-single__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-single__hr {
  width: 100%;
  height: 2px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px #fff;
          box-shadow: 0 0 10px #fff;
}
.news-single__back {
  margin-top: calc(50vw / 12.8);
}
@media (max-width: 980px) {
  .news-single__back {
    margin-top: calc(50vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__back {
    margin-top: calc(40vw / 3.9);
  }
}
.news-single__back-link {
  font-size: calc(17vw / 12.8);
  background-color: #003A57;
  color: #fff;
  font-weight: 600;
  padding: calc(20vw / 12.8) calc(60vw / 12.8) calc(20vw / 12.8) calc(80vw / 12.8);
  border-radius: 999px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
  margin-bottom: calc(80vw / 12.8);
}
@media (max-width: 980px) {
  .news-single__back-link {
    font-size: calc(17vw / 9.8);
    padding: calc(20vw / 9.8) calc(60vw / 9.8) calc(20vw / 9.8) calc(80vw / 9.8);
    margin-bottom: calc(80vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__back-link {
    font-size: calc(16vw / 3.9);
    padding: calc(20vw / 3.9) calc(60vw / 3.9) calc(20vw / 3.9) calc(80vw / 3.9);
    margin-bottom: calc(80vw / 3.9);
  }
}
.news-single__back-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(36vw / 12.8);
  width: calc(10vw / 12.8);
  height: calc(10vw / 12.8);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media (max-width: 980px) {
  .news-single__back-link::before {
    width: calc(10vw / 9.8);
    height: calc(10vw / 9.8);
    left: calc(30vw / 9.8);
  }
}
@media (max-width: 600px) {
  .news-single__back-link::before {
    width: calc(10vw / 3.9);
    height: calc(10vw / 3.9);
    left: calc(30vw / 3.9);
  }
}

.voice-archive {
  background-color: #0C7BC7;
  padding-top: calc(80vw / 12.8);
  padding-bottom: calc(80vw / 12.8);
  min-height: 100vh;
}
@media (max-width: 980px) {
  .voice-archive {
    padding-top: calc(80vw / 9.8);
    padding-bottom: calc(80vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive {
    padding-top: calc(60vw / 3.9);
    padding-bottom: calc(60vw / 3.9);
  }
}
.voice-archive__inner {
  width: calc(1040vw / 12.8);
  margin: auto;
  padding-top: calc(60vw / 12.8);
}
@media (max-width: 980px) {
  .voice-archive__inner {
    padding-top: calc(80vw / 9.8);
    padding-bottom: calc(80vw / 9.8);
    width: calc(800vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive__inner {
    padding-top: calc(60vw / 3.9);
    padding-bottom: calc(60vw / 3.9);
    width: calc(370vw / 3.9);
  }
}
.voice-archive__title-wrap {
  width: calc(1040vw / 12.8);
  margin: auto;
  position: relative;
}
@media (max-width: 980px) {
  .voice-archive__title-wrap {
    width: calc(800vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive__title-wrap {
    width: calc(370vw / 3.9);
  }
}
.voice-archive__title-wrap:before, .voice-archive__title-wrap:after {
  content: "";
  position: absolute;
  width: calc(280vw / 12.8);
  height: calc(2vw / 12.8);
  background-color: #fff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 0 10px #fff;
          box-shadow: 0 0 10px #fff;
}
@media (max-width: 980px) {
  .voice-archive__title-wrap:before, .voice-archive__title-wrap:after {
    width: calc(210vw / 9.8);
    height: calc(2vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive__title-wrap:before, .voice-archive__title-wrap:after {
    width: calc(50vw / 3.9);
    height: calc(2vw / 3.9);
  }
}
.voice-archive__title-wrap:before {
  left: 0;
}
.voice-archive__title-wrap:after {
  right: 0;
}
.voice-archive__title {
  width: calc(193vw / 12.8);
  height: auto;
  margin: auto;
}
@media (max-width: 980px) {
  .voice-archive__title {
    width: calc(242vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive__title {
    width: calc(204vw / 3.9);
  }
}
.voice-archive__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(20vw / 12.8);
  margin-top: calc(35vw / 12.8);
}
@media (max-width: 980px) {
  .voice-archive__list {
    gap: calc(20vw / 9.8);
    margin-top: calc(35vw / 9.8);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 600px) {
  .voice-archive__list {
    gap: calc(20vw / 3.9);
    margin-top: calc(20vw / 3.9);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.voice-archive__item {
  background-color: #fff;
  border-radius: 10px;
  padding: calc(20vw / 12.8);
  width: calc(333vw / 12.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(15vw / 12.8);
}
@media (max-width: 980px) {
  .voice-archive__item {
    padding: calc(20vw / 9.8);
    width: calc(333vw / 9.8);
    gap: calc(15vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive__item {
    padding: calc(20vw / 3.9);
    width: calc(333vw / 3.9);
    gap: calc(15vw / 3.9);
  }
}
.voice-archive__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(13vw / 12.8);
  width: 100%;
}
@media (max-width: 980px) {
  .voice-archive__header {
    gap: calc(13vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive__header {
    gap: calc(13vw / 3.9);
  }
}
.voice-archive__img {
  width: calc(181vw / 12.8);
  height: calc(161vw / 12.8);
}
@media (max-width: 980px) {
  .voice-archive__img {
    width: calc(181vw / 9.8);
    height: calc(161vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive__img {
    width: calc(181vw / 3.9);
    height: calc(161vw / 3.9);
  }
}
.voice-archive__img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice-archive__empty {
  text-align: center;
  color: #fff;
  font-size: calc(18vw / 12.8);
  padding: calc(60vw / 12.8);
}
@media (max-width: 980px) {
  .voice-archive__empty {
    font-size: calc(16vw / 9.8);
    padding: calc(60vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive__empty {
    font-size: calc(16vw / 3.9);
    padding: calc(40vw / 3.9);
  }
}
.voice-archive .voice-title {
  font-size: calc(17vw / 12.8);
  font-weight: 600;
  line-height: 1.4;
  color: #003A57;
  width: 100%;
}
@media (max-width: 980px) {
  .voice-archive .voice-title {
    font-size: calc(16vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive .voice-title {
    font-size: calc(16vw / 3.9);
  }
}
.voice-archive__class-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(5vw / 12.8);
}
.voice-archive .voice-class {
  font-weight: 600;
  font-size: calc(15vw / 12.8);
  line-height: 1;
  color: #fff;
  background-color: #0C7BC7;
  padding: calc(5vw / 12.8) calc(10vw / 12.8);
  border-radius: 3px;
}
@media (max-width: 980px) {
  .voice-archive .voice-class {
    font-size: calc(15vw / 9.8);
    padding: calc(5vw / 9.8) calc(10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive .voice-class {
    font-size: calc(15vw / 3.9);
    padding: calc(5vw / 3.9) calc(10vw / 3.9);
  }
}
.voice-archive .voice-class--child {
  background-color: #FF6881;
}
.voice-archive .voice-class--kids1 {
  background-color: #2BBDCD;
}
.voice-archive .voice-class--kids2 {
  background-color: #2B59CD;
}
.voice-archive .voice-class--tamachi {
  background-color: #38AF00;
}
.voice-archive .voice-class--ikebukuro {
  background-color: #7B47B3;
}
.voice-archive .voice-class--parents {
  background-color: #FF6881;
}
.voice-archive .voice-main {
  font-size: calc(15vw / 12.8);
  line-height: 1.6;
  color: #333;
}
@media (max-width: 980px) {
  .voice-archive .voice-main {
    font-size: calc(15vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice-archive .voice-main {
    font-size: calc(15vw / 3.9);
  }
}

.voice.voice-archive {
  min-height: unset;
  padding-top: calc(0vw / 12.8);
}
@media (max-width: 980px) {
  .voice.voice-archive {
    padding-top: calc(5vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice.voice-archive {
    padding-top: calc(5vw / 3.9);
    padding-bottom: calc(0vw / 3.9);
  }
}
@media (max-width: 980px) {
  .voice.voice-archive .voice-archive__inner {
    width: calc(860vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice.voice-archive .voice-archive__inner {
    width: 100%;
  }
}
@media (max-width: 980px) {
  .voice.voice-archive .voice-archive__item {
    width: calc(272vw / 9.8);
  }
}
@media (max-width: 600px) {
  .voice.voice-archive .voice__list--pc {
    display: none !important;
  }
}
.voice.voice-archive .voice__list--sp {
  display: none;
  margin-top: 0;
}
@media (max-width: 600px) {
  .voice.voice-archive .voice__list--sp {
    display: block !important;
    margin-top: calc(20vw / 3.9);
    overflow: hidden;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .voice.voice-archive .voice-swiper {
    overflow: hidden;
    padding-bottom: calc(30vw / 3.9);
  }
}
@media (max-width: 600px) {
  .voice.voice-archive .voice-swiper .swiper-slide {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 600px) {
  .voice.voice-archive .voice-swiper .swiper-slide .voice-archive__item {
    width: 100%;
    height: calc(440vw / 3.9);
    overflow: hidden;
    position: relative;
  }
  .voice.voice-archive .voice-swiper .swiper-slide .voice-archive__item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 10px;
    height: calc(50vw / 3.9);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0))) 100%;
    background: linear-gradient(to top, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0)) 100%;
  }
}
@media (max-width: 600px) {
  .voice.voice-archive .voice-swiper-pagination {
    margin-top: calc(15vw / 3.9);
    position: relative;
  }
}

.site-header {
  height: calc(76vw / 12.8);
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background: #fff;
  border-top: 6px solid #EA9800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 calc(15vw / 12.8) 0 calc(20vw / 12.8);
}
@media (max-width: 980px) {
  .site-header {
    height: calc(70vw / 9.8);
    padding: 0 0 0 calc(9vw / 9.8);
    overflow: hidden;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: calc(60vw / 3.9);
    padding: 0 0 0 calc(9vw / 3.9);
    overflow: hidden;
  }
}
.site-header .site-branding {
  width: calc(207vw / 12.8);
}
@media (max-width: 980px) {
  .site-header .site-branding {
    width: calc(207vw / 9.8);
  }
}
@media (max-width: 600px) {
  .site-header .site-branding {
    width: calc(207vw / 3.9);
  }
}
.site-header .site-title {
  width: 100%;
}
.site-header .site-title a {
  width: 100%;
  display: block;
}
.site-header .main-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(25vw / 12.8);
}
@media (max-width: 980px) {
  .site-header .main-navigation {
    display: none;
  }
}
@media (max-width: 600px) {
  .site-header .main-navigation {
    display: none;
  }
}
.site-header .main-navigation .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(25vw / 12.8);
}
.site-header .main-navigation .menu li a {
  font-size: calc(15vw / 12.8);
  font-weight: 700;
  color: #333;
  gap: calc(4vw / 12.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .main-navigation .menu li a:before {
  content: "";
  display: block;
  width: calc(12vw / 12.8);
  height: calc(12vw / 12.8);
  background-image: url("../img/nav-ico.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 980px) {
  .site-header .header__contact {
    display: none;
  }
}
@media (max-width: 600px) {
  .site-header .header__contact {
    display: none;
  }
}
.site-header .header__contact a {
  font-size: calc(15vw / 12.8);
  font-weight: 700;
  color: #fff;
  background: #EA9800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: calc(12vw / 12.8) calc(28vw / 12.8);
  border-radius: 999px;
  gap: calc(10vw / 12.8);
}
.site-header .header__contact a:hover {
  opacity: 0.8;
}
.site-header .header__contact a:before {
  content: "";
  display: block;
  width: calc(24vw / 12.8);
  height: calc(24vw / 12.8);
  background-image: url("../img/mail.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.site-header .header__sp-menu-toggle {
  display: none;
}
@media (max-width: 980px) {
  .site-header .header__sp-menu-toggle {
    display: block;
    background-color: #FFEA00;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    width: calc(65vw / 9.8);
    cursor: pointer;
    position: relative;
  }
  .site-header .header__sp-menu-toggle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    display: block;
    width: auto;
    border-left: calc(10vw / 9.8) solid transparent;
    border-bottom: calc(64vw / 9.8) solid #FFEA00;
  }
  .site-header .header__sp-menu-toggle .header__sp-menu-toggle-img {
    width: calc(30vw / 9.8);
    height: calc(30vw / 9.8);
    position: relative;
  }
  .site-header .header__sp-menu-toggle .header__sp-menu-toggle-img img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .site-header .header__sp-menu-toggle .header__sp-menu-toggle-text {
    font-size: calc(12vw / 9.8);
    font-weight: 700;
    color: #003A57;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    letter-spacing: -0.1em;
  }
}
@media (max-width: 600px) {
  .site-header .header__sp-menu-toggle {
    display: block;
    background-color: #FFEA00;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    width: calc(65vw / 3.9);
    cursor: pointer;
    position: relative;
  }
  .site-header .header__sp-menu-toggle:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    display: block;
    width: auto;
    border-left: calc(10vw / 3.9) solid transparent;
    border-bottom: calc(55vw / 3.9) solid #FFEA00;
  }
  .site-header .header__sp-menu-toggle .header__sp-menu-toggle-img {
    width: calc(30vw / 3.9);
    height: calc(30vw / 3.9);
    position: relative;
  }
  .site-header .header__sp-menu-toggle .header__sp-menu-toggle-img img {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .site-header .header__sp-menu-toggle .header__sp-menu-toggle-text {
    font-size: calc(12vw / 3.9);
    font-weight: 700;
    color: #003A57;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    letter-spacing: -0.1em;
  }
}
.site-header .header__sp-menu-toggle.is-open .header__sp-menu-toggle-img img {
  opacity: 0;
}
.site-header .header__sp-menu-toggle.is-open .header__sp-menu-toggle-img::before, .site-header .header__sp-menu-toggle.is-open .header__sp-menu-toggle-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 3px;
  background-color: #003A57;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.site-header .header__sp-menu-toggle.is-open .header__sp-menu-toggle-img::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.site-header .header__sp-menu-toggle.is-open .header__sp-menu-toggle-img::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.site-header .header__sp-menu {
  display: none;
}
@media (max-width: 980px) {
  .site-header .header__sp-menu {
    display: block;
    position: fixed;
    background-color: #FFEA00;
    top: calc(70vw / 9.8);
    right: 0;
    width: 60%;
    height: calc(100vh - 70vw / 9.8);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    z-index: 90;
    padding: calc(60vw / 9.8) calc(50vw / 9.8);
  }
  .site-header .header__sp-menu.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .site-header .header__sp-menu .header__sp-menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(30vw / 9.8);
    padding-left: calc(20vw / 9.8);
    margin-top: calc(40vw / 9.8);
  }
  .site-header .header__sp-menu .header__sp-menu-item a {
    font-size: calc(18vw / 9.8);
    font-weight: 600;
    color: #003A57;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-header .header__sp-menu .header__sp-menu-item a::before {
    content: "";
    display: block;
    width: calc(12vw / 9.8);
    height: calc(12vw / 9.8);
    background-image: url("../img/nav-ico.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: calc(6vw / 9.8);
  }
  .site-header .header__sp-menu .header__sp-menu-contact a {
    font-size: calc(20vw / 9.8);
    font-weight: 700;
    color: #fff;
    margin-top: calc(40vw / 9.8);
    display: block;
    text-align: center;
    background: #EA9800;
    padding: calc(12vw / 9.8) calc(35vw / 9.8);
    border-radius: 999px;
    gap: calc(6vw / 9.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: calc(10vw / 9.8);
  }
  .site-header .header__sp-menu .header__sp-menu-contact a:before {
    content: "";
    display: block;
    width: calc(24vw / 9.8);
    height: calc(24vw / 9.8);
    background-image: url("../img/mail.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (max-width: 600px) {
  .site-header .header__sp-menu {
    display: block;
    position: fixed;
    background-color: #FFEA00;
    top: calc(60vw / 3.9);
    right: 0;
    width: 80%;
    height: calc(100vh - 60vw / 3.9);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    z-index: 90;
    padding: calc(30vw / 3.9) calc(20vw / 3.9);
  }
  .site-header .header__sp-menu.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .site-header .header__sp-menu .header__sp-menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(30vw / 3.9);
    padding-left: calc(20vw / 3.9);
    margin-top: calc(40vw / 3.9);
  }
  .site-header .header__sp-menu .header__sp-menu-item a {
    font-size: calc(16vw / 3.9);
    font-weight: 600;
    color: #003A57;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-header .header__sp-menu .header__sp-menu-item a::before {
    content: "";
    display: block;
    width: calc(12vw / 3.9);
    height: calc(12vw / 3.9);
    background-image: url("../img/nav-ico.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: calc(6vw / 3.9);
  }
  .site-header .header__sp-menu .header__sp-menu-contact a {
    font-size: calc(17vw / 3.9);
    font-weight: 700;
    color: #fff;
    margin-top: calc(40vw / 3.9);
    display: block;
    text-align: center;
    background: #EA9800;
    padding: calc(12vw / 3.9) calc(28vw / 3.9);
    border-radius: 999px;
    gap: calc(6vw / 3.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: calc(10vw / 3.9);
  }
  .site-header .header__sp-menu .header__sp-menu-contact a:before {
    content: "";
    display: block;
    width: calc(24vw / 3.9);
    height: calc(24vw / 3.9);
    background-image: url("../img/mail.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.site-footer {
  padding: calc(10vw / 12.8) 0;
  background-color: #003A57;
}
@media (max-width: 600px) {
  .site-footer {
    padding: calc(5vw / 3.9) 0;
  }
}
.site-footer .site-info {
  font-size: calc(13vw / 12.8);
  color: #fff;
  text-align: center;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 600px) {
  .site-footer .site-info {
    font-size: calc(12vw / 3.9);
  }
}