/* ============================================================
components
============================================================ */
.c-head {
  /* margin: 0 10%; */
  padding: 7.32vw 0 2vw 0;
}
.c-head__title {
  width: 100%;
  padding-bottom: 0.73vw;
  color: var(--accent);
  font-size: min(1.76vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  border-bottom: 3px solid var(--accent);
}
/* ============================================================
container
============================================================ */
.container__inner:not(.header__inner, .footer__inner, .hero__inner) {
  max-width: initial;
  width: min(80%, 1200px);
  margin: 0 auto;
}
.container:not(.header, .footer, .hero) {
  background-color: initial;
}
.container__title {
  padding-left: 16px;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-left: 16px solid var(--accent);
}
img {
  width: 100%;
  height: auto;
  display: block;
}
main {
  background-color: #e7edf0;
  padding-bottom: 100px;
}
/* ============================================================
hero
============================================================ */
.hero {
  margin-top: 8.78vw;
  width: 100%;
  max-width: initial;
  background-color: var(--white);
}
.hero__inner {
  /* max-width: 1500px; */
  max-width: initial;
  width: 100%;
}
.hero__head {
  position: relative;
  padding-bottom: 5.3333vw;
  width: 100%;
}
.hero__title {
  position: absolute;
  bottom: 5.3333vw;
  left: 0;
  right: 0;
}
.hero__title__inner {
  display: block;
  margin: 0 auto;
  max-width: 1200px;
  width: 80%;
}
.hero__title-text {
  position: relative;
  color: var(--accent);
  font-size: 2.5vw;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 0.6em;
  padding-right: 0.6em;
  white-space: nowrap;
}
.hero__title-text::after {
  content: "";
  display: block;
  width: 100%;
  height: 1.3333vw;
  position: absolute;
  left: 0;
  bottom: -1.3333vw;
  background-color: var(--accent);
}
/* ============================================================
components & utility
============================================================ */
/* component */
.c-title {
  font-size: min(1.6vw, 24px);
}
.c-text {
  font-size: min(1.46vw, 20px);
}
.c-note {
  font-size: min(1.46vw, 20px);
}
@media screen and (max-width: 767px) {
  .c-title,
  .c-text,
  .c-note {
    font-size: 2rem;
  }
}
.c-bg--red {
  border-radius: 8px;
  padding: 16px;
  background-color: #ebe6d7;
}
.c-bg--blue {
  border-radius: 8px;
  padding: 16px;
  background-color: #d7e0eb;
}
.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th,
.c-table td {
  padding: 8px 0;
  text-align: left;
  font-size: min(1.46vw, 20px);
  line-height: 1.5;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .c-table th,
  .c-table td {
    font-size: 1.4rem;
  }
}
.c-table th {
  font-weight: bold;
  color: var(--black);
  width: 200px;
  min-width: 200px;
}
.c-img-wrap {
  max-width: 40vw;
}

/* ============================================================
toc
============================================================ */
.toc__title {
  font-weight: bold;
  font-size: 36px;
  letter-spacing: 0.05em;
}
.toc__ul {
  width: 100%;
  /* margin-top: 32px; */
}
.toc__li {
  border-bottom: 1px solid var(--black);
  text-align: left;
  font-size: min(1.46vw, 20px);
  line-height: 1.5;
  vertical-align: baseline;
}
.toc__li:first-child {
  border-top: 1px solid var(--black);
}
.toc__link {
  position: relative;
  padding: 28px 0;
  display: block;
  width: 100%;
  height: 100%;
}
.toc__link::after {
  content: "→";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  font-size: 1.7rem;
  color: var(--white);
  background-color: var(--accent);
}

/* ============================================================
info
============================================================ */
.info__2col {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  gap: 80px;
}
.info__2col--left,
.info__2col--right {
  width: calc(24%);
  /* height: 40vw; */
}
.info__2col--right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 50%;
}
.info__img-wrap02 {
  flex-grow: 1;
  height: 100%;
  width: 100%;
  /* width: fit-content; */
}
.info__img-wrap01 {
  width: calc(24%);
}
.info__img-wrap img {
  width: 100%;
  object-fit: contain;
}
.info__text-box {
  border: 1px solid var(--black);
  border-radius: 8px;
  padding: 16px;
}
.sub-box {
  background-color: var(--white);
  border: #bcc1c5 solid 1px;
  margin-top: 32px;
  padding: 20px;
}
.sub-box__title {
  font-size: min(1.46vw, 20px);
  text-align: center;
  font-weight: normal;
  margin-bottom: 20px;
}
.elevator-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 12px;
  max-width: 850px;
  margin: 0 auto;
}
.elevator-list > li {
  line-height: 1.5;
  font-size: min(1.46vw, 20px);
}
.elevator-list .sttl {
  display: block;
  height: 37px;
  line-height: 37px;
  background-color: #b5b6b6;
  text-align: center;
  margin-bottom: 15px;
  font-size: min(1.46vw, 20px);
}
.elevator-list .office .sttl {
  background-color: #86b4e1;
}
.elevator-list .commercial .sttl {
  background-color: #f1958c;
}
.elevator-list .public .sttl {
  background-color: #b5b6b6;
}
.elevator-list .emergency .sttl {
  background-color: #727272;
  color: #fff;
}
.elevator-list-floor {
  margin-top: 0;
  font-size: min(1.46vw, 20px);
}
.elevator-list-floor li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
  float: none;
}
.elevator-list-floor li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  background-color: #edf2fa;
}
.elevator-list-floor li p {
  background-color: white;
  padding-right: 4px;
  position: relative;
  z-index: 1;
  font-size: min(1.46vw, 20px);
}
.info__table-title {
  font-size: 1.6vw;
  font-weight: bold;
}
/* ============================================================
parking
============================================================ */
@media screen and (min-width: 768px) {
  #parking .u-2col > * {
    width: 50%;
  }
}
.parking__img-wrap01,
.parking__img-wrap02 {
  max-width: 40vw;
}
.parking__info {
  font-size: min(1.46vw, 20px);
  background-color: #ede7d7;
  padding: 20px;
  height: calc(100% - 40px);
}
@media screen and (max-width: 767px) {
  .parking__info {
    font-size: 2rem;
  }
}
/* ============================================================
contact
============================================================ */
.contact {
  padding-bottom: 100px;
}
.contact__text-bg {
  width: fit-content;
  background-color: #f2f2f2;
}
.contact-text-padding {
  padding: 2px 16px;
}
.contact__btn {
  display: block;
  width: 180px;
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--white);
  text-align: center;
  background-color: var(--accent);
}

