@charset "UTF-8";

.preparation {
  font-size: max(20px, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

/*============================
	hero
============================*/
.hero {
  background: url("../img/mv_1.jpg") no-repeat center / cover;
  width: 100%;
  height: 40rem;
  color: var(--white);
  display: grid;
  place-content: center;
  padding-top: max(60px, 11.5rem);
  position: relative;
}

.hero::before {
  content: "";
  background-color: var(--black);
  opacity: 0.6;
  position: absolute;
  inset: 0;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding-top: max(60px, 8rem);
  }
}

.hero__ttl {
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__ttl span {
  font-family: var(--font-en);
  font-size: max(24px, 4rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}
/*-------------------------
  lower_sec
---------------------------*/
.lower_sec {
  padding: 12rem 0 15rem;
}

.lower_sec-inner {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .lower_sec-inner {
    width: 90%;
  }
}

/*-------------------------
  concept
---------------------------*/
.concept__contents:not(:last-of-type) {
  margin-bottom: 8rem;
}

.concept__ttl {
  border-bottom: solid 1px rgba(55, 48, 50, 0.4);
  font-size: max(14px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 1rem 0 1.5rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.concept__ttl::before {
  content: "";
  width: 20%;
  border-bottom: solid 3px var(--red);
  position: absolute;
  bottom: -3px;
}

.concept__wrapper {
  display: flex;
  gap: 2rem 5%;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .concept__wrapper {
    flex-direction: column;
  }
}

.concept__img {
  width: 35%;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__txt {
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 2;
    font-size: 2rem;
}

@media (max-width: 767px) {
  .concept__txt {
    font-size: 2.4rem;
}
}

/*-------------------------
  menu
---------------------------*/
.menu__list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}

/*-------------------------
  news
---------------------------*/
.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3rem;
  padding-bottom: 15rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 24rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    width: 100%;
    height: 40rem;
  }
}

.CMS-NEWS-LINK {
  font-size: max(14px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.44;
  margin-bottom: 2rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.08em;
}

.CMS-NEWS-MORE-READ {
  background-color: var(--red);
  width: 38rem;
  height: 7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  display: grid;
  place-content: center;
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
  left: 50%;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-MORE-READ:hover {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .CMS-NEWS-MORE-READ {
    width: 100%;
    height: 8rem;
  }
}

/*-------------------------
  newsdetail
---------------------------*/
.CMS-NEWS-DETAIL {
  width: 100%;
  height: auto;
  color: var(--black);
  margin: 0 auto;
}

.CMS-NEWS-TITLE {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  padding: 1rem 0 1.2rem 0;
  margin-bottom: 3rem;
  position: relative;
}

.CMS-NEWS-TITLE:after {
  content: "";
  display: block;
  width: 25%;
  border-bottom: solid 3px var(--red);
  position: absolute;
  bottom: -3px;
}

.CMS-NEWS-CONTENT img {
  display: block;
  width: 80%;
  height: auto;
  margin: 0 auto 2rem auto;
}

/*-------------------------
  gallery
---------------------------*/
.gallery__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.gallery__list li {
  margin: 0 1rem 2rem;
}

.gallery__list a {
  display: block;
  width: 14vw;
  height: 14vw;
  border-radius: 50%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .gallery__list a {
    width: 19vw;
    height: 19vw;
  }
}

#swipebox-close {
  right: auto;
  left: 0;
}

@media (min-width: 800px) {
  #swipebox-close {
    right: auto;
    left: 10px;
  }
}

/*-------------------------
  shop
---------------------------*/
.map {
  margin: 0 auto 4rem;
}

.shop__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.shop__list dt,
.shop__list dd {
  border-bottom: solid 1px var(--black);
  letter-spacing: 0.08em;
  line-height: 2;
  padding: 2rem;
}

.shop__list dt {
  width: 30%;
  font-weight: 700;
  white-space: nowrap;
}

.shop__list dd {
  width: 70%;
}

@media (max-width: 767px) {
  .shop__list dt,
  .shop__list dd {
    width: 100%;
  }

  .shop__list dt {
    border-bottom: none;
    padding: 2rem 2rem 0;
  }

  .shop__list dd {
    padding: 0 2rem 2rem;
  }
}

.shop__underline {
  text-decoration: underline;
}

/*============================
	takeout
============================*/
.cms_takeout__modal_window {
  z-index: 10000;
}

.cms_takeout__item_list ol,
.cms_takeout__item_list ul {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.cms_takeout__item_list ol,
.cms_takeout__item_list ul li {
  width: 26%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .cms_takeout__item_list ul li:not(:nth-child(3)) {
    margin-right: 5%;
  }
  .cms_takeout__item_list ul li:nth-last-child(1) {
    margin-right: 0;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .cms_takeout__item_list .cms_takeout__item_list--item_name {
    margin-left: 5rem;
  }
  .cms_takeout__item_list .cms_takeout__item_list--item {
    display: flex !important;
    /* flex-direction: column; */
    padding: 30px 0;
  }
}

@media screen and (max-width: 767px) {
  .cms_takeout__item_list .cms_takeout__item_list--item {
    display: flex !important;
    /* flex-direction: column; */
    padding: 30px 0;
  }
}

.cms_takeout__item_list .cms_takeout__item_list--item.-hasimage {
  /* width: 30%; */
  width: 100%;
}

@media screen and (max-width: 767px) {
  .cms_takeout__item_list .cms_takeout__item_list--item {
    width: 100% !important;
    margin-right: 0;
  }

  .cms_takeout__item_list .cms_takeout__item_list--item.-hasimage {
    width: 100% !important;
    margin-right: 0;
  }
}

.cms_takeout__item_list .cms_takeout__item_list--item_image {
  display: block;
  max-height: initial;
  width: 150px;
  height: 150px;
  order: 1;
}

.cms_takeout__item_list .cms_takeout__item_list--item_image img {
  display: block;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}

.cms_takeout__item_list .cms_takeout__item_list--item_name {
  position: relative;
  order: 2;
  flex: 1;
}

.cms_takeout__item_list .cms_takeout__item_list--item_description {
  display: none;
  position: absolute;
  top: 380px;
}

.cms_takeout__item_list .cms_takeout__item_list--item_price {
  right: 0;
  order: 3;
  height: 20px;
  text-align: right;
}

.cms_takeout__item_list .cms_takeout__item_list--item_image {
  top: 0 !important;
  position: relative !important;
  overflow: initial;
}

.cms_takeout__item_list .cms_takeout__item_list--item.-hasimage {
  padding-right: 0 !important;
}

@media screen and (max-width: 767px) {
  .cms_takeout__item_list .cms_takeout__item_list--item_image {
    width: 100px;
    height: 100px;
    margin: 0 2rem 0 0;
  }
}

.cms_takeout__modal_window .cms_takeout__modal_window--button_back {
  color: #000 !important;
}

.privacy {
  background-color: var(--white);
  width: auto;
  margin: 10px auto 5rem;
  border: 2px solid #000000;
  padding: 20px;
  height: 500px;
  overflow: auto;
}

.access_stores {
  margin-top: 100px;
}

.access_stores h3 {
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 100;
}

.table {
  width: 100%;
}

.table,
.table_row_inner {
  list-style: none;
}

.table_row_inner {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-align-items: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 20px 10px;
  border-bottom: solid 1px #dadada;
}

.table_row_inner02 {
  padding: 20px 10px;
  border-bottom: solid 1px #dadada;
}

.table_item_left {
  font-size: 2rem;
  line-height: 2.2rem;
  color: var(--black);
  font-weight: 600;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
}

.table_item_left02 {
  font-size: 2rem;
  line-height: 2.2rem;
  color: var(--black);
  font-weight: 600;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.table_item_left03 {
  font-size: 2rem;
  line-height: 2.2rem;
  color: var(--black);
  font-weight: 400;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}

.table_list_content {
  font-size: 2rem;
  line-height: 2.2rem;
  color: var(--black);
  font-weight: 400;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
}

.detail dt,
.detail dd {
  border-bottom: 1px solid #ccc !important;
}

.policy-wrap {
  margin: 3rem 0;
}

.cms_takeout__modal_window .cms_takeout__modal_window--button_back {
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  .detail dt {
    border-bottom: 0 !important;
    font-weight: bold;
  }
  .cms_takeout__cart--input_group:nth-of-type(5) p::after {
    margin-top: 30px !important;
  }
}

.access_stores {
  margin-top: 100px;
}

.access_stores h3 {
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 100;
}

.takeout_ttl {
  font-size: max(16px, 2.6rem);
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  line-height: 2;
  border-bottom: solid 1px var(--black);
  margin: 6rem 0 2rem;
  position: relative;
}

.takeout_ttl::after {
  content: "";
  border-bottom: solid 3px var(--red);
  bottom: -3px;
  display: block;
  position: absolute;
  width: 25%;
}

.cms_takeout__item_list .cms_takeout__item_list--item:not(:last-child) {
  width: 100%;
}

body.-cms_takeout__modal_window_active .cms_takeout__modal_window--close-button {
  padding: 5px 10px;
}

.cms_takeout__modal_window .cms_takeout__modal_window--button_container.not-fixed {
  margin: 0;
  padding: 10px 20px !important;
}
