@charset "UTF-8";
body {
  --header-height: 75px;
  --fixed-header-height: 50px;
  --active-header-height: var(--header-height);
  --caution-height: 35px;
}
@media (min-width: 48.0625em) {
  body {
    --header-height: 140px;
    --fixed-header-height: 70px;
    --active-header-height: var(--header-height);
    --caution-height: 50px;
  }
}
body.is-header-fixed {
  --active-header-height: var(--fixed-header-height);
  --caution-height: 0px;
}
body.has-header-caution {
  --active-header-height: calc(var(--header-height) + var(--caution-height));
}
body.has-header-caution.is-header-fixed {
  --header-height: var(--fixed-header-height);
}
@media (min-width: 48.0625em) {
  body.has-header-caution {
    --active-header-height: calc(var(--header-height) + var(--caution-height));
  }
}

.page:not(.is-development) .header-wrap {
  position: relative;
}
.page:not(.is-development) .header-wrap.fixed .header {
  position: fixed;
}
.page:not(.is-development) .header.inner {
  max-width: unset;
}

.header-inner-box {
  max-width: 1000px;
  margin: auto;
}

/* ================================================== */
/* HEADER NAVI ここから */
.header-btn-list-item {
  position: relative;
}

.header-btn-list-item > a:before {
  background-color: #d4003b;
}

.header-btn-list-item > a:after {
  display: none;
}

/* HEADER NAVI ここまで */
/* ================================================== */
/* ================================================== */
/* MEGAMENU ここから */
@-webkit-keyframes accordion-open {
  0% {
    height: 0;
  }
  99% {
    height: var(--accordion-h);
  }
  100% {
    height: auto;
  }
}
@keyframes accordion-open {
  0% {
    height: 0;
  }
  99% {
    height: var(--accordion-h);
  }
  100% {
    height: auto;
  }
}
@-webkit-keyframes accordion-close {
  0% {
    height: var(--accordion-h);
  }
  100% {
    height: 0;
  }
}
@keyframes accordion-close {
  0% {
    height: var(--accordion-h);
  }
  100% {
    height: 0;
  }
}
.page.is-development .header-wrap .c-megamenu {
  background-color: #f1f2f5;
}

