@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(21px, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.common__btn {
  width: max(160px, 22rem);
  height: max(40px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--red);
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.8rem);
  color: var(--white);
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/*============================
	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), #673900);
  width: 100%;
  height: 33rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  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;
}

/*============================
	news
============================*/
.news {
  padding: 13.5rem 0 16rem;
  position: relative;
}

.news::before,
.news::after {
  content: "";
  width: 21.6rem;
  height: 21.6rem;
  position: absolute;
  pointer-events: none;
}

.news::before {
  background: url("../img/news_deco-1.png") no-repeat center / contain;
  top: 7rem;
  right: 7.5rem;
}

.news::after {
  background: url("../img/news_deco-2.png") no-repeat center / contain;
  left: 10rem;
  bottom: 4.5rem;
}

@media (max-width: 767px) {
  .news::before,
  .news::after {
    width: 18rem;
    height: 18rem;
  }

  .news::before {
    top: 4rem;
    right: 3rem;
  }

  .news::after {
    left: 2rem;
    bottom: 4rem;
  }
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6rem auto 6.5rem;
  position: relative;
  z-index: 1;
}

@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;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 16rem 0 12.5rem;
}

.policy__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__inner {
    width: 90%;
  }
}

.policy__contents-1 {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 4.5rem;
  row-gap: 4rem;
}

.policy__contents-2 {
  width: 100%;
  display: flex;
  gap: 4rem 7rem;
}

@media (max-width: 767px) {
  .policy__contents-1,
  .policy__contents-2 {
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .policy__contents-1 .policy__txt-wrapper {
    height: max(430px, 43rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: 4rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.policy .common__btn {
  margin: 3rem 0 0;
}

@media (max-width: 767px) {
  .policy .common__btn {
    margin: 3rem auto 0;
  }
}

.policy__img {
  width: 60rem;
  height: 100%;
  flex-shrink: 0;
}

.policy__img-list {
  width: 44rem;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.6rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img,
  .policy__img-list {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 13rem 0;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 25.2rem;
  height: 25.4rem;
  top: 9rem;
  left: 7.5rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 25.4rem;
  height: 24.6rem;
  right: 5rem;
  bottom: 12rem;
}

@media (max-width: 767px) {
  .menu::before {
    width: 20rem;
    height: 20.1rem;
    top: 3rem;
    left: 3rem;
  }

  .menu::after {
    width: 20rem;
    height: 19.4rem;
    right: 2rem;
    bottom: 2rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 12rem;
  margin: 12.5rem auto 13rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 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%;
  padding: 0 0 0 max(50px, 8rem);
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: max(330px, 33rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 4rem 0 0;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper h3 span {
  background: url("../img/menu_ttl-bg.png") no-repeat center / contain;
  width: max(36px, 5.2rem);
  height: max(124.6px, 18rem);
  font-size: max(18px, 2.8rem);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 4rem 0.2rem;
  margin-left: 3.5rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 span {
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.menu__txt-wrapper p {
  color: #000;
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 55rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	soshina
============================*/
.soshina {
  background: url("../img/soshina_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 8rem 0 10rem;
}

.soshina__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .soshina__txt-wrapper {
    width: 61rem;
  }
}

.soshina__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 4.5rem 0 5.5rem;
}

/*============================
	video
============================*/
.video {
  padding: 15.5rem 0 20rem;
}

.video__wrapper {
  display: block;
  width: 90rem;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .video__wrapper {
    width: 90%;
  }
}

.video__wrapper video {
  display: block;
  width: 100%;
  height: 100%;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  color: var(--white);
  padding: 11rem 0 12.5rem;
  position: relative;
}

.gallery::before,
.gallery::after {
  content: "";
  background: url("../img/gallery_deco.png") no-repeat center / contain;
  width: 25.4rem;
  height: 7.2rem;
  position: absolute;
  top: 9.5rem;
  left: 18rem;
  pointer-events: none;
}

.gallery::after {
  top: auto;
  left: auto;
  right: 16rem;
  bottom: 10rem;
}

@media (max-width: 767px) {
  .gallery::before,
  .gallery::after {
    width: 20rem;
    height: 5.7rem;
    top: 5rem;
    left: 2rem;
  }

  .gallery::after {
    top: auto;
    left: auto;
    right: 6rem;
    bottom: 4rem;
  }
}

.gallery__slider {
  height: 25rem;
  margin: 9rem 0;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  padding: 13.5rem 0 15rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 47.4rem;
  height: 43.6rem;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 36rem;
    height: 33.1rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 5rem;
  margin: 9.5rem auto 6.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 50rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -2rem;
}

.access__list dt,
.access__list dd {
  color: #000;
  letter-spacing: 0.05em;
  padding: 2.2rem 0;
}

.access__list dt {
  width: max(75px, 11rem);
  font-weight: 500;
}

.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: 42rem;
}

/*============================
	soba
============================*/
.soba {
  display: flex;
}

@media (max-width: 767px) {
  .soba {
    flex-direction: column-reverse;
  }
}

.soba__txt-wrapper {
  width: 100%;
  padding: 14rem 5rem 16rem 17rem;
}

@media (max-width: 767px) {
  .soba__txt-wrapper {
    padding: 8rem;
  }
}

.soba .common__ttl {
  display: block;
}

.soba__txt-wrapper p {
  color: #000;
  line-height: 1.8;
  margin: 4rem 0 4.5rem;
}

@media (min-width: 768px) {
  .soba__txt-wrapper p {
    padding-right: 4rem;
  }
}

.soba__btn-wrapper {
  display: flex;
  gap: 2.5rem;
}

.soba__btn-wrapper .common__btn {
  margin: 0;
}

.soba__img {
  width: 75rem;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .soba__img {
    width: 100%;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  color: var(--white);
  padding: 12rem 0 18.5rem;
}

.insta__contents {
  width: 84.4rem;
  margin: 11rem 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;
  }
}

/*============================
	others
============================*/
.others {
  background: url("../img/others_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 10rem 0;
}

.others__list {
  width: 101.2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .others__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.others__list li {
  border: solid max(2px, 0.3rem) var(--white);
  padding: 8rem 3.5rem 9rem;
  position: relative;
}

.others__list li::before,
.others__list li::after {
  content: "";
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.others__list h3 {
  position: relative;
  z-index: 1;
}

.others__list p {
  line-height: 2;
  text-align: center;
  margin: 3.5rem 0 4.5rem;
  position: relative;
  z-index: 1;
}
