@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: 5px 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;
  }
}
/*====================================
 * Header
=====================================*/
header .top__header__image {
  position: relative;
  text-align: center;
  background-color: var(--color--blue);
}
header .top__header .header__btn {
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 0 auto;
  max-width: 500px;
  display: grid;
  gap: 48px 0;
}
@media screen and (min-width: 768px) {
  header .top__header .header__btn {
    grid-template-columns: repeat(auto-fill, 500px);
    gap: 48px 64px;
    justify-content: center;
    max-width: 1144px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
header .top__header .header__btn a {
  position: relative;
  display: block;
  max-width: 500px;
  width: 100%;
  font-size: var(--fz24);
  font-weight: 900;
  color: #FFF;
  text-align: center;
  border-radius: 100vw;
  padding: 8px 40px;
  text-box-trim: trim-start;
}
@media screen and (min-width: 768px) {
  header .top__header .header__btn a {
    font-size: var(--fz32);
    padding: 16px 64px;
  }
  header .top__header .header__btn a:hover {
    opacity: 1;
    top: 2px;
    left: 2px;
  }
  header .top__header .header__btn a:active {
    top: 4px;
    left: 4px;
  }
}
header .top__header .header__btn a::after {
  position: absolute;
  content: "";
  right: 0.5em;
  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) {
  header .top__header .header__btn a::after {
    right: 0.75em;
    margin: auto;
    width: 20px;
    height: 20px;
    border-top: 4px solid #FFF;
    border-right: 4px solid #FFF;
  }
}
header .top__header .header__btn__mypage {
  background-color: var(--color--blue);
  box-shadow: 2px 3px 0 rgba(49, 66, 144, 0.5);
}
@media screen and (min-width: 768px) {
  header .top__header .header__btn__mypage {
    box-shadow: 4px 4px 0 rgba(49, 66, 144, 0.5);
  }
  header .top__header .header__btn__mypage:hover {
    box-shadow: 2px 2px 0 rgba(49, 66, 144, 0.5);
  }
  header .top__header .header__btn__mypage:active {
    box-shadow: none;
  }
}
header .top__header .header__btn__eventlist {
  background-color: var(--color--pink);
  box-shadow: 2px 3px 0 rgba(229, 0, 79, 0.5);
}
@media screen and (min-width: 768px) {
  header .top__header .header__btn__eventlist {
    box-shadow: 4px 4px 0 rgba(229, 0, 79, 0.5);
  }
  header .top__header .header__btn__eventlist:hover {
    box-shadow: 2px 2px 0 rgba(229, 0, 79, 0.5);
  }
  header .top__header .header__btn__eventlist:active {
    box-shadow: none;
  }
}

/*====================================
 * Guide
=====================================*/
.guide__wrap {
  background-color: #FAFAFA;
  border-top: solid 1px #E0E0E0;
  border-bottom: solid 1px #E0E0E0;
}
@media screen and (min-width: 768px) {
  .guide__wrap {
    border-top: solid 2px #E0E0E0;
    border-bottom: solid 2px #E0E0E0;
  }
}
.guide__wrap .guide__container {
  display: grid;
  gap: 32px;
}
.guide__wrap .guide__step .acd__trigger {
  position: relative;
  text-align: center;
  color: #FFF;
  font-weight: 700;
  text-box-trim: trim-start;
  background-color: var(--color--blue);
  padding: 4px 48px;
  border: solid 2px var(--color--black);
  cursor: pointer;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__step .acd__trigger {
    font-size: var(--fz32);
    padding: 8px 80px;
  }
}
.guide__wrap .guide__step .acd__trigger:hover {
  opacity: 0.8;
}
.guide__wrap .guide__step .acd__trigger::before {
  position: absolute;
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 18px;
  border-radius: 100vw;
  background-color: #FFF;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__step .acd__trigger::before {
    width: 25px;
    left: 32px;
  }
}
.guide__wrap .guide__step .acd__trigger::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  top: calc(50% - 2px);
  right: 16px;
  transform: translateY(-50%) rotate(135deg);
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__step .acd__trigger::after {
    width: 20px;
    height: 20px;
    border-top: 4px solid #FFF;
    border-right: 4px solid #FFF;
    top: calc(50% - 4px);
    right: 32px;
  }
}
.guide__wrap .guide__step .acd__trigger.active::after {
  top: calc(50% + 2px);
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__step .acd__trigger.active::after {
    top: calc(50% + 4px);
  }
}
.guide__wrap .guide__step .acd__target {
  display: none;
  background-color: var(--color--lightblue);
  border-right: solid 2px var(--color--black);
  border-bottom: solid 2px var(--color--black);
  border-left: solid 2px var(--color--black);
  padding: 56px 24px 32px 24px;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__step .acd__target {
    padding: 72px 32px 48px 32px;
  }
}
.guide__wrap .guide__step .guide__step__image {
  display: grid;
  gap: 56px 0;
  margin: 0 0 32px 0;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__step .guide__step__image {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 5.45%;
    margin: 0 0 48px 0;
  }
}
.guide__wrap .guide__step .guide__step__image li {
  position: relative;
  background-color: #FFF;
  text-align: center;
  border: solid 2px var(--color--black);
  border-radius: 10px;
  padding: 32px 16px;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__step .guide__step__image li {
    padding: 48px 24px;
  }
}
.guide__wrap .guide__step .guide__step__image li .guide__step__icon {
  position: absolute;
  width: 50px;
  top: -25px;
  left: -2px;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__step .guide__step__image li .guide__step__icon {
    width: 65px;
    top: -25px;
    left: -10px;
  }
}
.guide__wrap .guide__step .guide__step__image li figure img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__step .guide__step__image li figure img {
    width: 87%;
  }
}
.guide__wrap .guide__step .guide__step__image li figure figcaption {
  font-weight: 700;
  margin-top: 32px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__step .guide__step__image li figure figcaption {
    font-size: var(--fz20);
    margin-top: 48px;
  }
}
.guide__wrap .guide__step .guide__step__image li figure figcaption .note {
  font-size: var(--fz12);
  font-weight: 500;
  margin-top: 8px;
}
.guide__wrap .guide__flow__container {
  display: grid;
  gap: 80px;
}
.guide__wrap .guide__flow__container > li {
  position: relative;
  font-size: var(--fz14);
  background-color: #FFF;
  border: solid 2px #C3CEFE;
  border-radius: 10px;
  padding: 32px 16px;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__flow__container > li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    font-size: var(--fz16);
    padding: 24px 20px;
  }
}
.guide__wrap .guide__flow__container > li::after {
  position: absolute;
  content: "";
  display: block;
  background-color: var(--color--blue);
  height: 14px;
  width: 36px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  bottom: -48px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.guide__wrap .guide__flow__container > li:last-child::after {
  display: none;
}
.guide__wrap .guide__flow__icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  width: 80px;
  height: 44px;
  background-color: var(--color--blue);
  text-align: center;
  color: #FFF;
  margin: 0 auto 24px auto;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__flow__icon {
    margin: 0 auto;
  }
}
.guide__wrap .guide__flow__icon::after {
  position: absolute;
  content: "";
  display: block;
  border: solid 1px var(--color--black);
  top: -2px;
  left: -2px;
  width: 100%;
  height: 100%;
}
.guide__wrap .guide__flow__icon span {
  width: 27px;
  padding-bottom: 2px;
}
.guide__wrap .guide__flow__title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__flow__title {
    text-align: left;
  }
}
.guide__wrap .guide__flow__caution {
  margin-top: 24px;
}
.guide__wrap .guide__flow__caution li {
  font-size: var(--fz12);
}
@media screen and (min-width: 768px) {
  .guide__wrap .guide__flow__caution li {
    font-size: var(--fz14);
  }
}
.guide__wrap .guide__flow__caution li::before {
  content: "※";
}

