@charset "UTF-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222222;
  background: #ffffff;
}

.l-inner {
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width:768px) {
  .l-inner {
    padding: 0 60px;
  }
}
@media screen and (min-width:1024px) {
  .l-inner {
    padding: 0 83px;
  }
}
@media screen and (min-width:1367px) {
  .l-inner {
    padding-inline: calc((100vw - 1200px) / 2);
  }
}

.l-wrapper {
  position: relative;
  overflow-x: hidden;
}

.l-wrapper {
  position: relative;
  overflow-x: hidden;
}

.c-link {
  display: block;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-link:hover {
    opacity: 0.7;
    color: inherit;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.c-btn {
  width: 260px;
  height: 50px;
  padding-block: 15px;
  padding-left: 20px;
  border: 1px solid #0364ff;
  border-radius: 10px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 15px;
  width: 12px;
  height: 12px;
  background: url(../images/icon-right-blue.svg) center/contain no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .c-btn:hover {
    background: #3280FB;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .c-btn:hover::after {
    background: url(../images/icon-right-white.svg) center/contain no-repeat;
  }
  .c-btn:hover .c-btn__text {
    color: #ffffff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.c-btn__text {
  color: #3280FB;
  font-size: 14px;
  line-height: 1.4285714286;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-under {
  display: inline-block;
  position: relative;
}
.c-under::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #222222;
  scale: 0;
  -webkit-transition: scale 0.5s ease;
  transition: scale 0.5s ease;
}
@media (any-hover: hover) {
  .c-under:hover::after {
    scale: 1;
  }
}

.c-section__title-en {
  color: #3280FB;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.4833333333;
  font-weight: 500;
}

.c-section__title-ja {
  margin-top: -2px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.4444444444;
  font-weight: 600;
}

.c-head {
  position: relative;
}

.c-head__title-wrap {
  margin-top: 51px;
  margin-left: clamp(20px, 8.78477306vw, 120px);
  background: #ffffff;
  position: relative;
  z-index: 3;
}

.c-head__title-en {
  color: #3280FB;
  font-size: 14px;
  line-height: 1.4285714286;
}

.c-head__title-ja {
  margin-top: 20px;
  font-size: clamp(24px, 2.4890190337vw, 34px);
  line-height: 1.4705882353;
  font-weight: 500;
}

.c-head__bg-text {
  position: relative;
  z-index: 2;
}
.c-head__bg-text .bg-text__wrap {
  padding-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  width: 100%;
  height: 92.5px;
}
@media screen and (min-width:768px) {
  .c-head__bg-text .bg-text__wrap {
    height: 185px;
  }
}
.c-head__bg-text .bg-text {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: infinity-scroll-left 50s infinite linear 0.5s both;
          animation: infinity-scroll-left 50s infinite linear 0.5s both;
}
.c-head__bg-text .bg-text img {
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.c-body {
  position: relative;
  margin-top: -20px;
  border-radius: 40px 40px 0px 0px;
  background: #F5F7FF;
  padding-top: clamp(80px, 8.3333333333vw, 100px);
  z-index: 2;
}

@media screen and (min-width:768px) {
  .c-body {
    margin-top: -41px;
  }
}
.c-breadcrumb__wrap {
  padding-top: 90px;
  margin-left: 20px;
  position: relative;
  z-index: 4;
}



.c-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  color: #909090;
  font-weight: 300;
  letter-spacing: 0.78px;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumb a {
  color: inherit;
  padding: 0;
}
@media (any-hover: hover) {
  .c-breadcrumb a:hover {
    color: inherit;
    text-decoration: underline;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

.c-arrow {
  margin-left: 21.82px;
  margin-right: 15.6px;
  width: 6.62px;
  height: 7.57px;
  background: url(../images/breadcrumb-arrow.svg) no-repeat center center/cover;
}

.swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width:100%;
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 22px;
  right: 20px;
  width: 52px;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width:1024px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon.js-show {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer__icon.js-show .drawer__icon-bar:nth-of-type(1) {
  rotate: 45deg;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.drawer__icon.js-show .drawer__icon-bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon-bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer__icon-bar {
  width: 30px;
  height: 2px;
  background: #222222;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #F9F8F7;
  overflow-y: scroll;
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.drawer .p-header__btn-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.drawer .p-header__btn {
  margin-inline: auto;
}
@media screen and (min-width:414px) {
  .drawer {
    width: 400px;
  }
}

.drawer.js-show {
  translate: 0;
}

.drawer__menu-list {
  margin-top: 150px;
  padding-left: 50px;
  margin-bottom: 50px;
}
.drawer__menu-list .c-link:nth-of-type(n + 2) {
  margin-top: 24px;
}
.drawer__menu-list .p-header__menu-text {
  font-size: 16px;
  color: #222222;
}

.sp-hidden br {
  display: none;
}
@media screen and (min-width:768px) {
  .sp-hidden br {
    display: block;
  }
}


.sp-hidden-xl br {
  display: none;
}
@media screen and (min-width:1024px) {
  .sp-hidden-xl br {
    display: block;
  }
}

.sp-hidden--first br:first-of-type {
  display: none;
}
@media screen and (min-width:768px) {
  .sp-hidden--first br:first-of-type {
    display: block;
  }
}

@media screen and (min-width:768px) {
  .pc-hidden--first br:first-of-type {
    display: none;
  }
}


@media screen and (min-width:768px) {
  .pc-hidden br {
    display: none;
  }
}

@media screen and (min-width:1024px) {
  .xl-hidden br {
    display: none;
  }
}

@media screen and (min-width:1200px) {
  .xxl-hidden br {
    display: none;
  }
}

@media screen and (min-width:768px) {
  .pc-hidden-company br:nth-of-type(2){
    display: none;
  }
}