/*!***********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./node_modules/webpack-import-glob-loader/index.js!./src/scss/style.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
html {
  font-size: 62.5%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  overscroll-behavior: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd,
figure, figcaption, blockquote, pre,
fieldset, legend, table, caption,
article, aside, section, header, footer, main, nav {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
  color: #000;
}

.pcD {
  display: block;
}

.spD {
  display: none;
}

@media screen and (max-width: 860px) {
  .pcD {
    display: none;
  }
  .spD {
    display: block;
  }
}
.header {
  position: fixed;
  transition: top 0.3s ease;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(10px);
}
.header__inner {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  gap: 32px;
}
@media screen and (max-width: 1180px) {
  .header__inner {
    padding: 15px 16px;
  }
}
@media screen and (max-width: 1180px) {
  .header__inner {
    gap: 8px;
  }
}
.header.down {
  top: -100px;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo a {
  display: flex;
}
.header__logo a span {
  margin-left: 10px;
  font-weight: bold;
  font-size: 2.3rem;
}
.header__logo img {
  height: 28px;
}
@media screen and (max-width: 1580px) {
  .header__logo a {
    display: block;
  }
  .header__logo a span {
    display: block;
    margin-top: 5px;
    margin-left: -4px;
    font-size: 1.6rem;
  }
  .header__logo img {
    height: 28px;
  }
}
@media screen and (max-width: 1180px) {
  .header__logo a {
    display: block;
  }
  .header__logo a span {
    display: block;
    margin-top: 5px;
    margin-left: 0px;
    font-size: 1rem;
  }
  .header__logo img {
    height: 18px;
  }
}
.header__nav {
  margin-left: auto;
}
.header__nav ul {
  display: flex;
  gap: 28px;
}
.header__nav ul li {
  margin-left: 100px;
  text-align: center;
}
.header__nav ul li span {
  display: block;
}
.header__nav ul li img {
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
}
.header__nav a {
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  font-weight: bold;
  transition: opacity 0.2s;
}
.header__nav a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1800px) {
  .header__nav ul li {
    margin-left: 40px;
  }
}
@media screen and (max-width: 1580px) {
  .header__nav ul li {
    margin-left: 20px;
  }
  .header__nav ul li img {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 1180px) {
  .header__nav {
    display: none;
  }
}
.header__entryBtn {
  margin-left: 100px;
  flex-shrink: 0;
  background: #0000C8;
  color: #fff;
  font-size: 2.3rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
  transition: opacity 0.2s;
}
@media screen and (max-width: 1800px) {
  .header__entryBtn {
    margin-left: 40px;
  }
}
@media screen and (max-width: 1580px) {
  .header__entryBtn {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1180px) {
  .header__entryBtn {
    margin-left: auto;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 860px) {
  .header__entryBtn {
    padding: 6px 15px;
    font-size: min(1.4rem, 3.2vw);
  }
}
.header__entryBtn:hover {
  opacity: 0.8;
}
.header__menuBtn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 50px;
  height: 40px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 1180px) {
  .header__menuBtn {
    display: flex;
  }
}
.header__menuBtn span {
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: #000;
  transition: transform 0.3s, opacity 0.3s;
}
.header__menuBtn.is-active span:nth-child(1) {
  transform: translateY(4px) rotate(30deg);
}
.header__menuBtn.is-active span:nth-child(2) {
  display: none;
}
.header__menuBtn.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-30deg);
}
.header__drawer {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  backdrop-filter: blur(10px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
}
.header__drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.header__drawerNav {
  padding: 32px 24px 12px 24px;
  background: #fff;
}
.header__drawerNav ul {
  margin-bottom: 32px;
}
.header__drawerNav ul li {
  margin-bottom: 20px;
}
.header__drawerNav ul a {
  display: block;
  padding: 16px 0;
  font-size: 1.6rem;
  font-weight: bold;
}
.header__drawerNav ul a img {
  margin-right: 20px;
}

.notL {
  pointer-events: none;
  opacity: 0.3;
}

.drawerEntryBtn {
  display: block;
  text-align: center;
  background: #FF7E00;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 16px;
  border-radius: 4px;
}

.menu-open {
  overflow: hidden;
}

.hero, .pageHero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 100px);
  background: #fff;
  padding-top: 100px;
}
@media screen and (max-width: 1180px) {
  .hero, .pageHero {
    padding-top: 75px;
  }
}
.hero__bg, .pageHero__bg {
  pointer-events: none;
}
.hero__bg img, .hero__bg video, .pageHero__bg img, .pageHero__bg video {
  min-height: calc(100vh - 100px);
  width: 100vw;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.hero__bg .finMBox, .pageHero__bg .finMBox {
  position: absolute;
  left: 0;
  top: 100px;
  opacity: 0;
}
.hero__bg .finMBox.on, .pageHero__bg .finMBox.on {
  opacity: 1;
}
@media screen and (max-width: 1180px) {
  .hero__bg img, .hero__bg video, .pageHero__bg img, .pageHero__bg video {
    height: auto;
    width: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .hero__bg .finMBox, .pageHero__bg .finMBox {
    top: 75px;
  }
}
.hero__content, .pageHero__content {
  display: none;
  position: relative;
  z-index: 2;
  padding: 80px 80px 140px;
  max-width: 660px;
}
.hero__title, .pageHero__title {
  font-size: clamp(3.8rem, 9vw, 7.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero__sub, .pageHero__sub {
  font-size: clamp(1.5rem, 3.8vw, 2rem);
  font-weight: 900;
  margin-top: 20px;
}
.hero__entryBtn, .pageHero__entryBtn {
  cursor: pointer;
  position: fixed;
  bottom: 40px;
  right: 80px;
  z-index: 2;
}
.hero__entryBtn--Wrap, .pageHero__entryBtn--Wrap {
  position: relative;
}
.hero__entryBtn--Wrap img, .pageHero__entryBtn--Wrap img {
  max-width: min(200px, 18vw);
  max-height: min(200px, 18vh);
}
.hero__entryBtn--Wrap span, .pageHero__entryBtn--Wrap span {
  position: absolute;
  top: 0%;
  left: 0%;
  animation: rotation 6s linear infinite;
}
@media screen and (max-width: 860px) {
  .hero__entryBtn, .pageHero__entryBtn {
    bottom: 20px;
    right: 20px;
  }
  .hero__entryBtn--Wrap, .pageHero__entryBtn--Wrap {
    position: relative;
  }
  .hero__entryBtn--Wrap img, .pageHero__entryBtn--Wrap img {
    max-width: min(200px, 22vw);
    max-height: min(200px, 22vh);
  }
  .hero__entryBtn--Wrap span, .pageHero__entryBtn--Wrap span {
    position: absolute;
    top: 0%;
    left: 0%;
    animation: rotation 6s linear infinite;
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg) translate(0%, 0%);
  }
  100% {
    transform: rotate(360deg) translate(0%, 0%);
  } /* 1周して戻る */
}
.etBtn {
  cursor: pointer;
}

