@charset "UTF-8";

.page {
  --header-caution-height: 0px;
  --header-height: 140px;

  &:has(.header_caution a) {
    --header-caution-height: 50px;
    &.is-header-fixed {
      --header-caution-height: 0px;
    }
  }

  &.is-header-fixed {
    --header-height: 70px;
  }
}

/* ================================================== */
/* 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;
}

.child-navi {
  display: none;
  width: 100%;
  background-color: #f4f3f3;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

@media only screen and (min-width: 48.0625em) {
  .child-navi {
    position: fixed;
    top: calc(var(--header-height) + var(--header-caution-height));
    left: 0;
    padding: 40px 0 40px;
  }
  .fixed .child-navi {
    top: 70px;
  }
}

.child-navi__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.child-navi__col {
  width: 100%;
}

.child-navi__col__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.child-navi__col__inner .child-navi__col {
  margin-top: 0;
}

.child-navi__col + .child-navi__col {
  border-top: 1px solid #e8e6e6;
}

@media only screen and (min-width: 48.0625em) {
  .child-navi__col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 50%;
    margin-bottom: 0;
  }
  .child-navi__col + .child-navi__col {
    margin-top: 0;
    margin-left: 20px;
    padding-left: 20px;
    border-top: none;
  }
}

.child-navi__heading {
  font-family: "Roboto", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic,
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, メイリオ,
    sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.child-navi__heading a {
  display: inline-block;
  position: relative;
  padding-right: 30px;
  text-decoration: none;
}

.child-navi__heading a:hover {
  text-decoration: underline;
}

.child-navi__heading a:after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  -webkit-transform: translateX(-25%) rotate(45deg);
  -ms-transform: translateX(-25%) rotate(45deg);
  transform: translateX(-25%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}

@media only screen and (min-width: 48.0625em) {
  .child-navi__heading {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.8rem;
  }
}

.child-navi__title {
  position: relative;
  background-color: #fff;
  color: #d4003b;
  font-family: "Roboto", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic,
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, メイリオ,
    sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.child-navi__title a {
  display: inline-block;
  position: relative;
  padding: 20px 5%;
  text-decoration: none;
}

.child-navi__title a:hover {
  text-decoration: underline;
}

.child-navi__title + .child-navi__title {
  border-top: 1px solid #e8e6e6;
}

.child-navi__title.has-child:before,
.child-navi__title.has-child:after {
  display: block;
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
  width: 14px;
  height: 2px;
  margin: auto;
  background-color: #231815;
  content: "";
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -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);
}

.child-navi__title.has-child:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.child-navi__title.is-active:after {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

@media only screen and (min-width: 48.0625em) {
  .child-navi__title {
    background-color: transparent;
  }
  .child-navi__title a {
    padding: 0;
  }
  .child-navi__title + .child-navi__title {
    margin-top: 10px;
    border-top: none;
  }
  .child-navi__title.has-child:before,
  .child-navi__title.has-child:after {
    display: none;
  }
}

.child-navi__btn {
  background-color: #fff;
  color: #d4003b;
  font-family: "Roboto", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic,
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, メイリオ,
    sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.child-navi__btn a {
  display: block;
  padding: 20px 5%;
}

@media only screen and (min-width: 48.0625em) {
  .child-navi__btn {
    border-radius: 25px;
    font-size: 1.4rem;
    text-align: center;
  }
  .child-navi__btn a {
    padding: 10px 20px;
  }
}

.child-navi__items {
  display: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.2rem;
}

@media only screen and (min-width: 48.0625em) {
  .child-navi__items {
    display: block;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.3rem;
  }
}

.child-navi__item {
  border-top: 1px solid #e8e6e6;
  background-color: #fff;
  font-family: "Roboto", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic,
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, メイリオ,
    sans-serif;
  font-weight: 400;
}

.child-navi__item a {
  padding: 15px 5%;
  text-decoration: none;
}

.child-navi__item a:hover {
  text-decoration: underline;
}

@media only screen and (min-width: 48.0625em) {
  .child-navi__item {
    border-top: none;
    background-color: transparent;
  }
  .child-navi__item + .child-navi__item {
    margin-top: 5px;
  }
  .child-navi__item a {
    padding: 0;
  }
}

/* HEADER NAVI ここまで */
/* ================================================== */
/* ================================================== */
/* PAGE ここから */
.header-wrap {
  position: relative;
}
@media only screen and (768-width: 0.0625em) {
  .header-wrap {
    height: 75px;
  }
}

