/* ============================================================
hero
============================================================ */
.hero {
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--section-bg);
  width: 100%;
  height: 165px;
  z-index: 0;
}
.hero__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 60px 0;
  background: var(--white);
  gap: 0 6%;
}
.hero__carousel {
  position: relative;
  z-index: 1;
  width: 50%;
}
.hero__carousel-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  background-color: var(--black);
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
}
/* カルーセル画像の表示制御 */
.hero__carousel-img {
  display: none;
}
.hero__carousel-img.is-active {
  display: block;
}
.hero__carousel-indicator {
  width: fit-content;
  display: flex;
  gap: 12px;
  margin: 18px auto 0;
  padding-left: 0;
}
.hero__carousel-dot {
  width: 45px;
  height: 5px;
  background: #e4c2b0;
}
.hero__carousel-dot.is-active {
  background: var(--accent);
}
.hero__info {
  position: relative;
  z-index: 1;
  /* width: 32%; */
  /* flex: 1; */
  width: calc(100% - 50% - 6%);
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.hero__logo img {
  height: 100%;
}
.hero__title {
  margin-top: 24px;
}
.hero__title-main {
  font-size: 3.4rem;
  font-weight: bold;
}
.hero__title-sub {
  font-size: 1.8rem;
  font-weight: normal;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 28px;
}
.hero__floor {
  color: var(--accent);
  font-size: 3rem;
  font-weight: bold;
  padding-right: 12px;
  line-height: 1;
  border-right: 1px solid var(--accent);
}
.hero__map {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding-left: 12px; */
  text-decoration: none;
}
.hero__map-icon {
  color: var(--accent);
  font-size: 2.2rem;
}
.hero__map-text {
  color: var(--accent);
  font-weight: bold;
}
.hero__category {
  background: var(--accent);
  color: var(--white);
  /* margin-left: 36px; */
  padding: 10px 36px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
}
/* ============================================================
desc
============================================================ */
.desc {
  background: var(--section-bg);
  padding: 0 0 60px;
}
.desc__title {
  font-weight: bold;
  font-size: 2.4rem;
  display: block;
  border: none;
  padding-left: 0;
}
.desc__detail {
  margin-top: 24px;
  color: var(--black);
  font-size: 1.8rem;
  line-height: 1.7;
}
.desc__btn-wrap {
  text-align: center;
}
/* ============================================================
info
============================================================ */
.info {
  background: var(--info-bg);
  padding: 100px 0;
  margin-bottom: 100px;
}
.info__title {
  font-weight: bold;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}
.info__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--info-bg);
  margin-top: 32px;
}
.info__table th,
.info__table td {
  padding: 28px 0;
  border-bottom: 1px solid var(--black);
  text-align: left;
  font-size: 2rem;
  line-height: 36px;
  vertical-align: baseline;
}
.info__table th {
  font-weight: normal;
  color: var(--black);
  width: 280px;
  min-width: 120px;
}
.info__table tr:first-child th,
.info__table tr:first-child td {
  border-top: 1px solid var(--black);
}
.info__table__link {
  word-break: break-all;
}
.info__note-wrap {
  font-size: 1.4rem;
  margin-top: 16px;
  margin-bottom: 0;
}
.info__note {
  line-height: initial;
}
.c-sns-icon--shop > i {
  font-size: 2.4rem;
  color: var(--black);
}
.c-sns-icon--shop:nth-of-type(n + 2) {
  margin-left: 20px;
}
/* ============================================================
map
============================================================ */
.map {
  padding-bottom: 100px;
}
.map__img-wrap {
  width: 100%;
  margin: 0 auto;
}
.map__img {
  width: 100%;
  height: auto;
  display: block;
}
/* ============================================================
レスポンシブ
============================================================ */
@media screen and (max-width: 767px) {
  /* ============================================================
hero
============================================================ */
  /* .hero {
    position: relative;
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--section-bg);
    width: 100%;
    height: 165px;
    z-index: 0;
  } */
  .hero__inner {
    flex-direction: column-reverse;
    padding: 40px 0;
    gap: 20px;
  }
  .hero__carousel {
    width: 100%;
  }
  .hero__info {
    width: 100%;
    /* flex-wrap: wrap; */
    margin-top: 0;
    /* flex-direction: row; */
    gap: 8px;
  }
  .hero__logo {
    height: 60px;
  }
  .hero__title {
    margin-top: 0;
  }
  .hero__title-main {
    font-size: 2.4rem;
  }
  .hero__title-sub {
    font-size: 2rem;
  }
  .hero__meta {
    width: 100%;
    margin-top: 0;
  }
  .hero__floor {
    font-size: 2.8rem;
    padding-right: 8px;
  }
  /* .hero__map {
    padding: 0 16px 0 8px;
  } */
  .hero__map-icon {
    font-size: 2rem;
  }
  .hero__category {
    padding: 8px 12px;
  }
  /* ============================================================
desc
============================================================ */
  .desc {
    padding: 0 0 40px;
  }
  .desc__title {
    font-size: 2rem;
  }
  .desc__detail {
    margin-top: 16px;
    font-size: 2rem;
  }
  /* ============================================================
info
============================================================ */
  .info {
    padding: 60px 0;
  }
  .info__title {
    font-size: 2.4rem;
  }
  .info__table {
    margin-top: 20px;
  }
  .info__table tr {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .info__table th,
  .info__table td {
    padding: 0;
    font-size: 2rem;
    line-height: 1.5;
    border: none;
  }
  .info__table th {
    width: 100%;
    padding-top: 16px;
  }
  .info__table td {
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--black);
  }
  .info__table tr:first-child th {
    border-top: 1px solid var(--black);
  }
    .info__table tr:first-child td {
    border-top: none;
    }
  .info__note-wrap {
    font-size: 1.4rem;
    margin-top: 4px;
  }
  .c-sns-icon--shop > i {
    font-size: 3.2rem;
  }
  .c-sns-icon--shop:nth-of-type(n + 2) {
    margin-left: 8px;
  }
}
