@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(16px, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  position: relative;
}

.common__ttl .en {
  display: block;
  font-family: var(--font-en);
  font-size: max(45px, 9rem);
  font-weight: 900;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.common__ttl--wt,
.common__ttl--wt .en {
  color: var(--white);
}

.about .common__ttl .en {
  font-size: max(42px, 8.2rem);
  text-transform: none;
  line-height: 1.2;
}

.about .common__ttl .ja {
  position: absolute;
  top: 25%;
  right: 9rem;
}

.before .common__ttl {
  width: max-content;
  flex-direction: row;
}

.before .common__ttl .jp {
  width: max-content;
  position: absolute;
  transform: translateX(100%);
  right: -2rem;
  bottom: 1.5rem;
}

.review .common__ttl {
  align-items: flex-start;
}

.before .common__ttl .en,
.review .common__ttl .en {
  font-size: max(36px, 7.7rem);
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: #e50e42;
  width: 100%;
  height: 100%;
  border-radius: 2.4rem 0 2.4rem 0;
  font-family: var(--font-en);
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero__ttl {
  width: max-content;
  font-family: var(--font-en);
  font-size: 12.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 35%;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: 7rem;
    bottom: 20%;
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__slider .swiper-slide-active img,
.hero__slider .swiper-slide-duplicate-active img,
.hero__slider .swiper-slide-prev img {
  animation: zoomOut 7s linear both;
}

/*============================
	about
============================*/
.about {
  padding: 24rem 0 13rem;
}

@media (max-width: 767px) {
  .about {
    padding: 10rem 0 13rem;
  }
}

.about__contents {
  width: 110rem;
  display: flex;
  align-items: flex-end;
  row-gap: 5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.about__txt-wrapper {
  width: 100%;
}

.about .common__ttl {
  width: max-content;
  margin-bottom: 5rem;
}

.about__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
}

.about__txt-wrapper p {
  font-weight: 300;
  line-height: 2.5;
  margin: 2.5rem 0 5.5rem;
}

@media (min-width: 768px) {
  .about__txt-wrapper p {
    padding-right: 7rem;
  }

  .about .common__btn {
    margin: 0 0 11.5rem;
  }
}

.about__img {
  width: 57rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: -5rem;
  margin-right: -5rem;
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
    margin: 0;
  }
}

.about__list {
  width: 110rem;
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about__list {
    width: 90%;
    margin: 8rem auto 0;
  }
}

.about__list dt,
.about__list dd {
  background-color: #f7f7f7;
  letter-spacing: 0.05em;
}

.about__list dt {
  width: max(150px, 24.5rem);
  font-weight: 400;
  padding: 2rem 0 2rem 11rem;
}

.about__list dd {
  width: calc(100% - max(150px, 24.5rem));
  padding: 2rem 0;
}

@media (max-width: 767px) {
  .about__list dt {
    width: max(100px, 16rem);
    padding: 2.5rem 4rem;
  }

  .about__list dd {
    width: calc(100% - max(100px, 16rem));
    padding: 2.5rem 0;
  }
}

/*============================
	service
============================*/
.service {
  background: var(--bg-1);
  padding: 8rem 0 11rem;
}

.service__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.service__ttl::before {
  content: "";
  display: block;
  background: url("../img/service_deco-1.png") no-repeat center / contain;
  width: 11.6rem;
  height: 11.4rem;
}

.service__ttl::after {
  content: "";
  display: block;
  background: url("../img/service_deco-2.png") no-repeat center / contain;
  width: 12.4rem;
  height: 14.6rem;
}

.service__txt {
  width: 90%;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 4rem auto 9rem;
}

.service__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin: 0 auto;
}

.service__list-2 {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .service__list,
  .service__list-2 {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.service__list li {
  background-color: var(--white);
}

.service__txt-wrapper {
  padding: 4rem 3rem 4.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .service__txt-wrapper {
    padding: 4rem 4rem 4.5rem;
  }
}

.service__txt-wrapper::before {
  content: "01";
  font-family: var(--font-en);
  font-size: 12rem;
  font-weight: 900;
  color: #ebf5fc;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 1.5rem;
  pointer-events: none;
  z-index: -1;
}

.service__list li:nth-of-type(2) .service__txt-wrapper::before {
  content: "02";
}

.service__list li:nth-of-type(3) .service__txt-wrapper::before {
  content: "03";
}

.service__list-2 li .service__txt-wrapper::before {
  content: "04";
}

.service__list-2 li:nth-of-type(2) .service__txt-wrapper::before {
  content: "05";
}

.service__list-2 li:nth-of-type(3) .service__txt-wrapper::before {
  content: "06";
}

.service__list-2 li:nth-of-type(4) .service__txt-wrapper::before {
  content: "07";
}

.recommend .service__txt-wrapper::after {
  content: "";
  background: url("../img/recommend.png") no-repeat center / contain;
  width: max(60px, 8.1rem);
  height: max(40.7px, 5.5rem);
  position: absolute;
  top: -12px;
  right: 1.6rem;
  pointer-events: none;
}

.service__txt-wrapper h3 {
  font-size: max(12px, 1.8rem);
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-align: center;
}

.service__txt-wrapper p {
  font-size: max(12px, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  margin: 2rem 0 3.5rem;
}

/*============================
	before
============================*/
.before {
  background: url("../img/before_bg.jpg") no-repeat center left 20% / cover;
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .before {
    flex-direction: column-reverse;
  }
}

.before__txt-wrapper {
  background-color: rgba(16, 87, 181, 0.8);
  width: 50%;
  color: var(--white);
  padding: 9.5rem 17rem 11rem 8rem;
  position: relative;
}

@media (max-width: 767px) {
  .before__txt-wrapper {
    width: 100%;
    padding: 9rem 6rem 11rem;
  }
}

.before__txt-wrapper p {
  font-weight: 300;
  line-height: 2.5;
  margin: 4rem 0 15rem;
}

.before__txt-wrapper p a {
  text-decoration: underline;
}

.before .common__btn {
  margin: 0;
}

/*============================
	review
============================*/
.review {
  padding: 13rem 0 14rem;
}

.review__contents {
  background: url("../img/review_bg.jpg") no-repeat center left 40% / cover;
  width: 110rem;
  display: flex;
  justify-content: flex-end;
  padding: 4.5rem 7rem 5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .review__contents {
    background: url("../img/review_bg.jpg") no-repeat center left 10% / cover;
    width: 90%;
  }
}

.review__contents::before {
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #277ea9 50%);
  width: 80rem;
  height: 100%;
  opacity: 0.8;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .review__contents::before {
    background: #277ea9;
    width: 100%;
  }
}

.review__txt-wrapper {
  width: 36rem;
  color: var(--white);
}

@media (max-width: 767px) {
  .review__txt-wrapper {
    width: 100%;
  }
}

.review__txt-wrapper p {
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 2rem 0 3rem;
}

.review .common__btn {
  margin: 0;
}

.review__img {
  display: block;
  width: 21.4rem;
  position: absolute;
  left: 7rem;
  bottom: 1.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .review__img {
    width: 16rem;
    top: 2rem;
    right: 2rem;
    left: auto;
    bottom: auto;
  }
}

/*============================
	contact
============================*/
.contact {
  background: var(--bg-1);
  padding: 9rem 0 10.5rem;
}

.contact__list {
  width: 110rem;
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin: 9.5rem auto 6.5rem;
}

@media (max-width: 767px) {
  .contact__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.contact__list li {
  width: 100%;
  height: max(100px, 14.6rem);
}

@media (max-width: 767px) {
  .contact__list li {
    height: max(100px, 18rem);
  }
}

.contact__list a {
  background-color: #0075af;
  width: 100%;
  height: 100%;
  border-radius: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact__list li:nth-of-type(2) a {
  background-color: var(--brown);
}

@media (max-width: 767px) {
  .contact__list a {
    text-decoration: none;
  }
}

.contact__list span {
  display: block;
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.contact__list p {
  font-size: max(20px, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.contact__list li:nth-of-type(2) p {
  font-size: max(18px, 3.6rem);
}

@media (max-width: 767px) {
  .contact__list p {
    text-decoration: underline;
  }
}

.contact__list p::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(28px, 5.4rem);
  height: max(28px, 5.4rem);
}

.contact__list li:nth-of-type(2) p::before {
  background: url("../img/mail_icon.png") no-repeat center / contain;
}

.contact__img {
  width: 106rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .contact__img {
    width: 90%;
  }
}