@media only screen and (min-width: 48.0625em) {
  .is-header-fixed {
    .page__content {
      padding-top: 140px;
    }
  }
}

.page__header {
  max-width: clamp(20px, 90%, 980px);
  margin-right: auto;
  margin-left: auto;
}

.page__heading1 {
  font-family: "Roboto", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  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: 400;
  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;
  border-bottom: 1px solid #e8e6e6;
}

@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;
  }
}

@media only screen and (min-width: 48.0625em) {
  .footer-navi__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer-navi__col + .footer-navi__col {
  border-top: 1px solid #e8e6e6;
}

@media only screen and (min-width: 48.0625em) {
  .footer-navi__col {
    max-width: 20%;
    padding-top: 5px;
    padding-bottom: 15px;
  }
  .footer-navi__col[class*="ci-bdl"] {
    padding-left: 30px;
  }
  .footer-navi__col + .footer-navi__col {
    border-top: none;
  }
}

.footer-navi__item > span {
  display: block;
  position: relative;
  padding: 20px 5%;
  font-size: 1.3rem;
  font-weight: bold;
}

.footer-navi__item > span.js-easy-accordion__trigger:after {
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-width: 6px 4px 0 4px;
  border-style: solid;
  border-color: #d4003b transparent transparent transparent;
  content: "";
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-property: border-color;
  transition-property: border-color;
  -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);
}

.footer-navi__item > span.js-easy-accordion__trigger.is-active:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.footer-navi__item > span a {
  display: inline-block;
}

.footer-navi__item + .footer-navi__item {
  border-top: 1px solid #e8e6e6;
}

@media only screen and (min-width: 48.0625em) {
  .footer-navi__item > span {
    padding: 15px 5%;
    padding: 0;
    color: #d4003b;
    font-size: 1.4rem;
    font-weight: bold;
  }
  .footer-navi__item > span.js-easy-accordion__trigger:after {
    display: none;
  }
  .footer-navi__item + .footer-navi__item {
    margin-top: 10px;
    border-top: none;
  }
}

.footer-child-navi {
  display: none;
}

@media only screen and (min-width: 48.0625em) {
  .footer-child-navi {
    display: block;
    margin-top: 15px;
  }
}

.footer-child-navi__items {
  background-color: #fff;
}

@media only screen and (min-width: 48.0625em) {
  .footer-child-navi__items {
    background-color: transparent;
  }
}

.footer-child-navi__item > span {
  display: block;
  margin-left: 5%;
  font-size: 1.2rem;
}

.footer-child-navi__item a {
  display: block;
  padding: 15px 0 15px 10px;
}

.footer-child-navi__item + .footer-child-navi__item > span {
  border-top: 1px solid #e8e8e8;
}

@media only screen and (min-width: 48.0625em) {
  .footer-child-navi__item > span {
    margin-left: 0;
    font-size: 1.3rem;
  }
  .footer-child-navi__item + .footer-child-navi__item {
    margin-top: 5px;
  }
  .footer-child-navi__item + .footer-child-navi__item > span {
    border-top: none;
  }
  .footer-child-navi__item a {
    padding: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: color;
    transition-property: color;
    -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);
  }
  .footer-child-navi__item a:hover {
    color: #d4003b;
  }
}

.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: #d4003b;
  width: 18px;
  height: 18px;
}

.footer-sns__item__text {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.29;
}

/* 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%);
  -ms-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 ここまで */
/* ================================================== */
