@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-one);
  font-size: max(24px, 3.4rem);
  font-weight: 400;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(55px, 8.1rem);
  height: max(31.2px, 4.6rem);
}

.common__btn {
  width: max(189.3px, 24.4rem);
  height: max(45px, 5.8rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  font-family: var(--font-one);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--bl a {
  background: url("../img/btn_bg-bl.png") no-repeat center / contain;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat center / contain;
  color: #0091cc;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: url("../img/hero_deco.png") no-repeat center top / cover;
  width: 100%;
  height: 19.4rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*============================
	news
============================*/
.news {
  padding: 10rem 0 6.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 7rem auto;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 500;
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  padding-top: 1rem;
  margin-top: 1rem;
  position: relative;
}

.CMS-NEWS-LINK::before {
  content: "";
  background: url("../img/news_line.png") repeat-x center / contain;
  width: 100%;
  height: 3px;
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  left: 0;
  pointer-events: none;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  color: var(--white);
  position: relative;
}

.policy::before,
.policy::after {
  content: "";
  width: 144rem;
  position: absolute;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.policy::before {
  background: url("../img/policy_deco-1.png") no-repeat center top / cover;
  height: 12rem;
  top: 0;
}

.policy::after {
  background: url("../img/policy_deco-2.png") no-repeat center bottom / cover;
  height: 42rem;
  bottom: 0;
}

@media (max-width: 767px) {
  .policy::before {
    width: 100%;
    height: 8rem;
  }

  .policy::after {
    width: 100%;
    height: 28rem;
  }
}

.policy__inner {
  padding: 16rem 0 30rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy__inner {
    padding: 40rem 0;
  }
}

.policy__inner::before,
.policy__inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.policy__inner::before {
  background-color: #c43030;
  width: 100%;
  height: calc(100% - 50rem);
  top: 10rem;
  left: 0;
  z-index: -2;
}

.policy__inner::after {
  background: url("../img/policy_deco-3.png") no-repeat center / contain;
  width: 37.6rem;
  height: 34.8rem;
  top: 17rem;
  right: 13.5rem;
  z-index: -1;
}

@media (max-width: 767px) {
  .policy__inner::before {
    height: calc(100% - 30rem);
    top: 7rem;
  }

  .policy__inner::after {
    width: 26rem;
    height: 24rem;
    top: 14rem;
    right: 2rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(330px, 44rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.policy__txt-wrapper h2 {
  font-family: var(--font-one);
  font-size: max(16px, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-left: 3.5rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
}

.policy__img {
  display: block;
  width: 37.2rem;
  position: absolute;
  pointer-events: none;
}

.policy__img-1 {
  top: 13rem;
  left: 13.5rem;
}

.policy__img-2 {
  right: 14.5rem;
  bottom: 6rem;
}

@media (max-width: 767px) {
  .policy__img {
    width: 32rem;
  }

  .policy__img-1 {
    top: 6rem;
    left: 2rem;
  }

  .policy__img-2 {
    right: 4rem;
    bottom: 12rem;
  }
}

/*============================
	product
============================*/
.product {
  padding: 7rem 0 13rem;
  position: relative;
}

.product::before,
.product::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product::before {
  background: url("../img/product_deco-1.png") no-repeat center / contain;
  width: 39.2rem;
  height: 24.8rem;
  top: -1.5rem;
  left: 15rem;
}

.product::after {
  background: url("../img/product_deco-2.png") no-repeat center / contain;
  width: 24.8rem;
  height: 13.1rem;
  top: 8rem;
  right: 16rem;
}

@media (max-width: 767px) {
  .product::before {
    width: 24rem;
    height: 15.2rem;
    left: 3rem;
  }

  .product::after {
    width: 18rem;
    height: 9.5rem;
    right: 2rem;
  }
}

.product__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 10rem;
  margin: 9.5rem auto 0;
}

@media (max-width: 767px) {
  .product__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.product__txt-wrapper {
  width: 100%;
}

.product__txt-wrapper h3 {
  font-family: var(--font-one);
  font-size: max(16px, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.product__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 3rem 0 6rem;
}

@media (min-width: 768px) {
  .product .common__btn {
    margin: 0;
  }
}

.product__img-list {
  width: 54rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .product__img-list {
    width: 100%;
  }
}

.product__img-list ul {
  width: 100%;
  display: flex;
  gap: 2.4rem;
  margin-top: 2rem;
}

/*============================
	faq
============================*/
.faq {
  background: url("../img/faq.jpg") no-repeat center / cover;
  padding: 8rem 0 9.5rem;
  position: relative;
}

.faq::before,
.faq::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.faq::before {
  background: url("../img/faq_deco-1.png") no-repeat center / cover;
  width: 38.1rem;
  height: 34.1rem;
  top: -20rem;
  right: 13rem;
}

.faq::after {
  background: url("../img/faq_deco-2.png") no-repeat center / cover;
  width: 144rem;
  height: 2.4rem;
  left: 0;
  bottom: -1px;
}

@media screen and (max-width: 767px) {
  .faq::before {
    width: 28rem;
    height: 25rem;
    top: -12rem;
    right: 1rem;
  }

  .faq::after {
    width: 100%;
    height: 1.3rem;
  }
}

.faq__txt-wrapper {
  width: 90%;
  margin: 0 auto;
}

.faq__txt-wrapper p {
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 4.5rem auto 7rem;
}

@media screen and (min-width: 768px) {
  .faq__txt-wrapper p {
    width: 42rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding: 10.5rem 0 13rem;
  position: relative;
}

.gallery::before,
.gallery::after {
  content: "";
  background: url("../img/gallery_deco.png") no-repeat center / contain;
  width: 24.8rem;
  height: 13.1rem;
  position: absolute;
  top: 10rem;
  right: 12rem;
  pointer-events: none;
}

.gallery::after {
  top: auto;
  right: auto;
  left: 14.5rem;
  bottom: 4.5rem;
}

@media screen and (max-width: 767px) {
  .gallery::before,
  .gallery::after {
    width: 18rem;
    height: 9.5rem;
    right: 2rem;
  }

  .gallery::after {
    right: auto;
    left: 2rem;
  }
}

.gallery__slider {
  height: 18rem;
  margin: 8rem 0 10.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.9rem;
}

/*============================
	access
============================*/
.access {
  padding: 11rem 0 16.5rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center top / cover;
  width: 100%;
  height: 13.8rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8.5rem;
  margin: 11.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 60rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.7rem 0 3rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 3rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
  position: relative;
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.access__list dd:not(:last-of-type)::before {
  content: "";
  background: url("../img/access_line.png") repeat-x center / contain;
  width: calc(100% + max(75px, 10rem));
  height: 3px;
  position: absolute;
  transform: translateY(-50%);
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access__list dd:not(:last-of-type)::before {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 46rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-4);
  padding: 11rem 0 14.5rem;
  position: relative;
}

.insta::after {
  content: "";
  background: url("../img/insta_deco.png") no-repeat center / cover;
  width: 144rem;
  height: 2.4rem;
  position: absolute;
  transform: translateY(100%);
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .insta::after {
    width: 100%;
    height: 1.3rem;
  }
}

.insta__contents {
  width: 87rem;
  margin: 9rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
