@charset "utf-8";

.top-fv {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: calc(100% - 60px);
  height: calc(100dvh - 60px);
  margin: 60px auto clamp(60px, 10vw, 100px);
  padding-left: 30px;
  background-image: url("../img/top_fv_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right 15%;
  border-radius: 30px;
  overflow: hidden;
}
.top-fv::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 900px;
  height: 100%;
  background: linear-gradient(90deg, rgba(87, 176, 214, 1), rgba(87, 176, 214, 0));
}
.top-fv__catchcopy {
  position: relative;
  z-index: 3;
  font-size: clamp(34px, 6vw, 76px);
  font-weight: 700;
  color: #FFF;
  line-height: 1.2;
  letter-spacing: .1em;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.top-fv__badge {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: clamp(140px, 25vw, 280px);
  height: auto;
}

@media screen and (max-width: 960px) {
  .top-fv {
    align-items: flex-end;
    width: calc(100% - 2rem);
    padding-left: 32px;
    padding-bottom: 80px;
  }
  .top-fv::before {
    width: 50%;
  }
  .top-fv__catchcopy {
    writing-mode: vertical-rl;
  }
}


.top-h2 {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto clamp(20px, 4vw, 60px);
}
.top-h2__en {
  position: relative;
  margin-bottom: 0;
  padding-left: 28px;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1;
  color: #57B0D6;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.top-h2__en::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  background-color: #57B0D6;
  border-radius: 50%;
}
.top-h2__ja {
  position: relative;
  padding-left: clamp(14px, 2vw, 20px);
  padding-bottom: clamp(5px, 1vw, 10px);
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0;
}
.top-h2__ja::before {
  position: absolute;
  content: "/";
  left: 0;
  top: 0;
}

.top-about {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto clamp(60px, 10vw, 100px);
}

.top-about__lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(20px, 4vw, 40px);
}
.top-about__lead--content {
  max-width: 590px;
  text-align: center;
}
.top-about__lead--image01 {
  width: clamp(90px, 15vw, 180px);
}
.top-about__lead--image02 {
  width: clamp(90px, 15vw, 180px);
}
.top-about__lead--content h3 {
  margin-bottom: 20px;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
}
.top-about__lead--content p {
  line-height: 1.75;
}

