@charset "UTF-8";

.preparation {
  font-size: max(18px, 2.8rem);
  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(110px, 17rem);
  position: relative;
}

.hero::before {
  content: "";
  background-color: var(--black);
  opacity: 0.6;
  position: absolute;
  inset: 0;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 50rem);
    padding-top: max(60px, 8rem);
  }
}

.hero__ttl {
  font-size: max(12px, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.hero__ttl span {
  display: block;
  font-family: var(--font-sans);
  font-size: max(24px, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  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%;
  }
}

/*-------------------------
  service
---------------------------*/
.service__contents:not(:last-of-type) {
  margin-bottom: 8rem;
}

.service__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;
}

.service__ttl::before {
  content: "";
  width: 20%;
  border-bottom: solid 3px var(--beige);
  position: absolute;
  bottom: -3px;
}

.service__wrapper {
  display: flex;
  gap: 2rem 5%;
  justify-content: space-between;
}

.service__contents:nth-of-type(odd) .service__wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .service__wrapper,
  .service__contents:nth-of-type(odd) .service__wrapper {
    flex-direction: column;
  }
}

.service__img {
  width: 35%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .service__img {
    width: 100%;
  }
}

.service__txt {
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 2;
}

/*-------------------------
  price
---------------------------*/
.menu__list {
  display: flex;
  flex-wrap: wrap;
}

.menu__list:not(:last-of-type) {
  margin-bottom: 6rem;
}

.menu__list dt,
.menu__list dd {
  border-bottom: solid 1px var(--black);
}

.menu__list dt {
  width: calc(100% - 100px);
  padding: max(10px, 2rem) 0 max(10px, 2rem) 1rem;
}

.menu__list dd {
  width: 100px;
  text-align: right;
  padding: max(10px, 2rem) 1rem max(10px, 2rem) 0;
}

@media (max-width: 767px) {
  .menu__list dt,
  .menu__list dd {
    width: 100%;
  }

  .menu__list dt {
    border-bottom: none;
    padding: max(10px, 2rem) 1rem 0;
  }

  .menu__list dd {
    padding: 0 1rem max(10px, 2rem);
  }
}

/*-------------------------
  news
---------------------------*/
.topNews_list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  list-style: none;
}
.topNews_item {
  display: inline-block;
  width: calc(33.33333333333% - 3rem * 2 / 3);
}
.topNews_image {
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  padding: 35%;
  aspect-ratio: 1/1;
}
.topNews_image img,
.topNews_image video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: 0.2s;
}
.topNews_content {
  margin-top: 1.5rem;
}
.topNews_date {
  font-size: 1.2rem;
  width: fit-content;
  background: #000;
  color: #fff;
  padding: 0 1.5rem;
}
.topNews_btn {
  display: flex;
  justify-content: center;
  margin: auto;
}
.news_link {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .topNews_list {
    flex-direction: column;
    margin-bottom: 32px;
  }
  .topNews_item {
    width: 100%;
  }
}
/* ---- news index ---- */
.news_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.news_item {
  display: flex;
  gap: 1.2rem;
  cursor: pointer;
}
.news_item:hover {
  opacity: 0.5;
}
.news_image {
  position: relative;
  width: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.news_image img,
.news_image video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: 0.2s;
  object-fit: cover;
}
.news_item:hover img {
  transform: translate(-50%, -50%) scale(1.2);
}
.news_content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
}
.news_caption {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 5px;
}
.news_date {
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.2;
  padding-top: 0;
  padding-bottom: 0;
  align-self: flex-end;
}
.news_day {
  font-size: 2rem;
  text-align: right;
}
.news_month {
  font-size: 1.2rem;
  color: var(--beige);
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 3rem;
}
.pagination-number,
.pagination-arrow {
  font-size: 1.6rem;
  padding: 8px 12px;
}
.pagination-number.active {
  background-color: orange;
  color: white;
  cursor: default;
}
.pagination-no-number {
  align-self: center;
}
@media screen and (max-width: 767px) {
  .news_container {
    grid-template-columns: 1fr;
  }
  .news_item {
    flex-direction: column;
  }
  .news_image {
    width: 100%;
  }
  .news_content {
    width: calc(100% - 24px);
  }
}
/* ---- blog detail ---- */
.blogdetail_image img,
.blogdetail_image video {
  width: 100%;
  height: auto;
}
.blogdetail_content {
  margin-top: 3rem;
  font-size: 1.8rem;
}
.blogdetail_back-link {
  margin-top: 4rem;
  text-align: center;
}
.blogdetail_back-link a {
  color: var(--beige);
  position: relative;
  padding: 1rem 4rem;
}
.blogdetail_caption {
  white-space: pre-wrap;
}

/*-------------------------
  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;
}

/*-------------------------
  voice
---------------------------*/

/* レビュー連携用CSS */
.voice-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}

.voice-container .voice-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #000;
  background-color: #e1e1e1;
  padding: 12px;
}

.voice-container .voice-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-container .voice-image img {
  width: 40px;
}

.voice-container .voice-rating-date {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-container .voice-rating {
  color: var(--black);
}

.voice-container .review-text {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.voice-container .read-more,
.voice-container .hide-details {
  color: #000;
  display: inline;
  cursor: pointer;
  text-decoration: underline;
}

.voice-container .hide-details {
  display: none;
}

.voice-container .voice-date {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .voice-container {
    grid-template-columns: 1fr;
  }

  .voice-container .voice-item {
    flex-direction: column;
  }
}

/*-------------------------
  thanx
---------------------------*/
.thanx__txt {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}

.thanx_btn a {
  display: block;
  background-color: var(--beige);
  width: max-content;
  font-weight: 300;
  color: var(--black);
  padding: 1rem 2rem;
  margin: 4rem auto 0;
}
