@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  width: max-content;
  font-family: var(--font-ttl);
  font-size: max(40px, 8.3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0 auto;
  position: relative;
}

.common__ttl::after {
  content: "";
  position: absolute;
  top: 41%;
  left: -7rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 6.1rem;
  height: 6rem;
  background: url(../img/dog.png) no-repeat top center / contain;
}
.common__btn {
  width: max-content;
  margin: 0 auto;
}

.common__btn a {
  border-bottom: solid 1px var(--black);
  width: 100%;
  height: 100%;
  font-family: var(--font-en);
  font-size: max(12px, 1.7rem);
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem 1.8rem;
}

.common__btn--wt a {
  border-bottom: solid 1px var(--white);
  color: var(--white);
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(30px, 4.5rem);
  height: max(10px, 1.5rem);
}

.common__btn--wt a::after {
  background: url("../img/btn_arw-wt.png") no-repeat center / contain;
}
@media (max-width: 767px) {
  .common__ttl::after {
    top: 50%;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.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;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: max(12px, 2rem);
  transform: translateX(-50%) !important;
  left: 50% !important;
  bottom: 3rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: #F9F9F9;
  width: 8px !important;
  height: 8px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: #656565;
}

.hero__scroll {
  width: max(55px, 8.7rem);
  height: max(27px, 4.3rem);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  right: 5rem;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
}

.hero__scroll::before {
  content: "";
  background-color: var(--white);
  width: 100%;
  height: max(55px, 8.7rem);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--black);
  width: 1px;
  height: max(6px, 1rem);
}


/*============================
	news
============================*/
.news {
  background: var(--bg-1);
  padding: 7.6rem 0 11.5rem;
  position: relative;
}
.news .common__ttl::after {
  display: none;
}


@media (max-width: 767px) {

}

.CMS-NEWS-INDEX {
  width: 109.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4.7rem;
  margin: 4rem 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: 20.8rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK {
  letter-spacing: 0.05em;
}

.CMS-NEWS-TIME {
  font-family: var(--font-en);
  font-size: max(12px, 1.3rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	about
============================*/
.about {
  background: var(--bg-2);
  padding: 14rem 0 18.1rem;
  position: relative;
}

.about::before {
  content: "";
  background: url("../img/about_deco.png") no-repeat center / contain;
  width: 37.2rem;
  height: 26rem;
  position: absolute;
  right: 5rem;
  bottom: 3.9rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .about::before {
    width: 18rem;
    height: 18.1rem;
    right: 1rem;
    bottom: 2rem;
  }
}

.about__contents {
  width: 116.6rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 10rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.about__txt-wrapper {
  width: 100%;
  padding-top: 2.5rem;
}

@media (max-width: 767px) {
  .about__txt-wrapper {
    padding-top: 0;
  }
}

.about .common__ttl {
  margin: 0 0 2rem 6.3rem;
}

.about__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 2;
}

.about__txt-wrapper p {
  font-size: max(12px, 1.4rem);
  line-height: calc(20/14);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 2rem 0 11rem;
}

@media (min-width: 768px) {
  .about .common__btn {
    margin: 0;
  }
}

.about__img {
  width: 60rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-1);
  padding: 11.4rem 0 8.9rem;
  position: relative;
}

.menu::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 27.8rem;
  height: 33.3rem;
  top: -10rem;
  left: 10rem;
}
.menu .common__ttl {
  font-size: 7.6rem;
}
.menu .common__ttl::after {
  display: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 14rem;
    height: 16.2rem;
    top: -8rem;
    left: 3rem;
  }

}

.menu__list {
  width: 109.2rem;
  display: flex;
  flex-direction: column;
  margin: 7.5rem auto 11rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 8rem;
  }
}

.menu__list-item {
  position: relative;
}

.menu__list-item:nth-of-type(2) {
  margin-top: -9.5rem;
}
.menu__list-item:nth-of-type(3) {
  margin-top: -12.2rem;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(2),
  .menu__list-item:nth-of-type(3) {
    margin-top: 0;
  }
}

.menu__txt-wrapper {
  width: 53rem;
  padding: 2.5rem 8rem 0;
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    width: 100%;
    padding: 2.5rem 4rem 0;
  }
}

.menu__txt-wrapper h3 {
  font-weight: 500;
  letter-spacing: 0.05em; 
  margin-bottom: 2rem;
  font-family: var(--font-en);
  font-size: 3.1rem;
  list-style: 1;
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.52rem);
  letter-spacing: 0;
  line-height: calc(30/16);
}