.top-about__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: clamp(20px, 4vw, 50px);
}
.top-about__points--item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(100px, 20vw, 160px);
  background-color: #57B0D6;
  border-radius: 30px;
}
.top-about__points--item::before {
  position: absolute;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #FFF;
  border-radius: 20px;
}
.top-about__points--item p {
  margin-bottom: 0;
  font-size: clamp(13px, 2vw, 16px);
  color: #FFF;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .top-about__points {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 960px) {
  .top-about__lead {
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-about__lead--content {
    order: 3;
    max-width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  .top-about__lead--image01 {
    order: 1;
    margin-right: 40px;
  }
  .top-about__lead--image02 {
    order: 2;
  }
  .top-about__points {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .top-about__points--item {
    border-radius: 20px;
  }
  .top-about__points--item::before {
    border-radius: 16px;
  }
}

.top-about__contents {
  display: grid;
  gap: clamp(20px, 4vw, 40px);
}
.top-about__contents--item {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 40px 70px;
  background-color: rgba(87, 176, 214, 0.1);
  border-radius: 30px;
}
.top-about__contents--item__lead {
  margin-bottom: 20px;
  padding-left: 32px;
  overflow: hidden;
}
.top-about__contents--item__lead span {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  background-color: #007ACC;
}
.top-about__contents--item__lead span::before {
  position: absolute;
  z-index: -1;
  content: "";
  left: -32px;
  bottom: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #007ACC;
}
.top-about__contents--item__lead span::after {
  position: absolute;
  z-index: -1;
  content: "";
  right: -32px;
  top: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #007ACC;
}
.top-about__contents--item__text {
  width: calc(100% - 400px);
}
.top-about__contents--item img {
  width: 320px;
}
.top-about__contents--item__title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}
.top-about__contents--item__detail {
  font-size: clamp(14px, 1.8vw, 16px);
}

@media screen and (max-width: 960px) {
  .top-about__contents--item {
    flex-direction: column-reverse;
    padding: 2rem 1rem;
    gap: 20px;
  }
  .top-about__contents--item__text {
    width: 100%;
  }
  .top-about__contents--item img {
    width: 100%;
  }
}


.top-reservation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 380px;
  margin-bottom: clamp(60px, 10vw, 100px);
  background-image: url("../img/top_reservation_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top-reservation::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #57B0D6, #007ACC);
  opacity: 0.7;
}
.top-reservation__content {
  position: relative;
}
.top-reservation__content-text {
  margin-bottom: clamp(20px, 4vw, 40px);
  font-size: clamp(16px, 2.4vw, 24px);
  color: #FFF;
  font-weight: 700;
  text-align: center;
}
.top-reservation__content-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(250px, 40vw, 400px);
  height: 75px;
  margin: 10px auto;
  font-size: 32px;
  font-weight: 700;
  color: #007ACC;
  background-color: #FFF;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 6px 6px #BAD0F0;
  transition: all .3s;
}
.top-reservation__content-link:hover {
  color: #007ACC;
  transform: translateY(4px);
  box-shadow: 0 2px 6px #BAD0F0;
}
.top-reservation__content-link::before {
  position: absolute;
  content: "";
  left: 8px;
  top: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border: 1px solid #007ACC;
  border-radius: 10px;
}

@media screen and (max-width: 960px) {
  .top-reservation {
    height: 250px;
  }
  .top-reservation__content-link {
    height: 72px;
    font-size: 28px;
  }
}

.top-news {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto clamp(60px, 10vw, 100px);
}
.top-news__lists {
  max-width: 900px;
  margin: auto;
}
.top-banner {
  width: calc(100% - 2rem);
  max-width: 1080px;
  margin: 0 auto clamp(60px, 10vw, 100px);
}
.top-news__lists--item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  color: #424242;
  border-bottom: 1px solid #424242;
  text-decoration: none;
}
.top-news__lists--item:hover {
  color: #424242;
  opacity: 0.8;
}
.top-news__lists--item__info {
  width: 210px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-news__lists--item__info--date {
  font-weight: 500;
}
.top-news__lists--item__info--tag {
  display: block;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1;
  color: #FFF;
  background-color: #57B0D6;
}
.top-news__lists--item__title {
  font-weight: 500;
}

.top-news__more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 300px;
  margin: clamp(20px, 3vw, 40px) auto;
  padding: 8px 20px;
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(to right, #57B0D6, #007ACC);
  border-radius: 50px;
}
.top-news__more::before {
  position: absolute;
  content: "";
  right: 20px;
  top: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  background-color: #FFF;
  border-radius: 50%;
}
.top-news__more::after {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin: auto;
  font-size: 14px;
  color: #57B0D6;
  transform-origin: center;
  transform: rotate(-45deg);
}
.top-news__more:hover {
  color: #FFF;
  opacity: 0.8;
}

@media screen and (max-width: 750px) {
  .top-news__lists--item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }
  .top-news__lists--item__info {
    width: auto;
  }
}


.top-office {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto clamp(60px, 10vw, 100px);
}
.top-office__lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: calc(100% - 2rem);
  max-width: 1000px;
  margin: auto;
}
.top-office__lists--item {
  padding: 20px;
  background-color: #EEF7FB;
  border-radius: 20px;
}
.top-office__lists--item__name {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding: 0 10px 10px;
  font-weight: 700;
  color: #424242;
  text-decoration: none;
  border-bottom: 1px solid #424242;
}
.top-office__lists--item__name::before {
  position: absolute;
  content: "";
  right: 8px;
  top: 0;
  bottom: 6px;
  width: 12px;
  height: 12px;
  margin: auto;
  border-right: 2px solid #424242;
  border-bottom: 2px solid #424242;
  transform-origin: center;
  transform: rotate(-45deg);
}
.top-office__lists--item__name:hover {
  color: #57B0D6;
}
.top-office__lists--item__detail {
  padding: 0 10px;
}
.top-office__lists--item__detail--address {
  line-height: 1.7;
}
.top-office__lists--item__detail--normal {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: .03em;
}
.top-office__lists--item__detail--link {
  position: relative;
  margin-top: 10px;
  padding-left: 20px;
}
.top-office__lists--item__detail--link a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: #57B0D6;
}
.top-office__lists--item__detail--link a:hover {
  opacity: 0.7;
}
.top-office__lists--item__detail--link::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 2px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.top-office__lists--item__detail--link.--map::before {
  background-image: url("../img/icon_map.png");
}
.top-office__lists--item__detail--link.--office::before {
  background-image: url("../img/icon_link.png");
}
.top-office__lists--item__detail--image {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 30px;
  object-fit: cover;
}

