@charset "UTF-8";
:root {
  --noto: "Noto Serif JP", serif;
  --noto-sans: "Noto Sans JP", sans-serif;
  --yugo: "游ゴシック体", yugothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
}

.img-wrap {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
}
.img-wrap img {
  width: 100%;
}

.pc-b {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc-b {
    display: none !important;
  }
}

.sp-b {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-b {
    display: block !important;
  }
}

.pc-ib {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .pc-ib {
    display: none !important;
  }
}

.sp-ib {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-ib {
    display: inline-block !important;
  }
}

.pc-f {
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .pc-f {
    display: none !important;
  }
}

.sp-f {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-f {
    display: flex !important;
  }
}

.contact-break {
  display: block !important;
}
@media screen and (max-width: 850px) {
  .contact-break {
    display: none !important;
  }
}

@keyframes fuwa {
  0% {
    translate: 0 -4%;
  }
  50% {
    translate: 0 4%;
  }
  100% {
    translate: 0 -4%;
  }
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup.is-active {
  opacity: 1;
  visibility: visible;
}
.popup__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .popup__wrap {
    flex-direction: column;
  }
}
.popup__overlay {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  height: 100%;
}
.popup__inner {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  border-radius: 10px;
  background: #fff;
  border: solid 1px #2768d4;
}
@media screen and (max-width: 767px) {
  .popup__inner {
    max-width: 400px;
    width: 90%;
  }
}
.popup__left {
  border-radius: 10px 0 0 10px;
  max-width: 220px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .popup__left {
    border-radius: 10px 10px 0 0;
    max-width: 100%;
  }
}
.popup__right {
  border-radius: 0 10px 10px 0;
  max-width: 460px;
  padding: 65px 45px;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.02em;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .popup__right {
    font-size: 14px;
    padding: 25px 20px;
  }
}
.popup__right::before {
  content: "";
  height: auto;
  width: 8px;
  display: block;
  aspect-ratio: 1;
  background: #2768d4;
  border-radius: 9999px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .popup__right::before {
    width: 6px;
    margin-bottom: 6px;
  }
}
.popup__close-btn::after, .popup__close-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background: #fff;
  translate: -50% -50%;
}

.popup__close-btn {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 9999px;
  translate: 50% -50%;
  height: auto;
  width: 39px;
  background: #4d4d4d;
  aspect-ratio: 1/1;
}
.popup__close-btn::before {
  rotate: 45deg;
}
.popup__close-btn::after {
  rotate: -45deg;
}

.blur {
  position: absolute;
  pointer-events: none;
  top: -5%;
  left: 50%;
  translate: -50% 0;
  width: 105%;
  z-index: 10;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  height: 105%;
  -webkit-mask-image: radial-gradient(circle, transparent 35%, black 35%);
          mask-image: radial-gradient(circle, transparent 35%, black 35%);
}
@media screen and (max-width: 767px) {
  .blur {
    width: 100%;
    height: 100%;
    top: 0;
    -webkit-mask-image: radial-gradient(circle, transparent 50%, black 50%);
            mask-image: radial-gradient(circle, transparent 50%, black 50%);
  }
}

