@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.jpg") no-repeat center / cover;
  width: 100%;
  height: 45rem;
  color: var(--white);
  display: grid;
  place-content: center;
  padding-top: max(100px, 16rem);
  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-size: max(21px, 3rem);
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__ttl span {
  display: block;
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  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%;
  }
}

/*============================
	category
============================*/
.category__txt {
  font-size: max(12px, 1.8rem);
  text-align: center;
}

.category__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem 4rem;
  margin: 8rem auto 0;
}

@media (max-width: 767px) {
  .category__list {
    grid-template-columns: 1fr;
  }
}

.category__list h3 {
  border-bottom: solid 1px var(--black);
  font-size: max(16px, 2.4rem);
  font-weight: 600;
  padding: 2rem 0;
  margin-bottom: 4rem;
  position: relative;
}

.category__list h3 span {
  display: block;
  font-size: max(12px, 1.6rem);
}

.category__list h3::before {
  content: "";
  background-color: var(--brown);
  width: 20%;
  height: 1px;
  position: absolute;
  transform: translateY(100%);
  left: 0;
  bottom: 0;
  pointer-events: none;
}

/*============================
	obento
============================*/
.obento__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
}

@media (max-width: 767px) {
  .obento__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.obento__list li > div {
  width: 100%;
  margin-bottom: 1.5rem;
}

.obento__list dt,
.obento__list dd {
  text-align: center;
}

.obento__list dt {
  font-size: max(16px, 2.4rem);
}

.obento__list dd {
  font-size: max(12px, 1.8rem);
}

/*============================
	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 {
  position: absolute;
  top: max(55px, 6rem);
  left: calc(150px + 5rem);
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .cms_takeout__item_list .cms_takeout__item_list--item_description {
    order: 2;
    position: static;
  }
}

.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: 100%;
    height: auto;
    margin: 0 0 2rem;
  }
}

.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: 1.8rem;
  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: 1.8rem;
  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(--brown);
  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;
}

.cms_takeout__common_button {
  text-align: center;
}