@media screen and (max-width: 960px) {
  .top-office__lists {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-faq {
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: 0 auto clamp(60px, 10vw, 100px);
}
.top-faq__lists {
  width: calc(100% - 2rem);
  max-width: 900px;
  margin: auto;
}
.top-faq__lists--parent__caption {
  position: relative;
  margin-bottom: 20px;
  padding: 8px clamp(16px, 2.5vw, 40px);
  font-size: 18px;
  font-weight: 700;
  color: #007ACC;
  background-color: #EEF7FB;
  cursor: pointer;
}
.top-faq__lists--parent:not(:first-child) .top-faq__lists--parent__caption {
  margin-top: 20px;
}
.top-faq__lists--parent__caption::before {
  position: absolute;
  content: "";
  right: clamp(16px, 2.5vw, 40px);
  top: 16px;
  width: 10px;
  height: 10px;
  border-left: 2px solid #57B0D6;
  border-bottom: 2px solid #57B0D6;
  transform-origin: center;
  transform: rotate(-45deg);
  transition: all .4s;
}
.top-faq__lists--parent__caption.active::before {
  transform: rotate(-225deg);
  top: 20px;
}
.top-faq__lists--item {
  padding: 20px 40px;
  border-bottom: 1px solid #424242;
}
.top-faq__lists--item__question {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: clamp(10px, 2.5vw, 40px);
  padding-right: 40px;
}
.top-faq__lists--item__question::before {
  position: absolute;
  content: "";
  right: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-left: 2px solid #57B0D6;
  border-bottom: 2px solid #57B0D6;
  transform-origin: center;
  transform: rotate(-45deg);
  transition: all .4s;
}
.top-faq__lists--item__question.active::before {
  transform: rotate(-225deg);
  top: 11px;
}
.top-faq__lists--item__question span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #FFF;
  background-color: #57B0D6;
  border-radius: 50%;
}
.top-faq__lists--item__question p {
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: .03em;
}

.top-faq__lists--item__answer {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: clamp(10px, 2.5vw, 40px);
  padding-top: 10px;
  padding-right: 40px;
}
.top-faq__lists--item__answer span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #FFF;
  background-color: #FF9217;
  border-radius: 50%;
}
.top-faq__lists--item__answer p {
  margin-bottom: 0;
  font-weight: 500;
  color: #FF9217;
  letter-spacing: .03em;
}

@media screen and (max-width: 960px) {
  .top-faq__lists {
    width: 100%;
  }
  .top-faq__lists--item {
    padding: 16px;
  }
}


.top-partner {
  padding: 60px 0;
  background-color: #EEF7FB;
  overflow: hidden;
}
.top-partner .top-h2 {
  width: calc(100% - 2rem);
}
.top-partner__lists {
  width: 4200px!important;
  margin-left: calc(50vw - 2100px)!important;
}
.top-partner__lists--group {
  display: grid!important;
  grid-template-columns: repeat(3, 1fr);
}
.top-partner__lists--item {
  display: flex!important;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1!important;
  background-color: #FFF;
  border-radius: 50%;
  margin: 0 15px;
}
.top-partner__lists--item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.top-partner__lists--item a:hover {
  opacity: 0.8;
}
.top-partner__lists--item img {
  max-width: calc(100% - 16px);
  max-height: 40%;
}

@media screen and (max-width: 960px) {
  .top-partner__lists {
    width: 1200px!important;
    margin-left: calc(50vw - 600px)!important;
  }
  .top-partner__lists--item {
    margin: 0 8px;
  }
}

.slick-dots {
  bottom: -40px!important;
}
.slick-dots li button:before {
  font-size: 16px!important;
  color: #57B0D6!important;
}


.top-company {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  width: calc(100% - 2rem);
  max-width: 1200px;
  margin: auto;
  padding: clamp(60px, 10vw, 100px) 0;
}
.top-company__content--concept {
  margin-top: -10px;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
}
.top-company__content--message {
  margin-bottom: 30px;
  line-height: 1.75;
  letter-spacing: .03em;
}
.top-company__contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 300px;
  margin: clamp(20px, 3vw, 40px) auto;
  padding: 8px 20px;
  color: #FFF;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(to right, #57B0D6, #007ACC);
  border-radius: 50px;
}
.top-company__contact::before {
  position: absolute;
  content: "";
  right: 20px;
  top: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  background-color: #FFF;
  border-radius: 50%;
}
.top-company__contact::after {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin: auto;
  font-size: 14px;
  color: #57B0D6;
  transform-origin: center;
  transform: rotate(-45deg);
}
.top-company__contact:hover {
  color: #FFF;
  opacity: 0.8;
}

@media screen and (min-width: 960.1px) {
  .top-company__contact {
    margin-left: 0;
  }
}

@media screen and (max-width: 960px) {
  .top-company {
    grid-template-columns: repeat(1, 1fr);
  }
  .top-company__content--concept {
    margin-top: 10px;
    text-align: center;
  }
  .top-company__content--message {
	text-align: center;
  }
}
