@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-en);
  font-size: 4.8rem;
  font-weight: 700;
  color: #474747;
  letter-spacing: 0.07em;
  line-height: 1;
  text-align: center;
}

.common__ttl--bl {
  color: var(--text-color);
}

.common__btn {
  width: max(160px, 24.5rem);
  height: max(32px, 5.6rem);
  margin: 0 auto;
  position: relative;
}

.common__btn a {
  width: 100%;
  height: 100%;
  background: #305014;
  font-size: max(12px, 1.8rem);
  font-weight: 600;
  font-family: var(--font-en);
  color: var(--color-white);
  letter-spacing: 0.07em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 1rem;
  position: relative;
}

.common__btn--bl a {
  color: var(--text-color);
  border: solid 1px var(--text-color);
}

.common__btn--wh a {
  background: var(--color-white);
  color: #4f6a46;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(38px, 5rem);
  height: max(3px, 0.37rem);
  margin-left: 1rem;
}
.common__btn--wh a::after {
  background: url("../img/btn_arw-gl.png") no-repeat center / contain;
}
.common__btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #305014;
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  z-index: -1;
}
.common__btn--wh a::before { 
  border: 1px solid #FFF;
}


.common__btn--bl span::before,
.common__btn--bl span::after {
  background: url("../img/btn_deco-bl.png") no-repeat center / contain;
}

.common__btn span:nth-of-type(1):before {
  top: 1px;
  left: 1px;
}

.common__btn span:nth-of-type(2):before {
  transform: scale(-1, 1);
  top: 1px;
  right: 1px;
}

.common__btn span:nth-of-type(1)::after {
  transform: scale(1, -1);
  left: 1px;
  bottom: 1px;
}

.common__btn span:nth-of-type(2)::after {
  transform: scale(-1, -1);
  right: 1px;
  bottom: 1px;
}

/*============================
	hero
============================*/
.hero {
  width: 87.5%;
  height: auto;
  max-height: calc(100vh - 15.4rem);
  /*aspect-ratio: 16 / 9;*/
  color: var(--text-color);
  margin-left: auto;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    max-height: initial;
    width: 100%;
    height: max(380px, 56rem);
    margin: 0;
  }
}

.hero__txt-wrapper {
  height: 60vh;
  color: var(--color-white);
  writing-mode: vertical-rl;
  position: absolute;
  top: 5rem;
  left: 7.2rem;
  z-index: 20;
}

@media (max-width: 767px) {
  .hero__txt-wrapper {
    height: auto;
    writing-mode: horizontal-tb;
    top: auto;
    bottom: 10rem;
    left: 5%;
    right: 5%;
  }
}

