/**
 * 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;
  }
}
.section--keyvisual {
  background-size: cover;
  background-position: center top;
}
@media screen and (min-width: 768px) {
  .section--keyvisual {
    background-image: url("../img/index/section_img_bg3.png");
  }
}

.keyvisual {
  padding-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .keyvisual {
    padding-top: 10.4166666667vw;
    margin-top: -8.3333333333vw;
    padding-bottom: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual {
    padding-top: 150px;
    margin-top: -120px;
    padding-bottom: 5px;
  }
}
.keyvisual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-image: linear-gradient(90deg, #e34b44, #3e6aad);
}
@media screen and (min-width: 768px) {
  .keyvisual::after {
    height: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual::after {
    height: 5px;
  }
}
.keyvisual__swiper {
  overflow: visible;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .keyvisual__swiper {
    margin: 4.1666666667vw auto 0 auto;
    max-width: 100vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__swiper {
    max-width: 1440px;
    margin-top: 18px;
  }
}
.keyvisual__swiper .sp {
  overflow: hidden;
}
.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 {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  opacity: 0.4;
  will-change: transform;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .keyvisual .swiper-slide {
    transform: scale(1.1);
    aspect-ratio: 1200/441;
    width: clamp(19.4444444444vw, 60vw, 61.9444444444vw);
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual .swiper-slide {
    width: clamp(280px, 60vw, 892px);
  }
}
.keyvisual .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.keyvisual .swiper-slide-active {
  opacity: 1;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .keyvisual .swiper-slide-active {
    transform: scale(1.345);
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual .swiper-slide-active {
    transform: scale(1.345);
  }
}
.keyvisual .swiper-button-prev,
.keyvisual .swiper-button-next {
  height: 12vw;
  width: 12vw;
  margin-top: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .keyvisual .swiper-button-prev,
  .keyvisual .swiper-button-next {
    height: 4.7222222222vw;
    width: tab-ve(68);
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual .swiper-button-prev,
  .keyvisual .swiper-button-next {
    height: 68px;
    width: 68px;
  }
}
.keyvisual .swiper-button-prev {
  margin-left: 2.6666666667vw;
  margin-top: 61%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .keyvisual .swiper-button-prev {
    margin-left: 6.9444444444vw;
    margin-top: 0;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual .swiper-button-prev {
    margin-left: 110px;
  }
}
.keyvisual .swiper-button-next {
  margin-right: 2.6666666667vw;
  margin-top: 61%;
}
@media screen and (min-width: 768px) {
  .keyvisual .swiper-button-next {
    margin-right: 4.1666666667vw;
    margin-top: 0;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual .swiper-button-next {
    margin-right: 77px;
  }
}
.keyvisual .swiper-button-prev::after,
.keyvisual .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  margin: 0;
  position: static;
  height: 12vw;
  width: 12vw;
}
@media screen and (min-width: 768px) {
  .keyvisual .swiper-button-prev::after,
  .keyvisual .swiper-button-next::after {
    height: 4.7222222222vw;
    width: 4.7222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual .swiper-button-prev::after,
  .keyvisual .swiper-button-next::after {
    height: 68px;
    width: 68px;
  }
}
.keyvisual .swiper-navigation-icon {
  display: none;
}
.keyvisual .swiper-button-prev::after {
  background-image: url(../img/module/swiper-button-prev_icon1.svg);
}
.keyvisual .swiper-button-next::after {
  background-image: url(../img/module/swiper-button-next_icon1.svg);
}
.keyvisual__thumbnail {
  width: 100%;
  padding-block: 5.3333333333vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__thumbnail {
    padding-block: 0;
    margin: 5.5555555556vw auto 2.5vw;
    border-bottom: none;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__thumbnail {
    padding-block: 0;
    margin: 80px auto 36px;
  }
}
.keyvisual__thumbnail .swiper-wrapper {
  display: flex;
  justify-content: center;
  transform: none !important;
  gap: 2.1333333333vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__thumbnail .swiper-wrapper {
    display: flex;
    justify-content: center;
    transform: none !important;
    gap: 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__thumbnail .swiper-wrapper {
    display: flex;
    justify-content: center;
    transform: none !important;
    gap: 8px;
  }
}
.keyvisual__thumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: pointer;
  transform: scale(1);
  width: 10.9333333333vw;
  height: 10.9333333333vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__thumbnail .swiper-slide {
    margin: 0 !important;
    width: 14.7222222222vw;
    height: 5.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__thumbnail .swiper-slide {
    margin: 0 !important;
    width: 212px;
    height: 78px;
  }
}
@media screen and (min-width: 768px) {
  .keyvisual__thumbnail .swiper-slide img {
    width: 14.7222222222vw;
    height: 5.4166666667vw;
    object-fit: contain;
    display: block;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__thumbnail .swiper-slide img {
    width: 212px;
    height: 78px;
  }
}
.keyvisual__thumbnail .swiper-slide-thumb-active {
  opacity: 1;
  transform: scale(1);
}
.keyvisual__img {
  position: absolute;
  top: -16vw;
  z-index: 0;
  object-fit: contain;
  width: 100vw;
  height: 100vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__img {
    height: 48.6805555556vw;
    top: -8.3333333333vw;
    z-index: 0;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__img {
    height: 701px;
    top: -120px;
  }
}
.keyvisual__img img {
  object-fit: contain;
  width: 100%;
}
.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__keyvisual img {
  height: auto;
}
.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__list {
  display: flex;
  font-weight: 500;
  font-size: 1.3rem;
  margin-block: 5.6vw 4vw;
  color: #3c3c3c;
}
@media screen and (min-width: 768px) {
  .keyvisual__list {
    gap: 0.4861111111vw;
    margin-block: 1.5277777778vw 1.3194444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__list {
    gap: 7px;
    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;
}
@media screen and (min-width: 768px) {
  .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:last-child {
  padding-left: 1.8666666667vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__item--black:last-child {
    padding-left: 0.4861111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__item--black:last-child {
    padding-left: 7px;
  }
}
.keyvisual__item--black span {
  top: 50%;
  transform: translateY(-50%);
  content: "";
  position: absolute;
  background-image: url("../img/module/keyvisual_item_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 1.6vw;
  height: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .keyvisual__item--black span {
    content: "";
    position: absolute;
    background-image: url("../img/module/keyvisual_item_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 0.5555555556vw;
    height: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .keyvisual__item--black span {
    content: "";
    position: absolute;
    background-image: url("../img/module/keyvisual_item_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 6px;
    height: 10px;
  }
}
.keyvisual__item--black a {
  font-size: 1.3rem;
}
.keyvisual .keyvisual__nav-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2vw;
  position: relative;
  padding-inline: 2.6666666667vw;
}
.keyvisual .keyvisual__nav-group .swiper-button-prev,
.keyvisual .keyvisual__nav-group .swiper-button-next {
  position: static;
  transform: none;
  margin: 0;
}
.keyvisual .keyvisual__prev--sp {
  margin-right: 4.2666666667vw;
}
.keyvisual .keyvisual__next--sp {
  margin-left: 4.2666666667vw;
}

.info {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .info {
    flex-direction: row;
    margin-bottom: 0;
  }
}
.info__bg {
  width: 100%;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .info__bg {
    width: 50%;
  }
}
.info__bg--left {
  background: linear-gradient(160deg, rgba(124, 155, 214, 0.5), rgba(142, 209, 113, 0.15));
  justify-content: flex-end;
}
.info__bg--right {
  background: linear-gradient(160deg, rgba(227, 75, 68, 0.15), rgba(230, 152, 57, 0.15));
  justify-content: flex-start;
}
.info__inner {
  margin: 0 auto;
  height: 100%;
  display: flex;
  max-width: 1440px;
}
@media screen and (min-width: 768px) {
  .info__inner {
    max-width: 100vw;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .info__inner {
    max-width: 1440px;
  }
}
.info__inner--right {
  justify-content: flex-start;
}
.info__inner--left {
  justify-content: flex-end;
}
.info__business, .info__life {
  max-width: 100vw;
  height: 120.5333333333vw;
}
@media screen and (min-width: 768px) {
  .info__business, .info__life {
    max-width: 50vw;
    height: 51.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .info__business, .info__life {
    max-width: 720px;
    height: 736px;
  }
}
.info__card {
  padding: 5.3333333333vw 4vw 5.6vw 4vw;
}
@media screen and (min-width: 768px) {
  .info__card {
    padding: 2.4305555556vw 4.3055555556vw 3.6805555556vw 4.3055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .info__card {
    padding: 35px 62px 53px 62px;
  }
}
.info__text {
  font-size: 1.6rem;
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .info__text {
    font-size: 2.6rem;
  }
}
.info__text::before {
  position: absolute;
  content: "";
  top: 118%;
  width: 7.7333333333vw;
  height: 0.8vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .info__text::before {
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .info__text::before {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.info__text--blue {
  color: #3E6AAD;
}
.info__text--blue::before {
  background: #2D589A;
}
.info__text--red {
  color: #E34B44;
}
.info__text--red::before {
  background: #E34B44;
}
.info__title {
  font-size: 3rem;
  font-weight: 700;
  margin-block: 4.8vw 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .info__title {
    font-size: 4.6rem;
    margin-bottom: 1.3194444444vw;
    margin-block: 2.3611111111vw 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .info__title {
    margin-block: 34px 18px;
  }
}
.info__img {
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .info__img {
    margin-bottom: 1.3194444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .info__img {
    margin-bottom: 19px;
  }
}
.info__img img {
  height: auto;
}
.info__list {
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: 8vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .info__list {
    font-size: 2.1rem;
    margin-left: 2.7777777778vw;
    margin-bottom: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .info__list {
    margin-left: 40px;
    margin-bottom: 28px;
  }
}
.info__item {
  position: relative;
  margin-bottom: 5px;
}
.info__item::before {
  top: 25%;
  left: -7%;
}
@media screen and (min-width: 768px) {
  .info__item::before {
    top: 0;
    left: -7%;
  }
}
@media screen and (min-width: 1440px) {
  .info__item::before {
    top: 0;
    left: -7%;
  }
}
.info__item--red::before {
  content: "";
  position: absolute;
  background-image: url("../img/module/info_item_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 4vw;
  height: 4vw;
}
@media screen and (min-width: 768px) {
  .info__item--red::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_item_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 2.3611111111vw;
    height: 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .info__item--red::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_item_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 34px;
    height: 34px;
  }
}
.info__item--blue::before {
  content: "";
  position: absolute;
  background-image: url("../img/module/info_item_icon2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 4vw;
  height: 4vw;
}
@media screen and (min-width: 768px) {
  .info__item--blue::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_item_icon2.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 2.3611111111vw;
    height: 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .info__item--blue::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_item_icon2.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 34px;
    height: 34px;
  }
}
.info__btns {
  text-align: right;
}
.info__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  transition: transform 0.3s ease;
}
.info__btn:hover {
  transform: scale(1.03);
}
.info__btn--red, .info__btn--blue {
  font-size: 1.8rem;
  color: #ffffff;
  width: 62.4vw;
  height: 11.7333333333vw;
  border-radius: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .info__btn--red, .info__btn--blue {
    font-size: 2.7rem;
    width: 26.5277777778vw;
    height: 4.9305555556vw;
    border-radius: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .info__btn--red, .info__btn--blue {
    width: 382px;
    height: 71px;
    border-radius: 50px;
  }
}
.info__btn--red::before, .info__btn--blue::before {
  right: 6%;
  content: "";
  position: absolute;
  background-image: url("../img/module/info_btn_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 4.9333333333vw;
  height: 4.696vw;
}
@media screen and (min-width: 768px) {
  .info__btn--red::before, .info__btn--blue::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 2.0902777778vw;
    height: 1.9895833333vw;
  }
}
@media screen and (min-width: 1440px) {
  .info__btn--red::before, .info__btn--blue::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 30.1px;
    height: 28.65px;
  }
}
.info__btn--red {
  background: #E34B44;
}
.info__btn--blue {
  background: #3E6AAD;
}
.info__btn--gold, .info__btn--silver {
  z-index: 2;
  font-size: 1.4rem;
  color: #ffffff;
  width: 34.6666666667vw;
  height: 5.3333333333vw;
  margin-bottom: -2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .info__btn--gold, .info__btn--silver {
    font-size: 1.9rem;
    margin-bottom: -0.8333333333vw;
    width: 17.2916666667vw;
    height: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .info__btn--gold, .info__btn--silver {
    margin-bottom: -12px;
    width: 249px;
    height: 40px;
  }
}
.info__btn--gold {
  background: linear-gradient(180deg, #ceb663, #af994e);
}
.info__btn--silver {
  background: linear-gradient(180deg, #cbc9c9, #9a9898);
}

.course {
  position: relative;
  margin-top: 9.3333333333vw;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .course {
    margin-top: 5.5555555556vw;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .course {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .course#course {
    scroll-margin-top: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .course#course {
    scroll-margin-top: 120px;
  }
}
.course::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 138.9333333333vw;
  border-radius: 0 8vw 8vw 0;
}
@media screen and (min-width: 768px) {
  .course::before {
    width: 35%;
    height: 36.1805555556vw;
    border-radius: 0 2.0833333333vw 2.0833333333vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .course::before {
    height: 521px;
    border-radius: 0 30px 30px 0;
  }
}
.course::before {
  background: #F0F4F8;
  z-index: -1;
}
.course__wrapper {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .course__wrapper {
    width: 83.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .course__wrapper {
    width: 1200px;
  }
}
.course__flex {
  padding-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .course__flex {
    display: flex;
    justify-content: space-between;
    padding-top: 1.1805555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .course__flex {
    padding-top: 17px;
  }
}
.course__title {
  font-size: 2.8rem;
  font-weight: wont-weight(bold);
  position: relative;
}
@media screen and (min-width: 768px) {
  .course__title {
    font-size: 3.6rem;
  }
}
.course__title::before {
  position: absolute;
  content: "";
  top: -20%;
  background: #3E6AAD;
  width: 9.6vw;
  height: 1.3333333333vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .course__title::before {
    top: -30%;
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .course__title::before {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.course__title--sub {
  color: #CCCCCC;
  text-align: right;
}
.course__title--sub::before {
  display: none;
}
.course__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .course__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4305555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .course__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
}
.course__grid .article {
  display: none;
}
.course__grid .article.is-active {
  display: block;
}
.course__grid .article::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .course__grid .article {
    display: block;
  }
}
.course__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.1333333333vw;
  margin-bottom: 4.2666666667vw;
}
.course__tab {
  padding: 2.1333333333vw 2.1333333333vw;
  border-radius: 1.6vw;
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.course__tab:active {
  transform: translateY(1px);
}
.course__tab.is-active {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
}
.course__tab[data-course=green] {
  background: #108D00;
}
.course__tab[data-course=purple] {
  background: #8E0679;
}
.course__tab[data-course=blue] {
  background: #2D589A;
}
.course__tab[data-course=liteblue] {
  background: #008DA7;
}
.course__tab[data-course=orange] {
  background: #F5703F;
}
.course__tab[data-course=yellow] {
  background: #F8CF20;
}

.school {
  position: relative;
  margin-top: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  .school {
    margin-top: 5.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .school {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .school#class {
    scroll-margin-top: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .school#class {
    scroll-margin-top: 120px;
  }
}
.school::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) {
  .school::before {
    width: 35%;
    height: 36.1805555556vw;
    border-radius: 0 2.0833333333vw 2.0833333333vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .school::before {
    height: 521px;
    border-radius: 0 30px 30px 0;
  }
}
.school::before {
  background: #FDF1F1;
  z-index: -1;
}
.school__wrapper {
  margin: 0 auto;
  padding-inline: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .school__wrapper {
    display: flex;
    justify-content: space-between;
    width: 83.3333333333vw;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .school__wrapper {
    width: 1200px;
  }
}
.school__flex {
  padding-top: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .school__flex {
    display: flex;
    padding-top: 1.1805555556vw;
    gap: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__flex {
    padding-top: 17px;
    gap: 24px;
  }
}
.school__flex--btn {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4vw;
}
@media screen and (min-width: 768px) {
  .school__flex--btn {
    padding: 0;
    gap: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__flex--btn {
    gap: 15px;
  }
}
.school__title {
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .school__title {
    font-size: 3.6rem;
  }
}
.school__title::before {
  position: absolute;
  content: "";
  top: -30%;
  background: #E34B44;
  width: 9.6vw;
  height: 1.3333333333vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .school__title::before {
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__title::before {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.school__title--sub {
  color: #CCCCCC;
  text-align: right;
}
.school__title--sub::before {
  display: none;
}
.school__title--net {
  font-size: 2rem;
  color: #DB1845;
  text-align: center;
  margin-block: 100px;
}
.school__title--net::before {
  display: none;
}
.school__contents {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .school__contents {
    margin-top: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__contents {
    margin-top: 26px;
  }
}
.school__text--title {
  background: #E34B44;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .school__text--title {
    padding: 1.7361111111vw 7.3611111111vw;
    border-radius: 0.8333333333vw;
    font-size: 3rem;
  }
}
@media screen and (min-width: 1440px) {
  .school__text--title {
    padding: 25px 106px;
    border-radius: 30px 30px 0 0;
  }
}
.school__search {
  display: inline-flex;
  margin-top: 2.1333333333vw;
  margin-bottom: 4.2666666667vw;
  height: 12.2666666667vw;
}
@media screen and (min-width: 768px) {
  .school__search {
    margin-top: 0.5555555556vw;
    margin-bottom: 1.3888888889vw;
    height: 3.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__search {
    margin-top: 8px;
    margin-bottom: 20px;
    height: 46px;
  }
}
.school__search a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E34B44;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  min-height: 10.6666666667vw;
  padding: 2.1333333333vw 4.2666666667vw;
  border-radius: 2.9333333333vw;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
@media screen and (min-width: 768px) {
  .school__search a {
    min-height: 2.7777777778vw;
    padding: 0.5555555556vw 1.1111111111vw;
    border-radius: 0.7638888889vw;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1440px) {
  .school__search a {
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 11px;
    font-size: 1.4rem;
  }
}
.school__search a:hover {
  background: #DB1845;
  transform: translateY(-1px);
}
@media screen and (min-width: 768px) {
  .school__search--size {
    width: 9.0277777778vw;
    height: 3.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__search--size {
    width: 130px;
    height: 46px;
  }
}
.school__search--size a {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .school__search.is-active a {
    color: #DB1845;
    background: #ffffff;
    border: 1px solid #DB1845;
  }
}
.school__btn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .school__btn {
    height: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__btn {
    height: 60px;
  }
}
.school__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;
}
@media screen and (min-width: 768px) {
  .school__btn a {
    border-radius: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__btn a {
    border-radius: 30px;
  }
}
.school__btn a::after {
  right: 7%;
}
@media screen and (min-width: 768px) {
  .school__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) {
  .school__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;
  }
}
.school__btn a:hover {
  opacity: 0.85;
}
.school__btn--trial {
  position: relative;
}
@media screen and (min-width: 768px) {
  .school__btn--trial {
    max-width: 11.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__btn--trial {
    max-width: 170px;
  }
}
.school__btn--trial a {
  background: #E34B44;
  color: #ffffff;
}
.school__btn--trial a::before {
  left: 10%;
}
@media screen and (min-width: 768px) {
  .school__btn--trial a::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/school_card_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.6034722222vw;
    height: 1.5145833333vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__btn--trial a::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/school_card_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 23.09px;
    height: 21.81px;
  }
}
.school__btn--counseling {
  position: relative;
}
@media screen and (min-width: 768px) {
  .school__btn--counseling {
    max-width: 25.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__btn--counseling {
    max-width: 370px;
  }
}
.school__btn--counseling a {
  background: #E34B44;
  color: #ffffff;
}
.school__btn--counseling a::before {
  left: 10%;
}
@media screen and (min-width: 768px) {
  .school__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) {
  .school__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;
  }
}
.school__card {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .school__card {
    width: 41.875vw;
    height: 54.5138888889vw;
    border-radius: 1.3888888889vw;
    box-shadow: 0 0.5555555556vw 1.3888888889vw rgba(0, 0, 0, 0.08);
  }
}
@media screen and (min-width: 1440px) {
  .school__card {
    width: 603px;
    height: 785px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
}
.school__card.is-active {
  display: flex;
}
.school__map {
  position: relative;
}
@media screen and (min-width: 768px) {
  .school__map {
    margin-bottom: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__map {
    margin-bottom: 5px;
  }
}
.school__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 603/238;
  display: block;
}
.school__detail {
  display: flex;
  justify-content: flex-end;
}
.school__detail a {
  color: #DB1845;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: underline;
  padding: 6px 10px;
  border-radius: 999px;
}
.school__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) {
  .school__info {
    row-gap: 0.6944444444vw;
    margin-bottom: 1.3888888889vw;
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__info {
    row-gap: 10px;
    margin-bottom: 20px;
    padding-inline: 30px;
  }
}
.school__info dt {
  font-weight: 700;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .school__info dt {
    padding-bottom: 0.9722222222vw;
    border-bottom: 0.0694444444vw solid #e5e5e5;
  }
}
@media screen and (min-width: 1440px) {
  .school__info dt {
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;
  }
}
.school__info dt:nth-of-type(1) {
  line-height: 3;
}
.school__info dt:nth-of-type(2) {
  line-height: 3;
}
.school__info dd {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .school__info dd {
    padding-bottom: 0.9722222222vw;
    border-bottom: 0.0694444444vw solid #e5e5e5;
  }
}
@media screen and (min-width: 1440px) {
  .school__info dd {
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;
  }
}
.school__info dd span {
  font-size: 2.8rem;
  color: #DB1845;
  font-weight: 500;
}
.school__btns {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .school__btns {
    gap: 1.1111111111vw;
    padding-inline: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .school__btns {
    gap: 16px;
    padding-inline: 30px;
  }
}
.school__right {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.school__card {
  display: none;
}

.news {
  position: relative;
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .news {
    margin-top: 4.1666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .news {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  .news#news {
    scroll-margin-top: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .news#news {
    scroll-margin-top: 120px;
  }
}
.news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 72.8vw;
  border-radius: 0 8vw 8vw 0;
  background: #FDF1F1;
}
@media screen and (min-width: 768px) {
  .news::before {
    width: 100%;
    height: 29.7222222222vw;
    background: #F4F4F4;
    border-radius: 0;
  }
}
@media screen and (min-width: 1440px) {
  .news::before {
    height: 428px;
    background: #F4F4F4;
  }
}
.news::before {
  z-index: -1;
}
.news__wrapper {
  margin: 0 auto;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .news__wrapper {
    width: 83.3333333333vw;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .news__wrapper {
    width: 1200px;
  }
}
.news__flex {
  padding-top: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .news__flex {
    display: flex;
    justify-content: space-between;
    padding-top: 1.1805555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__flex {
    padding-top: 17px;
  }
}
.news__group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .news__group {
    gap: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__group {
    gap: 40px;
  }
}
.news__title {
  font-size: 2.8rem;
  font-weight: wont-weight(bold);
  position: relative;
}
@media screen and (min-width: 768px) {
  .news__title {
    font-size: 3.6rem;
  }
}
.news__title::before {
  position: absolute;
  content: "";
  top: -30%;
  background: #E34B44;
  width: 9.6vw;
  height: 1.3333333333vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .news__title::before {
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__title::before {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.news__title--sub {
  color: #CCCCCC;
  text-align: right;
}
.news__title--sub::before {
  display: none;
}
.news__btn {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #E34B44;
  font-size: 1.4rem;
  width: 42.6666666667vw;
  height: 9.3333333333vw;
  border-radius: 13.3333333333vw;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .news__btn {
    width: 11.1111111111vw;
    height: 2.4305555556vw;
    border-radius: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__btn {
    width: 160px;
    height: 35px;
    border-radius: 50px;
  }
}
.news__btn a {
  color: #ffffff;
}
.news__btn a::before {
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  position: absolute;
  background-image: url("../img/module/info_btn_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 3.984vw;
  height: 3.792vw;
}
@media screen and (min-width: 768px) {
  .news__btn a::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 1.0375vw;
    height: 0.9875vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__btn a::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 14.94px;
    height: 14.22px;
  }
}
.news__swiper--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .news__swiper--pc {
    display: block;
    margin-block: 2.6388888889vw;
    padding: 0.1388888889vw 0.6944444444vw 2.7777777778vw 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__swiper--pc {
    display: block;
    margin-block: 38px;
    padding: 2px 10px 40px 10px;
  }
}
.news__swiper--sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .news__swiper--sp {
    display: none;
  }
}
.news__item {
  height: auto;
  margin: 0 0 2.6666666667vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .news__item {
    margin: 0;
  }
}
.news__item:last-of-type {
  margin: 0;
}
.news__item {
  background-color: #ffffff;
  padding: 4vw 5.3333333333vw;
  min-height: 23.4666666667vw;
  border-radius: 2.6666666667vw;
  box-shadow: 0 0.5333333333vw 1.6vw;
}
@media screen and (min-width: 768px) {
  .news__item {
    padding: 1.3888888889vw;
    min-height: 9.5833333333vw;
    margin: 0;
    border-radius: 0.6944444444vw;
    box-shadow: 0 0.1388888889vw 0.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__item {
    padding: 20px;
    min-height: 138px;
    border-radius: 10px;
    box-shadow: 0 2px 6px;
  }
}
.news__item:hover {
  filter: brightness(0.8);
  transition: 0.5s ease;
}
.news__item a {
  width: 100%;
  height: 100%;
}
.news__item a:hover {
  filter: brightness(0.8);
  transition: 0.5s ease;
}
.news__unit {
  width: 100%;
  display: flex;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .news__unit {
    margin-bottom: 1.0416666667vw;
    gap: 1.7708333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__unit {
    margin-bottom: 15px;
    gap: 25.5px;
  }
}
.news__date {
  font-size: 1.6rem;
  font-weight: bold;
  color: "";
  margin-right: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 1.2rem;
    margin-right: 0;
  }
}
.news__category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25.8666666667vw;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #3c3c3c;
}
@media screen and (min-width: 768px) {
  .news__category {
    font-size: 1.2rem;
    width: 6.7361111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__category {
    width: 97px;
  }
}
.news__post {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .news__post {
    font-size: 1.6rem;
  }
}
.news .swiper-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}
.news .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #CCCCCC;
  opacity: 1;
  margin: 0 6px;
}
.news .swiper-pagination-bullet-active {
  background: #E34B44;
}
.news__thumnail {
  width: 29.3333333333vw;
  height: 29.3333333333vw;
  background: #CCCCCC;
  border-radius: 2.6666666667vw;
  font-size: 1.8rem;
  color: #ffffff;
  text-align: center;
  line-height: 6;
}
@media screen and (min-width: 768px) {
  .news__thumnail {
    width: 7.4305555556vw;
    height: 7.4305555556vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__thumnail {
    width: 107px;
    height: 107px;
    border-radius: 10px;
  }
}
.news__contents {
  display: flex;
  justify-content: space-between;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .news__contents {
    gap: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  .news__contents {
    gap: 18px;
  }
}

@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;
  }
}

.strangth {
  position: relative;
  margin-top: 9.8666666667vw;
}
@media screen and (min-width: 768px) {
  .strangth {
    margin-top: 4.4444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth {
    margin-top: 64px;
  }
}
.strangth::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) {
  .strangth::before {
    width: 35%;
    height: 36.1805555556vw;
    border-radius: 0 2.0833333333vw 2.0833333333vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .strangth::before {
    height: 521px;
    border-radius: 0 30px 30px 0;
  }
}
.strangth::before {
  background: #F0F4F8;
  z-index: -1;
}
.strangth__wrapper {
  margin: 0 auto;
  padding-inline: 4vw;
}
@media screen and (min-width: 768px) {
  .strangth__wrapper {
    width: 83.3333333333vw;
    padding-inline: 0;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__wrapper {
    width: 1200px;
  }
}
@media screen and (min-width: 768px) {
  .strangth__flex {
    display: flex;
    justify-content: space-between;
    padding-top: 1.1805555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__flex {
    padding-top: 17px;
  }
}
@media screen and (min-width: 768px) {
  .strangth__flex--bottom {
    padding-top: 2.1527777778vw;
    gap: 2.7777777778vw;
    margin-left: 3.0555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__flex--bottom {
    padding-top: 31px;
    gap: 40px;
    margin-left: 44px;
  }
}
.strangth__title {
  font-size: 2.8rem;
  font-weight: wont-weight(bold);
  position: relative;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 768px) {
  .strangth__title {
    font-size: 3.6rem;
  }
}
.strangth__title::before {
  position: absolute;
  content: "";
  top: -30%;
  background: #3E6AAD;
  width: 9.6vw;
  height: 1.3333333333vw;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .strangth__title::before {
    width: 3.1944444444vw;
    height: 0.3472222222vw;
    border-radius: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__title::before {
    width: 46px;
    height: 5px;
    border-radius: 10px;
  }
}
.strangth__title--sub {
  color: #CCCCCC;
  text-align: right;
}
.strangth__title--sub::before {
  display: none;
}
.strangth__title--1 {
  font-size: 4rem;
}
@media screen and (min-width: 768px) {
  .strangth__title--1 {
    font-size: 8rem;
  }
}
.strangth__title--1::before {
  display: none;
}
.strangth__title--1 span {
  color: #2D589A;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .strangth__title--1 span {
    padding-right: tb-vw(10);
  }
}
@media screen and (min-width: 1440px) {
  .strangth__title--1 span {
    padding-right: 10px;
  }
}
.strangth__title--2, .strangth__title--3 {
  font-size: 3rem;
}
@media screen and (min-width: 768px) {
  .strangth__title--2, .strangth__title--3 {
    font-size: 4.5rem;
    display: flex;
    align-items: flex-start;
  }
}
.strangth__title--2::before, .strangth__title--3::before {
  display: none;
}
.strangth__num {
  color: #DB1845;
  font-weight: 400;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .strangth__num {
    padding-right: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__num {
    padding-right: 30px;
  }
}
@media screen and (min-width: 768px) {
  .strangth__text-wrap {
    line-height: 1.4;
  }
}
.strangth__jpx {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 5.6vw;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .strangth__jpx {
    gap: 0.8333333333vw;
    margin-block: 0;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__jpx {
    gap: 12px;
  }
}
@media screen and (min-width: 768px) {
  .strangth__group {
    display: flex;
    justify-content: space-between;
  }
}
.strangth__group--text {
  display: block;
}
.strangth__text {
  font-size: 1.6rem;
  font-weight: 500;
}
.strangth__text--jpx {
  font-size: 1.2rem;
}
.strangth__text--top {
  margin-bottom: 6.9333333333vw;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .strangth__text--top {
    margin-bottom: 1.6666666667vw;
    line-height: 3.2rem;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__text--top {
    margin-bottom: 24px;
  }
}
.strangth__text--bottom {
  margin-block: 5.6vw;
}
@media screen and (min-width: 768px) {
  .strangth__text--bottom {
    margin-block: 0;
    line-height: 3.2rem;
  }
}
.strangth__link {
  font-size: 1.6rem;
  margin-block: 3.7333333333vw 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .strangth__link {
    margin-block: 0;
  }
}
.strangth__link a {
  color: #2D589A;
  text-decoration: underline;
}
.strangth__content {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .strangth__content {
    flex-direction: row;
    justify-content: flex-end;
    gap: 3.8888888889vw;
    margin-block: 2.3611111111vw 3.8194444444vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__content {
    gap: 56px;
    margin-block: 34px 55px;
  }
}
.strangth__content--bottom {
  flex-direction: column;
  justify-content: flex-start;
  margin-block: 0;
  gap: 0;
}
.strangth__content--title {
  margin-block: 0;
}
.strangth__content--lined {
  position: relative;
}
@media screen and (min-width: 768px) {
  .strangth__content--lined {
    padding-left: 4.5833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__content--lined {
    padding-left: 66px;
  }
}
@media screen and (min-width: 768px) {
  .strangth__content--lined::before {
    content: "";
    position: absolute;
    top: 0;
    left: 4%;
    width: 0.3472222222vw;
    height: 100%;
    background: #DB1845;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__content--lined::before {
    width: 5px;
  }
}
@media screen and (min-width: 768px) {
  .strangth__explain {
    border-left: 0.3472222222vw solid #2D589A;
    padding-left: 3.0902777778vw;
    margin-left: 4.6527777778vw;
    width: 50%;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__explain {
    border-left: 5px solid #2D589A;
    padding-left: 44.5px;
    margin-left: 67px;
  }
}
@media screen and (min-width: 768px) {
  .strangth__img--logo {
    margin-block: 2.6388888889vw 0.9722222222vw;
    width: 20.3472222222vw;
    height: 2.9166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__img--logo {
    margin-block: 38px 14px;
    width: 293px;
    height: 42px;
  }
}
.strangth__img img {
  max-width: 100%;
  height: 100%;
}
.strangth__img--flex {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .strangth__img--flex {
    width: 50%;
  }
}
.strangth__btns {
  margin: 5.3333333333vw auto 3.7333333333vw auto;
}
@media screen and (min-width: 768px) {
  .strangth__btns {
    margin: 1.3888888889vw 0 0.9722222222vw 0;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__btns {
    margin: 20px 0 14px 0;
  }
}
.strangth__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  transition: 0.2s;
}
.strangth__btn:hover {
  opacity: 0.6;
}
.strangth__btn--red, .strangth__btn--blue {
  font-size: 2rem;
  color: #ffffff;
  width: 78.1333333333vw;
  height: 14.6666666667vw;
  border-radius: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .strangth__btn--red, .strangth__btn--blue {
    font-size: 2.7rem;
  }
}
@media screen and (min-width: 768px) {
  .strangth__btn--red, .strangth__btn--blue {
    width: 26.5277777778vw;
    height: 4.9305555556vw;
    border-radius: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__btn--red, .strangth__btn--blue {
    width: 382px;
    height: 71px;
    border-radius: 50px;
  }
}
.strangth__btn--red::before, .strangth__btn--blue::before {
  right: 6%;
  content: "";
  position: absolute;
  background-image: url("../img/module/info_btn_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 6.176vw;
  height: 5.88vw;
}
@media screen and (min-width: 768px) {
  .strangth__btn--red::before, .strangth__btn--blue::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 2.0902777778vw;
    height: 1.9895833333vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__btn--red::before, .strangth__btn--blue::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 30.1px;
    height: 28.65px;
  }
}
.strangth__btn--net {
  background: #E34B44;
  font-size: 2rem;
  color: #ffffff;
  width: 78.6666666667vw;
  height: 18.9333333333vw;
  border-radius: 13.3333333333vw;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .strangth__btn--net {
    font-size: 2.3rem;
    width: 23.6111111111vw;
    height: 5.6944444444vw;
    border-radius: 3.4722222222vw;
    margin-top: 3.6111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__btn--net {
    width: 340px;
    height: 82px;
    border-radius: 50px;
    margin-top: 52px;
  }
}
.strangth__btn--net a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: left;
  padding-left: 8vw;
}
@media screen and (min-width: 768px) {
  .strangth__btn--net a {
    padding-left: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__btn--net a {
    padding-left: 30px;
  }
}
.strangth__btn--net:hover {
  opacity: 0.6;
}
.strangth__btn--net::before {
  right: 6%;
  content: "";
  position: absolute;
  background-image: url("../img/module/info_btn_icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 6.176vw;
  height: 5.88vw;
}
@media screen and (min-width: 768px) {
  .strangth__btn--net::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 2.0902777778vw;
    height: 1.9895833333vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__btn--net::before {
    content: "";
    position: absolute;
    background-image: url("../img/module/info_btn_icon1.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 30.1px;
    height: 28.65px;
  }
}
.strangth__btn--net a {
  color: #ffffff;
  line-height: 1;
}
.strangth__btn--net span {
  font-size: 1.6rem;
}
@media screen and (min-width: 1440px) {
  .strangth__btn--net span {
    font-size: 1.8rem;
  }
}
.strangth__btn--red {
  background: #E34B44;
}
.strangth__btn--blue {
  background: #3E6AAD;
}
.strangth__btn--gold, .strangth__btn--silver {
  z-index: 2;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: -2.6666666667vw;
  width: 51.2vw;
  height: 8vw;
}
@media screen and (min-width: 768px) {
  .strangth__btn--gold, .strangth__btn--silver {
    font-size: 1.9rem;
    margin-bottom: -0.8333333333vw;
    width: 17.2916666667vw;
    height: 2.7777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  .strangth__btn--gold, .strangth__btn--silver {
    margin-bottom: -12px;
    width: 249px;
    height: 40px;
  }
}
.strangth__btn--gold {
  background: linear-gradient(180deg, #ceb663, #af994e);
}
.strangth__btn--silver {
  background: linear-gradient(180deg, #cbc9c9, #9a9898);
}

.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;
}

.sns__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) {
  .sns__btns {
    gap: 12px;
  }
}
@media screen and (min-width: 1440px) {
  .sns__btns {
    gap: 14px;
  }
}
.sns__btn {
  width: 44px;
  height: 44px;
  transition: 0.3s;
}
.sns__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.sns__btn img {
  height: auto;
}
.sns__btn:hover {
  opacity: 0.85;
}
@media screen and (min-width: 768px) {
  .sns__btn:hover {
    transform: translateY(-0.1388888889vw);
  }
}
@media screen and (min-width: 1440px) {
  .sns__btn:hover {
    transform: translateY(-2px);
  }
}