@media screen and (max-width: 767px) {
  /* ============================================================
components
============================================================ */
  .c-head {
    margin: 0;
    padding: 32px 0 24px;
  }
  .c-head__title {
    padding-bottom: 4px;
    font-size: 24px;
  }
  /* ============================================================
container
============================================================ */
  .container__inner:not(.footer__inner, .hero__inner) {
    width: 100%;
    padding: 0 20px;
  }

  /* .toc__ul,
  .info__2col,
  .sub-box,
  .c-table,
  .info__text-box {
    width: initial;
    margin: 0 20px;
  } */
  .toc__li {
    font-size: 2rem;
  }
  .sub-box {
    margin-top: 24px;
  }
  .elevator-list {
    display: block;
  }
  /* ============================================================
hero
============================================================ */
  .hero {
    margin-top: 40px;
  }
  .hero__inner {
    width: 100%;
  }
  .hero__head {
    padding-bottom: 24px;
    height: 24px;
  }
  .hero__title {
    bottom: 24px;
    font-size: 3.2rem;
    line-height: 1.2;
  }
  .hero__title__inner {
    width: 100%;
    padding: 0 20px;
  }
  .hero__title-text {
    font-size: 3.2rem;
  }
  .hero__title-text::after {
    height: 20px;
    bottom: -20px;
  }
  /* ============================================================
components & utility
============================================================ */
  /* component */
  .c-table th {
    width: 110px;
    min-width: initial;
  }
  .c-img-wrap {
    max-width: initial;
    width: 100%;
  }

  /* ============================================================
info
============================================================ */
  .info__img-wrap {
    height: initial;
    width: 100%;
  }
  .info__img-wrap02 {
    width: 60%;
    margin: 0 auto;
  }
  .info__img-wrap img {
    height: 100%;
    object-fit: contain;
    max-width: 100%;
  }
  .info__2col--right {
    height: initial;
    width: 100%;
  }
  /* ============================================================
parking
============================================================ */
  .parking__img-wrap01,
  .parking__img-wrap02 {
    max-width: initial;
    width: 100%;
  }
  /* ============================================================
contact
============================================================ */
  .contact__btn {
    margin: 0 auto;
  }
}