.white-circle {
  position: absolute;
  pointer-events: none;
  top: 47.5%;
  left: 50%;
  translate: -50% -50%;
  height: auto;
  width: 43.5%;
  aspect-ratio: 1;
  border-radius: 99999px;
  border: solid 3px #fff;
  z-index: 15;
}
@media screen and (max-width: 767px) {
  .white-circle {
    top: 50%;
    width: 89%;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.swiper-container .swiper {
  position: relative;
}
.swiper-container .swiper .swiper-wrapper {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .swiper-container .swiper .swiper-wrapper {
    height: auto;
    width: 100%;
    aspect-ratio: 520/750;
  }
}
.swiper-container .swiper .swiper-wrapper .swiper-slide-active img,
.swiper-container .swiper .swiper-wrapper .swiper-slide-duplicate-active img,
.swiper-container .swiper .swiper-wrapper .swiper-slide-prev img {
  transform-origin: center bottom;
  animation: zoomUp 10s linear infinite;
}
.swiper-container .swiper .swiper-wrapper .swiper-slide {
  background: #fff;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .swiper-container .swiper .swiper-wrapper .swiper-slide img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.mv {
  position: relative;
}
.mv__title-area {
  z-index: 100;
  position: absolute;
  top: 47%;
  left: 64%;
  translate: 0 -50%;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}
@media screen and (max-width: 767px) {
  .mv__title-area {
    top: auto;
    bottom: 2%;
    left: 8.6666666667%;
    translate: 0 0;
  }
}
.mv__title-area h1 img {
  width: 20vw;
}
@media screen and (max-width: 767px) {
  .mv__title-area h1 img {
    width: 49.3333333333%;
  }
}
.mv__title-area div img {
  width: 22vw;
}
@media screen and (max-width: 767px) {
  .mv__title-area div img {
    width: 52%;
  }
}

.news {
  position: relative;
  z-index: 5;
  margin-top: -150px;
}
@media screen and (max-width: 767px) {
  .news {
    margin-top: 70px;
  }
}
.news__title {
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 -100%;
  padding-top: 20px;
}
.news__title img {
  width: 84px;
}
@media screen and (max-width: 767px) {
  .news__title img {
    width: 65px;
  }
}
.news__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 12px;
  aspect-ratio: 1;
  background: #2768d4;
  border-radius: 9999px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .news__title::after {
    width: 8px;
  }
}
.news__date {
  color: #2768d4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .news__date {
    font-size: 12px;
  }
}
.news__text {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .news__text {
    font-size: 14px;
  }
}
.news__content {
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 20px 15px 20px 0;
  border-radius: 0 9999px 9999px 0;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .news__content {
    gap: 10px;
    padding: 8px 10px 8px 0;
  }
}
.news__left {
  width: 100%;
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: 0.02em;
  max-width: 370px;
}
@media screen and (max-width: 767px) {
  .news__left {
    max-width: 250px;
  }
}
.news__wrap {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.news__wrap:not(:last-child) {
  border-bottom: solid 1px #d9d9d9;
}
.news__right {
  min-width: 105px;
}
@media screen and (max-width: 767px) {
  .news__right {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
  }
}
.news__btn {
  display: block;
  height: auto;
  font-weight: 500;
  width: 100%;
  background: #2768d4;
  border: solid 1px #2768d4;
  aspect-ratio: 1;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: background 0.3s;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .news__btn {
    gap: 5px;
  }
}
@media (hover) {
  .news__btn:hover {
    background: #fff;
  }
  .news__btn:hover .news__btn-text {
    color: #2768d4;
  }
  .news__btn:hover .news__btn-icon {
    background: #2768d4;
  }
}
.news__btn-text {
  color: #fff;
  font-size: 16px;
  line-height: 1.125;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
@media screen and (max-width: 767px) {
  .news__btn-text {
    font-size: 11px;
  }
}
.news__btn-icon {
  height: auto;
  width: 10px;
  aspect-ratio: 1;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .news__btn-icon {
    width: 7px;
  }
}
.news__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.news__inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  background: #fff;
  height: 100%;
  width: 100vw;
}

.about {
  position: relative;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 50px;
  }
}
.about::before {
  z-index: 5;
  top: -10%;
  right: 0;
  content: "";
  position: absolute;
  background: url("../../img/top/about-right-top.png") no-repeat;
  background-size: cover;
  height: auto;
  width: 12.3333333333%;
  aspect-ratio: 272/330;
}
@media screen and (max-width: 767px) {
  .about::before {
    display: none;
  }
}
.about::after {
  top: -30%;
  left: 0;
  content: "";
  z-index: -1;
  position: absolute;
  background: url("../../img/top/about-left-top-bg.jpg") no-repeat;
  background-size: cover;
  height: auto;
  width: 31%;
  aspect-ratio: 722/1360;
}
@media screen and (max-width: 767px) {
  .about::after {
    top: -15%;
    width: 36%;
  }
}
.about__bg {
  position: absolute;
  z-index: -1;
  width: 120%;
  top: -25%;
  left: 150px;
}
@media screen and (max-width: 1400px) {
  .about__bg {
    width: 100%;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  .about__bg {
    top: auto;
    bottom: -22%;
    left: -25px;
  }
}
.about__right-bottom {
  position: absolute;
  bottom: -12.6666666667%;
  right: 0;
  width: 18.6666666667%;
}
@media screen and (max-width: 1400px) {
  .about__right-bottom {
    bottom: -4%;
    width: 14%;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  .about__right-bottom {
    display: none;
  }
}
.about__main-img {
  animation: fuwa 5s infinite forwards ease;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about__main-img {
    display: none;
  }
}
.about__white-circle {
  position: absolute;
  z-index: -1;
  display: block;
  top: 18%;
  right: -37.6344086022%;
  width: 180.6451612903%;
}
@media screen and (max-width: 1400px) {
  .about__white-circle {
    width: 140%;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  .about__white-circle {
    display: none;
  }
}
.about__inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 90%;
  display: flex;
  gap: 55px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .about__inner {
    gap: 20px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  .about__inner {
    gap: 0;
    position: relative;
    flex-direction: column;
    align-items: center;
  }
}
.about__left {
  max-width: 430px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about__left {
    max-width: 100%;
  }
}
.about__sp-bg {
  display: none;
}
@media screen and (max-width: 767px) {
  .about__sp-bg {
    pointer-events: none;
    display: block;
    margin-top: -55px;
  }
}
.about__right {
  margin-top: 135px;
  max-width: 465px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .about__right {
    max-width: 350px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  .about__right {
    margin-top: 0;
  }
}
.about__title {
  padding-left: 24px;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .about__title {
    margin-bottom: 25px;
  }
}
.about__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 10px;
  border-radius: 9999px;
  height: auto;
  aspect-ratio: 1;
  background: #2768d4;
}
@media screen and (max-width: 767px) {
  .about__title::before {
    width: 8px;
  }
}
.about__title img {
  width: 90px;
}
@media screen and (max-width: 767px) {
  .about__title img {
    width: 45px;
  }
}
.about__sub-title {
  width: 415px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .about__sub-title {
    margin-bottom: 25px;
    width: 230px;
  }
}
.about__text {
  margin-bottom: 90px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.about__button-bottom-img-1 {
  display: block;
  max-width: 164px;
  width: 100%;
  margin-left: -190px;
  margin-bottom: 30px;
  animation: fuwa 4s infinite forwards ease reverse;
}
@media screen and (max-width: 1400px) {
  .about__button-bottom-img-1 {
    margin-bottom: 15px;
    margin-left: -50px;
    max-width: 140px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  .about__button-bottom-img-1 {
    display: none;
  }
}
.about__button-bottom-img-2 {
  display: block;
  max-width: 300px;
  width: 100%;
  margin-left: -30px;
  animation: fuwa 4.3s infinite forwards ease reverse;
}
@media screen and (max-width: 1400px) {
  .about__button-bottom-img-2 {
    max-width: 240px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  .about__button-bottom-img-2 {
    display: none;
  }
}
.about__right-bottom-1 {
  display: block;
  max-width: 255px;
  width: 100%;
  margin-top: -250px;
  margin-right: -235px;
  margin-left: auto;
  animation: fuwa 3.8s infinite forwards ease;
}
@media screen and (max-width: 1400px) {
  .about__right-bottom-1 {
    max-width: 200px;
    margin-right: -200px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  .about__right-bottom-1 {
    display: none;
  }
}
.about__right-bottom-2 {
  display: block;
  max-width: 350px;
  width: 100%;
  margin-left: -90px;
  animation: fuwa 4.5s infinite forwards ease;
}
@media screen and (max-width: 1400px) {
  .about__right-bottom-2 {
    max-width: 280px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  .about__right-bottom-2 {
    display: none;
  }
}
.about__right-bottom-3 {
  display: block;
  max-width: 169px;
  width: 100%;
  margin-left: auto;
  margin-right: -120px;
  animation: fuwa 4s infinite forwards ease reverse;
}
@media screen and (max-width: 1400px) {
  .about__right-bottom-3 {
    margin-right: -80px;
    max-width: 120px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 767px) {
  .about__right-bottom-3 {
    display: none;
  }
}
.about__button {
  height: 53px;
  width: 235px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: solid 1px #2768d4;
  color: #2768d4;
  border-radius: 9999px;
  font-weight: 500;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.01em;
  position: relative;
  transition: background 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .about__button {
    width: 140px;
    height: 38px;
    font-size: 14px;
    margin-bottom: 0;
  }
}
.about__button::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  right: 20px;
  translate: 0 -50%;
  background: #2768d4;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .about__button::after {
    width: 7px;
    right: 13px;
  }
}
@media (hover) {
  .about__button:hover {
    color: #fff;
    background: #2768d4;
  }
  .about__button:hover::after {
    background: #fff;
  }
}

.service {
  padding-top: 160px;
  padding-bottom: 125px;
}
@media screen and (max-width: 767px) {
  .service {
    padding-top: 65px;
    padding-bottom: 55px;
  }
}
.service__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .service__inner {
    flex-direction: column;
    gap: 0;
  }
}
.service__right {
  width: 100%;
  max-width: 530px;
  margin-top: 28%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__right {
    margin-top: 20%;
  }
}
.service__bg {
  position: absolute;
  z-index: -1;
  top: -250px;
  right: -32.8767123288%;
  width: 169.8113207547%;
}
@media screen and (max-width: 950px) {
  .service__bg {
    top: -150px;
  }
}
@media screen and (max-width: 950px) and (max-width: 767px) {
  .service__bg {
    top: -45%;
    width: 142%;
    right: -19%;
  }
}
.service .swiper-container2 {
  display: none;
}
@media screen and (max-width: 767px) {
  .service .swiper-container2 {
    display: block;
    position: relative;
    width: 90%;
    margin: 0 auto;
    height: auto;
    aspect-ratio: 1;
  }
}
.service .swiper-container2 .swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.service .swiper-container2 .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.service .swiper-container2 .swiper .swiper-wrapper::after {
  content: "";
  height: auto;
  width: 109.4339622642%;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border: solid 1px #fff;
  border-radius: 9999px;
  z-index: 0;
}
.service .swiper-container2 .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 9999pc;
}
.service__imgs {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .service__imgs {
    display: none;
  }
}
.service__imgs::after {
  content: "";
  height: auto;
  width: 109.4339622642%;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border: solid 1px #fff;
  border-radius: 9999px;
  z-index: 0;
}
.service__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  border-radius: 9999px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.service__img.is-active {
  opacity: 1;
  visibility: visible;
}
.service__title {
  padding-top: 30px;
  position: relative;
  display: flex;
  font-weight: 500;
  align-items: flex-end;
  margin-bottom: 30px;
  gap: 12px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .service__title {
    font-size: 13px;
    padding-top: 15px;
    margin-bottom: 15px;
  }
}
.service__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  border-radius: 9999px;
  height: auto;
  aspect-ratio: 1;
  background: #2768d4;
}
@media screen and (max-width: 767px) {
  .service__title::after {
    width: 8px;
  }
}
.service__title img {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .service__title img {
    width: 110px;
  }
}
.service__text {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .service__text {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.service__left {
  width: 100%;
  max-width: 402px;
}
@media screen and (max-width: 767px) {
  .service__left {
    max-width: 100%;
  }
}
.service__link {
  display: block;
  padding: 40px 0;
  padding-right: 55px;
}
@media screen and (max-width: 767px) {
  .service__link {
    padding: 25px 0;
  }
}
.service__list {
  display: flex;
  flex-direction: column;
}
.service__item:last-child {
  border-bottom: solid 1px #f3f3f3;
}

.acc {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: solid 1px #f3f3f3;
}
.acc--reverse {
  flex-direction: column-reverse;
}
.acc.is-active .acc__arrow {
  background: #2768d4;
}
.acc.is-active .acc__arrow::after {
  background: #fff;
}
.acc.is-active .acc__a {
  height: auto;
}
.acc__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 48px;
  height: auto;
  aspect-ratio: 1;
  border: solid 1px #2768d4;
  background: #fff;
  border-radius: 9999px;
  translate: 0 -50%;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .acc__arrow {
    width: 38px;
  }
}
.acc__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -40% -50%;
  height: auto;
  width: 10px;
  background: #2768d4;
  transition: background 0.3s;
  aspect-ratio: 1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (max-width: 767px) {
  .acc__arrow::after {
    width: 8px;
  }
}
.acc__q {
  display: block;
}
.acc__q-inner {
  cursor: pointer;
  align-items: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .acc__q-inner {
    font-size: 14px;
  }
}
.acc__a {
  height: 0px;
  overflow: hidden;
}
.acc__a-inner {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.06em;
  padding: 15px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.local {
  position: relative;
  padding: 14.6666666667% 0 22%;
  background: url("../../img/top/local-bg.jpg") no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .local {
    padding: 22% 0 30%;
  }
}
.local::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 2250/236;
  background: url("../../img/top/local-top-bg.png") no-repeat;
  background-size: cover;
  z-index: 5;
}
.local::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 2250/435;
  background: url("../../img/top/local-bottom-bg.png") no-repeat;
  background-size: cover;
  z-index: 5;
}
.local__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}
.local__title {
  padding-top: 30px;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
  gap: 12px;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .local__title {
    padding-top: 15px;
    font-size: 13px;
  }
}
.local__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  border-radius: 9999px;
  height: auto;
  aspect-ratio: 1;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .local__title::after {
    width: 8px;
  }
}
.local__title img {
  width: 338px;
  margin-bottom: -15px;
}
@media screen and (max-width: 767px) {
  .local__title img {
    width: 210px;
    margin-bottom: -10px;
  }
}
.local__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.local__overlay--1 .local__cap-jp, .local__overlay--3 .local__cap-jp {
  font-size: 24px;
  line-height: 1.3333333333;
  letter-spacing: 0.03em;
  font-size: min(24px, 1.6vw);
}
@media screen and (max-width: 767px) {
  .local__overlay--1 .local__cap-jp, .local__overlay--3 .local__cap-jp {
    font-size: max(13px, 3.4666666667vw);
  }
}
.local__overlay--2 .local__cap-jp, .local__overlay--4 .local__cap-jp {
  font-size: 18px;
  line-height: 1.2222222222;
  letter-spacing: 0.03em;
  font-size: min(18px, 1.2vw);
}
@media screen and (max-width: 767px) {
  .local__overlay--2 .local__cap-jp, .local__overlay--4 .local__cap-jp {
    font-size: max(11px, 2.9333333333vw);
  }
}
.local__overlay--1 .local__cap-en {
  width: min(50px, 3.3333333333vw);
}
@media screen and (max-width: 767px) {
  .local__overlay--1 .local__cap-en {
    width: max(26px, 6.9333333333vw);
  }
}
.local__overlay--1 .local__icon {
  width: min(74px, 4.9333333333vw);
  margin-bottom: min(22px, 1.4666666667vw);
}
@media screen and (max-width: 767px) {
  .local__overlay--1 .local__icon {
    width: max(40px, 10.6666666667vw);
    margin-bottom: max(15px, 4vw);
  }
}
.local__overlay--2 .local__cap-en {
  width: min(45px, 3vw);
}
@media screen and (max-width: 767px) {
  .local__overlay--2 .local__cap-en {
    width: max(28px, 7.3333333333vw);
  }
}
.local__overlay--2 .local__icon {
  width: min(82px, 5.4666666667vw);
  margin-bottom: min(25px, 1.6666666667vw);
}
@media screen and (max-width: 767px) {
  .local__overlay--2 .local__icon {
    width: max(50px, 13.3333333333vw);
    margin-bottom: max(15px, 4vw);
  }
}
.local__overlay--3 .local__cap-en {
  width: min(60px, 4vw);
}
@media screen and (max-width: 767px) {
  .local__overlay--3 .local__cap-en {
    width: max(32px, 8.5333333333vw);
  }
}
.local__overlay--3 .local__icon {
  width: min(102px, 6.8vw);
  margin-bottom: min(38px, 2.5333333333vw);
}
@media screen and (max-width: 767px) {
  .local__overlay--3 .local__icon {
    width: max(55px, 14.6666666667vw);
    margin-bottom: max(22px, 5.8666666667vw);
  }
}
.local__overlay--4 .local__cap-en {
  width: min(45px, 3vw);
}
@media screen and (max-width: 767px) {
  .local__overlay--4 .local__cap-en {
    width: max(27px, 7.2vw);
  }
}
.local__overlay--4 .local__icon {
  width: min(47px, 3.1333333333vw);
  margin-bottom: min(20px, 1.3333333333vw);
}
@media screen and (max-width: 767px) {
  .local__overlay--4 .local__icon {
    width: max(29px, 7.7333333333vw);
    margin-bottom: max(12px, 3.2vw);
  }
}
.local__cap {
  text-align: center;
  font-weight: 600;
}
.local__cap-en {
  color: #fff047;
  margin-bottom: 5px;
}
.local__cap-jp {
  color: #fff;
}
.local__text {
  color: #fff;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.03em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .local__text {
    font-size: 14px;
    margin-bottom: 14.6666666667vw;
  }
}
.local__content {
  height: auto;
  width: 100%;
  aspect-ratio: 1000/540;
  position: relative;
}
@media screen and (max-width: 767px) {
  .local__content {
    aspect-ratio: initial;
  }
}
.local__img {
  cursor: pointer;
  border-radius: 9999px;
  overflow: hidden;
}
.local__img img {
  transition: scale 0.3s;
}
.local__item {
  position: absolute;
  aspect-ratio: 1;
  height: auto;
  border-radius: 9999px;
}
@media screen and (max-width: 767px) {
  .local__item {
    position: relative;
  }
}
@media (hover) {
  .local__item:hover .local__overlay {
    opacity: 0;
  }
  .local__item:hover .local__img img {
    scale: 1.1;
  }
}
.local__item--1, .local__item--3 {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .local__item--1, .local__item--3 {
    width: 44vw;
  }
}
.local__item--1::after, .local__item--3::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  height: auto;
  width: 110%;
  aspect-ratio: 1;
  border-radius: 9999px;
  border: solid 1px #fff;
  pointer-events: none;
}
.local__item--2, .local__item--4 {
  width: 22%;
}
@media screen and (max-width: 767px) {
  .local__item--2, .local__item--4 {
    width: 36vw;
  }
}
.local__item--1 {
  bottom: 9%;
  left: 5%;
}
.local__item--2 {
  top: 0;
  left: 35%;
}
@media screen and (max-width: 767px) {
  .local__item--2 {
    margin-top: -58vw;
    margin-left: auto;
    margin-bottom: 12.6666666667vw;
  }
}
.local__item--3 {
  bottom: 0;
  left: 49%;
}
@media screen and (max-width: 767px) {
  .local__item--3 {
    margin-left: auto;
  }
}
.local__item--4 {
  top: 0;
  left: 73.5%;
}
@media screen and (max-width: 767px) {
  .local__item--4 {
    margin-top: -20vw;
  }
}
@media screen and (max-width: 767px) {
  .local__item {
    inset: 0;
  }
}

