@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-adobe);
  font-size: max(21px, 3.2rem);
  font-weight: 400;
  color: #143346;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.gallery .common__ttl {
  color: var(--white);
}

.common__ttl::before {
  content: "";
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(45px, 7.6rem);
  height: max(45px, 7.6rem);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(131px, 18rem);
  height: max(40px, 5.5rem);
  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-size: max(12px, 1.4rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--br a {
  background: url("../img/btn_bg-br.png") no-repeat center / contain;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding: max(60px, 12rem) max(60px, 12rem) 0;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 48rem);
    padding: max(60px, 8rem) 0 0;
  }
}

.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;
}

/*============================
	insta
============================*/
.insta {
  padding: 10.5rem 0 13rem;
  position: relative;
}

.insta::before,
.insta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.insta::before {
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 28rem;
  height: 5.8rem;
  top: 8.5rem;
  left: 7.5rem;
}

.insta::after {
  background: url("../img/insta_deco.png") no-repeat top left / cover;
  width: 111.8rem;
  height: 26.6rem;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .insta::before {
    width: 24rem;
    height: 4.9rem;
    top: 3rem;
    left: 2rem;
  }

  .insta::after {
    width: 84rem;
    height: 20rem;
  }
}

.insta__contents {
  width: 84.4rem;
  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: 3.2rem;
}

.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: 26rem;
  height: 26rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	policy
============================*/
.policy {
  background: var(--bg-2);
  color: var(--white);
  padding-bottom: 9rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 10rem 0;
  }
}

.policy::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center bottom / cover;
  width: 100%;
  height: 10rem;
  position: absolute;
  transform: translateY(100%);
  left: 0;
  bottom: 1px;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    height: 5.3rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-bg {
  background-color: #d85700;
  width: 100%;
  padding: 11.5rem 14.5rem 5.5rem 17rem;
  margin: 0 calc(50% - 50vw) 0 -10rem;
}

@media (max-width: 767px) {
  .policy__txt-bg {
    padding: 8rem 5rem;
    margin: 0;
  }
}

.policy__txt-wrapper {
  width: 100%;
  margin-bottom: 5.5rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(400px, 44rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 {
  background-color: #231815;
  height: max-content;
  font-family: var(--font-yuji);
  font-size: max(16px, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 3rem 2.4rem 4rem;
  margin-top: -11.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    width: max-content;
    padding: 2rem 3rem;
    margin: 0 0 0 -5rem;
  }
}

.policy__txt-wrapper h2::before {
  content: "";
  background-color: var(--white);
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: max(4px, 0.7rem);
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2::before {
    width: 100%;
    height: 1px;
    top: max(4px, 0.7rem);
    left: 0;
    right: auto;
  }
}

.policy__txt-wrapper h3 {
  font-family: var(--font-yuji);
  font-size: max(16px, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin: 0 3.5rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h3 {
    margin: 3rem 0;
  }
}

.policy__txt-wrapper h3 span {
  display: block;
}

.policy__txt-wrapper h3 span:nth-of-type(2) {
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h3 span:nth-of-type(2) {
    margin: 0 0 0 5rem;
  }
}

.policy__txt-wrapper p {
  border-right: solid 1px var(--white);
  letter-spacing: 0.1em;
  line-height: 2;
  padding-right: 3rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    border-top: solid 1px var(--white);
    border-right: none;
    padding: 3rem 0 0;
  }
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin: 0 3rem 0 auto;
  }
}

.policy__img {
  width: 59rem;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 31rem 20rem;
  gap: 2.4rem;
  flex-shrink: 0;
  margin-bottom: 7rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
    margin: 0;
  }
}

.policy__img img:nth-of-type(1) {
  grid-column: span 2 / span 2;
}

.policy__img img:nth-of-type(2) {
  grid-row-start: 2;
}

.policy__img img:nth-of-type(3) {
  grid-row-start: 2;
}

