#wrap {
  width: 100%;
  overflow: hidden;
  min-height: 100dvh;
  background-color: #fff;
  margin: 0 auto;
  padding: 48px 0 62px;
}
body {
  padding: env(safe-area-inset-top) env(safe-area-inset-right)
    env(safe-area-inset-bottom) env(safe-area-inset-left);
}
.main {
  max-width: 1064px;
  margin: 0 auto;
  min-height: calc(100dvh - 48px - 61px - 461px);
}
.section__inner {
  width: calc(100% - 40px);
  max-width: 1024px;
  margin: 0 auto;
}

.header {
  position: fixed;
  left: 50%;
  top: 0;
  /* top: env(safe-area-inset-top); */
  width: 100%;
  height: calc(env(safe-area-inset-top) + 48px);
  border-bottom: 1px solid #dddddd;
  background-color: #fff;
  transform: translateX(-50%);
  z-index: 900;
  /* padding-top: calc(constant(safe-area-inset-top) + 47px); */
  /* padding: 0 0 calc(env(safe-area-inset-top) + 47px); */
  padding-top: env(safe-area-inset-top);
}
.header__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 40px);
  max-width: 1024px;
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
}
.main__logo {
  width: 90px;
}
.main__logo > a {
  display: block;
  width: 100%;
  height: 100%;
}
.main__logo img {
  width: 100%;
}
.header__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.btn-page-back {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 24px;
  height: 24px;
  background: url(/_img/common/icon_page_back.svg) no-repeat center
    center/contain;
  transform: translateY(-50%);
}
.btn-page-back.close {
  background-image: url(/_img/common/icon_close.svg);
}

.bottom-menu {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 62px;
  background-color: #fff;
  box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  z-index: 999;
}
.bottom-menu > .inner {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 40px);
  max-width: 500px;
  height: 100%;
  margin: 0 auto;
}
.bottom-menu__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.bottom-menu__item {
  text-align: center;
}
.bottom-menu__item img,
.bottom-menu__item span {
  display: block;
}
.bottom-menu__item img {
  margin: 0 auto;
}
.bottom-menu__item span {
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  color: #767676;
  padding-top: 4px;
}

/* footer */
.footer {
  padding: 40px 0;
  background-color: #333333;
}
.footer__inner {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1024px;
  height: 100%;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-sns__box {
  display: flex;
  column-gap: 8px;
  padding-top: 4px;
}
.footer-site__list {
  display: flex;
  column-gap: 16px;
  margin: 16px 0;
}
.footer-site__list > li {
  position: relative;
}
.footer-site__list > li::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  display: block;
  width: 1px;
  height: 14px;
  background-color: #505050;
  transform: translateY(-50%);
}
.footer-site__list > li:last-child::after {
  display: none;
}
.footer-site__list a {
  font-size: 14px;
  line-height: 20px;
  color: #dddddd;
}
.footer-site__list a > b {
  font-weight: 700;
}
.footer-company__wrap {
  padding: 16px 0;
  border-top: 1px solid #505050;
  font-style: normal;
}
.footer-company__wrap > * + * {
  margin-top: 4px;
}
.footer-company__row {
  display: flex;
}
.footer-company__row > dt {
  width: 102px;
  font-size: 12px;
  line-height: 18px;
  color: #767676;
}
.footer-company__row > dd {
  width: calc(100% - 88px);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #999999;
}
.footer-info__wrap {
  padding-top: 16px;
  border-top: 1px solid #505050;
}
.contact__wrap > .title {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  color: #dddddd;
}
.contact__box {
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  padding: 8px;
  margin-top: 4px;
}
.contact__box .contact-info > * {
  font-size: 12px;
  line-height: 18px;
  color: #767676;
}
.contact__box .contact-info > b {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #dddddd;
}
.contact__box .contact-info > .label {
  color: #999999;
}
.contact__box .contact-time {
  margin-top: 4px;
  font-size: 12px;
  line-height: 18px;
  color: #999999;
}
.copyright {
  font-size: 12px;
  line-height: 18px;
  color: #505050;
  font-weight: 300;
  margin-top: 16px;
}
