@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(50px, 6.6rem);
  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-family: var(--font-en);
  font-size: max(21px, 3rem);
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
}

/*-------------------------
  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(--blue);
  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%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__txt {
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 2;
}

/*-------------------------
  menu
---------------------------*/
.menu__btn-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .menu__btn-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu__btn {
  width: 100%;
  height: max(50px, 7rem);
  border: solid 1px var(--blue);
  font-size: max(12px, 2rem);
  letter-spacing: 0.3em;
  display: grid;
  place-content: center;
}

@media (max-width: 767px) {
  .menu__btn {
    height: max(40px, 7rem);
  }
}

.current .menu__btn {
  background-color: var(--blue);
  color: var(--white);
}

.menu__list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}

/*============================
	blog
============================*/
.news_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.news_item {
  display: flex;
  gap: 12px;
  cursor: pointer;
  background-color: #f1f1f1;
}

.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: 12px;
}

.news_caption {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 5px;
}

.news_date {
  font-size: max(12px, 1.4rem);
  text-align: center;
  line-height: 1.2;
  padding-top: 0;
  padding-bottom: 0;
  align-self: flex-end;
}

.news_day {
  font-size: max(20px 3.2rem);
  text-align: right;
}

.news_month {
  font-size: max(10px, 1.2rem);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 32px;
}

.pagination-number,
.pagination-arrow {
  font-size: max(14px, 16px);
  padding: 8px 12px;
}

.pagination-number.active {
  background-color: orange;
  color: var(--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
---------------------------*/
.newsDetail_image img,
.newsDetail_image video {
  width: 100%;
  height: auto;
}

.newsDetail_content {
  margin-top: 32px;
  font-size: max(12px, 1.8rem);
}

.newsDetail_back-link {
  margin-top: 40px;
  text-align: center;
  font-size: max(14px, 2rem);
}

.newsDetail_back-link a {
  background-color: var(--brown);
  color: var(--white);
  position: relative;
  padding: max(8px, 1.2rem), 4rem;
}

.newsDetail_caption {
  white-space: pre-wrap;
}

/*-------------------------
  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;
}