/*====================================
 * Support
=====================================*/
#support .section__title__subimage {
  display: block;
  max-width: 250px;
  margin: 0 auto 8px auto;
}
@media screen and (min-width: 768px) {
  #support .section__title__subimage {
    max-width: 500px;
  }
}

.support__cat {
  background-color: #E9EDFF;
  background-image: url(../images/bg_support_top.webp), url(../images/bg_support_bottom.webp);
  background-position: top right, bottom left;
  background-repeat: no-repeat, no-repeat;
  background-size: 100%, 100%;
  border-radius: 20px;
  padding: 32px 24px;
  margin: 0 0 32px 0;
  box-shadow: 2px 4px 4px rgba(13, 13, 13, 0.15);
}
@media screen and (min-width: 768px) {
  .support__cat {
    padding: 48px 32px;
    background-size: 68%, 68%;
    margin: 0 0 40px 0;
  }
}
.support__cat:last-child {
  margin-bottom: 0;
}
.support__cat__title {
  margin: 0 0 16px 0;
}
@media screen and (min-width: 768px) {
  .support__cat__title {
    max-width: 690px;
  }
}
.support__cat__lead {
  font-size: var(--fz14);
}
@media screen and (min-width: 768px) {
  .support__cat__lead {
    font-size: var(--fz18);
  }
}

.support__detail {
  margin: 61px auto 0 auto;
}
@media screen and (min-width: 768px) {
  .support__detail {
    margin: 45px auto 0 auto;
  }
}
.support__detail__title {
  position: relative;
  text-align: center;
  color: var(--color--blue);
  background-color: #FFF;
  border-radius: 5px;
  border: solid 1px #C3CEFE;
  padding: 35px 8px 16px 8px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .support__detail__title {
    text-align: left;
    padding: 4px 0 4px 123px;
    font-size: var(--fz24);
  }
}
.support__detail__title .small {
  font-size: var(--fz14);
}
@media screen and (min-width: 768px) {
  .support__detail__title .small {
    font-size: var(--fz16);
  }
}
.support__detail__icon {
  position: absolute;
  width: 55px;
  aspect-ratio: 1/1;
  top: -27.5px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .support__detail__icon {
    width: 75px;
    top: 50%;
    left: 24px;
    transform: translate(0%, -50%);
  }
}
.support__detail__lead {
  margin: 16px 0 0 0;
  padding: 0 16px;
  font-size: var(--fz14);
}
@media screen and (min-width: 768px) {
  .support__detail__lead {
    margin: 32px 0 0 0;
    padding: 0 24px;
    font-size: var(--fz16);
  }
}

/*====================================
 * Contact
=====================================*/
.contact__wrap {
  position: relative;
  color: #FFF;
}
.contact__wrap__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.contact__wrap__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.contact__wrap .section__title::after {
  background-color: var(--color--pink);
}
@media screen and (min-width: 768px) {
  .contact__wrap .btn__wrap {
    max-width: 300px;
  }
  .contact__wrap .btn__wrap a {
    padding: 0 48px;
  }
  .contact__wrap .btn__wrap a ::after {
    right: 0.75em;
    margin: auto;
    width: 20px;
    height: 20px;
    border-top: 4px solid #FFF;
    border-right: 4px solid #FFF;
  }
}/*# sourceMappingURL=top.css.map */