.etBox {
  position: absolute;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  bottom: min(200px, 18vh);
  left: 50%;
  transform: translate(-50%, 20px);
}
.etBox.on {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
.etBox p {
  margin-bottom: 20px;
}
.etBox p img {
  max-width: min(200px, 14vw);
  max-height: min(200px, 14vh);
}
.etBox.bottom {
  bottom: 30px;
  left: calc(50% + 400px);
}
.etBox.bottom.on {
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1180px) {
  .etBox {
    bottom: 20vw;
  }
  .etBox.bottom {
    bottom: auto;
    width: 100%;
    top: calc(100% + 30px);
    left: 0;
    display: flex;
    justify-content: center;
    transform: translate(0%, 20px);
  }
  .etBox.bottom p {
    margin-bottom: 0px;
    margin: 0 10px;
  }
  .etBox.bottom p img {
    max-width: min(200px, 15vw);
    max-height: min(200px, 15vh);
  }
  .etBox.bottom.on {
    transform: translate(0%, 0);
  }
}

.lead {
  padding: 120px 40px;
  background: #fff;
}
@media screen and (max-width: 1580px) {
  .lead {
    padding: 60px 40px 20px 40px;
  }
}
@media screen and (max-width: 860px) {
  .lead {
    padding: 40px 24px;
  }
}
.lead__inner {
  margin: 0 auto;
  text-align: center;
}
.lead__title {
  font-size: clamp(2rem, 4.8vw, 5rem);
  font-weight: 900;
  line-height: 1.65;
  margin-bottom: 36px;
}
@media screen and (max-width: 860px) {
  .lead__title {
    font-size: min(3.2rem, 5.2vw);
    margin-bottom: 20px;
  }
}
.lead__body {
  font-size: clamp(1.3rem, 2.7vw, 2.8rem);
  font-weight: 900;
  line-height: 2.1;
  margin-bottom: 24px;
}
@media screen and (max-width: 1580px) {
  .lead__body {
    line-height: 1.8;
    font-size: clamp(1.2rem, 2.1vw, 2.4rem);
  }
}
@media screen and (max-width: 860px) {
  .lead__body {
    font-size: min(1.8rem, 3.4vw);
  }
}
.lead__body span.marker {
  background: linear-gradient(transparent 50%, rgb(255, 255, 0) 50%);
  display: inline;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  transition: background-size 1.5s;
}
.lead__body span.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

.highlights {
  padding: 60px 24px 80px;
  background: #fff;
}
@media screen and (max-width: 860px) {
  .highlights {
    padding: 0px 24px;
  }
}
.highlights__inner {
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1580px) {
  .highlights__inner {
    max-width: 1080px;
  }
}
@media screen and (max-width: 1180px) {
  .highlights__inner {
    max-width: 800px;
  }
}
@media screen and (max-width: 860px) {
  .highlights__inner {
    max-width: 540px;
  }
}
.highlights__head {
  text-align: center;
  margin-bottom: 40px;
}
.highlights__title {
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 860px) {
  .highlights__title img {
    max-height: 34px;
  }
}
@media screen and (max-width: 480px) {
  .highlights__title img {
    max-height: 24px;
  }
}
.highlights__sub {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 8px;
}
@media screen and (max-width: 860px) {
  .highlights__sub {
    font-size: clamp(1.3rem, 1.9vw, 2.5rem);
  }
}
.highlights__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 1180px) {
  .highlights__list {
    display: block;
  }
}
.highlights__item {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.2s;
}
.highlights__item:hover {
  transform: translateY(-3px);
}
.highlights__item a {
  display: flex;
  height: 100%;
  color: #fff;
  position: relative;
}
.highlights__item--company {
  background: #FF0000;
  border: 4px solid #FF0000;
}
.highlights__item--future {
  background: #FF007D;
  border: 4px solid #FF007D;
}
.highlights__item--career {
  background: #FF7D00;
  border: 4px solid #FF7D00;
}
.highlights__item--benefits {
  background: #FFC80A;
  border: 4px solid #FFC80A;
}
.highlights__item--support {
  background: #009B7D;
  border: 4px solid #009B7D;
}
.highlights__item--culture {
  background: #0096FF;
  border: 4px solid #0096FF;
}
@media screen and (max-width: 1180px) {
  .highlights__item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 860px) {
  .highlights__item {
    border-width: 2px;
  }
}
.highlights__itemIcon {
  background: #fff;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1580px) {
  .highlights__itemIcon {
    width: 180px;
  }
  .highlights__itemIcon img {
    transform: scale(0.7);
  }
}
@media screen and (max-width: 860px) {
  .highlights__itemIcon {
    width: 120px;
    max-width: 38%;
  }
}
@media screen and (max-width: 360px) {
  .highlights__itemIcon {
    width: 90px;
    max-width: 35%;
  }
  .highlights__itemIcon img {
    transform: scale(0.6);
  }
}
.highlights__itemBody {
  flex: 1;
  min-width: 0;
  position: relative;
  padding: 40px;
}
.highlights__itemBody::after {
  background: url(img/icon_arrow.svg) no-repeat;
  background-size: 100%;
  transform: translateY(-50%);
  position: absolute;
  right: 20px;
  top: 50%;
  content: "";
  display: block;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 1580px) {
  .highlights__itemBody {
    padding: 20px;
  }
}
@media screen and (max-width: 860px) {
  .highlights__itemBody {
    padding: 15px 20px;
  }
  .highlights__itemBody::after {
    right: 15px;
    width: 25px;
    height: 25px;
  }
}
.highlights__itemEn {
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 1580px) {
  .highlights__itemEn img {
    transform: scale(0.7);
    transform-origin: left top;
  }
}
@media screen and (max-width: 860px) {
  .highlights__itemEn {
    margin-bottom: 10px;
  }
  .highlights__itemEn img {
    transform: scale(1);
    max-height: 17px;
  }
  .highlights__itemEn img.high1 {
    max-height: 22px;
  }
}
.highlights__itemJa {
  display: block;
  font-size: clamp(2rem, 1.9vw, 2.7rem);
  margin: 3px 0 8px;
}
@media screen and (max-width: 860px) {
  .highlights__itemJa {
    font-size: clamp(1.4rem, 2.4vw, 2.7rem);
  }
}
.highlights__itemDesc {
  font-size: clamp(1.8rem, 1.2vw, 2.2rem);
  line-height: 1.55;
}
@media screen and (max-width: 860px) {
  .highlights__itemDesc {
    font-size: clamp(1.2rem, 2vw, 2.2rem);
  }
}

.notBl {
  pointer-events: none;
}
.notBl .highlights__itemBody::after {
  display: none;
}