.policy__img::before {
  content: "";
  background: url("../img/policy_img-deco.png") no-repeat center / contain;
  width: 42.8rem;
  height: 30.6rem;
  position: absolute;
  right: -26.5rem;
  bottom: -19rem;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy__img::before {
    width: 36rem;
    height: 25.7rem;
    right: -10rem;
    bottom: -10rem;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 21.5rem 0 13.5rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 28rem;
  height: 5.8rem;
  position: absolute;
  pointer-events: none;
}

.menu::before {
  top: 21rem;
  right: 9rem;
}

.menu::after {
  left: 13rem;
  bottom: 11rem;
}

@media screen and (max-width: 767px) {
  .menu::before,
  .menu::after {
    width: 24rem;
    height: 4.9rem;
  }

  .menu::before {
    right: -2rem;
  }

  .menu::after {
    left: 3rem;
    bottom: 3rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 16rem;
  margin: 15rem auto 8rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
}

.menu__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
    row-gap: 5rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.menu__txt-wrapper h3 {
  background: url("../img/menu_ttl-bg.png") no-repeat center / contain;
  width: max(80px, 13rem);
  height: max(112px, 18.2rem);
  font-size: max(16px, 2.8rem);
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
  margin: -5.5rem auto 0;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 {
  margin: 11rem auto 0;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3,
  .menu__list-item:nth-of-type(2) .menu__txt-wrapper h3 {
    margin: 0 auto;
  }
}

.menu__txt-bg {
  background: var(--bg-2);
  border-top: solid max(4px, 0.7rem) #d85700;
  border-bottom: solid max(4px, 0.7rem) #d85700;
  color: var(--white);
  padding: 4rem 5rem 5rem;
  margin-top: 6rem;
}

@media (min-width: 768px) {
  .menu__txt-bg {
    margin: 5rem -20rem 0 0;
  }

  .menu__list-item:nth-of-type(odd) .menu__txt-bg {
    margin: 17.5rem 0 0 -20rem;
  }
}

.menu__txt-wrapper h4 {
  font-size: max(14px, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.menu__txt-wrapper h4 strong {
  font-size: max(18px, 3rem);
  font-weight: 700;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 82rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__list-item:nth-of-type(1) .menu__img::before {
  background: url("../img/menu_img-deco-1.png") no-repeat center / contain;
  width: 49.9rem;
  height: 36.9rem;
  left: -12.5rem;
  bottom: -26.5rem;
}

.menu__list-item:nth-of-type(2) .menu__img::before {
  background: url("../img/menu_img-deco-2.png") no-repeat center / contain;
  width: 33.4rem;
  height: 25.6rem;
  right: -11rem;
  bottom: -18.5rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__img::before {
    width: 32rem;
    height: 23.6rem;
    left: -7rem;
    bottom: -15rem;
  }

  .menu__list-item:nth-of-type(2) .menu__img::before {
    width: 27rem;
    height: 20.7rem;
    right: -4rem;
    bottom: -8rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 11rem 0 10rem;
}

.gallery__slider {
  height: 25rem;
  margin: 9rem 0 7.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-3);
  padding: 13rem 0 19rem;
  position: relative;
  overflow: hidden;
}

.access::before,
.access::after {
  content: "";
  mix-blend-mode: multiply;
  position: absolute;
  pointer-events: none;
}

.access::before {
  background: url("../img/access_deco-1.png") no-repeat center / contain;
  width: 31.4rem;
  height: 31.8rem;
  top: -7.5rem;
  right: -4.5rem;
}

.access::after {
  background: url("../img/access_deco-2.png") no-repeat center / contain;
  width: 24.4rem;
  height: 18rem;
  bottom: 5.5rem;
  left: 8.5rem;
}

@media (max-width: 767px) {
  .access::before {
    width: 28rem;
    height: 28.3rem;
    top: -9rem;
    right: -5rem;
  }

  .access::after {
    width: 21rem;
    height: 15.5rem;
    bottom: 3rem;
    left: 2rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8.5rem;
  margin: 13rem auto 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 67.5rem;
  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.5rem 0 8rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 8rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.2rem 0;
}

.access__list dt {
  width: max(75px, 11rem);
  font-weight: 600;
}

.access__list dd {
  width: calc(100% - max(75px, 11rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 44rem;
}

/*============================
	news
============================*/
.news {
  padding: 14.5rem 0 15.5rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  background: url("../img/news_deco.png") no-repeat center / contain;
  width: 24.2rem;
  height: 6.8rem;
  position: absolute;
  pointer-events: none;
}

.news::before {
  top: 8.5rem;
  left: 5.5rem;
}

.news::after {
  bottom: 12.5rem;
  right: 8rem;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 21rem;
    height: 5.9rem;
  }

  .news::before {
    top: 5rem;
    left: 2rem;
  }

  .news::after {
    bottom: 2rem;
    right: 3rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6.5rem auto 7rem;
}

@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 {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px var(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}