.c-megamenu {
  color: #333;
}
.header-btn-list-item > .c-megamenu {
  position: fixed;
  top: var(--active-header-height);
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition-property: opacity, visibility;
  transition-property: opacity, visibility;
  -webkit-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.header-btn-list-item > .c-megamenu .c-megamenu__container {
  width: calc(100% - max(0px, 5.5555555556vw) * 2);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 48em) {
  .header-btn-list-item > .c-megamenu {
    padding-bottom: 24px;
  }
}
@media (min-width: 48.0625em) {
  .header-btn-list-item > .c-megamenu {
    padding: 44px 0;
  }
}
@media (max-width: 48em) {
  .footer-navi .c-megamenu .c-megamenu__container {
    width: calc(100% - max(0px, 5.5555555556vw) * 2);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.open + .c-megamenu {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
@media (min-width: 48.0625em) {
  .c-megamenu__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 40px;
  }
}
.c-megamenu__cell {
  position: relative;
}
@media (max-width: 48em) {
  .c-megamenu__cell + .c-megamenu__cell {
    border-top: 1px solid #fff;
  }
  .c-megamenu__cell.is-active .c-megamenu__title::after {
    -webkit-transform: translateY(25%) rotate(-45deg);
            transform: translateY(25%) rotate(-45deg);
  }
}
@media (min-width: 48.0625em) {
  .c-megamenu__cell {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 164px;
            flex: 1 1 164px;
    max-width: 164px;
  }
  .c-megamenu__cell > * + * {
    margin-top: var(--stack-space, 24px);
  }
  .c-megamenu__cell.has-separator::before {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% + 20px);
    background-color: #dfdfdf;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
.c-megamenu__title {
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.14;
}
.c-megamenu__title span {
  font-weight: normal;
  font-size: 1.2rem;
  display: block;
}
.c-megamenu__title a {
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.c-megamenu__title a:hover {
  opacity: 0.7;
  text-decoration: none;
}
@media (max-width: 48em) {
  .c-megamenu__title {
    padding: 20px 0;
  }
  .c-megamenu__title.js-accordion-trigger::after {
    content: "";
    --size: 8px;
    --clr: #333;
    --bdrw: 1px;
    display: block;
    width: var(--size, 8px);
    height: var(--size, 8px);
    border-top: var(--bdrw, 1px) solid var(--clr, #333);
    border-right: var(--bdrw, 1px) solid var(--clr, #333);
    -webkit-transition-property: border-color;
    transition-property: border-color;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto;
    -webkit-transform: translateY(-25%) rotate(135deg);
            transform: translateY(-25%) rotate(135deg);
  }
  .c-megamenu__title a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.c-megamenu__items {
  line-height: 1.14;
}
@media (max-width: 48em) {
  .c-megamenu__items {
    -webkit-animation: accordion-close 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
            animation: accordion-close 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
    overflow: hidden;
  }
  .is-active .c-megamenu__items {
    -webkit-animation: accordion-open 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
            animation: accordion-open 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s forwards;
  }
}
@media (min-width: 48.0625em) {
  .c-megamenu__title + .c-megamenu__items {
    margin-top: 24px;
  }
}
.c-megamenu__item {
  font-size: 1.3rem;
}
.c-megamenu__item a {
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.c-megamenu__item a:hover {
  opacity: 0.7;
}
@media (max-width: 48em) {
  .c-megamenu__item {
    padding: 12px 0 12px 12px;
  }
  .c-megamenu__item:last-child {
    padding-bottom: 24px;
  }
}
@media (min-width: 48.0625em) {
  .c-megamenu__item + .c-megamenu__item {
    margin-top: 1.2em;
  }
}

/* MEGAMENU ここまで */
/* ================================================== */
/* ================================================== */
/* PAGE ここから */
.page.is-development .page__content {
  padding-top: 75px;
}
@media only screen and (min-width: 48.0625em) {
  .page.is-development .page__content {
    padding-top: 140px;
  }
}

.page__header {
  position: relative;
  width: 92%;
  margin-right: 4%;
  margin-left: 4%;
}

@media only screen and (min-width: 66.63859em) {
  .page__header {
    width: 100%;
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
  }
}
.page__heading1 {
  font-family: "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-align: center;
}

@media only screen and (min-width: 48.0625em) {
  .page__heading1 {
    font-size: 3.6rem;
  }
}
.page__heading2 {
  font-family: "Roboto", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  text-align: center;
}

@media only screen and (min-width: 48.0625em) {
  .page__heading2 {
    font-size: 2.8rem;
  }
}
.page__lead-text {
  font-size: 1.4rem;
  font-weight: normal;
}

.main-content {
  padding: 0;
}

/* PAGE ここまで */
/* ================================================== */
/* ================================================== */
/* FOOTER NAVI ここから */
.footer-navi {
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (max-width: 48.0625em) {
  .footer-navi {
    background-image: none !important;
  }
}
@media only screen and (min-width: 48.0625em) {
  .footer-navi {
    padding-top: 45px;
    padding-bottom: 55px;
  }
}
.footer-sns {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #fff;
}

@media only screen and (min-width: 48.0625em) {
  .footer-sns {
    padding-top: 40px;
    padding-bottom: 0;
    border-top: none;
  }
}
.footer-sns__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-sns__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  padding: 15px;
  border-radius: 50px;
  background-color: #fff;
}

.footer-sns__item + .footer-sns__item {
  margin-top: 15px;
}

@media only screen and (min-width: 48.0625em) {
  .footer-sns__item {
    max-width: 180px;
  }
  .footer-sns__item + .footer-sns__item {
    margin-top: 0;
    margin-left: 20px;
  }
}
.footer-sns__item__icon {
  margin-right: 10px;
}

.footer-sns__item__icon .svg {
  fill: #333;
  width: 18px;
  height: 18px;
}

.footer-sns__item__text {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.29;
}
.footer-sns__item__text a::after {
  content: "";
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.footer-sns__item__text a:hover {
  text-decoration: none;
}

/* FOOTER NAVI ここまで */
/* ================================================== */
/* ================================================== */
/* PAGE LOADER ここから */
.page-loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none !important;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.page-loader__inner {
  position: relative;
}

.page-loader__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-loader__logo {
  max-width: 140px;
}

.page-loader__bar {
  position: relative;
  position: relative;
  width: 120px;
  height: 3px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 1.5px;
  background-color: #dee0e0;
}

.page-loader__bar:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-image: linear-gradient(-45deg, #c7c8c8 25%, #dee0e0 25%, #dee0e0 50%, #c7c8c8 50%, #c7c8c8 75%, #dee0e0 75%, #dee0e0);
  background-size: 10px 10px;
  -webkit-animation: loading-border-animation 4s linear 0s infinite;
  animation: loading-border-animation 4s linear 0s infinite;
  content: "";
}

.page-loader__bar span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #d4003b;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* PAGE LOADER ここまで */
/* ================================================== *//*# sourceMappingURL=shared.css.map */