.courses {
  padding: 0 0 80px 0;
  position: relative;
}
.courses::before {
  content: "";
  display: block;
  background: url(img/bg1.svg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: max(340px, 20vw);
}
.courses__inner {
  padding: 0 24px;
  background: #E4E4E4;
  margin: 0 auto;
  text-align: center;
}
.courses__title {
  font-size: clamp(2.2rem, 4.5vw, 6rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.courses__desc {
  font-size: clamp(1.3rem, 1.9vw, 2.5rem);
  line-height: 1.9;
  margin-top: 8px;
  font-weight: 900;
  margin-bottom: 40px;
}
.courses__btns {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 1580px) {
  .courses__btns {
    max-width: 1080px;
  }
}
@media screen and (max-width: 1180px) {
  .courses__btns {
    display: block;
    max-width: 800px;
  }
}
@media screen and (max-width: 860px) {
  .courses__btns {
    max-width: 540px;
  }
}
.courses__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0000C8;
  width: 760px;
  max-width: calc(50% - 20px);
  color: #fff;
  font-size: clamp(1.5rem, 2.3vw, 5rem);
  font-weight: bold;
  padding: 20px 48px 20px 32px;
  border-radius: 15px;
  gap: 6px;
  position: relative;
  transition: opacity 0.2s;
}
.courses__btn::after {
  background: url(img/icon_arrow.svg) no-repeat;
  background-size: 100%;
  transform: translateY(-50%);
  position: absolute;
  right: 20px;
  top: 50%;
  content: "";
  display: block;
  width: 45px;
  height: 45px;
}
.courses__btn.noL {
  pointer-events: none;
}
.courses__btn.noL::after {
  display: none;
}
.courses__btn:hover {
  opacity: 0.85;
}
@media screen and (max-width: 1580px) {
  .courses__btn {
    padding: 10px 48px 10px 32px;
  }
}
@media screen and (max-width: 1180px) {
  .courses__btn {
    padding: 20px 48px 20px 32px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 3.6vw, 5rem);
  }
  .courses__btn:last-child {
    margin-bottom: 0;
  }
  .courses__btn::after {
    right: 20px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 860px) {
  .courses__btn {
    padding: 5px 48px 5px 32px;
    gap: 2px;
    font-size: min(2.4rem, 4.2vw);
  }
}
.courses__btnSub {
  font-size: clamp(1.2rem, 1.9vw, 2.5rem);
  font-weight: normal;
  opacity: 0.88;
}
@media screen and (max-width: 1180px) {
  .courses__btnSub {
    font-size: clamp(1.2rem, 2.5vw, 2.5rem);
  }
}
@media screen and (max-width: 860px) {
  .courses__btnSub {
    font-size: max(1.2rem, 3.4vw);
    font-size: min(1.8rem, 3.4vw);
  }
}
.courses__btnArrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 1180px) {
  .courses::before {
    height: max(220px, 20vw);
  }
}
@media screen and (max-width: 860px) {
  .courses {
    padding: 40px 0;
  }
  .courses::before {
    height: max(120px, 20vw);
  }
}

.ticker {
  overflow: hidden;
  padding: 60px 0;
  background: #E4E4E4;
}
@media screen and (max-width: 1180px) {
  .ticker {
    padding: 40px 0 40px 0;
  }
}
.ticker__row {
  overflow: hidden;
  padding: 13px 0;
}
.ticker__row--c1 {
  background: #FF007D;
}
.ticker__row--c2 {
  background: #FFC80A;
}
.ticker__row--c3 {
  background: #009B7D;
}
.ticker__row--c4 {
  background: #0096FF;
}
.ticker__row--c5 {
  background: #FF7D00;
}
.ticker__row--c6 {
  background: #00963C;
}
.ticker__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: ticker-ltr var(--ticker-duration, 20s) linear infinite;
}
.ticker__track span {
  display: inline-block;
  font-size: clamp(2rem, 5.2vw, 6rem);
  font-weight: bold;
  color: #fff;
}
.ticker__track--rev {
  animation: ticker-rtl var(--ticker-duration, 20s) linear infinite;
}
.ticker__cta {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  margin-top: 60px;
}
@media screen and (max-width: 1580px) {
  .ticker__cta {
    max-width: 800px;
  }
}
@media screen and (max-width: 1180px) {
  .ticker__cta {
    max-width: 800px;
  }
}
@media screen and (max-width: 860px) {
  .ticker__cta {
    max-width: 540px;
    margin-top: 40px;
  }
}
.ticker__cta.none {
  display: none;
}
.ticker__ctaBtn {
  display: block;
  position: relative;
  font-size: clamp(1.6rem, 3.2vw, 5rem);
  font-weight: bold;
  text-align: center;
  padding: 30px 30px;
  background: #0000C8;
  border-radius: 15px;
  color: #fff;
  transition: opacity 0.2s;
}
.ticker__ctaBtn::after {
  background: url(img/icon_arrow.svg) no-repeat;
  background-size: 100%;
  transform: translateY(-50%);
  position: absolute;
  right: 100px;
  top: 50%;
  content: "";
  display: block;
  width: 45px;
  height: 45px;
}
.ticker__ctaBtn.noL {
  pointer-events: none;
}
.ticker__ctaBtn.noL::after {
  display: none;
}
.ticker__ctaBtn:hover {
  opacity: 0.85;
}
@media screen and (max-width: 1580px) {
  .ticker__ctaBtn {
    font-size: 3rem;
  }
  .ticker__ctaBtn::after {
    right: 40px;
  }
}
@media screen and (max-width: 1180px) {
  .ticker__ctaBtn {
    font-size: clamp(1.4rem, 4vw, 3rem);
  }
  .ticker__ctaBtn::after {
    right: 20px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 860px) {
  .ticker__ctaBtn {
    font-size: min(2.4rem, 4.2vw);
    padding: 15px 30px;
  }
}

@keyframes ticker-ltr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes ticker-rtl {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.explain {
  padding: 60px 24px;
  background: #fff;
}
.explain__inner {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
.explain__inner a {
  transition: opacity 0.2s;
  display: flex;
}
.explain__inner a .bmv {
  position: relative;
}
.explain__inner a .bmv .bv {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.explain__inner a .bmv .huki {
  position: absolute;
  right: 5%;
  bottom: 5%;
  max-width: 90%;
}
.explain__inner a .bmv .huki img {
  max-width: 100%;
}
.explain__inner a .bmv h2 {
  position: absolute;
  left: 35px;
  top: 35px;
  height: 120px;
}
.explain__inner a .bmv h2 img {
  max-height: 100%;
}
.explain__inner a .bTxt {
  aspect-ratio: 1/1;
}
.explain__inner a .bTxt img {
  width: 100%;
}
.explain__inner a:hover {
  opacity: 0.85;
}
@media screen and (max-width: 1580px) {
  .explain__inner {
    max-width: 900px;
  }
  .explain__inner a .bmv h2 {
    position: absolute;
    left: 15px;
    top: 15px;
    height: 90px;
  }
  .explain__inner a .bmv h2 img {
    max-height: 100%;
  }
}
@media screen and (max-width: 1180px) {
  .explain__inner {
    max-width: 800px;
  }
}
@media screen and (max-width: 860px) {
  .explain__inner {
    max-width: 540px;
    border-radius: 10px;
  }
  .explain__inner a {
    display: block;
  }
  .explain__inner a .bmv {
    position: relative;
  }
  .explain__inner a .bmv .bv {
    width: 100%;
  }
  .explain__inner a .bmv h2 {
    left: 10px;
    top: 10px;
    height: min(80px, 15vw);
  }
  .explain__inner a .bmv h2 img {
    max-height: 100%;
  }
  .explain__inner a .bTxt {
    aspect-ratio: inherit;
    margin-top: max(-40px, -6vw);
    position: relative;
    z-index: 2;
  }
  .explain__inner a .bTxt img {
    width: 100%;
  }
  .explain__inner a:hover {
    opacity: 0.85;
  }
}
@media screen and (max-width: 860px) {
  .explain {
    padding: 20px 24px 40px 24px;
  }
}

.ourline {
  padding: 40px 0 80px 0;
  background: #fff;
}
.ourline__inner {
  text-align: center;
}
.ourline__head {
  margin-bottom: 80px;
}
@media screen and (max-width: 860px) {
  .ourline__head {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 860px) {
  .ourline__title img {
    max-height: 34px;
  }
}
@media screen and (max-width: 480px) {
  .ourline__title img {
    max-height: 24px;
  }
}
.ourline__sub {
  font-size: clamp(1.3rem, 1.9vw, 2.5rem);
  font-weight: 900;
  margin-top: 20px;
}
@media screen and (max-width: 860px) {
  .ourline__sub {
    font-size: clamp(1.3rem, 1.9vw, 2.5rem);
  }
}
.ourline__swiperWrap {
  overflow: hidden;
}
.ourline__swiperWrap .ourline__swiper {
  padding-left: 80px;
}
@media screen and (max-width: 860px) {
  .ourline__swiperWrap .ourline__swiper {
    padding-left: 40px;
  }
}
@media screen and (max-width: 480px) {
  .ourline__swiperWrap .ourline__swiper {
    padding-left: 0px;
  }
}
.ourline__swiper {
  position: relative;
  overflow: visible !important;
  padding-bottom: 52px !important;
}
.ourline__swiper .swiper-pagination {
  bottom: 0;
}
.ourline__swiper .swiper-pagination-bullet {
  height: 20px;
  width: 20px;
  background: #ccc;
  opacity: 1;
  margin: 0 20px !important;
}
.ourline__swiper .swiper-pagination-bullet-active {
  background: #000;
}
@media screen and (max-width: 860px) {
  .ourline__swiper .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
    opacity: 1;
    margin: 0 8px !important;
  }
}
.ourline__slideName {
  transform: translate(-50%, -50%);
  position: relative;
  left: 50%;
  top: 0;
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.6rem, 1.5vw, 2.4rem);
  padding: 10px;
  max-width: 70%;
  width: 100%;
  border-radius: 50px;
}
.ourline__slideName.c1 {
  background: #FF7D00;
}
.ourline__slideName.c2 {
  background: #009B7D;
}
.ourline__slideName.c3 {
  background: #FF007D;
}
.ourline__cta {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  margin-top: 60px;
}
@media screen and (max-width: 1580px) {
  .ourline__cta {
    max-width: 800px;
  }
}
@media screen and (max-width: 1180px) {
  .ourline__cta {
    max-width: 800px;
  }
}
@media screen and (max-width: 860px) {
  .ourline__cta {
    margin-top: 60px;
    max-width: 640px;
  }
}
.ourline__ctaBtn {
  display: block;
  position: relative;
  font-size: clamp(1.6rem, 3.2vw, 5rem);
  font-weight: bold;
  text-align: center;
  padding: 30px 30px;
  background: #FF7D00;
  border-radius: 15px;
  color: #fff;
  transition: opacity 0.2s;
}
.ourline__ctaBtn::after {
  background: url(img/icon_arrow.svg) no-repeat;
  background-size: 100%;
  transform: translateY(-50%);
  position: absolute;
  right: 100px;
  top: 50%;
  content: "";
  display: block;
  width: 45px;
  height: 45px;
}
.ourline__ctaBtn:hover {
  opacity: 0.85;
}
@media screen and (max-width: 1580px) {
  .ourline__ctaBtn {
    font-size: 3rem;
  }
  .ourline__ctaBtn::after {
    right: 40px;
  }
}
@media screen and (max-width: 1180px) {
  .ourline__ctaBtn {
    font-size: clamp(1.4rem, 4vw, 3rem);
  }
  .ourline__ctaBtn::after {
    right: 20px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 860px) {
  .ourline__ctaBtn {
    padding: 15px 10px;
    font-size: min(2.4rem, 4.2vw);
  }
  .ourline__ctaBtn::after {
    right: 15px;
  }
}

.entryCta {
  max-width: 1280px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 300px;
}
@media screen and (max-width: 1580px) {
  .entryCta {
    max-width: 900px;
  }
}
@media screen and (max-width: 1180px) {
  .entryCta {
    max-width: 800px;
  }
}
@media screen and (max-width: 860px) {
  .entryCta {
    max-width: 640px;
    margin-bottom: 0px;
    padding-bottom: max(100px, 20vw);
    filter: none;
  }
}
@media screen and (max-width: 680px) {
  .entryCta {
    margin: 0 24px;
  }
}
.entryCta__inner {
  padding: 60px;
  border: 4px solid #0600C7;
  position: relative;
  border-radius: 15px;
  background: #fff;
  text-align: center;
  color: #0600C7;
  filter: drop-shadow(40px 40px #0600C7);
  /*
  transform: translateZ(0);
  will-change: transform;
  */
}
@media screen and (max-width: 1180px) {
  .entryCta__inner {
    filter: none;
  }
  .entryCta__inner::after {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #0600C7;
    border-radius: 15px;
    content: "";
    display: block;
    left: 20px;
    top: 20px;
  }
}
@media screen and (max-width: 860px) {
  .entryCta__inner {
    border-radius: 10px;
    border: 2px solid #0600C7;
    padding: 40px 20px;
  }
  .entryCta__inner::after {
    border-radius: 10px;
    left: 10px;
    top: 10px;
  }
}
.entryCta__title {
  font-size: clamp(1.8rem, 3.2vw, 5rem);
  font-weight: 900;
  margin-bottom: 32px;
}
.entryCta__icon {
  margin: 60px auto;
}
@media screen and (max-width: 1580px) {
  .entryCta__icon {
    max-width: 25%;
  }
}
@media screen and (max-width: 860px) {
  .entryCta__icon {
    max-width: 35%;
    margin: 30px auto;
  }
}
.entryCta__desc {
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  line-height: 2;
  font-weight: bold;
  margin-bottom: 30px;
}
.entryCta__btn {
  position: relative;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  padding: 30px 100px;
  background: #0600C7;
  border-radius: 15px;
  color: #fff;
  transition: opacity 0.2s;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
}
.entryCta__btn::after {
  background: url(img/icon_arrow.svg) no-repeat;
  background-size: 100%;
  transform: translateY(-50%);
  position: absolute;
  right: 20px;
  top: 50%;
  content: "";
  display: block;
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 1580px) {
  .entryCta__btn img {
    max-height: 38px;
  }
}
@media screen and (max-width: 1180px) {
  .entryCta__btn {
    padding: 20px 80px;
  }
  .entryCta__btn img {
    max-height: 30px;
  }
  .entryCta__btn::after {
    right: 20px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 860px) {
  .entryCta__btn {
    font-size: min(2.4rem, 4.2vw);
  }
  .entryCta__btn img {
    max-height: 24px;
  }
}

.footer {
  background: #fff;
}
.footer__top {
  padding: 60px 40px 40px;
}
@media screen and (max-width: 860px) {
  .footer__top {
    padding: 50px 24px 20px;
  }
}
@media screen and (max-width: 480px) {
  .footer__top {
    padding: 40px 24px 0px;
  }
}
.footer__inner {
  max-width: 1560px;
  margin: 0 auto;
}
.footer__snsTitle {
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 14px;
}
@media screen and (max-width: 860px) {
  .footer__snsTitle {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 480px) {
  .footer__snsTitle {
    font-size: 1.8rem;
  }
}
.footer__snsIcons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.footer__snsIcons a {
  display: block;
  width: 45px;
  height: 45px;
  transition: opacity 0.2s;
}
.footer__snsIcons a:hover {
  opacity: 0.6;
}
.footer__snsIcons a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 860px) {
  .footer__snsIcons {
    gap: 24px;
  }
  .footer__snsIcons a {
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 480px) {
  .footer__snsIcons {
    gap: 18px;
  }
  .footer__snsIcons a {
    width: 25px;
    height: 25px;
  }
}
.footer__bottom {
  padding: 32px 24px 24px;
  display: flex;
  gap: 40px;
  align-items: center;
}
.footer__bottom.min {
  justify-content: center;
}
@media screen and (max-width: 1580px) {
  .footer__bottom {
    text-align: center;
    display: block;
  }
}
.footer__logos {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.footer__logos a {
  display: block;
  transition: opacity 0.2s;
}
.footer__logos a:hover {
  opacity: 0.7;
}
.footer__logos a {
  margin-left: 40px;
}
.footer__logos a:first-child {
  margin-left: 0;
}
.footer__logos img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1580px) {
  .footer__logos {
    justify-content: center;
  }
}
@media screen and (max-width: 860px) {
  .footer__logos {
    display: block;
    margin-bottom: 60px;
  }
  .footer__logos a {
    margin-left: 0px;
    margin-bottom: 20px;
  }
  .footer__logos a img {
    max-height: 32px;
  }
  .footer__logos a:first-child img {
    max-height: 43px;
  }
}
@media screen and (max-width: 480px) {
  .footer__logos {
    margin-bottom: 40px;
  }
  .footer__logos a img {
    max-height: 22px;
  }
  .footer__logos a:first-child img {
    max-height: 33px;
  }
}
.footer__nav {
  margin-bottom: 28px;
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
}
.footer__nav ul li {
  margin-left: 40px;
}
.footer__nav ul li:first-child {
  margin-left: 0;
}
.footer__nav a {
  font-size: 2rem;
  color: #000;
  transition: opacity 0.2s;
}
.footer__nav a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1580px) {
  .footer__nav ul {
    justify-content: center;
  }
}
@media screen and (max-width: 1180px) {
  .footer__nav a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 860px) {
  .footer__nav ul {
    display: grid;
    grid-template-columns: repeat(3, auto); /* ← テキスト幅 */
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer__nav ul li {
    margin-left: 0px;
    margin: 12px;
    display: flex;
  }
  .footer__nav ul li:nth-child(3n+1) {
    justify-content: flex-start; /* 左 */
  }
  .footer__nav ul li:nth-child(3n+2) {
    justify-content: center; /* 中央 */
  }
  .footer__nav ul li:nth-child(3n+3) {
    justify-content: flex-end; /* 右 */
  }
  .footer__nav a {
    font-size: min(1.6rem, 3.2vw);
  }
}
.footer__copy {
  margin-top: 60px;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 860px) {
  .footer__copy {
    margin-top: 0px;
    font-size: 1.2rem;
  }
}

.linkArea__Wrap {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.linkArea__Wrap p {
  margin-bottom: 40px;
}
.linkArea__Wrap p a {
  transition: opacity 0.2s ease;
}
.linkArea__Wrap p a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 860px) {
  .linkArea {
    padding: 0 24px;
  }
  .linkArea__Wrap p {
    margin-bottom: 20px;
  }
  .linkArea__Wrap p img {
    max-width: 100% !important;
  }
}

.mNavi {
  margin-top: 60px;
}
.mNavi__Wrap {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.mNavi__Wrap a {
  transition: opacity 0.2s ease;
}
.mNavi__Wrap a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 860px) {
  .mNavi__Wrap {
    padding: 0 20px;
    gap: 10px;
  }
}

.blankL {
  background: url(img/blank.svg) no-repeat right center;
  background-size: 1.5em;
  padding-right: 1.7em;
}

.sec {
  transition: all 0.5s ease;
  transform: translateY(30px);
  opacity: 0;
}
.sec.on {
  transform: translateY(0px);
  opacity: 1;
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[3]!./node_modules/webpack-import-glob-loader/index.js!./src/scss/page.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************/
.pagelead {
  padding: 100px 0;
}
.pagelead.p404 {
  padding-top: 200px;
}
.pagelead .lead__inner {
  max-width: 1200px;
  padding: 0 30px;
}
@media screen and (max-width: 1580px) {
  .pagelead {
    padding: 60px 0;
  }
  .pagelead.p404 {
    padding-top: 120px;
  }
  .pagelead .lead__title {
    font-size: clamp(2rem, 3.8vw, 4rem);
  }
  .pagelead .lead__body {
    line-height: 1.8;
    font-size: clamp(1.2rem, 2.1vw, 2.4rem);
  }
}
.titleBox {
  text-align: center;
}
.titleBox__Title {
  font-size: clamp(2.6rem, 4vw, 6rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.titleBox__ITitle {
  margin: 30px 0;
}
.titleBox__Sub {
  font-size: clamp(1.3rem, 1.9vw, 2.5rem);
  line-height: 1.9;
  font-weight: 900;
  margin-bottom: 40px;
}
.titleBox__Mid {
  font-size: clamp(1.6rem, 2.6vw, 3.5rem);
  line-height: 1.9;
  font-weight: 900;
}
@media screen and (max-width: 1580px) {
  .titleBox__ITitle img {
    max-height: 45px;
  }
}
@media screen and (max-width: 860px) {
  .titleBox__Title {
    margin-bottom: 5px;
  }
  .titleBox__ITitle {
    margin: 20px 0;
  }
  .titleBox__ITitle img {
    max-height: min(6vw, 40px);
  }
  .titleBox__Sub {
    margin-bottom: 20px;
  }
}

.upPos {
  position: relative;
  top: -200px;
}
@media screen and (max-width: 1180px) {
  .upPos {
    top: -100px;
  }
}
@media screen and (max-width: 860px) {
  .upPos {
    top: -70px;
  }
}

.upPosCon {
  margin-top: -200px !important;
}
@media screen and (max-width: 1180px) {
  .upPosCon {
    margin-top: -100px !important;
  }
}
@media screen and (max-width: 860px) {
  .upPosCon {
    margin-top: -70px !important;
  }
}

.sCC::before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  height: max(340px, 20vw);
  background-size: cover;
  width: 100%;
}
@media screen and (max-width: 1180px) {
  .sCC::before {
    height: max(220px, 21vw);
  }
}
@media screen and (max-width: 860px) {
  .sCC::before {
    height: max(120px, 21vw);
  }
}

.nextCC {
  padding-bottom: max(240px, 20vw) !important;
}
@media screen and (max-width: 1180px) {
  .nextCC {
    padding-bottom: max(220px, 20vw) !important;
  }
}
@media screen and (max-width: 860px) {
  .nextCC {
    padding-bottom: max(60px, 20vw) !important;
  }
}

.pageTitle {
  padding-top: 100px;
}
.pageTitle h1 {
  text-align: center;
  margin: 100px auto 60px auto;
}
.pageTitle h1 img {
  height: 50px;
}
.pageTitle__Btn {
  margin-bottom: 100px;
  display: flex;
  gap: 70px;
  justify-content: center;
}
.pageTitle__Btn p {
  font-weight: 900;
  font-size: 3rem;
  color: #fff;
  background: #0000C8;
  padding: 5px 50px;
  border-radius: 40px;
}
@media screen and (max-width: 1580px) {
  .pageTitle h1 {
    margin: 80px auto 30px auto;
  }
  .pageTitle h1 img {
    height: 40px;
  }
  .pageTitle__Btn {
    margin-bottom: 60px;
    gap: 40px;
  }
  .pageTitle__Btn p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1180px) {
  .pageTitle {
    padding-top: 75px;
  }
  .pageTitle h1 {
    margin: 60px auto;
  }
  .pageTitle h1 img {
    height: 40px;
  }
  .pageTitle__Btn {
    gap: 40px;
  }
  .pageTitle__Btn p {
    font-size: 2.4rem;
    padding: 5px 30px;
    border-radius: 40px;
  }
}
@media screen and (max-width: 860px) {
  .pageTitle {
    padding-top: 75px;
  }
  .pageTitle h1 {
    margin: 20px auto;
  }
  .pageTitle h1 img {
    height: min(30px, 7vw);
  }
  .pageTitle__Btn {
    margin-bottom: 60px;
    gap: min(20px, 4vw);
  }
  .pageTitle__Btn p {
    font-size: min(1.3rem, 3.2vw);
    padding: 5px 10px;
    border-radius: 40px;
  }
}

.aboutSec1 {
  position: relative;
}
.aboutSec1::before {
  background: url(img/about/bg1.svg) no-repeat center;
  background-size: cover;
}
.aboutSec1__Img {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 100px;
  text-align: center;
}
.aboutSec1__Img img {
  max-width: 100%;
}
@media screen and (max-width: 1580px) {
  .aboutSec1__Img {
    max-width: 1080px;
  }
}
@media screen and (max-width: 1180px) {
  .aboutSec1__Img {
    max-width: 840px;
  }
}
@media screen and (max-width: 860px) {
  .aboutSec1__Img {
    margin-bottom: 100px;
    max-width: 640px;
  }
  .aboutSec1__Img img {
    width: 100%;
  }
}
.aboutSec1__Area {
  padding: 0 30px;
  background: #0000C8;
}
.aboutSec1__Area .titleBox {
  color: #fff;
}
.aboutSec1__Area--Box {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 100px;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
.aboutSec1__Area--Box .pickT {
  margin-bottom: 50px;
}
.aboutSec1__Area--Box .jaTMin {
  font-size: 2.5rem;
  font-size: min(2.1rem, 1.7vw);
  margin-bottom: 25px;
}
.aboutSec1__Area--Box .jaTBig {
  font-size: 5rem;
  font-size: min(4.2rem, 3.7vw);
  margin-bottom: 25px;
}
.aboutSec1__Area--Box .jaTBig sup {
  font-size: 62%;
  margin-left: -0.5em;
}
.aboutSec1__Area--Box .pickTSub {
  margin-bottom: 25px;
  font-size: min(2.1rem, 1.7vw);
}
.aboutSec1__Area--BoxSpec .specTxt {
  line-height: 2;
  font-size: 2.5rem;
  font-size: min(2.1rem, 1.7vw);
}
.aboutSec1__Area--BoxSpec .specBanner {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.aboutSec1__Area--BoxSpec .specBanner p {
  max-width: calc(50% - 25px);
}
.aboutSec1__Area--BoxSpec .specBanner p img {
  max-width: 100%;
}
.aboutSec1__Area--BoxSpec .specBanner p span {
  display: inline-block;
  margin-top: 30px;
  text-align: center;
  font-size: 1.8rem;
  padding-bottom: 4px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1580px) {
  .aboutSec1__Area--Box {
    max-width: 1080px;
  }
  .aboutSec1__Area--Box .pickT {
    margin-bottom: 50px;
  }
  .aboutSec1__Area--Box .pickT img {
    max-height: 45px;
  }
  .aboutSec1__Area--Box .jaTMin {
    font-size: min(2.1rem, 1.6vw);
  }
  .aboutSec1__Area--Box .jaTBig {
    font-size: min(4.2rem, 3.5vw);
  }
  .aboutSec1__Area--Box .pickTSub {
    font-size: min(2.1rem, 1.6vw);
  }
  .aboutSec1__Area--BoxSpec .specTxt {
    font-size: min(2rem, 1.4vw);
  }
  .aboutSec1__Area--BoxSpec .specBanner {
    margin-top: 50px;
    display: flex;
    gap: 40px;
  }
  .aboutSec1__Area--BoxSpec .specBanner p {
    max-width: calc(50% - 20px);
  }
  .aboutSec1__Area--BoxSpec .specBanner p img {
    max-width: 100%;
  }
  .aboutSec1__Area--BoxSpec .specBanner p span {
    font-size: min(1.6rem, 1.3vw);
  }
}
@media screen and (max-width: 1180px) {
  .aboutSec1__Area--Box {
    max-width: 840px;
  }
}
@media screen and (max-width: 860px) {
  .aboutSec1__Area {
    padding: 0 24px;
  }
  .aboutSec1__Area--Box {
    max-width: 640px;
    margin-bottom: 75px;
  }
  .aboutSec1__Area--Box .pickT {
    margin-bottom: 32px;
  }
  .aboutSec1__Area--Box .pickT img {
    max-height: min(6vw, 40px);
  }
  .aboutSec1__Area--Box .jaTMin {
    font-size: min(2.1rem, 3.2vw);
    margin-bottom: 5px;
  }
  .aboutSec1__Area--Box .jaTBig {
    font-size: min(4.2rem, 4.5vw);
    margin-bottom: 5px;
  }
  .aboutSec1__Area--Box .jaTBig img {
    max-height: min(4.2rem, 4.5vw);
    margin: 10px 0;
  }
  .aboutSec1__Area--Box .pickTSub {
    font-size: min(2.1rem, 3.2vw);
    margin-bottom: 25px;
  }
  .aboutSec1__Area--Box .pickTSub img {
    max-height: 12px;
  }
  .aboutSec1__Area--BoxSpec .specTxt {
    padding: 0 12px;
    line-height: 1.8;
    text-align: left;
    font-size: min(2rem, 3.2vw);
  }
  .aboutSec1__Area--BoxSpec .specTxt br {
    display: none;
  }
  .aboutSec1__Area--BoxSpec .specBanner {
    margin-top: 30px;
    display: block;
    justify-content: space-between;
  }
  .aboutSec1__Area--BoxSpec .specBanner p {
    max-width: 100%;
    max-width: 480px;
    margin: 0 auto 40px auto;
  }
  .aboutSec1__Area--BoxSpec .specBanner p img {
    max-width: 100%;
  }
  .aboutSec1__Area--BoxSpec .specBanner p span {
    margin-top: 20px;
    font-size: min(1.6rem, 2.4vw);
  }
}

.aboutSec2 {
  position: relative;
}
.aboutSec2::before {
  background: url(img/about/bg2.svg) no-repeat center;
  background-size: cover;
}
.aboutSec2__Area {
  padding: 0 30px;
  background: #E4E4E4;
}
.aboutSec2__Area .titleBox {
  color: #000;
}
.aboutSec2__Area--Box {
  margin-bottom: 100px;
}
.aboutSec2__Area .groupBox {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 100px 50px;
  border-radius: 10px;
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
  gap: 80px;
}
.aboutSec2__Area .groupBox__Con {
  min-width: 24%;
}
.aboutSec2__Area .groupBox__Con--Icon {
  display: flex;
  justify-content: center;
}
.aboutSec2__Area .groupBox__Con--Icon p {
  margin: 0 15px;
}
.aboutSec2__Area .groupBox__Con--Icon p img {
  max-height: 100px;
}
.aboutSec2__Area .groupBox__Con--Title {
  margin: 30px 0;
}
.aboutSec2__Area .groupBox__Con--Title p {
  text-align: center;
  font-weight: bold;
  font-size: 1.9rem;
}
.aboutSec2__Area .groupBox__Con--Title p.bigT {
  font-size: 3.3rem;
}
.aboutSec2__Area .groupBox__Con--Num {
  border-top: 1px solid #000;
  padding: 20px;
  text-align: center;
}
.aboutSec2__Area .aboutCon {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.aboutSec2__Area .aboutCon__Icon {
  text-align: center;
}
.aboutSec2__Area .aboutCon__Txt {
  max-width: 50%;
  font-weight: bold;
  font-size: 2.5rem;
}
.aboutSec2__Area .aboutCon__Txt h3 {
  font-size: 3.5rem;
  margin-bottom: 30px;
}
.aboutSec2__Area .aboutCon__Txt .sub {
  margin-bottom: 30px;
}
.aboutSec2__Area .serviceArea {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.aboutSec2__Area .serviceArea__Box {
  max-width: calc(25% - 25px);
  margin-bottom: 40px;
  border-radius: 10px;
  padding: 30px;
  background: #fff;
  border: 4px solid;
  font-size: 2.2rem;
  transform: translateZ(0);
  will-change: transform;
}
.aboutSec2__Area .serviceArea__Box.big {
  max-width: calc(50% - 18px);
}
.aboutSec2__Area .serviceArea__BoxWrap {
  display: flex;
  flex-wrap: wrap;
}
.aboutSec2__Area .serviceArea__BoxWrap--Icon {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 45%;
  width: 100%;
  margin: 0 auto;
}
.aboutSec2__Area .serviceArea__BoxWrap--Icon img {
  max-height: 190px;
}
.aboutSec2__Area .serviceArea__BoxWrap--Img {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}
.aboutSec2__Area .serviceArea__BoxWrap--Img img {
  max-height: 200px;
}
.aboutSec2__Area .serviceArea__BoxWrap--ImgSP {
  display: none;
}
.aboutSec2__Area .serviceArea__Box--Icon {
  text-align: center;
  padding: 10px;
}
.aboutSec2__Area .serviceArea__Box--Icon img {
  max-height: 190px;
}
.aboutSec2__Area .serviceArea__Box--Tag {
  margin: 50px 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
}
.aboutSec2__Area .serviceArea__Box--Tag p {
  border-radius: 40px;
  padding: 5px 10px;
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  flex: 1 auto;
}
.aboutSec2__Area .serviceArea__Box--Tag p.w100 {
  width: 100%;
}
.aboutSec2__Area .serviceArea__Box--Txt {
  width: 100%;
  line-height: 1.8;
}
.aboutSec2__Area .serviceArea__Box.c1 {
  border-color: #FF7D00;
  filter: drop-shadow(16px 16px #FF7D00);
}
.aboutSec2__Area .serviceArea__Box.c1 .serviceArea__Box--Tag p {
  background: #FF7D00;
}
.aboutSec2__Area .serviceArea__Box.c2 {
  border-color: #009B7E;
  filter: drop-shadow(16px 16px #009B7E);
}
.aboutSec2__Area .serviceArea__Box.c2 .serviceArea__Box--Tag p {
  background: #009B7E;
}
.aboutSec2__Area .serviceArea__Box.c3 {
  border-color: #00963C;
  filter: drop-shadow(16px 16px #00963C);
}
.aboutSec2__Area .serviceArea__Box.c3 .serviceArea__Box--Tag p {
  background: #00963C;
}
.aboutSec2__Area .serviceArea__Box.c4 {
  border-color: #FF0A00;
  filter: drop-shadow(16px 16px #FF0A00);
}
.aboutSec2__Area .serviceArea__Box.c4 .serviceArea__Box--Tag p {
  background: #FF0A00;
}
.aboutSec2__Area .serviceArea__Box.c5 {
  border-color: #FF007D;
  filter: drop-shadow(16px 16px #FF007D);
}
.aboutSec2__Area .serviceArea__Box.c5 .serviceArea__Box--Tag p {
  background: #FF007D;
}
.aboutSec2__Area .serviceArea__Box.c6 {
  border-color: #0096FF;
  filter: drop-shadow(16px 16px #0096FF);
}
.aboutSec2__Area .serviceArea__Box.c6 .serviceArea__Box--Tag p {
  background: #0096FF;
}
.aboutSec2__Area .serviceArea__Box.c7 {
  border-color: #FFC809;
  filter: drop-shadow(16px 16px #FFC809);
}
.aboutSec2__Area .serviceArea__Box.c7 .serviceArea__Box--Tag p {
  background: #FFC809;
}
@media screen and (max-width: 1580px) {
  .aboutSec2__Area .groupBox {
    padding: 50px 30px;
    max-width: 1080px;
    gap: 40px;
  }
  .aboutSec2__Area .groupBox__Con {
    min-width: 24%;
  }
  .aboutSec2__Area .groupBox__Con--Icon p {
    margin: 0 8px;
  }
  .aboutSec2__Area .groupBox__Con--Icon p img {
    max-height: min(70px, 6vw);
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .aboutSec2__Area .groupBox__Con--Title {
    margin: 30px 0;
  }
  .aboutSec2__Area .groupBox__Con--Title p {
    font-size: min(1.7rem, 1.5vw);
  }
  .aboutSec2__Area .groupBox__Con--Title p.bigT {
    font-size: min(2.4rem, 2vw);
  }
  .aboutSec2__Area .groupBox__Con--Num {
    border-top: 1px solid #000;
    padding: 20px;
    text-align: center;
  }
  .aboutSec2__Area .aboutCon {
    max-width: 1080px;
    width: 100%;
  }
  .aboutSec2__Area .aboutCon__Icon {
    max-width: 40%;
  }
  .aboutSec2__Area .aboutCon__Icon img {
    max-width: 80%;
  }
  .aboutSec2__Area .aboutCon__Txt {
    max-width: 50%;
    font-size: 2.5rem;
    font-size: min(2.1rem, 1.6vw);
  }
  .aboutSec2__Area .aboutCon__Txt h3 {
    font-size: min(2.7rem, 2vw);
    margin-bottom: 30px;
  }
  .aboutSec2__Area .aboutCon__Txt .sub {
    margin-bottom: 30px;
  }
  .aboutSec2__Area .serviceArea {
    /*
    max-width: 1080px;
    &__Box{
    	max-width: calc(50% - 25px);
    	border-radius: 10px;
    	padding: 20px;
    	background: #fff;
    	border: 4px solid;
    	font-size: min(1.6rem,1.3vw);
    	&.big{
    		max-width: calc(50% - 18px);
    	}
    	&Wrap{
    		display: flex;
    		flex-wrap: wrap;
    		&--Icon{
    			max-width: 100%;
    			width: 100%;
    			img{
    				max-height: 140px;
    			}
    		}
    		&--Img{
    			display: none;
    		}

    		&--ImgSP{
    			display: block;
    			width: 100%;
    			text-align: center;
    			margin-bottom: 30px;
    			img{
    				max-width: 480px;
    				width: 100%;

    			}
    		}
    	}
    	&--Icon{
    		text-align: center;
    		padding: 10px;
    		width: 100%;
    		img{
    			    //max-height: 90px;
    				max-height: 140px;
    		}
    	}
    	&--Tag{
    		margin: 30px 0;
    		width: 100%;
    		gap: 15px;
    		p{
    			font-size: min(1.5rem,1.2vw);
    			&.m100{
    				width: 100%;
    			}
    		}
    	}
    	&--Txt{
    		width: 100%;
    		padding:0px 0px;
    	}

    }
    	*/
    max-width: 1080px;
  }
  .aboutSec2__Area .serviceArea__Box {
    margin-bottom: 40px;
    padding: 15px;
    border: 4px solid;
    font-size: 1.6rem;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--Icon {
    max-width: 45%;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--Icon img {
    max-height: 120px;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--Img img {
    max-height: 130px;
  }
  .aboutSec2__Area .serviceArea__Box--Icon {
    text-align: center;
    padding: 10px;
  }
  .aboutSec2__Area .serviceArea__Box--Icon img {
    max-height: 120px;
  }
  .aboutSec2__Area .serviceArea__Box--Tag {
    margin: 30px 0;
    gap: 10px;
  }
  .aboutSec2__Area .serviceArea__Box--Tag p {
    padding: 5px 5px;
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 1180px) {
  .aboutSec2__Area .groupBox {
    padding: 50px 30px;
    max-width: 640px;
    gap: 30px;
    flex-wrap: wrap;
  }
  .aboutSec2__Area .groupBox__Con {
    min-width: 24%;
    width: calc(50% - 15px);
  }
  .aboutSec2__Area .groupBox__Con:first-child {
    width: 100%;
  }
  .aboutSec2__Area .groupBox__Con--Icon p {
    margin: 0 8px;
  }
  .aboutSec2__Area .groupBox__Con--Icon p img {
    max-height: min(90px, 8vw);
  }
  .aboutSec2__Area .aboutCon {
    max-width: 840px;
  }
  .aboutSec2__Area .aboutCon__Icon {
    max-width: 40%;
  }
  .aboutSec2__Area .aboutCon__Txt {
    max-width: 50%;
    font-size: 2.5rem;
    font-size: min(2.1rem, 1.6vw);
  }
  .aboutSec2__Area .aboutCon__Txt h3 {
    font-size: min(2.7rem, 2vw);
    margin-bottom: 30px;
  }
  .aboutSec2__Area .aboutCon__Txt .sub {
    margin-bottom: 30px;
  }
  .aboutSec2__Area .serviceArea {
    max-width: 640px;
  }
  .aboutSec2__Area .serviceArea__Box {
    max-width: calc(50% - 20px);
    border: 4px solid;
    font-size: min(1.8rem, 1.5vw);
  }
  .aboutSec2__Area .serviceArea__Box.big {
    max-width: 100%;
  }
  .aboutSec2__Area .serviceArea__BoxWrap {
    display: flex;
    flex-wrap: wrap;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--Icon {
    max-width: 100%;
    width: 100%;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--Icon img {
    max-height: 120px;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--Img {
    display: none;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--ImgSP {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--ImgSP img {
    max-width: 480px;
    width: 100%;
  }
  .aboutSec2__Area .serviceArea__Box--Icon {
    padding: 10px;
    width: 100%;
  }
  .aboutSec2__Area .serviceArea__Box--Icon img {
    max-height: 120px;
  }
  .aboutSec2__Area .serviceArea__Box--Txt {
    width: 100%;
  }
}
@media screen and (max-width: 860px) {
  .aboutSec2__Area {
    padding: 0 24px;
  }
  .aboutSec2__Area--Box {
    margin-bottom: 40px;
  }
  .aboutSec2__Area .groupBox {
    padding: 50px 15px;
    max-width: 640px;
    gap: 15px;
  }
  .aboutSec2__Area .groupBox__Con {
    width: calc(50% - 8px);
  }
  .aboutSec2__Area .groupBox__Con--Icon p {
    margin: 0 8px;
  }
  .aboutSec2__Area .groupBox__Con--Icon p img {
    max-height: min(90px, 13vw);
  }
  .aboutSec2__Area .groupBox__Con--Title {
    margin: 15px 0;
  }
  .aboutSec2__Area .groupBox__Con--Title p {
    font-size: min(1.7rem, 2.4vw);
  }
  .aboutSec2__Area .groupBox__Con--Title p.bigT {
    font-size: min(2.4rem, 3.6vw);
  }
  .aboutSec2__Area .groupBox__Con--Num {
    padding: 10px;
  }
  .aboutSec2__Area .groupBox__Con--Num img {
    max-height: 20px;
  }
  .aboutSec2__Area .aboutCon {
    max-width: 640px;
    display: block;
  }
  .aboutSec2__Area .aboutCon__Icon {
    max-width: 70%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .aboutSec2__Area .aboutCon__Icon img {
    max-width: 480px;
    width: 100%;
  }
  .aboutSec2__Area .aboutCon__Txt {
    max-width: 100%;
    padding: 0 10px;
    font-size: min(2.1rem, 3.5vw);
  }
  .aboutSec2__Area .aboutCon__Txt h3 {
    font-size: min(2.7rem, 6.2vw);
    margin-bottom: 15px;
  }
  .aboutSec2__Area .aboutCon__Txt .sub {
    font-size: min(2.3rem, 4.2vw);
    margin-bottom: 15px;
  }
  .aboutSec2__Area .serviceArea {
    max-width: 640px;
  }
  .aboutSec2__Area .serviceArea__Box {
    display: block;
    border: 2px solid;
    font-size: min(1.8rem, 3.2vw);
    max-width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .aboutSec2__Area .serviceArea__BoxWrap {
    display: flex;
    flex-wrap: wrap;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--Icon {
    max-width: 100%;
    width: 100%;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--Icon img {
    max-height: 120px;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--Img {
    display: none;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--ImgSP {
    display: block;
    text-align: center;
  }
  .aboutSec2__Area .serviceArea__BoxWrap--ImgSP img {
    max-width: 480px;
    width: 100%;
  }
  .aboutSec2__Area .serviceArea__Box--Icon {
    text-align: center;
    padding: 10px;
    width: 100%;
  }
  .aboutSec2__Area .serviceArea__Box--Icon img {
    max-height: min(110px, 28vw);
  }
  .aboutSec2__Area .serviceArea__Box--Tag {
    margin: 30px 0;
    width: 100%;
    gap: 15px;
  }
  .aboutSec2__Area .serviceArea__Box--Tag p {
    font-size: min(1.6rem, 2.7vw);
  }
  .aboutSec2__Area .serviceArea__Box--Txt {
    width: 100%;
    padding: 0px;
  }
  .aboutSec2__Area .serviceArea__Box.c1 {
    filter: drop-shadow(10px 10px #FF7D00);
  }
  .aboutSec2__Area .serviceArea__Box.c2 {
    filter: drop-shadow(10px 10px #009B7E);
  }
  .aboutSec2__Area .serviceArea__Box.c3 {
    filter: drop-shadow(10px 10px #00963C);
  }
  .aboutSec2__Area .serviceArea__Box.c4 {
    filter: drop-shadow(10px 10px #FF0A00);
  }
  .aboutSec2__Area .serviceArea__Box.c5 {
    filter: drop-shadow(10px 10px #FF007D);
  }
  .aboutSec2__Area .serviceArea__Box.c6 {
    filter: drop-shadow(10px 10px #0096FF);
  }
  .aboutSec2__Area .serviceArea__Box.c7 {
    filter: drop-shadow(10px 10px #FFC809);
  }
}
@media screen and (max-width: 860px) {
  .aboutSec2__Area {
    padding: 0 10px;
  }
  .aboutSec2__Area .serviceArea {
    max-width: 640px;
  }
  .aboutSec2__Area .serviceArea__Box {
    display: block;
    border: 2px solid;
    font-size: min(1.8rem, 3.2vw);
    max-width: calc(50% - 6px);
    margin-bottom: 12px;
  }
  .aboutSec2__Area .serviceArea__Box.big .serviceArea__Box--Tag {
    aspect-ratio: auto;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .aboutSec2__Area .serviceArea__Box.big .serviceArea__Box--Tag p {
    flex: 1 auto;
  }
  .aboutSec2__Area .serviceArea__Box--Icon {
    text-align: center;
    padding: 0px;
    width: 100%;
  }
  .aboutSec2__Area .serviceArea__Box--Icon img {
    max-height: min(110px, 28vw);
  }
  .aboutSec2__Area .serviceArea__Box--Tag {
    margin: 12px 0;
    aspect-ratio: 1/0.7;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .aboutSec2__Area .serviceArea__Box--Tag p {
    flex: none;
  }
  .aboutSec2__Area .serviceArea__Box.c1 {
    filter: drop-shadow(4px 4px #FF7D00);
  }
  .aboutSec2__Area .serviceArea__Box.c2 {
    filter: drop-shadow(4px 4px #009B7E);
  }
  .aboutSec2__Area .serviceArea__Box.c3 {
    filter: drop-shadow(4px 4px #00963C);
  }
  .aboutSec2__Area .serviceArea__Box.c4 {
    filter: drop-shadow(4px 4px #FF0A00);
  }
  .aboutSec2__Area .serviceArea__Box.c5 {
    filter: drop-shadow(4px 4px #FF007D);
  }
  .aboutSec2__Area .serviceArea__Box.c6 {
    filter: drop-shadow(4px 4px #0096FF);
  }
  .aboutSec2__Area .serviceArea__Box.c7 {
    filter: drop-shadow(4px 4px #FFC809);
  }
}

.aboutSec3 {
  position: relative;
}
.aboutSec3::before {
  background: url(img/about/bg3.svg) no-repeat center;
  background-size: cover;
}
.aboutSec3__Area {
  padding: 0 30px;
  background: #FF007D;
}
.aboutSec3__Area .titleBox {
  color: #fff;
}
.aboutSec3__Area--Box {
  margin-bottom: 100px;
}
.aboutSec3__Area .nowArea {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
}
.aboutSec3__Area .nowArea__Box {
  max-width: calc(33.333% - 25px);
  width: 100%;
  display: flex;
  flex-direction: column;
}
.aboutSec3__Area .nowArea__Box--Wcon {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  height: 100%;
  margin-top: 50px;
}
.aboutSec3__Area .nowArea__Box--Wcon:first-child {
  margin-top: 0;
}
.aboutSec3__Area .nowArea__Box--Wcon h3 {
  background: #FF007D;
  font-size: 2.7rem;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  border-radius: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 20px;
}
.aboutSec3__Area .nowArea__Box--Wcon .nums {
  font-weight: bold;
  text-align: center;
  font-size: 2.7rem;
}
.aboutSec3__Area .nowArea__Box--Wcon .nums span {
  font-size: 7rem;
}
.aboutSec3__Area .nowArea__Box--Wcon .min {
  font-size: 1.3rem;
  text-align: center;
}
.aboutSec3__Area .nowArea__Box--Wcon .subTBox {
  font-weight: bold;
  margin-top: 40px;
  text-align: center;
}
.aboutSec3__Area .nowArea__Box--Wcon .subTBox p {
  font-size: 1.8rem;
}
.aboutSec3__Area .nowArea__Box--Wcon .subTBox .BigT {
  font-size: 3.6rem;
}
.aboutSec3__Area .nowArea__Box--Wcon .mTxt {
  margin-top: 0px;
  padding: 30px;
  font-size: 1.7rem;
}
.aboutSec3__Area .nowArea__Box--Wcon .img {
  text-align: center;
}
.aboutSec3__Area .nowArea__Box--Wcon .max {
  margin-left: -20px;
  width: calc(100% + 40px);
}
.aboutSec3__Area .nowArea__Box--Wcon .huArea {
  width: 70%;
  margin: 0 auto;
}
.aboutSec3__Area .nowArea__Box--Wcon .huArea__Box {
  margin-top: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.aboutSec3__Area .nowArea__Box--Wcon .huArea__Box .icon img {
  max-height: 120px;
}
.aboutSec3__Area .nowArea__Box--Wcon .huArea__Box .txt {
  width: 14em;
  margin-left: 50px;
}
.aboutSec3__Area .nowArea__Box--Wcon .huArea__Box .txt p {
  text-align: left;
  font-size: 1.8rem;
}
@media screen and (max-width: 1580px) {
  .aboutSec3__Area .nowArea {
    max-width: 1080px;
  }
  .aboutSec3__Area .nowArea__Box {
    max-width: calc(33.333% - 15px);
  }
  .aboutSec3__Area .nowArea__Box--Wcon {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    margin-top: 30px;
  }
  .aboutSec3__Area .nowArea__Box--Wcon h3 {
    font-size: min(2rem, 1.5vw);
    padding: 10px 20px;
    margin-bottom: 10px;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .nums {
    font-size: min(2.1rem, 1.8vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .nums span {
    font-size: min(6rem, 5.2vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .subTBox {
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .subTBox p {
    font-size: min(1.4rem, 1vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .subTBox .BigT {
    font-size: min(2.1rem, 1.8vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .subTBox .min {
    font-size: min(1.1rem, 0.8vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .mTxt {
    margin-top: 0px;
    padding: 10px 10px 20px 10px;
    font-size: 1.4rem;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .sp50w {
    text-align: center;
    width: calc(100% + 0px);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .sp50w img {
    max-width: 70%;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea {
    width: 90%;
    margin: 0 auto;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea__Box {
    margin-top: 20px;
    display: flex;
    align-items: flex-end;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea__Box .icon {
    width: min(80px, 9vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea__Box .icon img {
    max-height: 80px;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea__Box .txt {
    margin-left: 20px;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea__Box .txt p {
    font-size: 1.5rem;
    line-height: 1;
  }
}
@media screen and (max-width: 860px) {
  .aboutSec3__Area {
    padding: 0 24px;
  }
  .aboutSec3__Area--Box {
    margin-bottom: 50px;
  }
  .aboutSec3__Area .nowArea {
    max-width: 480px;
    display: block;
    margin-top: 0px;
  }
  .aboutSec3__Area .nowArea__Box {
    max-width: 100%;
  }
  .aboutSec3__Area .nowArea__Box--Wcon {
    border-radius: 10px;
    padding: 30px 10px;
    height: auto;
    margin-top: 40px;
  }
  .aboutSec3__Area .nowArea__Box--Wcon:first-child {
    margin-top: 40px;
  }
  .aboutSec3__Area .nowArea__Box--Wcon h3 {
    font-size: min(2.3rem, 3.5vw);
    margin-bottom: 20px;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .nums {
    font-size: min(2.4rem, 4.2vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .nums span {
    font-size: min(6rem, 12.2vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .mTxt {
    padding: 10px;
    margin: 20px 0;
    font-size: min(1.6rem, 3.2vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .subTBox p {
    font-size: min(1.6rem, 3.2vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .subTBox .BigT {
    font-size: min(2.4rem, 5.2vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .subTBox .min {
    font-size: min(1.3rem, 2.7vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .max {
    margin-left: -10px;
    width: calc(100% + 20px);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .sp50w img {
    max-width: 50%;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea__Box {
    margin-top: 30px;
    display: flex;
    align-items: flex-end;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea__Box .icon {
    width: min(80px, 18vw);
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea__Box .icon img {
    max-height: 120px;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea__Box .txt {
    margin-left: 20px;
    width: 10em;
  }
  .aboutSec3__Area .nowArea__Box--Wcon .huArea__Box .txt p {
    font-size: 1.8rem;
    font-size: min(1.8rem, 23.2vw);
  }
}

.aboutSec4 {
  position: relative;
}
.aboutSec4::before {
  background: url(img/about/bg4.svg) no-repeat center;
  background-size: cover;
}
.aboutSec4__Area {
  padding: 0 30px;
  background: #fff;
}
.aboutSec4__Area .titleBox .lead__title {
  font-size: 3.5rem;
}
.aboutSec4__Area .titleBox .lead__body {
  font-size: 2.5rem;
}
.aboutSec4__Area--Box {
  margin-bottom: 200px;
}
.aboutSec4__Area--Box .futureArea {
  max-width: 1560px;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}
.aboutSec4__Area--Box .futureArea__Box {
  width: calc(33.333% - 25px);
  position: relative;
  text-align: center;
  background: rgba(255, 0, 125, 0.4);
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 40px;
  color: #fff;
}
.aboutSec4__Area--Box .futureArea__Box:nth-child(2) {
  background: rgba(255, 0, 125, 0.7);
}
.aboutSec4__Area--Box .futureArea__Box:nth-child(3) {
  background: rgb(255, 0, 125);
}
.aboutSec4__Area--Box .futureArea__Box:nth-child(3)::after {
  display: none;
}
.aboutSec4__Area--Box .futureArea__Box::after {
  position: absolute;
  left: calc(100% + 10px);
  top: calc(50% - 25px);
  background: url(img/about/icon_arrow_p.svg) center no-repeat;
  background-size: 100%;
  height: 50px;
  width: 20px;
  content: "";
  display: block;
}
.aboutSec4__Area--Box .futureArea__Box h3 {
  font-weight: 900;
  background: #fff;
  border-radius: 40px;
  font-size: 3rem;
  text-align: center;
  padding: 10px 20px;
  margin-bottom: 50px;
  color: #FF007D;
}
.aboutSec4__Area--Box .futureArea__Box p {
  font-size: 1.8rem;
}
.aboutSec4__Area--Box .futureArea__Box p.pick {
  margin: 0 auto;
  margin-top: 30px;
  font-size: 2.5rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
}
.aboutSec4__Area--Box .futureArea__Box p.kibo {
  font-weight: 900;
  font-size: 4.4rem;
}
.aboutSec4__Area--Box .futureArea__Box p.kibo span {
  font-size: 7rem;
}
@media screen and (max-width: 1580px) {
  .aboutSec4__Area {
    padding: 0 30px;
  }
  .aboutSec4__Area--Box .futureArea {
    max-width: 1080px;
  }
  .aboutSec4__Area--Box .futureArea__Box {
    width: calc(33.333% - 25px);
    border-radius: 10px;
    padding: 20px;
    color: #fff;
  }
  .aboutSec4__Area--Box .futureArea__Box:nth-child(3)::after {
    display: none;
  }
  .aboutSec4__Area--Box .futureArea__Box h3 {
    font-size: min(2.1rem, 1.6vw);
    padding: 10px 20px;
    margin-bottom: 30px;
  }
  .aboutSec4__Area--Box .futureArea__Box p {
    font-size: min(1.4rem, 1.1vw);
  }
  .aboutSec4__Area--Box .futureArea__Box p.pick {
    margin-top: 30px;
    font-size: 2.5rem;
    font-size: min(2.1rem, 1.7vw);
  }
  .aboutSec4__Area--Box .futureArea__Box p.kibo {
    font-size: min(3.4rem, 3vw);
  }
  .aboutSec4__Area--Box .futureArea__Box p.kibo span {
    font-size: min(6rem, 5.2vw);
  }
}
@media screen and (max-width: 860px) {
  .aboutSec4__Area {
    padding: 0 24px;
  }
  .aboutSec4__Area .titleBox .lead__title {
    font-size: min(2rem, 4.2vw);
  }
  .aboutSec4__Area .titleBox .lead__body {
    font-size: min(1.8rem, 3.2vw);
  }
  .aboutSec4__Area--Box {
    margin-bottom: 100px;
  }
  .aboutSec4__Area--Box .futureArea {
    max-width: 480px;
    margin-top: 40px;
    display: block;
  }
  .aboutSec4__Area--Box .futureArea__Box {
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    min-height: inherit;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  .aboutSec4__Area--Box .futureArea__Box::after {
    position: absolute;
    left: 50%;
    top: calc(100% - 5px);
    background: url(img/about/icon_arrow_p.svg) center no-repeat;
    transform: translateX(-50%) rotate(90deg);
    background-size: 100%;
  }
  .aboutSec4__Area--Box .futureArea__Box:nth-child(3) {
    margin-bottom: 0;
  }
  .aboutSec4__Area--Box .futureArea__Box:nth-child(3)::after {
    display: none;
  }
  .aboutSec4__Area--Box .futureArea__Box h3 {
    font-size: min(2.5rem, 4.8vw);
    padding: 10px 20px;
    margin-bottom: 30px;
  }
  .aboutSec4__Area--Box .futureArea__Box p {
    font-size: min(1.8rem, 3.5vw);
  }
  .aboutSec4__Area--Box .futureArea__Box p.pick {
    margin-top: 30px;
    font-size: min(1.8rem, 3.5vw);
  }
  .aboutSec4__Area--Box .futureArea__Box p.kibo {
    font-size: min(3rem, 5.2vw);
  }
  .aboutSec4__Area--Box .futureArea__Box p.kibo span {
    font-size: min(6rem, 12.2vw);
  }
}
/*!*******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/swiper/swiper-bundle.css ***!
  \*******************************************************************************************************************************************************************************************/
/**
 * Swiper 11.2.10
 * 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: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.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 {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.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 {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.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 {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.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 {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.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: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.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 {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.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 {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.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 {
  z-index: 0;
  backface-visibility: hidden;
}
/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  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;
}
/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.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 {
  z-index: 0;
  backface-visibility: hidden;
}
/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}


/*# sourceMappingURL=bundle.css.map*/