@charset "UTF-8";
.l-wrap {
  display: block;
  position: relative;
  background-color: var(--color-pearl);
}
@media screen and (min-width: 570px) {
  .l-wrap::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: url("/files/94/se/main/img/common/bg_text.svg") no-repeat 0 5%/100% auto;
  }
}
.l-wrap__container {
  width: 100%;
  max-width: 570px;
  min-height: var(--svh);
  display: block;
  position: relative;
  margin: 0 auto;
  background-color: var(--color-bg);
  box-shadow: 0 0 5rem 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
}
.is-load .l-wrap__container {
  opacity: 1;
  transition: 1s opacity var(--ease_out);
}
.l-wrap__loader {
  height: 3rem;
  width: 3rem;
  display: block;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  pointer-events: none;
  z-index: 20;
}
@media screen and (max-width: 960px) {
  .l-wrap__loader {
    height: 2rem;
    width: 2rem;
  }
}
.is-load .l-wrap__loader {
  opacity: 0;
  transition: opacity 0.5s var(--ease_out);
}
.l-wrap__loader::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top: 1px solid var(--color-text);
  animation: rotate 0.7s linear infinite;
  z-index: 20;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .l-wrap__loader::before {
    border-width: 0.15rem;
  }
}
@media screen and (min-width: 961px) {
  .l-wrap__cover {
    width: calc(50% - 285px);
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    visibility: hidden;
    content-visibility: hidden;
    opacity: 0;
  }
}
@media screen and (min-width: 961px) and (min-width: 1201px) {
  .l-wrap__cover {
    display: block;
    visibility: visible;
    content-visibility: visible;
  }
}
@media screen and (min-width: 961px) {
  .l-wrap__cover::before {
    content: "";
    width: 100%;
    padding-top: 90%;
    display: block;
    position: relative;
  }
  .is-load .l-wrap__cover {
    opacity: 1;
    transition: 1s opacity var(--ease_out) 1s, 1s transform var(--ease_out) 1s;
  }
}
@media screen and (max-width: 960px) {
  .l-wrap__cover {
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transform: translate(0, 100%);
  }
  .is-load .l-wrap__cover {
    opacity: 1;
    transform: translate(0, 0);
    transition: 1s opacity var(--ease_out) 1s, 1s transform var(--ease_out) 1s;
  }
}

.l-header {
  width: 100%;
  max-width: 570px;
  display: block;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--color-white);
  z-index: 15;
}
.l-header::before {
  content: "";
  width: 100%;
  height: 0.2rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 0.2rem solid var(--color-black);
}
.l-header__container {
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1rem 2rem;
}
.l-header__brand {
  width: 9.3rem;
  display: block;
  position: relative;
}
.l-header__brand-link {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__brand-link {
    transition: opacity 0.4s var(--ease_out);
  }
  .l-header__brand-link:hover {
    opacity: 0.6;
  }
}
.l-header__link {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  gap: 1rem;
}
.l-header__link-item {
  width: 10rem;
  display: block;
  position: relative;
}
.l-header__menu {
  flex-shrink: 0;
  display: block;
  position: relative;
  margin-left: 1rem;
}

.l-header_btn {
  --btn-text: var(--color-white);
  --btn-bg: var(--color-black);
  width: 100%;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0.2rem 0.5rem;
  color: var(--btn-text);
  background-color: var(--btn-bg);
  border-radius: 20rem;
}
.l-header_btn.--s\:border {
  color: var(--btn-bg);
  background-color: var(--btn-text);
}
@media (hover: hover) and (pointer: fine) {
  .l-header_btn {
    transition: color 0.4s var(--ease_out), background-color 0.4s var(--ease_out), box-shadow 0.4s var(--ease_out);
  }
  .l-header_btn:hover {
    color: var(--color-white);
    background-color: var(--color-main);
    box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  }
}
.l-header_btn.--s\:border::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-black);
  border-radius: 20rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-header_btn.--s\:border::after {
    transition: border-color 0.4s var(--ease_out);
  }
  .l-header_btn:hover::after {
    border-color: var(--color-main);
  }
}
.l-header_btn__text {
  display: block;
  position: relative;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  font-weight: 600;
  text-align: center;
}
.l-header_btn form,
.l-header_btn input {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  z-index: 1;
}

.l-menu {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 50%;
}
@media (hover: hover) and (pointer: fine) {
  .l-menu {
    transition: background-color 0.4s var(--ease_out), box-shadow 0.4s var(--ease_out);
  }
  .l-menu:hover {
    background-color: var(--color-main);
    box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  }
}
.l-menu__content {
  width: 1.6rem;
  height: 1.2rem;
  display: block;
  position: relative;
  box-sizing: content-box;
}
.l-menu__line {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s var(--ease_out);
}
.l-menu__line.--open {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-menu__line-bar {
  width: 100%;
  height: 2px;
  display: block;
  position: relative;
  background: currentColor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.l-menu__line-bar:nth-child(1) {
  --delay1: 0s;
  --delay2: 0.05s;
}
.l-menu__line-bar:nth-child(2) {
  --delay1: 0.05s;
  --delay2: 0.1s;
}
.l-menu__line-bar:nth-child(3) {
  --delay1: 0.1s;
  --delay2: 0.15s;
}
.--open .l-menu__line-bar {
  opacity: 1;
}
.is-menu-open .--open .l-menu__line-bar {
  opacity: 0;
}
.--close .l-menu__line-bar {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
}
.--close .l-menu__line-bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .--close .l-menu__line-bar:nth-child(1) {
    transition: transform 0.3s var(--ease_out);
  }
  .l-menu:hover .--close .l-menu__line-bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(30deg);
  }
}
.--close .l-menu__line-bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
  .--close .l-menu__line-bar:nth-child(2) {
    transition: transform 0.3s var(--ease_out);
  }
  .l-menu:hover .--close .l-menu__line-bar:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-30deg);
  }
}
.is-menu-open .--close .l-menu__line-bar {
  opacity: 1;
}

.l-nav {
  width: 100%;
  max-width: 570px;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--color-white);
  z-index: 10;
  overflow-y: auto;
  overscroll-behavior: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease_out);
}
.is-menu-show .l-nav {
  display: block;
}
.is-menu-open .l-nav {
  pointer-events: auto;
  opacity: 1;
}
.l-nav__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.l-nav__container {
  display: block;
  position: relative;
  padding-top: 10rem;
  background-color: var(--color-nav-base);
}
.l-nav__container::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 1px solid var(--color-black);
}
.l-nav__content {
  display: block;
  position: relative;
  padding: 1.8rem 0 4.6rem;
}
.l-nav__list {
  display: block;
  position: relative;
}
.l-nav__list-item {
  width: 95%;
  max-width: 52.7rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
.l-nav__list-item::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px dashed var(--color-gray);
}
.l-nav__link {
  width: 100%;
  min-height: 7rem;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 1rem 4rem 1rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .l-nav__link {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .l-nav__link:hover {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .l-nav__link:hover {
      text-decoration: underline;
    }
  }
}
.l-nav__link::after {
  content: "";
  width: 1rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url("/files/94/se/main/img/common/icon_arrow.svg") no-repeat center/contain;
}
.l-nav__handover {
  width: 38.6rem;
  display: block;
  position: relative;
  margin: 4rem auto 0;
}

.l-nav_handover {
  display: block;
  position: relative;
  padding: 3.4rem 0;
  background-color: var(--color-white);
  border-radius: 1rem;
}
.l-nav_handover::before {
  content: "";
  width: calc(100% - 1.6rem);
  height: calc(100% - 1.6rem);
  display: block;
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  border: 0.2rem dashed var(--color-main);
  border-radius: 1rem;
  pointer-events: none;
}
.l-nav_handover::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.2rem solid var(--color-black);
  border-radius: 1rem;
  pointer-events: none;
}
.l-nav_handover__text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
}
.l-nav_handover__text strong {
  color: var(--color-main);
  font-weight: 900;
}
.l-nav_handover__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 18rem;
  min-height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0.4rem 2.5rem;
  margin: 2rem auto 0;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: 20rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-nav_handover__btn {
    transition: background-color 0.4s var(--ease_out), box-shadow 0.4s var(--ease_out);
  }
  .l-nav_handover__btn:hover {
    background-color: var(--color-main);
    box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  }
}
.l-nav_handover__btn-text {
  display: block;
  position: relative;
  font-size: 1.4rem;
  letter-spacing: 0;
  text-align: center;
}

.l-main {
  width: 100%;
  min-height: calc(var(--svh) - 10rem);
  display: block;
  position: relative;
  margin: 0 auto;
  padding-top: 10rem;
}

.l-footer {
  display: block;
  position: relative;
  padding: 6.4rem 0 6.4rem;
}
.l-footer__container {
  width: 92.5%;
  display: block;
  position: relative;
  margin: 0 auto;
}
.l-footer__help {
  display: block;
  position: relative;
}
.l-footer__jasrac {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin: 4rem auto 0;
}
.l-footer__jasrac-img {
  width: 7rem;
  display: block;
  position: relative;
  margin-right: 2rem;
}
.l-footer__jasrac-text {
  display: block;
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0;
}
.l-footer__copy {
  display: block;
  position: relative;
  margin-top: 3.7rem;
  font-size: 1.3rem;
  letter-spacing: 0;
  text-align: center;
}
.l-footer__pagetop {
  width: 3rem;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}

.l-footer_help {
  display: block;
  position: relative;
}
.l-footer_help__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 0;
  position: relative;
}
.l-footer_help__list-item {
  display: block;
  position: relative;
}
.l-footer_help__list-item + .l-footer_help__list-item:not(:nth-child(3n+1))::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-left: 1px solid var(--color-line);
}
.l-footer_help__link {
  display: block;
  position: relative;
  padding: 0 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01rem;
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .l-footer_help__link {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .l-footer_help__link:hover {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .l-footer_help__link:hover {
      text-decoration: underline;
    }
  }
}

.c-btn {
  --btn-text: var(--color-white);
  --btn-bg: var(--color-black);
  width: 100%;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0.2rem 0.5rem;
  color: var(--btn-text);
  background-color: var(--btn-bg);
  border-radius: 20rem;
  box-shadow: 0.2rem 0.2rem 0 0 var(--color-gray);
}
.c-btn.--c\:main {
  --btn-text: var(--color-white);
  --btn-bg: var(--color-main);
}
.c-btn.--c\:white {
  --btn-text: var(--color-black);
  --btn-bg: var(--color-white);
}
.c-btn.--s\:border {
  color: var(--btn-bg);
  background-color: var(--btn-text);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn {
    transition: opacity 0.4s var(--ease_out);
  }
  .c-btn:hover {
    opacity: 0.6;
  }
}
.c-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20rem;
  border: 0.2rem solid var(--btn-bg);
}
.c-btn__text {
  display: block;
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.15rem;
  font-weight: 500;
  text-align: center;
}
.c-btn form,
.c-btn input {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 0;
  z-index: 1;
}

.c-category {
  display: block;
  position: relative;
}
.c-category::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid var(--color-gray);
}
.c-category__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  gap: 2%;
}
.c-category__list-item {
  width: 20%;
  display: block;
  position: relative;
}
.c-category__link {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 1.8rem 0 1.6rem;
  font-size: 2rem;
  letter-spacing: 0;
  font-family: "Barlow", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  text-align: center;
  color: var(--color-gray);
}
.is-current .c-category__link {
  color: var(--color-main);
}
@media (hover: hover) and (pointer: fine) {
  .c-category__link:hover {
    color: var(--color-main);
  }
}
.c-category__link::before {
  content: "";
  width: 0;
  height: 0.5rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--color-main);
  transition: width 0.8s var(--ease_out);
}
.is-current .c-category__link::before {
  width: 65% !important;
}
@media (hover: hover) and (pointer: fine) {
  .c-category__link:hover::before {
    width: 30%;
  }
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  display: block;
  position: relative;
  padding: 0 8rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .c-pagination {
    padding: 0 6.5rem;
  }
}
.c-pagination:not(:first-child) {
  margin-top: 4.4rem;
}
@media screen and (max-width: 960px) {
  .c-pagination:not(:first-child) {
    margin-top: 2.4rem;
  }
}
.c-pagination__nav {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.c-pagination__nav.--prev {
  left: 0;
}
.c-pagination__nav.--next {
  right: 0;
}
.c-pagination__nav-link {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 0;
  background-color: var(--color-black);
  border-radius: 50%;
}
@media (hover: hover) and (pointer: fine) {
  .c-pagination__nav-link {
    transition: background-color 0.4s var(--ease_out), box-shadow 0.4s var(--ease_out);
  }
  .c-pagination__nav-link:hover {
    background-color: var(--color-main);
    box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  }
}
.c-pagination__nav-link::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-bottom: 0.2rem solid var(--color-white);
  border-left: 0.2rem solid var(--color-white);
}
.--prev .c-pagination__nav-link::after {
  transform: translate(-45%, -50%) rotate(45deg);
}
.--next .c-pagination__nav-link::after {
  transform: translate(-55%, -50%) rotate(-135deg);
}
.c-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .c-pagination__list {
    gap: 1rem;
  }
}
.c-pagination__list-item {
  flex-shrink: 0;
  display: block;
  position: relative;
}
.c-pagination__link {
  min-width: 2rem;
  height: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Barlow", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0;
}
.c-pagination__link.is-current {
  pointer-events: none;
  color: var(--color-main);
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .c-pagination__link {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .c-pagination__link:hover {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .c-pagination__link:hover {
      text-decoration: underline;
    }
  }
}

.c-back {
  width: 18rem;
  min-height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  color: var(--color-black);
  background-color: var(--color-white);
  border-radius: 20rem;
}
@media (hover: hover) and (pointer: fine) {
  .c-back {
    transition: background-color 0.4s var(--ease_out), color 0.4s var(--ease_out), box-shadow 0.4s var(--ease_out);
  }
  .c-back:hover {
    color: var(--color-white);
    background-color: var(--color-main);
    box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  }
}
.c-back::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-black);
  border-radius: 20rem;
}
@media (hover: hover) and (pointer: fine) {
  .c-back::after {
    transition: opacity 0.4s var(--ease_out);
  }
  .c-back:hover::after {
    opacity: 0;
  }
}
.c-back + .c-back {
  margin-top: 1rem;
}
.c-back__text {
  display: block;
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
}

.c-loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.c-loader .c-loader-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #333 94%, rgba(0, 0, 0, 0)) top/4px 4px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #333);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 4px), #000 0);
  animation: motionLoader 0.5s infinite linear;
}
@keyframes motionLoader {
  100% {
    transform: rotate(1turn);
  }
}

.p-in {
  display: block;
  position: relative;
}
.p-in__container {
  display: block;
  position: relative;
  padding: 6rem 0;
}
.p-in__header {
  width: 92%;
  display: block;
  position: relative;
  margin: 0 auto 3rem;
}
.p-in__title {
  display: block;
  position: relative;
}
.p-in__title-sub {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto 0.4rem;
  padding-left: 4rem;
  font-size: 2.2rem;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}
.p-in__title-sub::before {
  content: "";
  width: 3.2rem;
  height: 3.2rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("/files/94/se/main/img/common/icon_subheading.png") no-repeat center/contain;
}
.p-in__title-sub span {
  display: inline-block;
  position: relative;
}
.p-in__title-sub span::before {
  content: "";
  width: 0;
  height: 0.25rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-black);
  transition: width 1s var(--ease_inout);
}
.is-load .p-in__title-sub span::before {
  width: 100%;
}
.p-in__title-main {
  display: block;
  position: relative;
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
  text-align: center;
}
.p-in__title-badge {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0.4rem 2.2rem;
  margin: 1.6rem auto 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 20rem;
}
.p-in__inner {
  display: block;
  position: relative;
}
.p-in__footer {
  width: 92%;
  display: block;
  position: relative;
  margin: 5rem auto 0;
}

@media screen and (min-width: 961px) {
  .p-store {
    width: 80%;
    max-width: 27.8rem;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 960px) {
  .p-store {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem 0 1.2rem;
    background: var(--color-white);
    border-radius: 1.5rem 1.5rem 0 0;
  }
  .p-store::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 0.3rem solid var(--color-black);
    border-left: 0.3rem solid var(--color-black);
    border-right: 0.3rem solid var(--color-black);
    border-radius: 1.5rem 1.5rem 0 0;
  }
}
.p-store__icon {
  width: 75%;
  max-width: 20rem;
  display: block;
  position: relative;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 960px) {
  .p-store__icon {
    display: none;
  }
}
.p-store__text {
  display: block;
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1rem;
  color: var(--color-main);
}
@media screen and (min-width: 961px) {
  .p-store__text {
    display: none;
  }
}
.p-store__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-store__list {
    width: 28rem;
    gap: 0.5rem;
  }
}
.p-store__list-item {
  flex: 1;
  display: block;
  position: relative;
}
.p-store__list-item:nth-child(2) {
  flex: 1.2416666667;
}
.p-store__link {
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .p-store__link {
    transition: opacity 0.4s var(--ease_out);
  }
  .p-store__link:hover {
    opacity: 0.6;
  }
}

.p-notify_modal {
  width: 100vw;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
}
.p-notify_modal__bg {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-notify_modal__container {
  width: 100%;
  min-height: var(--svh);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 3% 0;
}
.p-notify_modal__content {
  width: 90%;
  max-width: 53.58rem;
  display: block;
  position: relative;
  padding: 6rem 2.8rem 4.6rem;
  background: var(--color-white);
  border-radius: 1rem;
}
.p-notify_modal__content::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.6rem solid var(--color-black);
  border-radius: 1rem;
}
.p-notify_modal.--error .p-notify_modal__content::before {
  border-color: var(--color-danger);
}
.p-notify_modal__close {
  width: 18rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 6.2rem auto 0;
  color: var(--color-black);
  border-radius: 20rem;
}
.p-notify_modal__close[disabled] {
  pointer-events: none;
  opacity: 0.5;
}
.p-notify_modal__close::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-black);
  border-radius: 20rem;
}
@media (hover: hover) and (pointer: fine) {
  .p-notify_modal__close {
    transition: background-color 0.4s var(--ease_out), color 0.4s var(--ease_out), box-shadow 0.4s var(--ease_out);
  }
  .p-notify_modal__close:hover {
    color: var(--color-white);
    background-color: var(--color-black);
    box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.2);
  }
}
.p-notify_modal__close-text {
  display: block;
  position: relative;
  font-weight: 700;
}