@charset "UTF-8";
.c-inner {
  width: 100%;
  max-width: 1040px;
  margin: auto;
  padding-inline: 20px;
}

.c-inner-small {
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding-inline: 20px;
}

.u-sp-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-show {
    display: block;
  }
}

.u-sp-none {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-sp-none {
    display: none;
  }
}

.c-sub-mv {
  background-color: #d2d9d9;
}
.c-sub-mv__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 260px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-sub-mv__inner {
    height: 180px;
  }
}
.c-sub-mv__title {
  font-size: 36px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-sub-mv__title {
    font-size: 24px;
  }
}

/* footer */
.footer-nav {
  margin-bottom: 20px;
  text-align: center;
}
.footer-nav a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer-nav a {
    font-size: 12px;
  }
}
.footer-nav a:hover {
  text-decoration: underline;
}

/* トップへ戻る */
.common-bottom {
  padding: 56px 0;
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .common-bottom {
    padding: 40px 0;
  }
}
.common-bottom__link-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  text-align: center;
}
.common-bottom__link {
  display: block;
  position: relative;
  padding-inline: 32px;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .common-bottom__link {
    padding-inline: 28px;
    font-size: 16px;
  }
}
.common-bottom__link::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .common-bottom__link::after {
    top: calc(50% - 7px);
    width: 14px;
    height: 14px;
  }
}
.common-bottom__link--other::after {
  left: 0px;
  transform: rotate(-135deg);
}
.common-bottom__link--front::after {
  right: 0px;
  transform: rotate(45deg);
}
.common-bottom__link:hover {
  opacity: 0.7;
}