@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-family: var(--font-ttl);
  font-size: max(24px, 4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(32px, 5.2rem);
  height: max(32px, 5.2rem);
}

.common__btn {
  width: max(160px, 22rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--brown);
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn a::before,
.common__btn a::after {
  content: "";
  background: url("../img/btn_deco.png") no-repeat center left / 100% 100%;
  width: calc(100% - 1rem);
  height: max(8px, 1.2rem);
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.common__btn a::before {
  transform: translateX(-50%);
  top: max(3px, 0.5rem);
}

.common__btn a::after {
  transform: translateX(-50%) scale(-1, -1);
  bottom: max(3px, 0.5rem);
}

/*============================
	header
============================*/
@media (min-width: 768px) {
  .header.top {
    background: url("../img/header_bg.jpg") repeat center / 144rem auto;
    width: 34rem;
    height: max(90rem, 100vh);
    padding-top: 5rem;
  }

  .header.top .header__logo {
    margin: 0 auto 4rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    position: static;
  }

  .header.top .header__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding-left: 34rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: 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;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: 14px;
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -4.5rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: transparent;
  width: 9px !important;
  height: 9px !important;
  border: solid 1px var(--black);
  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: var(--black);
}

/*============================
	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: 7.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(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 13.5rem 0 12rem;
  position: relative;
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.concept::before {
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 27.6rem;
  height: 37.5rem;
  bottom: 0;
  left: 13.5rem;
}

.concept::after {
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  width: 51.6rem;
  height: 39rem;
  bottom: -12rem;
  right: 6rem;
}

@media (max-width: 767px) {
  .concept::before {
    width: 21rem;
    height: 28.5rem;
    left: -3rem;
  }

  .concept::after {
    width: 40rem;
    height: 30.2rem;
    bottom: -15rem;
    right: -8rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 8rem;
  margin: 0 auto 5.5rem;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
  border: solid max(3px, 0.5rem) var(--white);
  padding: 4rem 5rem 5rem;
  position: relative;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    height: max(540px, 55rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 3rem 3rem 5rem 4rem;
    margin-right: -3.5rem;
  }
}

.concept__txt-wrapper::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: solid 1px var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

.concept__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background-color: var(--black);
  color: var(--white);
  padding: 9.5rem 0 17.5rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 30.8rem;
  height: 8.6rem;
  position: absolute;
  top: 10.5rem;
  left: 13rem;
  pointer-events: none;
}

.menu::after {
  top: auto;
  left: 13.5rem;
  bottom: 15rem;
}

@media (max-width: 767px) {
  .menu::before,
  .menu::after {
    width: 25rem;
    height: 7rem;
    top: 5rem;
    left: 3rem;
  }

  .menu::after {
    top: auto;
    left: 5rem;
    bottom: 5rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 9rem;
  margin: 10rem auto 12rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 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%;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding-top: 2rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 4.5rem;
}

.menu__txt-wrapper p {
  background: url("../img/menu_txt-bg.jpg") repeat center / 100% auto;
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 5rem;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    margin-left: -16rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper p {
    margin: 0 -16rem 0 0;
  }
}

.menu__txt-wrapper p::before {
  content: "";
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
  border: solid 1px var(--black);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.menu__img {
  width: 72rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__list-item:nth-of-type(2) .menu__img::before {
  content: "";
  background: url("../img/menu_img-deco.png") no-repeat center / contain;
  width: 56.6rem;
  height: 24.5rem;
  position: absolute;
  right: -4rem;
  bottom: -12rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(2) .menu__img::before {
    width: 45rem;
    height: 19.5rem;
    right: -5rem;
    bottom: -10rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 8rem 0 12.5rem;
}

.gallery__slider {
  height: 20rem;
  margin: 8rem 0 9rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  padding: 8rem 0 11rem;
  position: relative;
}

@media (max-width: 767px) {
  .access {
    padding: 10rem 0 11rem;
  }
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / cover;
  width: 67rem;
  height: 33rem;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 48rem;
    height: 23.6rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 9rem;
  margin: 13rem auto 8rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
    margin: 8rem auto;
  }
}

.access__img {
  width: 64rem;
  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;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
    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, 10rem);
  font-weight: 500;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.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: 38rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 8rem 0 13.5rem;
}

.insta__inner {
  width: 87rem;
  margin: 11.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__inner {
    width: 90%;
  }
}

.insta__contents {
  width: 100%;
  margin-bottom: 6rem;
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.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: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

.insta__link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.insta__link li a {
  background-color: #e22020;
  width: 100%;
  height: max(60px, 10rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

.insta__link li:nth-of-type(2) a {
  background-color: #ecad39;
}

.insta__link li img {
  width: 26.4rem;
  height: auto;
}

.insta__link li:nth-of-type(2) img {
  width: 19.6rem;
}

/*============================
	sister
============================*/
.sister {
  background-color: var(--black);
  color: var(--white);
  padding: 9rem 0;
}

.sister__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .sister__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.sister__list > li {
  background: url("../img/sister_bg-1.jpg") no-repeat center / cover;
  border: solid 1px var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 5rem 4.5rem;
}

.sister__list > li:nth-of-type(2) {
  background: url("../img/sister_bg-2.jpg") no-repeat center / cover;
}

.sister__list > li:nth-of-type(3) {
  background: url("../img/sister_bg-3.jpg") no-repeat center / cover;
}

@media screen and (max-width: 767px) {
  .sister__list > li {
    padding: 5rem 5rem 6rem;
  }
}

.sister__list h3 {
  height: max(60px, 10rem);
  font-size: max(14px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.sister__link {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .sister__link {
    max-width: 230px;
  }
}

.sister__insta {
  display: block;
  width: max(21px, 2.7rem);
}

.sister__btn {
  width: 100%;
  margin: 5rem 0 3.5rem;
}

.sister__btn a {
  display: block;
  width: 100%;
  border: solid 1px var(--white);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
}

@media screen and (max-width: 767px) {
  .sister__btn a {
    padding: 7px 0;
  }
}

.sister__btn a::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 5rem;
  height: 1px;
}

.sister__food {
  width: 100%;
}

.sister__food ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.sister__hotpepper a,
.sister__tabelog a {
  background-color: #e22020;
  height: max(28px, 3.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sister__tabelog a {
  background-color: #ecad39;
}

.sister__hotpepper img {
  width: 9.2rem;
  height: auto;
}

.sister__tabelog img {
  width: 6.8rem;
  height: auto;
}

@media screen and (max-width: 767px) {
  .sister__hotpepper img {
    width: 92px;
  }

  .sister__tabelog img {
    width: 68px;
  }
}