.menu__img {
  width: 53rem;
  height: 100%;
  border: solid 4px var(--white);
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper,
.menu__list-item:nth-of-type(2) .menu__img {
  margin: 0 0 0 auto;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__list-item:nth-of-type(1) .menu__img-2 {
  width: 60.4rem;
  position: absolute;
  top: -12rem;
  right: calc(50% - 50vw - 6rem);
}

.menu__list-item:nth-of-type(2) .menu__img-2 {
  width: 38rem;
  position: absolute;
  top: 8.5rem;
  left: calc(50% - 50vw - 3.5rem);
  z-index: 1;
}
.menu__list-item:nth-of-type(3) .menu__img-2 {
  width: 37rem;
  position: absolute;
  top: 18rem;
  right: calc(50% - 50vw - -13rem);
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__img-2 {
    width: 36rem;
    top: 20rem;
  }

  .menu__list-item:nth-of-type(2) .menu__img-2 {
    width: 23rem;
    top: 22.5rem;
    left: calc(50% - 50vw - 0.5rem);
  }
  .menu__list-item:nth-of-type(3) .menu__img-2 {
    width: 24rem;
    top: 24rem;
    right: calc(50% - 50vw - 0rem);
  }
}

/*============================
	gallery
============================*/
.gallery {
  padding: 9rem 0 13.1rem;
  background: #FFF;
}
.gallery .common__ttl {
  font-size: 6.6rem;
}
.gallery__slider {
  height: 65rem;
  margin: 7.5rem 0 0;
  position: relative;
}

@media (max-width: 767px) {
  .gallery__slider {
    height: 40rem;
  }
}

.gallery__slider::after {
  content: "";
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  border: solid 2px var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 2;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 100%;
}

.gallery .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: max(12px, 2rem);
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -5rem !important;
  z-index: 10;
}

.gallery .swiper-pagination-bullet {
  background-color: #dcdcdc;
  width: 8px !important;
  height: 8px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.gallery .swiper-pagination-bullet-active {
  background-color: var(--black);
}

/*============================
	access
============================*/
.access {
  background: #F5EDE2;
  padding: 8.5rem 0 12.8rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 17.9rem;
  height: 16.7rem;
  position: absolute;
  top: -4.5rem;
  right: 10rem;
  pointer-events: none;
}
.access .common__ttl {
  font-size: 6.1rem;
}
.access .common__ttl::after {
  display: none;
}
@media (max-width: 767px) {
  .access::before {
    width: 40rem;
    height: 12.8rem;
    right: -12rem;
  }
}

@media (min-width: 768px) {
  .access .common__ttl {
    width: 109.2rem;
  }
}

.access__contents {
  width: 109.2rem;
  display: flex;
  gap: 2rem 9.5rem;
  margin: 5.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__contents h3 {
  font-family: var(--font-en);
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.access__contents p {
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 2rem 0 3.5rem;
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

.access__list dt,
.access__list dd {
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 1.7rem 0;
}

.access__list dt {
  width: max(75px, 9rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 9rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px #d0d0d0;
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px #d0d0d0;
  }
}

@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__reserve {
  width: 61.7rem;
  height: 41.1rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__reserve {
    width: 100%;
  }
}

.access__reserve h4 {
  font-size: max(12px, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 0 0 4rem;
}

.access__reserve li:first-of-type {
  border-bottom: dashed 1px var(--white);
}

.access__reserve a {
  display: block;
  width: 100%;
  padding: 4rem 0;
}

.access__reserve dl {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.access__reserve dl dt {
  width: max(300px, 41.5rem);
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.access__reserve dl dd {
  width: max(100px, 16rem);
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .access__reserve dl dt,
  .access__reserve dl dd {
    width: 100%;
  }
}

.access__tel {
  font-family: var(--font-en);
  font-size: 12px;
}

@media (max-width: 767px) {
  .access__tel {
    font-size: 14px;
    text-decoration: none !important;
  }
}

.access__tel span {
  display: block;
  font-size: max(12px, 1.4rem);
  margin-left: 2rem;
}

@media (max-width: 767px) {
  .access__tel span {
    font-size: 14px;
    text-decoration: underline;
  }
}

.access__insta {
  font-family: var(--font-en);
  font-size: 12px;
}

@media (max-width: 767px) {
  .access__insta {
    font-size: 14px;
  }
}

.access__insta dd {
  gap: 4rem;
}

.access__insta dd::after {
  content: "";
  display: block;
  background: url("../img/insta.png") no-repeat center / contain;
  width: max(16px, 1.8rem);
  height: max(16px, 1.8rem);
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 15rem 0 18rem;
  position: relative;
}
.insta .common__ttl {
  font-size: 6.1rem;
}
.insta .common__ttl::after {
  display: none;
}

.insta::before,
.insta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.insta::before {
  background: url("../img/insta_deco-1.png") no-repeat center / contain;
  width: 18.4rem;
  height: 17.7rem;
  top: 9.9rem;
  left: 2.8rem;
}

.insta::after {
  background: url("../img/insta_deco-2.png") no-repeat center / contain;
  width: 27rem;
  height: 35.6rem;
  top: 7rem;
  right: -6.5rem;
}

@media screen and (max-width: 767px) {
  .insta::before {
    width: 11rem;
    height: 10.8rem;
    left: 2rem;
  }

  .insta::after {
    width: 25rem;
    height: 18.1rem;
    top: 8rem;
  }
  .insta { 
    padding: 10rem;
  }
}

.insta__contents {
  width: 88.7rem;
  margin: 7.5rem 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;
}

.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;
  }
}

.tabiiro {
  padding: 7.8rem 0;
}
.tabiiro__contents {
  width: 72rem;
  margin: 0 auto;
  position: relative;
}
.tabiiro__contents::before {
  content: "";
  width: 70.4rem;
  height: 22.2rem;
  border: 2px solid #FFF;
  position: absolute;
  top: 49%;
  left: 1.1113%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.tabiiro__img {
  width: 100%;
  position: relative;
}
.tabiiro__img .bg-img {
  width: 100%;
}
.tabiiro .bg-dog {
  position: absolute;
  top: 4.6rem;
  left: 5.3rem;
  width: 13.6rem;
}
.tabiiro__img p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);  
  -ms-transform: translate(-50%, -50%);
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.08em;
  line-height: 1;
}
.tabiiro__img p::after {
  content: "";
  background: linear-gradient(transparent 48%, #FF9090 0%);
  display: inline-block;
  width: 105%;
  height: 3.3rem;
  position: absolute;
  bottom: -0.4rem;
  left: -0.8rem;
  z-index: -1;

}
.tabiiro__img .common__btn {
  position: absolute;
  bottom: 4.2rem;
  right: 6.1rem;
  z-index: 2;
}