/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color: #007aff ;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.1490196078);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s linear infinite;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  height: var(--swiper-virtual-size);
  width: 1px;
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next,
.swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  cursor: auto;
  opacity: 0;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  width: 100%;
  fill: currentColor;
  pointer-events: none;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-button-prev .swiper-navigation-icon {
  transform: rotate(180deg);
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal .swiper-button-next,
.swiper-horizontal .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal ~ .swiper-button-prev {
  margin-left: 0;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}
.swiper-horizontal.swiper-rtl .swiper-button-next, .swiper-horizontal.swiper-rtl ~ .swiper-button-next, .swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal .swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon, .swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal .swiper-button-prev .swiper-navigation-icon {
  transform: rotate(180deg);
}
.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon {
  transform: rotate(0deg);
}

.swiper-vertical .swiper-button-next,
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-next,
.swiper-vertical ~ .swiper-button-prev {
  left: var(--swiper-navigation-top-offset, 50%);
  margin-left: calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: 0;
  right: auto;
}
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-prev {
  bottom: auto;
  top: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-vertical .swiper-button-prev .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-prev .swiper-navigation-icon {
  transform: rotate(-90deg);
}
.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-next {
  bottom: var(--swiper-navigation-sides-offset, 4px);
  top: auto;
}
.swiper-vertical .swiper-button-next .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-next .swiper-navigation-icon {
  transform: rotate(90deg);
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination.swiper-pagination-disabled, .swiper-pagination-disabled > .swiper-pagination {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
}
.swiper-pagination-bullet button {
  appearance: none;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: transform 0.2s, top 0.2s;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, left 0.2s;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
  width: 100%;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > .swiper-pagination-progressbar, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
  width: 100%;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar {
  height: 100%;
  left: 0;
  top: 0;
  width: var(--swiper-pagination-progressbar-size, 4px);
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
}
.swiper-scrollbar.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > .swiper-scrollbar {
  display: none !important;
}
.swiper-scrollbar.swiper-scrollbar-horizontal, .swiper-horizontal > .swiper-scrollbar {
  bottom: var(--swiper-scrollbar-bottom, 4px);
  height: var(--swiper-scrollbar-size, 4px);
  left: var(--swiper-scrollbar-sides-offset, 1%);
  position: absolute;
  top: var(--swiper-scrollbar-top, auto);
  width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  z-index: 50;
}
.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  left: var(--swiper-scrollbar-left, auto);
  position: absolute;
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  width: var(--swiper-scrollbar-size, 4px);
  z-index: 50;
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  backface-visibility: hidden;
  height: 100%;
  pointer-events: none;
  transform-origin: 0 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  background: #000;
  bottom: 0;
  content: "";
  filter: blur(50px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  backface-visibility: hidden;
  pointer-events: none;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transform-origin: center bottom;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../dist/font/Noto_Sans_JP/NotoSansJP-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
.section {
  width: 100%;
}
.section__title {
  font-size: 2.4rem;
  font-weight: 800;
}
.section__text {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 2vw 0;
}
@media screen and (min-width: 768px) {
  .section__text {
    margin: 0 0 2vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .section__text {
    margin: 0 0 20px 0;
  }
}

.keyvisual__swiper {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .keyvisual__swiper {
    width: 100vw;
    margin: 0 auto;
  }
}
.keyvisual__swiper .swiper-slide-prev,
.keyvisual__swiper .swiper-slide-next {
  transform: scale(0.95);
  opacity: 0.7;
}
.keyvisual__swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.keyvisual__swiper .swiper-slide-active img {
  border-color: "";
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .keyvisual__swiper .swiper-slide-active img {
    box-shadow: 1.3888888889vw 1.3888888889vw 0 0 "";
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__swiper .swiper-slide-active img {
    box-shadow: 20px 20px 0 0 "";
  }
}
.keyvisual .swiper-slide {
  opacity: 0.5;
  transform: scale(0.85);
  transition: 0.5s;
}
.keyvisual .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.keyvisual__thumbnail {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-block: 5.3333333333vw 9.6vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__thumbnail {
    margin-block: 1.3888888889vw 2.5vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__thumbnail {
    margin-block: 20px 36px;
  }
}
.keyvisual__thumbnail .swiper-slide {
  width: 212px;
  height: 78px;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.keyvisual__thumbnail .swiper-slide img {
  width: 212px;
  height: 78px;
  object-fit: cover;
  display: block;
}
.keyvisual__thumbnail .swiper-slide-thumb-active {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .keyvisual__thumbnail {
    margin-top: 1.5972222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__thumbnail {
    margin-top: 23px;
  }
}
.keyvisual__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.keyvisual__img {
  position: absolute;
  top: 0;
  z-index: -1;
  object-fit: cover;
  width: 100vw;
  height: 62.6666666667vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__img {
    height: 48.6805555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__img {
    height: 701px;
  }
}
.keyvisual__btns {
  position: fixed;
  top: 25%;
  right: 0;
  transform: translateY(-25%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  padding: 12px 8px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .keyvisual__btns {
    gap: 12px;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__btns {
    gap: 14px;
  }
}
.keyvisual__btn {
  width: 44px;
  height: 44px;
  transition: 0.3s;
}
.keyvisual__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .keyvisual__btn img {
    width: 2.7083333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__btn img {
    width: 39px;
    height: auto;
  }
}
.keyvisual__btn:hover {
  transform: translateY(-5px);
  opacity: 0.85;
}
.keyvisual__keyvisual {
  position: relative;
}
.keyvisual__keyvisual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.3333333333vw;
  background-image: linear-gradient(90deg, #e34b44, #3e6aad);
}
.keyvisual__wrapper {
  margin: 0 auto;
  justify-content: center;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__wrapper {
    padding-inline: 0;
    max-width: 83.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__wrapper {
    max-width: 1200px;
  }
}
.keyvisual__img {
  position: absolute;
  top: 0;
  z-index: -1;
  object-fit: cover;
  width: 100vw;
  height: 62.6666666667vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__img {
    height: 48.6805555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__img {
    height: 701px;
  }
}
.keyvisual__list {
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 1.3rem;
  margin-block: 5.6vw 4vw;
  color: #3c3c3c;
}
@media screen and (min-width: 768px) {
  .keyvisual__list {
    margin-block: 1.5277777778vw 1.3194444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__list {
    margin-block: 22px 19px;
  }
}
.keyvisual__list--swiper {
  margin-block: 0;
}
.keyvisual__title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .keyvisual__title {
    font-size: 3.6rem;
  }
}
.keyvisual__title::after {
  position: absolute;
  content: "";
  bottom: -25%;
  left: 45%;
  background: #108D00;
  width: 9.6vw;
  height: 1.3333333333vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__title::after {
    border-radius: 0.6944444444vw;
    left: 50%;
    bottom: -50%;
    width: 3.1944444444vw;
    height: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__title::after {
    border-radius: 10px;
    width: 46px;
    height: 5px;
  }
}
.keyvisual__title--red::after {
  background: #DB1845;
}
.keyvisual__item {
  opacity: 0.3;
  transform: scale(0.8);
  transition: 0.7s;
}
.keyvisual__item img {
  height: auto;
  width: 100%;
}
.keyvisual__item a {
  color: #3c3c3c;
}
.keyvisual__item--black {
  opacity: 1;
  transform: none;
  position: relative;
  transition: none;
}
.keyvisual__item--black a {
  font-size: 1.3rem;
}
.keyvisual__item::before {
  content: "";
  display: inline-block;
  background-image: url("../img/module/keyvisual_item_icon1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.6vw;
  height: 2.6666666667vw;
  margin: 0 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__item::before {
    width: 0.4166666667vw;
    height: 0.6944444444vw;
    margin: 0 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__item::before {
    width: 6px;
    height: 10px;
    margin: 0 8px;
  }
}
.keyvisual__item:first-child::before {
  display: none;
}

@media screen and (min-width: 768px) {
  .cta {
    padding: 0 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .cta {
    padding: 0 20px;
  }
}
.cta__wrapper {
  display: grid;
  margin: 0 auto;
  grid-template-columns: 1fr;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .cta__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .cta__wrapper {
    gap: 0;
    max-width: 1400px;
  }
}
.cta__wrapper--classroom {
  display: grid;
  margin: 0 auto;
  grid-template-columns: 1fr;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .cta__wrapper--classroom {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-inline: 0;
    max-width: 83.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .cta__wrapper--classroom {
    gap: 0;
    max-width: 1200px;
  }
}
.cta__flex {
  display: flex;
  align-items: center;
  gap: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .cta__flex {
    display: block;
    gap: 0;
  }
}
.cta__content {
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 7.2vw;
  padding: 8.5333333333vw 2.9333333333vw 6.1333333333vw 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .cta__content {
    padding: 2.1527777778vw 2.0833333333vw 2.5694444444vw 2.1527777778vw;
    height: 19.4444444444vw;
    gap: 0;
  }
}
@media screen and (min-width: 1440px) {
  .cta__content {
    padding: 31px 30px 37px 31px;
    height: 260px;
  }
}
.cta__content--red {
  background: #DB1845;
  border-radius: 5.3333333333vw 5.3333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  .cta__content--red {
    border-radius: 1.3888888889vw 0 0 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .cta__content--red {
    border-radius: 20px 0 0 20px;
  }
}
.cta__content--red .cta__btn a {
  width: 100%;
  height: 100%;
  color: #DB1845;
}
.cta__content--red .cta__btn a:hover {
  background: #DB1845;
  color: #ffffff;
}
.cta__content--red .cta__btn:hover {
  border: 2px solid #ffffff;
  background: #DB1845;
  color: #ffffff;
}
.cta__content--orange {
  background: #E34B44;
}
.cta__content--orange .cta__btn a {
  width: 100%;
  height: 100%;
  color: #E34B44;
}
.cta__content--orange .cta__btn a:hover {
  background: #E34B44;
  color: #ffffff;
}
.cta__content--orange .cta__btn:hover {
  border: 2px solid #ffffff;
  background: #E34B44;
  color: #ffffff;
}
.cta__content--blue {
  background: #3E6AAD;
  border-radius: 0 0 5.3333333333vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .cta__content--blue {
    border-radius: 0 1.3888888889vw 1.3888888889vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .cta__content--blue {
    border-radius: 0 20px 20px 0;
  }
}
.cta__content--blue .cta__btn a {
  width: 100%;
  height: 100%;
  color: #3E6AAD;
}
.cta__content--blue .cta__btn a:hover {
  background: #3E6AAD;
  color: #ffffff;
}
.cta__content--blue .cta__btn:hover {
  border: 2px solid #ffffff;
  background: #3E6AAD;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .cta__img {
    margin-bottom: 1.1805555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .cta__img {
    margin-bottom: 17px;
  }
}
.cta__text {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cta__text {
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .cta__text {
    margin-bottom: 20px;
  }
}
.cta__text--left {
  text-align: left;
}
.cta__btn {
  background: #ffffff;
  position: relative;
  border-radius: 13.3333333333vw;
  width: 100%;
  height: 15.2vw;
}
@media screen and (min-width: 768px) {
  .cta__btn {
    border-radius: 3.4722222222vw;
    max-width: 28.1944444444vw;
    height: 3.9583333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .cta__btn {
    border-radius: 50px;
    max-width: 406px;
    height: 57px;
  }
}
.cta__btn a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta__btn a {
    font-size: 2.2rem;
    border-radius: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .cta__btn a {
    border-radius: 50px;
  }
}
.cta__btn a::after {
  right: 4%;
  content: "";
  position: absolute;
  background-image: url("../img/module/cta_btn_icon2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.8666666667vw;
  height: 5.6vw;
}
@media screen and (min-width: 768px) {
  .cta__btn a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/cta_btn_icon2.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.64375vw;
    height: 1.5652777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .cta__btn a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/cta_btn_icon2.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 23.67px;
    height: 22.54px;
  }
}
.cta__btn--classroom a {
  font-size: 1.8rem;
}
.cta__btn--orange a::after {
  content: "";
  position: absolute;
  background-image: url("../img/module/cta_btn_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.8666666667vw;
  height: 5.6vw;
}
@media screen and (min-width: 768px) {
  .cta__btn--orange a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/cta_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.64375vw;
    height: 1.5652777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .cta__btn--orange a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/cta_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 23.67px;
    height: 22.54px;
  }
}
.cta__btn--blue a::after {
  content: "";
  position: absolute;
  background-image: url("../img/module/cta_btn_icon3.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.8666666667vw;
  height: 5.6vw;
}
@media screen and (min-width: 768px) {
  .cta__btn--blue a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/cta_btn_icon3.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.64375vw;
    height: 1.5652777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .cta__btn--blue a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/cta_btn_icon3.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 23.67px;
    height: 22.54px;
  }
}

.course-menu {
  position: relative;
  margin-top: 9.0666666667vw;
  padding-bottom: 10.6666666667vw;
  background: #FDF1F1;
}
.course-menu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.3333333333vw;
  background-image: linear-gradient(90deg, #e34b44, #3e6aad);
}
@media screen and (min-width: 768px) {
  .course-menu {
    margin-top: 4.1666666667vw;
    padding-bottom: 0;
  }
  .course-menu::after {
    height: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .course-menu {
    margin-top: 60px;
  }
  .course-menu::after {
    height: 5px;
  }
}
.course-menu__wrapper {
  margin: 0 auto;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .course-menu__wrapper {
    width: 97.2222222222vw;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .course-menu__wrapper {
    width: 1400px;
    min-height: 375px;
  }
}
.course-menu__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .course-menu__flex {
    padding-top: 1.1805555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .course-menu__flex {
    padding-top: 17px;
  }
}
.course-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.2666666667vw 12.5333333333vw;
  gap: 1.3333333333vw 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .course-menu__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5277777778vw;
    padding-block: 3.2638888889vw 4.3055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .course-menu__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    padding-block: 47px 62px;
  }
}
.course-menu .article {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .course-menu .article {
    margin-top: 0;
  }
}
.course-menu .article::after {
  display: none;
}

.support {
  text-align: center;
}
.support__wrapper {
  margin: 0 auto;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .support__wrapper {
    max-width: 69.4444444444vw;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .support__wrapper {
    max-width: 1000px;
  }
}
.support__title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  margin-top: 5.8666666667vw;
  line-height: 3.4rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .support__title {
    line-height: 5rem;
    margin-top: 3.4722222222vw;
    font-size: 3rem;
  }
}
@media screen and (min-width: 1440px) {
  .support__title {
    margin-top: 50px;
  }
}
.support__title::after {
  position: absolute;
  content: "";
  bottom: -25%;
  left: 45%;
  background: #DB1845;
  width: 9.6vw;
  height: 1.3333333333vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .support__title::after {
    left: 50%;
    bottom: -20%;
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .support__title::after {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.support__content {
  margin-block: 12.5333333333vw 7.4666666667vw;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .support__content {
    margin-block: 3.125vw 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .support__content {
    margin-block: 45px 34px;
  }
}
.support__text {
  line-height: 3.2rem;
}
.support__text--tel {
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  color: #DB1845;
}
.support__text--tel::before {
  left: 13%;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  position: absolute;
  background-image: url("../img/module/support_text_img_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 4.6773333333vw;
  height: 5.5946666667vw;
}
@media screen and (min-width: 768px) {
  .support__text--tel::before {
    left: 38%;
    content: "";
    position: absolute;
    background-image: url("../img/module/support_text_img_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.2180555556vw;
    height: 1.4569444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .support__text--tel::before {
    left: 37%;
    content: "";
    position: absolute;
    background-image: url("../img/module/support_text_img_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 17.54px;
    height: 20.98px;
  }
}
.support__text--tel {
  margin-block: 8vw 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .support__text--tel {
    margin-block: 1.7361111111vw 0.625vw;
  }
}
@media screen and (min-width: 1440px) {
  .support__text--tel {
    margin-block: 25px 9px;
  }
}

.timetable {
  position: relative;
  margin-top: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  .timetable {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable {
    margin-top: 80px;
  }
}
.timetable::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 72.8vw;
  border-radius: 0 8vw 8vw 0;
}
@media screen and (min-width: 768px) {
  .timetable::before {
    width: 35%;
    height: 36.1805555556vw;
    border-radius: 0 2.0833333333vw 2.0833333333vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .timetable::before {
    height: 521px;
    border-radius: 0 30px 30px 0;
  }
}
.timetable::before {
  background: #FDF1F1;
  z-index: -1;
}
.timetable__wrapper {
  margin: 0 auto;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .timetable__wrapper {
    max-width: 83.3333333333vw;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__wrapper {
    max-width: 1200px;
  }
}
.timetable__wrapper--bottom {
  margin-inline: calc(4vw * -1);
}
@media screen and (min-width: 768px) {
  .timetable__wrapper--bottom {
    max-width: 69.4444444444vw;
    margin-inline: 0;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__wrapper--bottom {
    max-width: 1000px;
  }
}
.timetable__flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .timetable__flex {
    flex-direction: row;
    gap: 33%;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-inline: 0;
    margin-bottom: 1.7361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__flex {
    margin-bottom: 25px;
  }
}
.timetable__title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  padding-top: 5.6vw;
  padding-bottom: 6.4vw;
}
@media screen and (min-width: 768px) {
  .timetable__title {
    font-size: 3.6rem;
    padding-top: 1.5277777778vw;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__title {
    padding-top: 22px;
  }
}
.timetable__title::before {
  position: absolute;
  content: "";
  top: 0;
  background: #DB1845;
  width: 9.6vw;
  height: 1.3333333333vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .timetable__title::before {
    top: 0;
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__title::before {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.timetable__title--sub {
  color: #CCCCCC;
  text-align: right;
}
.timetable__title--sub::before {
  display: none;
}
.timetable__contents {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  .timetable__contents {
    margin-top: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__contents {
    margin-top: 26px;
  }
}
.timetable__text {
  text-align: right;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .timetable__text {
    font-size: 1.6rem;
    line-height: 3.2rem;
  }
}
.timetable__btns {
  display: flex;
  flex-direction: column;
  gap: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .timetable__btns {
    flex-direction: row;
    justify-content: center;
    gap: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__btns {
    gap: 16px;
  }
}
.timetable__btn {
  width: 100%;
  height: 14.12vw;
}
@media screen and (min-width: 768px) {
  .timetable__btn {
    height: 4.375vw;
    width: 24.3055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__btn {
    height: 63px;
    width: 370px;
  }
}
.timetable__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.6rem;
  transition: opacity 0.2s ease;
  border-radius: 8vw;
}
@media screen and (min-width: 768px) {
  .timetable__btn a {
    border-radius: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__btn a {
    border-radius: 30px;
  }
}
.timetable__btn a::after {
  right: 7%;
  content: "";
  position: absolute;
  background-image: url("../img/module/info_btn_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.496vw;
  height: 5.232vw;
}
@media screen and (min-width: 768px) {
  .timetable__btn a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.43125vw;
    height: 1.3625vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__btn a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 20.61px;
    height: 19.62px;
  }
}
.timetable__btn a:hover {
  opacity: 0.85;
}
.timetable__btn--downrode {
  position: relative;
}
.timetable__btn--downrode a {
  background: #E34B44;
  color: #ffffff;
}
.timetable__btn--downrode a::before {
  left: 10%;
  content: "";
  position: absolute;
  background-image: url("../img/module/explain_btn_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.2453333333vw;
  height: 6.0373333333vw;
}
@media screen and (min-width: 768px) {
  .timetable__btn--downrode a::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/explain_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.3659722222vw;
    height: 1.5722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__btn--downrode a::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/explain_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 19.67px;
    height: 22.64px;
  }
}
.timetable__btn--counseling {
  position: relative;
}
@media screen and (min-width: 768px) {
  .timetable__btn--counseling {
    max-width: 25.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__btn--counseling {
    max-width: 370px;
  }
}
.timetable__btn--counseling a {
  background: #DB1845;
  color: #ffffff;
}
.timetable__btn--counseling a::before {
  left: 10%;
  content: "";
  position: absolute;
  background-image: url("../img/module/header_btn_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 4.7573333333vw;
  height: 6.9146666667vw;
}
@media screen and (min-width: 768px) {
  .timetable__btn--counseling a::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/header_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.2388888889vw;
    height: 1.8006944444vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__btn--counseling a::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/header_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 17.84px;
    height: 25.93px;
  }
}
.timetable__card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .timetable__card {
    width: 41.875vw;
    height: 48.1944444444vw;
    border-radius: 1.3888888889vw;
    box-shadow: 0 0.5555555556vw 1.3888888889vw rgba(0, 0, 0, 0.08);
  }
}
@media screen and (min-width: 1440px) {
  .timetable__card {
    width: 603px;
    height: 694px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
}
.timetable__map {
  position: relative;
}
@media screen and (min-width: 768px) {
  .timetable__map {
    margin-bottom: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__map {
    margin-bottom: 5px;
  }
}
.timetable__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 603/238;
  display: block;
}
.timetable__detail {
  display: flex;
  justify-content: flex-end;
}
.timetable__detail a {
  color: #DB1845;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: underline;
  padding: 6px 10px;
  border-radius: 999px;
}
.timetable__info {
  display: grid;
  grid-template-columns: 90px 1fr;
  font-size: 1.4rem;
  max-width: 543.84px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .timetable__info {
    row-gap: 0.6944444444vw;
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__info {
    row-gap: 10px;
    margin-bottom: 20px;
  }
}
.timetable__info dt {
  font-weight: 700;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .timetable__info dt {
    padding-bottom: 0.9722222222vw;
    border-bottom: 0.0694444444vw solid #CCCCCC;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__info dt {
    padding-bottom: 14px;
    border-bottom: 1px solid #CCCCCC;
  }
}
.timetable__info dt:nth-of-type(1) {
  line-height: 3;
}
.timetable__info dt:nth-of-type(2) {
  line-height: 3;
}
.timetable__info dd {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .timetable__info dd {
    padding-bottom: 0.9722222222vw;
    border-bottom: 0.0694444444vw solid #CCCCCC;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__info dd {
    padding-bottom: 14px;
    border-bottom: 1px solid #CCCCCC;
  }
}
.timetable__info dd span {
  font-size: 2.8rem;
  color: #DB1845;
  font-weight: 500;
}
.timetable__right {
  display: flex;
  justify-content: flex-end;
}
.timetable__img img {
  width: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .timetable__img img {
    height: 36.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__img img {
    height: 520px;
  }
}
.timetable__timetable {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 1.4rem;
  table-layout: fixed;
}
@media screen and (min-width: 768px) {
  .timetable__timetable {
    font-size: 1.6rem;
  }
}
.timetable__timetable th,
.timetable__timetable tr {
  border: 1px solid #CCCCCC;
  text-align: center;
  vertical-align: middle;
}
.timetable__timetable th {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .timetable__timetable th {
    font-size: 3.2rem;
  }
}
.timetable__timetable tr:first-child {
  background: #F0F4F8;
  font-size: 0.9rem;
}
.timetable__timetable tr:first-child th {
  font-weight: 500;
  font-size: 1.6rem;
}
.timetable__timetable tr th:first-child {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .timetable__timetable tr th:first-child {
    font-size: 1.6rem;
  }
}
.timetable__timetable tr:first-child th:not(:first-child) {
  width: 10%;
}
.timetable__lunch, .timetable__head {
  padding: 0vw;
}
@media screen and (min-width: 768px) {
  .timetable__lunch, .timetable__head {
    padding: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .timetable__lunch, .timetable__head {
    padding: 12px;
  }
}
.timetable__sunday {
  color: #DB1845;
}
.timetable__saturday {
  color: #2D589A;
}

.basic {
  position: relative;
  margin-top: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  .basic {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic {
    margin-top: 80px;
  }
}
.basic__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .basic__wrapper {
    flex-direction: row;
    gap: 2.7777777778vw;
    padding-inline: 0;
    max-width: 83.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__wrapper {
    gap: 40px;
    max-width: 1200px;
  }
}
.basic__title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .basic__title {
    font-size: 2.4rem;
    margin-bottom: 3.4027777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__title {
    margin-bottom: 49px;
  }
}
.basic__title::before {
  position: absolute;
  content: "";
  bottom: -2.6666666667vw;
  background: #DB1845;
  width: 93.3333333333vw;
  height: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .basic__title::before {
    bottom: -0.6944444444vw;
    width: 50vw;
    height: 0.4861111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__title::before {
    bottom: -10px;
    width: 760px;
    height: 7px;
  }
}
.basic__title--sub {
  color: #CCCCCC;
  text-align: right;
}
.basic__title--sub::before {
  display: none;
}
.basic__contents {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .basic__contents {
    margin-bottom: 3.0555555556vw;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1440px) {
  .basic__contents {
    margin-bottom: 44px;
  }
}
.basic__btns {
  display: flex;
  flex-direction: column;
  gap: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .basic__btns {
    flex-direction: row;
    justify-content: center;
    gap: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__btns {
    gap: 16px;
  }
}
.basic__btn {
  width: 100%;
  height: 14.12vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .basic__btn {
    height: 4.375vw;
    width: 24.3055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__btn {
    height: 63px;
    width: 370px;
  }
}
.basic__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 8vw;
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #ffffff;
  transition: color 0.3s ease;
  transition: transform 0.2s ease;
}
.basic__btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: width 0.3s ease;
}
.basic__btn a:hover {
  color: #ffffff;
  transform: scale(1.05);
}
.basic__btn a:hover::before {
  width: 100%;
}
.basic__btn a span {
  position: absolute;
  left: 12%;
}
.basic__btn a::after {
  right: 7%;
  content: "";
  position: absolute;
  background-image: url("../img/module/info_btn_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.496vw;
  height: 5.232vw;
}
@media screen and (min-width: 768px) {
  .basic__btn a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.43125vw;
    height: 1.3625vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__btn a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 20.61px;
    height: 19.62px;
  }
}
.basic__btn--downrode a {
  background: #E34B44;
}
.basic__btn--downrode a::before {
  background: #2D589A;
}
.basic__btn--downrode a span {
  left: 10%;
  content: "";
  position: absolute;
  background-image: url("../img/module/explain_btn_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.2453333333vw;
  height: 6.0373333333vw;
}
@media screen and (min-width: 768px) {
  .basic__btn--downrode a span {
    left: 11%;
    content: "";
    position: absolute;
    background-image: url("../img/module/explain_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.3659722222vw;
    height: 1.5722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__btn--downrode a span {
    content: "";
    position: absolute;
    background-image: url("../img/module/explain_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 19.67px;
    height: 22.64px;
  }
}
@media screen and (min-width: 768px) {
  .basic__btn--counseling {
    max-width: 25.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__btn--counseling {
    max-width: 370px;
  }
}
.basic__btn--counseling a {
  background: #DB1845;
}
.basic__btn--counseling a::before {
  background: #2D589A;
}
.basic__btn--counseling a span {
  left: 10%;
  content: "";
  position: absolute;
  background-image: url("../img/module/header_btn_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 4.7573333333vw;
  height: 6.9146666667vw;
}
@media screen and (min-width: 768px) {
  .basic__btn--counseling a span {
    content: "";
    position: absolute;
    background-image: url("../img/module/header_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.2388888889vw;
    height: 1.8006944444vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__btn--counseling a span {
    content: "";
    position: absolute;
    background-image: url("../img/module/header_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 17.84px;
    height: 25.93px;
  }
}
.basic__info {
  display: grid;
  grid-template-columns: 21.3333333333vw 1fr;
  font-size: 1.4rem;
  max-width: 145.024vw;
  margin: 0 auto;
}
.basic__info a {
  font-weight: 700;
  border-bottom: solid 1px #3c3c3c;
}
.basic__info a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .basic__info {
    grid-template-columns: 5.5555555556vw 1fr;
    row-gap: 0.6944444444vw;
    margin: 0 0 1.3888888889vw 0;
    max-width: 37.7666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__info {
    grid-template-columns: 80px 1fr;
    row-gap: 10px;
    margin: 0 0 20px 0;
    max-width: 543.84px;
  }
}
.basic__info dt {
  font-weight: 700;
  font-size: 1.4rem;
  padding-block: 1.3333333333vw;
  border-bottom: 0.2666666667vw solid #D8D8D8;
}
@media screen and (min-width: 768px) {
  .basic__info dt {
    font-size: 1.4rem;
    padding-block: 0 0.9722222222vw;
    border-bottom: 0.0694444444vw solid #D8D8D8;
  }
}
@media screen and (min-width: 1440px) {
  .basic__info dt {
    padding-block: 0 14px;
    border-bottom: 1px solid #D8D8D8;
  }
}
.basic__info dt:nth-of-type(1) {
  line-height: 6;
  padding-bottom: 0;
}
.basic__info dd {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  padding-block: 1.3333333333vw;
  border-bottom: 0.2666666667vw solid #D8D8D8;
}
@media screen and (min-width: 768px) {
  .basic__info dd {
    font-size: 1.6rem;
    padding-block: 0 0.9722222222vw;
    border-bottom: 0.0694444444vw solid #D8D8D8;
  }
}
@media screen and (min-width: 1440px) {
  .basic__info dd {
    padding-block: 0 14px;
    border-bottom: 1px solid #D8D8D8;
  }
}
.basic__tel {
  position: relative;
  font-size: 2.8rem;
  color: #DB1845;
  font-weight: 700;
  padding-inline: 4.8vw;
}
@media screen and (min-width: 768px) {
  .basic__tel {
    padding-inline: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__tel {
    padding-inline: 18px;
  }
}
.basic__tel::before {
  left: -2%;
  top: 58%;
  transform: translateY(-56%);
  content: "";
  position: absolute;
  background-image: url("../img/module/basic_info_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 4.5333333333vw;
  height: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .basic__tel::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/basic_info_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.1805555556vw;
    height: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__tel::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/basic_info_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 17px;
    height: 20px;
  }
}
.basic__note {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .basic__note {
    font-size: 1.6rem;
  }
}
.basic__right {
  display: flex;
  justify-content: flex-end;
}
.basic__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .basic__img img {
    height: 36.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__img img {
    height: 520px;
  }
}
.basic__left {
  flex: 0 0 40%;
}
.basic__swiper {
  flex: 0 0 40%;
}
.basic__swiper--sp {
  width: 100%;
  max-width: 91.7333333333vw;
  margin: 0 auto;
}
.basic__swiper--sp .swiper-slide {
  width: 100%;
}
.basic__swiper--sp .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.basic__item {
  border: 3px solid #CCCCCC;
  width: 100%;
  border-radius: 2.6666666667vw;
  line-height: 4rem;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .basic__item {
    border: 0.2083333333vw solid #CCCCCC;
    width: 12.8472222222vw;
    height: 3.125vw;
    border-radius: 0.6944444444vw;
    margin-bottom: 0.9027777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic__item {
    border: 3px solid #CCCCCC;
    width: 185px;
    height: 45px;
    border-radius: 10px;
    margin-bottom: 13px;
  }
}
.basic__item--green {
  color: #108D00;
}
.basic__item--red {
  color: #DB1845;
}
.basic__letter--liteblue {
  color: #008DA7;
}
.basic__letter--purple {
  color: #8E0679;
}
.basic__letter--red {
  color: #DB1845;
}
.basic__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.6666666667vw;
  margin-block: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .basic__list {
    display: block;
    margin-block: 0;
  }
}
.basic .swiper-pagination {
  position: relative !important;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .basic .swiper-pagination {
    margin-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .basic .swiper-pagination {
    margin-top: 20px;
  }
}
.basic .swiper-pagination-bullet {
  background-color: #DB1845;
}

.map {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .map {
    margin-top: 5.2083333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .map {
    margin-top: 75px;
  }
}
.map__wrapper {
  padding-inline: 4vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .map__wrapper {
    max-width: 69.4444444444vw;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .map__wrapper {
    max-width: 1000px;
  }
}
.map__flex {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .map__flex {
    gap: 3.125vw;
  }
}
@media screen and (min-width: 1440px) {
  .map__flex {
    gap: 45px;
    flex-direction: row;
  }
}
.map__text {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 11.4666666667vw;
  line-height: 3.2rem;
}
@media screen and (min-width: 768px) {
  .map__text {
    margin-bottom: 2.9861111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .map__text {
    margin-bottom: 43px;
  }
}
.map__text--rink {
  text-align: right;
  margin-bottom: 0;
  line-height: 1.5rem;
}
.map__text--rink a {
  font-size: 1.3rem;
  color: #DB1845;
  text-decoration: underline;
}
.map__title {
  position: relative;
  font-size: 2rem;
  margin-bottom: 4vw;
  padding-left: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .map__title {
    margin-bottom: 1.0416666667vw;
    padding-left: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .map__title {
    margin-bottom: 15px;
    padding-left: 10px;
  }
}
.map__title::before {
  position: absolute;
  content: "";
  top: 0;
  left: -1%;
  background: #DB1845;
  width: 1.3333333333vw;
  height: 7.4666666667vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .map__title::before {
    top: 0;
    width: 0.3472222222vw;
    height: 1.9444444444vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .map__title::before {
    width: 5px;
    height: 28px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 768px) {
  .map__left {
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .map__left {
    margin: 0;
  }
}
.map__map iframe {
  max-width: 106.6666666667vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .map__map iframe {
    width: 62.5vw;
    max-height: 20.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .map__map iframe {
    width: 400px;
  }
}

.possible {
  position: relative;
  margin-top: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  .possible {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .possible {
    margin-top: 80px;
  }
}
.possible::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 72.8vw;
  border-radius: 0 8vw 8vw 0;
}
@media screen and (min-width: 768px) {
  .possible::before {
    width: 35%;
    height: 36.1805555556vw;
    border-radius: 0 2.0833333333vw 2.0833333333vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .possible::before {
    height: 521px;
    border-radius: 0 30px 30px 0;
  }
}
.possible::before {
  background: #FDF1F1;
  z-index: -1;
}
.possible__wrapper {
  margin: 0 auto;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .possible__wrapper {
    max-width: 83.3333333333vw;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .possible__wrapper {
    max-width: 1200px;
  }
}
.possible__left {
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .possible__left {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .possible__left {
    margin-bottom: 40px;
  }
}
.possible__title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .possible__title {
    font-size: 3.6rem;
    padding-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .possible__title {
    padding-top: 20px;
  }
}
.possible__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9.6vw;
  height: 1.3333333333vw;
  background: #DB1845;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .possible__title::before {
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .possible__title::before {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.possible__title--sub {
  font-size: 2.4rem;
  font-weight: 700;
  padding-top: 0;
}
.possible__title--sub::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .possible__title--sub {
    font-size: 2.4rem;
  }
}
.possible__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.2666666667vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .possible__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3888888889vw;
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .possible__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 2.0833333333vw;
  }
}
.possible__content {
  background: #ffffff;
  border: 1px solid #707070;
  border-radius: 2.6666666667vw;
  padding: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .possible__content {
    border-radius: 0.8333333333vw;
    padding: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .possible__content {
    border-radius: 12px;
    padding: 24px;
  }
}
.possible__content.is-hidden {
  display: none;
}
.possible__text {
  margin-top: 2.6666666667vw;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3c3c3c;
}
@media screen and (min-width: 768px) {
  .possible__text {
    margin-top: 0.8333333333vw;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  .possible__text {
    margin-top: 12px;
  }
}
.possible__btn {
  width: 100%;
  height: 13.6vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .possible__btn {
    height: 3.5416666667vw;
    width: 19.1666666667vw;
    margin: 2.4305555556vw auto 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .possible__btn {
    height: 51px;
    width: 276px;
    margin: 35px auto 0 auto;
  }
}
.possible__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.6rem;
  border-radius: 8vw;
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #ffffff;
  transition: color 0.3s ease;
  transition: transform 0.2s ease;
}
.possible__btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  transition: height 0.3s ease;
}
.possible__btn a:hover {
  color: #ffffff;
  transform: scale(1.05);
}
.possible__btn a:hover::before {
  height: 100%;
}
.possible__btn a::after {
  right: 7%;
  content: "";
  position: absolute;
  background-image: url("../img/module/info_btn_icon2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.3333333333vw;
  height: 5.6vw;
}
@media screen and (min-width: 768px) {
  .possible__btn a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon2.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.3888888889vw;
    height: 1.4583333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .possible__btn a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon2.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 21px;
  }
}
.possible__btn--more a {
  font-size: 2.4rem;
  background: #E34B44;
}
.possible__btn--more a::before {
  background: #2D589A;
}
.possible__btn--close {
  display: none;
}
.possible__btn--close a {
  font-size: 2.4rem;
  background: #2D589A;
}
.possible__btn--close a::before {
  background: #E34B44;
}
.possible__btn--close a::after {
  right: 7%;
  content: "";
  position: absolute;
  background-image: url("../img/module/info_btn_icon3.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.3333333333vw;
  height: 5.6vw;
}
@media screen and (min-width: 768px) {
  .possible__btn--close a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon3.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.3888888889vw;
    height: 1.4583333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .possible__btn--close a::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon3.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 21px;
  }
}

.flow {
  position: relative;
  margin-top: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  .flow {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .flow {
    margin-top: 80px;
  }
}
.flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 72.8vw;
  border-radius: 0 8vw 8vw 0;
}
@media screen and (min-width: 768px) {
  .flow::before {
    width: 35%;
    height: 36.1805555556vw;
    border-radius: 0 2.0833333333vw 2.0833333333vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .flow::before {
    height: 521px;
    border-radius: 0 30px 30px 0;
  }
}
.flow::before {
  background: #FDF1F1;
  z-index: -1;
}
.flow__wrapper {
  margin: 0 auto;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .flow__wrapper {
    max-width: 83.3333333333vw;
    padding-inline: 0;
    gap: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .flow__wrapper {
    max-width: 1200px;
    gap: 40px;
  }
}
.flow__left {
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .flow__left {
    flex: 0 0 260px;
    margin-bottom: 0;
  }
}
.flow__title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .flow__title {
    font-size: 3.6rem;
    padding-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .flow__title {
    padding-top: 20px;
  }
}
.flow__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9.6vw;
  height: 1.3333333333vw;
  background: #DB1845;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .flow__title::before {
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .flow__title::before {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.flow__title--number {
  font-size: 3.2rem;
  color: #DB1845;
  padding-top: 0;
}
.flow__title--number::before {
  display: none;
}
.flow__title--sub {
  font-size: 2.2rem;
  font-weight: 700;
  padding-top: 0;
  padding-bottom: 4vw;
}
.flow__title--sub::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .flow__title--sub {
    font-size: 2.5rem;
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .flow__title--sub {
    padding-bottom: 15px;
  }
}
.flow__contents {
  display: flex;
  flex-direction: column;
  gap: 6.4vw;
  margin-top: 7.7333333333vw;
}
@media screen and (min-width: 768px) {
  .flow__contents {
    margin-top: 2.0138888889vw;
    gap: 4.2361111111vw;
    flex: 1;
  }
}
@media screen and (min-width: 1440px) {
  .flow__contents {
    gap: 61px;
    margin-top: 29px;
  }
}
.flow__content {
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow__content {
    display: flex;
    margin-left: 8.6805555556vw;
    gap: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .flow__content {
    margin-left: 125px;
    gap: 40px;
  }
}
.flow__content::after {
  left: 75%;
  bottom: -10%;
  content: "";
  position: absolute;
  background-image: url("../img/module/flow_content_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 7.112vw;
  height: 7.2vw;
}
@media screen and (min-width: 768px) {
  .flow__content::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/flow_content_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.8520833333vw;
    height: 1.875vw;
  }
}
@media screen and (min-width: 1440px) {
  .flow__content::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/flow_content_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 26.67px;
    height: 27px;
  }
}
.flow__content:last-child::after {
  display: none;
}
.flow__img {
  margin: 3.2vw 0;
}
@media screen and (min-width: 768px) {
  .flow__img {
    flex: 0 0 22.5694444444vw;
    margin: 0 0 0 1.875vw;
  }
}
@media screen and (min-width: 1440px) {
  .flow__img {
    flex: 0 0 325px;
    margin: 0 0 0 27px;
  }
}
.flow__img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .flow__img img {
    max-width: 100%;
    border-radius: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .flow__img img {
    border-radius: 8px;
  }
}
.flow__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3c3c3c;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .flow__text {
    font-size: 1.5rem;
  }
}
.flow__explain {
  flex-direction: column;
}

.teacher {
  display: none;
  position: relative;
  margin-top: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  .teacher {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .teacher {
    margin-top: 80px;
  }
}
.teacher::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 72.8vw;
  border-radius: 0 8vw 8vw 0;
}
@media screen and (min-width: 768px) {
  .teacher::before {
    width: 35%;
    height: 36.1805555556vw;
    border-radius: 0 2.0833333333vw 2.0833333333vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .teacher::before {
    height: 521px;
    border-radius: 0 30px 30px 0;
  }
}
.teacher::before {
  background: #FDF1F1;
  z-index: -1;
}
.teacher__wrapper {
  margin: 0 auto;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .teacher__wrapper {
    max-width: 83.3333333333vw;
    padding-inline: 0;
    gap: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .teacher__wrapper {
    max-width: 1200px;
    gap: 40px;
  }
}
.teacher__left {
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .teacher__left {
    flex: 0 0 260px;
    margin-bottom: 0;
  }
}
.teacher__title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .teacher__title {
    font-size: 3.6rem;
    padding-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .teacher__title {
    padding-top: 20px;
  }
}
.teacher__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9.6vw;
  height: 1.3333333333vw;
  background: #DB1845;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .teacher__title::before {
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .teacher__title::before {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.teacher__title--number {
  font-size: 3.2rem;
  color: #DB1845;
  padding-top: 0;
}
.teacher__title--number::before {
  display: none;
}
.teacher__title--sub {
  font-size: 2.5rem;
  font-weight: 700;
  padding-top: 0;
  padding-bottom: 4vw;
}
.teacher__title--sub::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .teacher__title--sub {
    font-size: 2.5rem;
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .teacher__title--sub {
    padding-bottom: 15px;
  }
}
.teacher__contents {
  display: flex;
  flex-direction: column;
  gap: 6.4vw;
  margin-top: 7.7333333333vw;
}
@media screen and (min-width: 768px) {
  .teacher__contents {
    margin-top: 2.0138888889vw;
    gap: 4.2361111111vw;
    flex: 1;
  }
}
@media screen and (min-width: 1440px) {
  .teacher__contents {
    gap: 61px;
    margin-top: 29px;
  }
}
.teacher__content {
  position: relative;
}
@media screen and (min-width: 768px) {
  .teacher__content {
    display: flex;
    margin-left: 8.6805555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .teacher__content {
    margin-left: 125px;
  }
}
.teacher__content::after {
  left: 75%;
  bottom: -10%;
  content: "";
  position: absolute;
  background-image: url("../img/module/flow_content_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 7.112vw;
  height: 7.2vw;
}
@media screen and (min-width: 768px) {
  .teacher__content::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/flow_content_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.8520833333vw;
    height: 1.875vw;
  }
}
@media screen and (min-width: 1440px) {
  .teacher__content::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/flow_content_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 26.67px;
    height: 27px;
  }
}
.teacher__content:last-child::after {
  display: none;
}
.teacher__img {
  margin: 3.2vw 0;
}
@media screen and (min-width: 768px) {
  .teacher__img {
    margin: 0 2.7777777778vw 0 1.875vw;
  }
}
@media screen and (min-width: 1440px) {
  .teacher__img {
    margin: 0 40px 0 27px;
  }
}
.teacher__img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .teacher__img img {
    border-radius: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .teacher__img img {
    border-radius: 8px;
  }
}
.teacher__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #CCCCCC;
}
@media screen and (min-width: 768px) {
  .teacher__text {
    font-size: 1.5rem;
  }
}
.teacher__explain {
  flex-direction: column;
}
.teacher__grid {
  display: block;
  min-width: 0;
  overflow: hidden;
  padding-inline: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .teacher__grid {
    padding-block: 1.875vw 2.0833333333vw;
    max-width: 96.1111111111vw;
    margin: 0 auto;
    padding-inline: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .teacher__grid {
    padding-block: 27px 30px;
    max-width: 1384px;
    padding-inline: 10px;
  }
}
.teacher .swiper-pagination {
  position: relative !important;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .teacher .swiper-pagination {
    margin-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .teacher .swiper-pagination {
    margin-top: 20px;
  }
}
.teacher .swiper-pagination-bullet {
  background-color: #DB1845;
}

.voice {
  display: none;
  position: relative;
  margin-top: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  .voice {
    margin-top: 9.4444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .voice {
    margin-top: 136px;
  }
}
.voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 72.8vw;
  border-radius: 0 8vw 8vw 0;
}
@media screen and (min-width: 768px) {
  .voice::before {
    width: 35%;
    height: 36.1805555556vw;
    border-radius: 0 2.0833333333vw 2.0833333333vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .voice::before {
    height: 521px;
    border-radius: 0 30px 30px 0;
  }
}
.voice::before {
  background: #FDF1F1;
  z-index: -1;
}
.voice__wrapper {
  margin: 0 auto;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .voice__wrapper {
    max-width: 83.3333333333vw;
    padding-inline: 0;
    gap: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .voice__wrapper {
    max-width: 1200px;
    gap: 40px;
  }
}
.voice__left {
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .voice__left {
    flex: 0 0 260px;
    margin-bottom: 0;
  }
}
.voice__title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .voice__title {
    font-size: 3.6rem;
    padding-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .voice__title {
    padding-top: 20px;
  }
}
.voice__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9.6vw;
  height: 1.3333333333vw;
  background: #DB1845;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .voice__title::before {
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .voice__title::before {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.voice__title--number {
  font-size: 3.2rem;
  color: #DB1845;
  padding-top: 0;
}
.voice__title--number::before {
  display: none;
}
.voice__title--sub {
  font-size: 2.5rem;
  font-weight: 700;
  padding-top: 0;
  padding-bottom: 4vw;
}
.voice__title--sub::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .voice__title--sub {
    font-size: 2.5rem;
    padding-bottom: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .voice__title--sub {
    padding-bottom: 15px;
  }
}
.voice__contents {
  display: flex;
  flex-direction: column;
  gap: 6.4vw;
  margin-top: 7.7333333333vw;
}
@media screen and (min-width: 768px) {
  .voice__contents {
    margin-top: 2.0138888889vw;
    gap: 4.2361111111vw;
    flex: 1;
  }
}
@media screen and (min-width: 1440px) {
  .voice__contents {
    gap: 61px;
    margin-top: 29px;
  }
}
.voice__content {
  position: relative;
}
@media screen and (min-width: 768px) {
  .voice__content {
    display: flex;
    margin-left: 8.6805555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .voice__content {
    margin-left: 125px;
  }
}
.voice__content::after {
  left: 75%;
  bottom: -10%;
  content: "";
  position: absolute;
  background-image: url("../img/module/flow_content_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 7.112vw;
  height: 7.2vw;
}
@media screen and (min-width: 768px) {
  .voice__content::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/flow_content_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.8520833333vw;
    height: 1.875vw;
  }
}
@media screen and (min-width: 1440px) {
  .voice__content::after {
    content: "";
    position: absolute;
    background-image: url("../img/module/flow_content_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 26.67px;
    height: 27px;
  }
}
.voice__content:last-child::after {
  display: none;
}
.voice__img {
  margin: 3.2vw 0;
}
@media screen and (min-width: 768px) {
  .voice__img {
    margin: 0 2.7777777778vw 0 1.875vw;
  }
}
@media screen and (min-width: 1440px) {
  .voice__img {
    margin: 0 40px 0 27px;
  }
}
.voice__img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .voice__img img {
    border-radius: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .voice__img img {
    border-radius: 8px;
  }
}
.voice__text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #CCCCCC;
}
@media screen and (min-width: 768px) {
  .voice__text {
    font-size: 1.5rem;
  }
}
.voice__explain {
  flex-direction: column;
}
.voice__grid {
  display: block;
  overflow: hidden;
  padding-inline: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .voice__grid {
    padding-block: 1.875vw 2.7777777778vw;
    padding-inline: 0.6944444444vw;
    max-width: 96.1111111111vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .voice__grid {
    padding-block: 27px 60px;
    max-width: 1384px;
    padding-inline: 10px;
  }
}
.voice .swiper-pagination {
  position: relative !important;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .voice .swiper-pagination {
    margin-top: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .voice .swiper-pagination {
    margin-top: 10px;
  }
}
.voice .swiper-pagination-bullet {
  background-color: #DB1845;
}

.satellite {
  position: relative;
  margin-top: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  .satellite {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .satellite {
    margin-top: 80px;
  }
}
.satellite::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 72.8vw;
  border-radius: 0 8vw 8vw 0;
}
@media screen and (min-width: 768px) {
  .satellite::before {
    width: 35%;
    height: 27.4305555556vw;
    border-radius: 0 2.0833333333vw 2.0833333333vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .satellite::before {
    height: 395px;
    border-radius: 0 30px 30px 0;
  }
}
.satellite::before {
  background: #FDF1F1;
  z-index: -1;
}
.satellite__wrapper {
  margin: 0 auto;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .satellite__wrapper {
    max-width: 83.3333333333vw;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .satellite__wrapper {
    max-width: 1200px;
  }
}
.satellite__left {
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .satellite__left {
    margin-bottom: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .satellite__left {
    margin-bottom: 40px;
  }
}
.satellite__title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .satellite__title {
    font-size: 3.6rem;
    padding-top: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  .satellite__title {
    padding-top: 20px;
  }
}
.satellite__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9.6vw;
  height: 1.3333333333vw;
  background: #DB1845;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .satellite__title::before {
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .satellite__title::before {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.satellite__title--sub {
  font-size: 2.4rem;
  font-weight: 700;
  padding-top: 0;
}
.satellite__title--sub::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .satellite__title--sub {
    font-size: 2.4rem;
  }
}
.satellite__text {
  margin-top: 2.6666666667vw;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #3c3c3c;
}
@media screen and (min-width: 768px) {
  .satellite__text {
    margin-top: 0.8333333333vw;
    font-size: 1.6rem;
    margin-bottom: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .satellite__text {
    margin-top: 12px;
    margin-bottom: 50px;
  }
}
.satellite__text span {
  color: #3E6AAD;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .satellite__text span {
    font-size: 1.8rem;
  }
}