@charset "UTF-8";
@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loop_x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrollAnime {
  0% {
    transform: translateY(-100%);
  }
  40% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes kv_spin {
  0% {
    opacity: 0;
    transform: rotateY(360deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.p-special {
  padding-bottom: 75px;
  padding-top: 43px;
}
@media screen and (max-width: 767px) {
  .p-special {
    padding-top: 35px;
    padding-bottom: 82px;
  }
}
.p-special__ttl {
  margin-bottom: 69px;
}
.p-special__ttl.-ja {
  font-family: YakuHanMP, "Zen Old Mincho", system-ui, "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-size: 83px;
}
@media screen and (max-width: 767px) {
  .p-special__ttl.-ja {
    font-size: 40px;
  }
}
.p-special__ttl.-ja::before {
  top: 55%;
}
@media screen and (max-width: 767px) {
  .p-special__ttl {
    margin-bottom: 44px;
  }
}
.p-special__list {
  display: flex;
  flex-wrap: wrap;
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .p-special__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1), opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-special__list {
    display: block;
    margin: 0 auto;
    width: 91%;
  }
}
.p-special__list-item {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 3%;
}
@media screen and (min-width: 768px) {
  .p-special__list-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-special__list-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6.5%;
  }
}
.p-special__list-item a {
  display: block;
  overflow: hidden;
  position: relative;
}
.p-special__list-item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .p-special__list-item a:hover::after {
    opacity: 1;
  }
  .p-special__list-item a:hover img {
    transform: scale(1.05);
  }
}
.p-special__list-item a img {
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-special_faq {
  position: relative;
  margin-top: -33px;
}
@media screen and (max-width: 767px) {
  .p-special_faq {
    margin-top: 0;
  }
}
.p-special_faq__ttl {
  position: relative;
  margin: 0 auto;
  margin-top: max(-100px, -10%);
  width: 100%;
  max-width: 1000px;
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .p-special_faq__ttl {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 767px) {
  .p-special_faq__ttl {
    margin-top: -12%;
  }
}
.p-special_faq__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 93%;
  margin-bottom: 41px;
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .p-special_faq__nav {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-special_faq__nav {
    margin-bottom: 27px;
    width: 97%;
  }
}
.p-special_faq__nav-item {
  width: 24.2%;
  margin-right: 1.06%;
  margin-bottom: 1.7%;
}
.p-special_faq__nav-item:last-child {
  margin-right: 0;
}
.p-special_faq__nav-item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-special_faq__nav-item {
    margin-bottom: 2.7%;
  }
}
.p-special_faq__nav-inner {
  display: block;
  background-color: #000;
  padding: 5px;
  text-decoration: none;
  border-radius: 100px;
}
@media (hover: hover) {
  .p-special_faq__nav-inner {
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .p-special_faq__nav-inner:hover {
    transform: scale(0.97);
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .p-special_faq__nav-inner {
    padding: 3px;
  }
}
.p-special_faq__nav-text {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  font-family: "Red Rose", system-ui;
  border-radius: 100px;
  border: 1px solid #b20000;
  padding: 10px 5px 13px;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .p-special_faq__nav-text {
    padding: 6px 4px 7px;
    font-size: 15px;
  }
}
.p-special_faq__content {
  margin: 0 auto;
  width: 90%;
  max-width: 750px;
}
@media screen and (max-width: 767px) {
  .p-special_faq__content {
    width: 97%;
  }
}
.p-special_faq__box {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px 11px;
  transform: translateY(40px);
  opacity: 0;
}
.p-special_faq__box.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-special_faq__box.is-active:first-child {
  transition-delay: 0.4s;
}
.p-special_faq__box + .p-special_faq__box {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-special_faq__box + .p-special_faq__box {
    margin-top: 17px;
  }
}
@media screen and (max-width: 767px) {
  .p-special_faq__box {
    padding: 4px 4px;
  }
}
.p-special_faq__box-inner {
  position: relative;
  padding: 7% 5.4%;
}
@media screen and (max-width: 767px) {
  .p-special_faq__box-inner {
    padding: 8% 6%;
  }
}
.p-special_faq__box-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-special_faq__box-frame-item {
  position: absolute;
  width: 12%;
  padding-top: 12%;
  background: url(../img/bg/bg_decor_corner.png) no-repeat 0 0;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-special_faq__box-frame-item {
    width: 14%;
    padding-top: 14%;
  }
}
.p-special_faq__box-frame-item:nth-child(1) {
  top: 0px;
  left: 0px;
}
.p-special_faq__box-frame-item:nth-child(2) {
  top: 0px;
  right: 0px;
  transform: scaleX(-1);
}
.p-special_faq__box-frame-item:nth-child(3) {
  bottom: 0px;
  left: 0px;
  transform: scaleY(-1);
}
.p-special_faq__box-frame-item:nth-child(4) {
  bottom: 0px;
  right: 0px;
  transform: scale(-1);
}
.p-special_faq__box-frame-item.--center {
  width: 10%;
  padding-top: 1%;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/bg/bg_decor_center.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-special_faq__box-frame-item.--center {
    width: 9%;
    padding-top: 1%;
  }
}
.p-special_faq__box-frame-item.--bcenter {
  width: 10%;
  padding-top: 1%;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/bg/bg_decor_center.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-special_faq__box-frame-item.--bcenter {
    width: 20%;
    padding-top: 2%;
  }
}
.p-special_faq__question {
  background-color: #000;
  padding: 5px;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 46px;
}
@media screen and (max-width: 767px) {
  .p-special_faq__question {
    margin-bottom: 19px;
    padding: 2px;
  }
}
.p-special_faq__question-inner {
  border: 1px solid #b20000;
  display: flex;
  align-items: center;
  padding: 8px 41px 9px;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .p-special_faq__question-inner {
    padding: 3px 18px 4px;
  }
}
.p-special_faq__question-label {
  font-family: "Red Rose", system-ui;
  color: #b20000;
  flex-shrink: 0;
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .p-special_faq__question-label {
    font-size: 21px;
  }
}
.p-special_faq__question-ttl {
  flex-grow: 1;
  text-align: center;
  font-size: 23px;
}
@media screen and (max-width: 767px) {
  .p-special_faq__question-ttl {
    font-size: 10px;
  }
}
.p-special_faq__answer-item {
  display: flex;
}
.p-special_faq__answer-item:nth-child(2n) {
  flex-direction: row-reverse;
}
.p-special_faq__answer-item + .p-special_faq__answer-item {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-special_faq__answer-item + .p-special_faq__answer-item {
    margin-top: 6px;
  }
}
.p-special_faq__answer-icon {
  flex-shrink: 0;
  width: 90px;
  text-align: center;
  margin-right: 4%;
}
@media screen and (max-width: 767px) {
  .p-special_faq__answer-icon {
    width: 40px;
  }
}
.p-special_faq__answer-item:nth-child(2n) .p-special_faq__answer-icon {
  margin-right: auto;
  margin-left: 4%;
}
.-short .p-special_faq__answer-item:nth-child(2n) .p-special_faq__answer-icon {
  margin-right: 0;
}
.p-special_faq__answer-icon .p-in_icon {
  border-radius: 50%;
  overflow: hidden;
}
.p-special_faq__answer-icon .p-in_name {
  position: relative;
  z-index: 1;
  background-color: #000;
  border-radius: 100px;
  width: 73px;
  margin: 0 auto;
  margin-top: -6px;
  font-size: 15px;
  padding: 3px 3px;
}
@media screen and (max-width: 767px) {
  .p-special_faq__answer-icon .p-in_name {
    margin-top: -4px;
    padding: 2px 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 8px;
  }
}
.p-special_faq__answer-content {
  flex-grow: 1;
}
.-short .p-special_faq__answer-content {
  flex-grow: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-special_faq__answer-inner {
  padding: 3px;
  border-radius: 10px;
  position: relative;
  width: 95%;
}
@media screen and (max-width: 767px) {
  .p-special_faq__answer-inner {
    padding: 1px;
    border-radius: 5px;
  }
}
.p-special_faq__answer-item:nth-child(2n) .p-special_faq__answer-inner {
  margin-left: auto;
}
.p-special_faq__answer-inner::before {
  content: "";
  position: absolute;
  top: 14px;
  left: -26px;
  width: 30px;
  height: 30px;
  pointer-events: none;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media screen and (max-width: 767px) {
  .p-special_faq__answer-inner::before {
    top: 7px;
    left: -11px;
  }
}
.p-special_faq__answer-item:nth-child(2n) .p-special_faq__answer-inner::before {
  left: auto;
  right: -26px;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-special_faq__answer-item:nth-child(2n) .p-special_faq__answer-inner::before {
    right: -11px;
  }
}
.-heri .p-special_faq__answer-inner::before {
  background-color: #ea9089;
}
.-ian .p-special_faq__answer-inner::before {
  background-color: #c4c5c4;
}
.-jino .p-special_faq__answer-inner::before {
  background-color: #efa080;
}
.-soron .p-special_faq__answer-inner::before {
  background-color: #a0c2cf;
}
.-sion .p-special_faq__answer-inner::before {
  background-color: #fcd58c;
}
.-jaka .p-special_faq__answer-inner::before {
  background-color: #b2d8b8;
}
.-noa .p-special_faq__answer-inner::before {
  background-color: #ccafc9;
}
.-heri .p-special_faq__answer-inner {
  background-color: #ea9089;
}
.-ian .p-special_faq__answer-inner {
  background-color: #c4c5c4;
}
.-jino .p-special_faq__answer-inner {
  background-color: #efa080;
}
.-soron .p-special_faq__answer-inner {
  background-color: #a0c2cf;
}
.-sion .p-special_faq__answer-inner {
  background-color: #fcd58c;
}
.-jaka .p-special_faq__answer-inner {
  background-color: #b2d8b8;
}
.-noa .p-special_faq__answer-inner {
  background-color: #ccafc9;
}
.p-special_faq__answer-main {
  position: relative;
  padding: 33px 24px;
  background-color: #000;
  border-radius: 10px;
}
.-short .p-special_faq__answer-main {
  padding: 33px 33px;
}
@media screen and (max-width: 767px) {
  .-short .p-special_faq__answer-main {
    padding: 14px 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-special_faq__answer-main {
    border-radius: 5px;
    padding: 14px 10px;
  }
}
.p-special_faq__answer-main::before {
  content: "";
  position: absolute;
  top: 13px;
  left: -23px;
  width: 25px;
  height: 25px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background-color: #000;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-special_faq__answer-main::before {
    top: 7px;
    left: -9px;
  }
}
.p-special_faq__answer-item:nth-child(2n) .p-special_faq__answer-main::before {
  left: auto;
  right: -24px;
  -webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
  clip-path: polygon(100% 0, 0 0, 0 100%);
}
@media screen and (max-width: 767px) {
  .p-special_faq__answer-item:nth-child(2n) .p-special_faq__answer-main::before {
    right: -9px;
  }
}
.p-special_faq__answer-main .p-in_text {
  position: relative;
  font-size: 25px;
  line-height: 1.3;
}
.p-special_faq__answer-item:nth-child(2n) .p-special_faq__answer-main .p-in_text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-special_faq__answer-main .p-in_text {
    font-size: 11px;
  }
}