@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  background: url("../img/ttl_deco.png") repeat-y center / 100% auto;
  font-family: var(--font-mincho);
  width: max(60px, 8rem);
  height: max-content;
  font-size: max(20px, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.common__ttl--wt {
  background: url("../img/ttl_deco-wt.png") repeat-y center / 100% auto;
  color: var(--white);
}

.insta .common__ttl,
.others .common__ttl {
  background: url("../img/ttl_deco-insta.png") repeat-x center / auto 100%;
  width: max-content;
  height: max(60px, 8rem);
  color: var(--white);
  letter-spacing: 0.2em;
  writing-mode: horizontal-tb;
}

.others .common__ttl {
  padding: 0 2rem;
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: #b5874f;
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  background-color: transparent;
  border: solid 1px var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  width: 100%;
  height: 23rem;
  mix-blend-mode: multiply;
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.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;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-size: max(10px, 1.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 6rem;
  bottom: -8rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 1px;
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  padding: 10rem 0 10.5rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 3.5rem auto 6rem;
}

@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(--brown);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 12rem 0 16rem;
}

.policy__txt-wrapper {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    width: max(450px, 73rem);
  }
}

.policy__txt-wrapper h3 {
  font-size: max(14px, 2rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 5rem;
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 4rem 0 10rem;
}

/*============================
	menu
============================*/
.menu {
  padding: 14.5rem 0 16rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / cover;
  width: 82rem;
  height: 54.6rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 60rem;
    height: 40rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
  margin: 8.5rem auto 12rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 6rem 7.5rem;
}

.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;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 2.5rem;
  }
}

.menu__txt-wrapper h3 {
  border-bottom: solid 1px var(--brown);
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-bottom: 2.5rem;
  margin-bottom: 3.5rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  font-size: max(14px, 2rem);
  color: #b5874f;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

.menu__img {
  width: 51rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 9.5rem 0 11rem;
}

.gallery__slider {
  height: 20.9rem;
  margin: 7.5rem 0 9rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28.7rem;
  margin: 0 0.3rem;
}

/*============================
	access
============================*/
.access {
  padding: 13rem 0 16rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 6.5rem;
  margin: 9rem auto 8rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 48rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    margin-top: -2.5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 11rem);
  font-weight: 700;
}

.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;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 11.5rem 0 17rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 6rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2.9rem;
}

.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: 27.6rem;
  height: 27.6rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	others
============================*/
.others {
  background: url("../img/others_bg.jpg") no-repeat center / cover;
  padding: 12rem 0;
}

.others__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.5rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .others__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.others__list li {
  border: solid 1px var(--white);
  display: flex;
  flex-direction: column;
  row-gap: 5.5rem;
  padding: 7.5rem 0 6.5rem;
  position: relative;
}

.others__list li::before,
.others__list li::after {
  content: "";
  background: url("../img/others_deco.png") no-repeat center / contain;
  width: max(80px, 12.4rem);
  height: max(47.7px, 7.4rem);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.others__list li::after {
  transform: scale(-1, -1);
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
}


.translate a{
    text-decoration: underline;
}

.top-contact{
    text-align: center;
}

.mail-address{
    margin: 12rem 0 12rem;
    font-size: 3rem;
}