.overseas {
  position: relative;
  padding-bottom: 315px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .overseas {
    padding-bottom: 160px;
  }
}
.overseas__bottom-right {
  position: absolute;
  bottom: -14%;
  right: 0;
  width: 40.6666666667%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .overseas__bottom-right {
    bottom: -1%;
    width: 60%;
  }
}
.overseas__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
}
.overseas__title {
  padding-top: 30px;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
  font-weight: 500;
  gap: 12px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .overseas__title {
    padding-top: 15px;
    font-size: 13px;
  }
}
.overseas__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  border-radius: 9999px;
  height: auto;
  aspect-ratio: 1;
  background: #2768d4;
}
@media screen and (max-width: 767px) {
  .overseas__title::after {
    width: 8px;
  }
}
.overseas__title img {
  width: 382px;
}
@media screen and (max-width: 767px) {
  .overseas__title img {
    width: 240px;
  }
}
.overseas__text {
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.03em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .overseas__text {
    font-size: 14px;
  }
}
.overseas__map {
  margin-left: 12.5%;
  width: 83%;
}
@media screen and (max-width: 767px) {
  .overseas__map {
    margin-left: 0;
    width: 100%;
  }
}
.overseas__bg {
  position: absolute;
  top: -135px;
  left: -150px;
  max-width: 368px;
  z-index: -1;
}
.overseas__content {
  position: relative;
  margin-top: -12.5%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 88px;
}
@media screen and (max-width: 767px) {
  .overseas__content {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.overseas__sub-text {
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .overseas__sub-text {
    font-size: 14px;
  }
}
.overseas__img {
  border-radius: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .overseas__img {
    height: auto;
    width: 100%;
    aspect-ratio: 615/299;
    margin-bottom: 20px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.overseas__sub-title {
  margin-bottom: 10px;
}
.overseas__sub-title1 {
  height: 20px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .overseas__sub-title1 {
    height: 16px;
  }
}
.overseas__sub-title2 {
  height: 20px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .overseas__sub-title2 {
    height: 16px;
  }
}
.overseas__button {
  height: 53px;
  width: 256px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: solid 1px #2768d4;
  color: #2768d4;
  font-weight: 500;
  border-radius: 9999px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.01em;
  position: relative;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 767px) {
  .overseas__button {
    font-size: 14px;
    height: 38px;
    width: 185px;
  }
}
.overseas__button::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 18px;
  height: auto;
  aspect-ratio: 27/20;
  right: 20px;
  translate: 0 -50%;
  -webkit-mask-image: url("../../imgcommon/img/blank.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("../../imgcommon/img/blank.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #2768d4;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .overseas__button::after {
    width: 15px;
  }
}
@media (hover) {
  .overseas__button:hover {
    background: #2768d4;
    color: #fff;
  }
  .overseas__button:hover::after {
    background-color: #fff;
  }
}

.slide-text {
  position: absolute;
  bottom: -70px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  overflow: hidden;
  width: 100%;
}
.slide-text img {
  height: 100px;
  width: auto;
  animation: marquee-left 32s ease infinite;
}
@media screen and (max-width: 767px) {
  .slide-text img {
    display: none;
  }
}

@keyframes marquee-left {
  100% {
    transform: translateX(-100%);
  }
}
.recruit {
  z-index: 5;
  position: relative;
  margin-bottom: 300px;
}
@media screen and (max-width: 767px) {
  .recruit {
    margin-bottom: 145px;
  }
}
.recruit__left-bottom {
  position: absolute;
  left: 0;
  top: 9.3333333333%;
  width: 56%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .recruit__left-bottom {
    top: auto;
    bottom: -60%;
  }
}
.recruit__inner {
  padding: 60px 0 110px;
  z-index: -1;
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 767px) {
  .recruit__inner {
    flex-direction: column;
    padding: 40px 0;
  }
}
.recruit__inner::after {
  content: "";
  background: rgba(248, 248, 248, 0.8);
  position: absolute;
  height: 100%;
  width: 150vw;
  top: 0;
  left: 0;
  translate: -50vw;
  z-index: -1;
}
.recruit__left {
  max-width: 370px;
}
@media screen and (max-width: 767px) {
  .recruit__left {
    max-width: 100%;
  }
}
.recruit__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border: solid 1px #2768d4;
  height: 53px;
  width: 256px;
  border-radius: 9999px;
  background: #fff;
  color: #2768d4;
  font-weight: 500;
  transition: color 0.3s, background 0.3s;
}
@media screen and (max-width: 767px) {
  .recruit__btn {
    height: 38px;
    width: 185px;
    font-size: 14px;
  }
}
@media (hover) {
  .recruit__btn:hover {
    color: #fff;
    background: #2768d4;
  }
  .recruit__btn:hover::after {
    background-color: #fff;
  }
}
.recruit__btn::after {
  content: "";
  -webkit-mask-image: url("../../img/common/blank.png");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url("../../img/common/blank.png");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #2768d4;
  transition: background 0.3s;
  width: 18px;
  height: auto;
  aspect-ratio: 27/20;
}
.recruit__circle-bg {
  position: absolute;
  max-width: 670px;
  width: 100%;
  top: -160px;
  right: -70px;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .recruit__circle-bg {
    top: 100px;
    z-index: 5;
  }
}
.recruit__right {
  max-width: 550px;
  width: 100%;
}
.recruit__img {
  position: relative;
  z-index: 5;
  border-radius: 9999px;
  height: auto;
  width: 100%;
  aspect-ratio: 1;
  display: block;
}
.recruit__img--1 {
  margin-top: -100px;
  margin-left: auto;
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  .recruit__img--1 {
    max-width: 111px;
  }
}
.recruit__img--2 {
  max-width: 355px;
  margin-top: -70px;
  margin-left: 0;
  margin-bottom: -215px;
}
@media screen and (max-width: 767px) {
  .recruit__img--2 {
    max-width: 176px;
    margin-left: auto;
    margin-right: auto;
  }
}
.recruit__title {
  padding-top: 30px;
  position: absolute;
  top: 0;
  font-weight: 500;
  left: 0;
  translate: 0 -100%;
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
  gap: 12px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .recruit__title {
    font-size: 13px;
    padding-top: 15px;
  }
}
.recruit__title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  border-radius: 9999px;
  height: auto;
  aspect-ratio: 1;
  background: #2768d4;
}
@media screen and (max-width: 767px) {
  .recruit__title::after {
    width: 8px;
  }
}
.recruit__title img {
  width: 382px;
}
@media screen and (max-width: 767px) {
  .recruit__title img {
    width: 188px;
  }
}
.recruit__text {
  margin-bottom: 60px;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .recruit__text {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */