@charset "UTF-8";
/*====================================
 * Base
=====================================*/
:root {
  --color--blue: #3E55B9;
  --color--lightblue: #F9FAFF;
  --color--black: #101010;
  --color--pink: #E5004F;
  --color--red: #BA0707;
  --fz10: calc(10 / 16 * 1rem);
  --fz11: calc(11 / 16 * 1rem);
  --fz12: calc(12 / 16 * 1rem);
  --fz14: calc(14 / 16 * 1rem);
  --fz16: 1rem;
  --fz18: calc(18 / 16 * 1rem);
  --fz20: calc(20 / 16 * 1rem);
  --fz24: calc(24 / 16 * 1rem);
  --fz32: calc(32 / 16 * 1rem);
  --fz48: calc(48 / 16 * 1rem);
}

body {
  background-color: #FFF;
  color: var(--colorText);
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: var(--fz16);
  font-weight: 500;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.8;
}

main :where(a:link),
main :where(a:visited),
main :where(a:active) {
  color: var(--color--blue);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
}

/*====================================
 * Utility
=====================================*/
.inner__wrap {
  padding: 48px 24px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .inner__wrap {
    max-width: 1180px;
    padding: 64px 40px;
  }
}

.free__content {
  text-align: center;
}
.free__content__text {
  display: inline-block;
  text-align: left;
  font-size: var(--fz14);
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .free__content__text {
    font-size: var(--fz16);
  }
}

.btn__wrap {
  max-width: 500px;
  margin: 40px auto 0 auto;
}
@media screen and (min-width: 768px) {
  .btn__wrap {
    margin: 64px auto 0 auto;
  }
}
.btn__wrap a {
  position: relative;
  display: block;
  width: 100%;
  font-size: var(--fz24);
  font-weight: 700;
  background-color: var(--color--pink);
  color: #FFF;
  text-align: center;
  text-decoration: none;
  border-radius: 100vw;
  padding: 8px 40px;
  box-shadow: 2px 3px 0 rgba(229, 0, 79, 0.5);
  text-box-trim: trim-start;
}
@media screen and (min-width: 768px) {
  .btn__wrap a {
    font-size: var(--fz32);
    padding: 16px 64px;
  }
  .btn__wrap a:hover {
    opacity: 1;
    top: 2px;
    left: 2px;
    box-shadow: 1px 2px 0 rgba(229, 0, 79, 0.5);
  }
  .btn__wrap a:active {
    top: 4px;
    left: 4px;
    box-shadow: none;
  }
}
.btn__wrap a::after {
  position: absolute;
  content: "";
  right: 12px;
  margin: auto;
  width: 14px;
  height: 14px;
  top: 50%;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .btn__wrap a::after {
    right: 16px;
    margin: auto;
    width: 16px;
    height: 16px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
  }
}

.list__style li {
  margin-bottom: 4px;
}
.list__style li:last-child {
  margin-bottom: 0;
}
.list__style.list__style__aster li {
  list-style-type: none;
  padding-left: 1em;
  text-indent: -1em;
}
.list__style.list__style__aster li::before {
  content: "※";
}
.list__style.list__style__disc {
  margin-left: 1.5em;
}
.list__style.list__style__disc li {
  list-style-type: disc;
}

/*====================================
 * Common Header
=====================================*/
.common__header {
  border-bottom: solid 1px #CCC;
}
.common__header__inner {
  padding: 0 24px;
  margin: 16px auto;
}
@media screen and (min-width: 768px) {
  .common__header__inner {
    max-width: 1180px;
    padding: 0 40px;
  }
}
.common__header__logo {
  max-width: 110px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .common__header__logo {
    max-width: 156px;
    margin: 0 0;
    text-align: left;
  }
}
.common__header__logo img {
  width: 100%;
}

/*====================================
 * Breadcrumb
=====================================*/
.breadcrumb .inner__wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.breadcrumb li {
  display: inline-block;
  font-size: var(--fz12);
}
.breadcrumb li::after {
  display: inline-block;
  content: ">";
  margin-right: 0.5em;
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb li a {
  color: var(--color--blue);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  margin-right: 0.5em;
}

/*====================================
 * Footer
=====================================*/
footer .footer__wrap {
  background-color: var(--color--blue);
  color: #FFF;
  font-size: var(--fz12);
}
footer .footer__wrap .inner__wrap {
  padding: 48px 24px 32px 24px;
}
@media screen and (min-width: 768px) {
  footer .footer__wrap .inner__wrap {
    padding: 64px 40px 32px 40px;
  }
}
footer .footer__container__upper {
  display: grid;
  gap: 56px 0;
}
@media screen and (min-width: 768px) {
  footer .footer__container__upper {
    display: flex;
    justify-content: space-between;
    gap: 10%;
  }
}
footer .footer__logo {
  max-width: 170px;
}
@media screen and (min-width: 768px) {
  footer .footer__logo {
    max-width: 210px;
  }
}
footer .footer__link {
  display: grid;
  gap: 12px 0;
}
@media screen and (min-width: 768px) {
  footer .footer__link {
    display: flex;
    gap: 0 10%;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
footer .footer__link__container {
  border-bottom: solid 1px #758BE5;
}
@media screen and (min-width: 768px) {
  footer .footer__link__container {
    border-bottom: none;
  }
}
footer .footer__link__container .acd__trigger {
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  footer .footer__link__container .acd__trigger {
    pointer-events: none;
  }
}
footer .footer__link__container .acd__trigger::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1.5px solid #FFF;
  border-right: 1.5px solid #FFF;
  top: calc(50% - 2px);
  right: 0;
  transform: translateY(-50%) rotate(135deg);
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  footer .footer__link__container .acd__trigger::after {
    display: none;
  }
}
footer .footer__link__container .acd__trigger.active::after {
  top: calc(50% + 2px);
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  footer .footer__link__container .acd__trigger.active::after {
    top: calc(50% + 4px);
  }
}
footer .footer__link__container .acd__target {
  display: none;
}
@media screen and (min-width: 768px) {
  footer .footer__link__container .acd__target {
    display: block;
  }
}
footer .footer__link__heading {
  margin: 0 0 16px 0;
  font-weight: 700;
}
footer .footer__link__heading.acd__trigger {
  margin: 0 0 12px 0;
}
@media screen and (min-width: 768px) {
  footer .footer__link__heading.acd__trigger {
    margin: 0 0 16px 0;
  }
}
footer .footer__link__list {
  padding-bottom: 4px;
}
footer .footer__link__list li {
  margin-bottom: 16px;
}
footer .footer__container__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 10%;
  font-size: var(--fz10);
  font-weight: 400;
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  footer .footer__container__bottom {
    margin-top: 40px;
  }
}

/*====================================
 * Section Title
=====================================*/
.section__title {
  position: relative;
  padding-bottom: 32px;
  margin-bottom: 32px;
  line-height: normal;
}
.section__title::after {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 2px;
  background-color: var(--color--blue);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section__title__heading {
  text-align: center;
  font-size: var(--fz24);
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .section__title__heading {
    font-size: var(--fz48);
  }
}
.section__title__heading span.section__title__en {
  display: block;
  font-size: var(--fz16);
  font-weight: 500;
  color: #C7C7C7;
}
@media screen and (min-width: 768px) {
  .section__title__heading span.section__title__en {
    font-size: var(--fz32);
  }
}
.section__title__caution {
  margin-top: 8px;
  font-size: var(--fz14);
}
@media screen and (min-width: 768px) {
  .section__title__caution {
    margin-top: 24px;
    font-size: var(--fz16);
    text-align: center;
  }
}

/*====================================
Adjust
=====================================*/
.tL {
  text-align: left !important;
}

.tR {
  text-align: right !important;
}

.tC {
  text-align: center !important;
}

.fL {
  float: left !important;
}

.fR {
  float: right !important;
}

.mbSS, .mbXL {
  margin-bottom: 4px !important;
}

.mbS {
  margin-bottom: 8px !important;
}

.mbM {
  margin-bottom: 16px !important;
}

.mbL {
  margin-bottom: 24px !important;
}

.mbLL, .mb2L, .mbXL {
  margin-bottom: 32px !important;
}

.mb3L, .mbXXL {
  margin-bottom: 48px !important;
}

.mb4L, .mbXXXL {
  margin-bottom: 56px !important;
}

.mb5L, .mbXXXXL {
  margin-bottom: 64px !important;
}

.mtSS, .mtXS {
  margin-top: 4px !important;
}

.mtS {
  margin-top: 8px !important;
}

.mtM {
  margin-top: 16px !important;
}

.mtL {
  margin-top: 24px !important;
}

.mtLL, .mt2L, .mtXL {
  margin-top: 32px !important;
}

.mt3L, .mtXXL {
  margin-top: 48px !important;
}

.mt4L, .mtXXXL {
  margin-top: 56px !important;
}

.mt5L, .mtXXXXL {
  margin-top: 64px !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt00 {
  margin-top: 0 !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.fz10 {
  font-size: 0.625rem !important;
}

.fz11 {
  font-size: 0.6875rem !important;
}

.fz12 {
  font-size: 0.75rem !important;
}

.fz13 {
  font-size: 0.8125rem !important;
}

.fz14 {
  font-size: 0.875rem !important;
}

.fz15 {
  font-size: 0.875rem !important;
}

.fz16 {
  font-size: 1rem !important;
}

.fz18 {
  font-size: 1.125rem !important;
}

.fz20 {
  font-size: 1.25rem !important;
}

.fz22 {
  font-size: 1.375rem !important;
}

.fz24 {
  font-size: 1.5rem !important;
}

.fz28 {
  font-size: 1.75rem !important;
}

.fz32 {
  font-size: 2rem !important;
}

.fz36 {
  font-size: 2.25rem !important;
}

.fz40 {
  font-size: 2.5rem !important;
}

.fz07em {
  font-size: 0.75em !important;
}

.fz08em {
  font-size: 0.875em !important;
}

.fz12em {
  font-size: 1.25em !important;
}

.fz15em {
  font-size: 1.5em !important;
}

.fz17em {
  font-size: 1.75em !important;
}

.fz20em {
  font-size: 2em !important;
}

.fw500 {
  font-weight: 500 !important;
}

.fw700 {
  font-weight: 700 !important;
}

.fw900 {
  font-weight: 900 !important;
}

.caution {
  color: var(--color--red) !important;
}

.underline {
  text-decoration: underline !important;
  text-decoration-color: rgba(255, 255, 255, 0.5) !important;
  text-underline-offset: 0.25em;
}

.inlblock {
  display: inline-block !important;
}

.indent1em {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 374px) {
  .sp-min {
    display: inline;
  }
  .sp-min__none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: inline;
  }
  .sp__none {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099px) {
  .tb {
    display: inline;
  }
  .tb__none {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .pc {
    display: inline;
  }
  .pc__none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .tb__pc {
    display: inline;
  }
  .tb-pc__none {
    display: none;
  }
}
/*====================================
 * Terms
=====================================*/
.terms__section__heading {
  margin-top: 48px;
  font-size: var(--fz20);
  font-weight: 700;
}

.terms__container {
  font-size: var(--fz14);
  font-weight: 400;
}

.terms__article__heading {
  font-size: var(--fz16);
  font-weight: 700;
  margin: 24px 0 8px 0;
}
.terms__article ol {
  list-style-type: decimal;
  margin-left: 1.5em;
}
.terms__article ol li {
  margin-bottom: 4px;
}/*# sourceMappingURL=terms.css.map */