.hero__txt-1 {
  font-size: max(12px, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.78;
}

@media (max-width: 767px) {
  .hero__txt-1 {
    font-size: max(12px, 2.1rem);
  }
}

.hero__ttl {
  font-size: 7.1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.hero__ttl span {
  font-size: max(12px, 2.2rem);
  font-weight: 700;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: max(24px, 5rem);
    letter-spacing: 0;
    line-height: 1.3;
  }
}

.hero__txt-2 {
  font-size: max(12px, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.2;
  border-right: solid 1px var(--color-white);
  padding-right: 2rem;
  margin-right: 1rem;
}

@media (max-width: 767px) {
  .hero__txt-2 {
    font-size: max(12px, 2rem);
    border: 0;
    padding: 2rem 0 0;
    margin: 2rem 0 0;
    position: relative;
  }

  .hero__txt-2::before {
    content: "";
    background-color: var(--color-white);
    width: max(270px, 53rem);
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.hero__txt-wrapper span {
  display: inline-block;
}

.hero__slider {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 15.4rem);
  overflow: hidden;
  position: relative;
  border-radius: 50px 0 0 50px;
}


@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.3rem);
  letter-spacing: 0.11em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  transform: translateX(-100%);
  left: -1.7rem;
  bottom: -1rem;
  z-index: 100;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
  .hero__slider {
    border-radius: 0;
    max-height: initial;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background: url("../img/scroll.png") no-repeat center / contain;
  width: 1.45rem;
  height: 10.35rem;
  margin-right: -0.5rem;
}

/*============================
	news
============================*/
.news {
  padding: 11.2rem 0 12.2rem;
  position: relative;
  z-index: 1;
}
.news h2 {
  width: 12.1rem;
  margin: 0 auto;;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: flex;
  gap: 6rem 2.6rem;
  margin: 5.6rem auto 7.1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    flex-direction: column;
  }
  .news h2 {
    width: 20rem;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 32rem;
  height: 20rem;
  margin-bottom: 3rem;
  border-radius: 30px;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    width: 100%;
    height: 36rem;
  }
}

.CMS-NEWS-LINK {
  font-weight: 300;
  border-top: solid 1px var(--color-white);
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
  font-weight: 300;
  border-bottom: 0.5px solid #000;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  padding: 15.7rem 0 18.6rem;
  position: relative;
  z-index: 1;
  background: url("../img/bg-policy.jpg") no-repeat top center / cover;
}

@media (max-width: 767px) {
  .policy {
    padding: 10rem 0 16rem;
  }
}

.policy__ttl-wrapper {
  width: max-content;
  padding: 0 10.3rem 6.3rem 17.3rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy__ttl-wrapper {
    width: 100%;
    padding: 10rem 5% 0;
  }
}

.policy__ttl-wrapper h2 {
  font-family: var(--font-en);
  font-size: 9.3rem;
  font-weight: 700;
  color: #305014;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: 2rem;
  right: -29.4rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy__ttl-wrapper h2 {
    writing-mode: horizontal-tb;
    top: -4rem;
    left: 3.5rem;
    z-index: 1;
  }
}

.policy__contents {
  display: flex;
}

@media (max-width: 767px) {
  .policy__contents {
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  padding: 0 1.5rem 4.3rem 4rem;
  margin: 0 8rem 0 12.6rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper {
    width: 90%;
    padding: 0;
    margin: 0 auto;
  }
}

.policy__txt-wrapper h3 {
  font-size: max(16px, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 4.5rem;
}

.policy__txt-wrapper p {
  line-height: 2;
  font-weight: 300;
  margin-bottom: 7.2rem;
}

.policy .common__btn {
  margin: 0;
}

@media (max-width: 767px) {
  .policy .common__btn {
    margin: 0 auto;
  }
}

.policy__line::before,
.policy__line::after {
  content: "";
  background-color: var(--text-color);
  position: absolute;
}

.policy__line::before {
  width: 6.2rem;
  height: 1px;
}

.policy__line::after {
  width: 1px;
  height: 6.2rem;
}

.policy__line:nth-of-type(1):before {
  top: 0;
  right: -0.9rem;
}

.policy__line:nth-of-type(1)::after {
  right: 0;
  top: -0.9rem;
}

.policy__line:nth-of-type(2):before {
  bottom: 0;
  left: -0.9rem;
}

.policy__line:nth-of-type(2)::after {
  bottom: -0.9rem;
  left: 0;
}

.policy__img-1 {
  width: 68rem;
  height: 41.4rem;
}

@media (max-width: 767px) {
  .policy__img-1 {
    width: 100%;
    height: auto;
  }
}

.policy__img-2 {
  width: 68rem;
  height: 62rem;
  flex-shrink: 0;
  margin-top: -24.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy__img-2 {
    width: 90%;
    height: auto;
    margin: 4rem auto;
  }
  .policy__img-2 img {
    border-radius: 30px;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 14.2rem 0 15.1rem;
  position: relative;
  z-index: 1;
}
.menu-deco-1 {
  position: absolute;
  top: 9.2rem;
  left: 13.8rem;
  width: 29.5rem;
  height: auto;
  pointer-events: none;
}
.menu-deco-2 {
  position: absolute;
  bottom: 10.8rem;
  right: 8.2rem;
  width: 30rem;
  height: auto;
  pointer-events: none;
}
.menu h2 {
  width: 12.5rem;
  margin: 0 auto;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 14.3rem;
  margin: 12.6rem auto 15.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 5rem;
  }
  .menu h2 {
    width: 20rem;
  }
  .menu-deco-1 {
    top: 26.2rem;
    left: 1.8rem;
    width: 12.5rem;
  }
  .menu-deco-2 {
    bottom: 3.8rem;
    right: 3.2rem;
    width: 19rem;
  }
}

.menu__ttl-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 3rem;
}

.menu__list-item:nth-of-type(1) .menu__ttl-wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper,
  .menu__list-item:nth-of-type(1) .menu__ttl-wrapper {
    flex-direction: column-reverse;
  }
}

.menu__ttl-wrapper::before {
  content: "";
  width: 50.8rem;
  height: 41.1rem;
  position: absolute;
  top: 23.3rem;
}

.menu__list-item:nth-of-type(1) .menu__ttl-wrapper::before {
  background: url("../img/menu_2.png") no-repeat center / contain;
  width: 43.7rem;
  top: 16.3rem;
  right: -15rem;
}

.menu__list-item:nth-of-type(2) .menu__ttl-wrapper::before {
  background: url("../img/menu_4.png") no-repeat center / contain;
  left: 19rem;
  width: 39.1rem;
  top: 10.3rem;
}
@media (max-width: 1050px) {
  .menu__list-item:nth-of-type(2) .menu__ttl-wrapper::before {
    left: initial;
    right: 47rem;
    width: 26rem;
    top: 9.3rem;
  }
}
@media (max-width: 1000px) {
  .menu__list-item:nth-of-type(1) .menu__ttl-wrapper::before {
    width: 25rem;
    top: 11.3rem;
    right: -9rem;
  }
  .menu__list-item:nth-of-type(2) .menu__ttl-wrapper::before {
    left: initial;
    right: 47rem;
    width: 26rem;
    top: 9.3rem;
  }
}
@media (max-width: 927px) {
  .menu__list-item:nth-of-type(2) .menu__ttl-wrapper::before {
      left: initial;
      right: 43rem;
    }
}
@media (max-width: 825px) {
  .menu__list-item:nth-of-type(2) .menu__ttl-wrapper::before {
      left: initial;
      right: 36rem;
    }
}
@media (max-width: 767px) {
  .menu__ttl-wrapper::before {
    width: 40%;
    height: 40%;
    top: 23.3rem;
    right: 0;
  }

  .menu__list-item:nth-of-type(2) .menu__ttl-wrapper::before {
    left: auto;
    width: 32rem;
    top: 19.3rem;
    right: -8rem;
  }
  .menu__list-item:nth-of-type(1) .menu__ttl-wrapper::before {
    width: 30rem;
    top: 11.3rem;
    right: -8rem;
  }
}

.menu__ttl-wrapper h3 {
  width: 15.8rem;
  height: max-content;
}
.menu__ttl-wrapper h3 img {
  width: 100%;
  object-fit: contain;
}

.menu__img {
  width: 60rem;
}

@media (max-width: 767px) {
  .menu__img {
    width: 80%;
  }
}

.menu__txt-wrapper {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper {
  margin-right: auto;
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    width: 100%;
    writing-mode: initial;
    text-orientation: initial;
  }
}

.menu__txt-wrapper h4 {
  font-size: max(14px, 2rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 0.7rem 5rem 0 2rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h4 {
    margin: 3rem 0 2.5rem;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.2em;
  line-height: 1.75;
  font-weight: 300;
  height: 38rem;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper p {
    height: initial;
  }
}

.menu__takeout-inner {
  background-color: rgba(255, 255, 255, 0.9);
  width: max(300px, 40rem);
  padding: 5rem 4.7rem 5.3rem 4rem;
  margin-left: 7rem;
}

@media (max-width: 767px) {
  .menu__takeout-inner {
    width: 100%;
    padding: 4rem;
    margin-left: 0;
  }
}

.menu__takeout h3 {
  font-family: var(--font-en);
  font-size: 7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2.5rem;
}

.menu__takeout p:nth-of-type(1) {
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.menu__takeout p:nth-of-type(2) {
  border: solid 1px var(--text-color);
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
  padding: 1.4rem 0.5rem 1.6rem;
  margin-bottom: 3.8rem;
}

.menu__takeout .common__btn a {
  background-color: var(--text-color);
}

/*============================
	gallery
============================*/
.gallery {
  background: #4f6a46;;
  padding: 7.7rem 0 11.1rem;
  position: relative;
}
.gallery h2 {
  width: 16.5rem;
  margin: 0 auto;
}
.gallery-deco-1 {
  position: absolute;
  top: -5.1rem;
  right: -8.1rem;
  width: 59.1rem;
  height: auto;
  pointer-events: none;
}
.gallery-deco-2 {
  position: absolute;
  bottom: -1rem;
  left: -3rem;
  width: 50rem;
  height: auto;
  pointer-events: none;
}
.gallery__slider {
  margin: 8.1rem 0 8.2rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 34.6rem;
  height: 22rem;
  border-radius: 30px;
  margin: 0 1rem;
}
.gallery__slider .swiper-slide img {
  border-radius: 30px;
} 

@media (max-width: 767px) {
  .gallery__slider .swiper-slide {
    width: 40rem;
    height: 30rem;
  }
  .gallery__slider .swiper-slide img {
    border-radius: 20px;
  } 
  .gallery h2 {
    width: 20rem;
  }
}

/*============================
	access
============================*/
.access {
  padding: 11.5rem 0 0;
  position: relative;
}
.access h2 {
  width: 13.9rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access::before {
    width: 20rem;
    height: 23rem;
    right: 1rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem 6.2rem;
  margin: 13rem auto 10.2rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
  .access h2 {
    width: 18rem;
  }
}

.access__img {
  width: 54rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

@media (max-width: 767px) {
  .access__list {
    margin-top: 0;
  }
}

.access__list dt,
.access__list dd {
  min-height: 7.9rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  display: flex;
  align-items: center;
}

.access__list dt {
  width: max(75px, 14.5rem);
  font-weight: 400;
  padding: 1.8rem;
}

.access__list dd {
  width: calc(100% - max(75px, 14.5rem));
  border-bottom: solid 1px var(--text-color);
  padding: 1.8rem 0;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--text-color);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
    min-height: auto;
  }

  .access__list dt {
    padding: 2rem 1.8rem 1rem;
  }

  .access__list dd {
    padding: 0 1.8rem 2rem;
  }
}

.access .common__btn {
  margin: 6rem auto 13.5rem auto;
}

@media (max-width: 767px) {
  .access .common__btn {
    margin: 6rem auto 10rem;
  }
}

.access .map {
  height: 48rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access .map {
    height: 40rem;
  }
}

/*============================
	insta
============================*/
.insta {
  background: url("../img/bg-insta.jpg") no-repeat center / cover;
  padding: 10.7rem 0 16.5rem;
}

.insta h2 {
  width: 22.9rem;
  margin: 0 auto;
}

.insta__contents {
  width: 84.4rem;
  margin: 8.3rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
  .insta h2 {
    width: 25.5rem;
  }
}

.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;
  }
}

    
.Ibarra {
  font-family: "Ibarra Real Nova", serif;
  font-style: normal;
    font-size: max(24px, 5rem)!important;
    display: block!important;
    margin-right: 2rem;
}

@media screen and (max-width: 767px) {
  .Ibarra {
  letter-spacing: -7px;
}
}

.hero__youtube{
  width: 100%;
  aspect-ratio: 16/9;
}

.hero__youtube iframe{
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .hero__youtube{
    height: 100%;
    aspect-ratio: auto;
  }
}

.CMS-NOT-EDITABLE-AREA {
  height: 100%;
}