@font-face {
  font-family: "SF Pro";
  src: url("../fonts/SF-Pro.ttf");
}
@font-face {
  font-family: "SF Pro Display";
  font-weight: 700;
  src: url("../fonts/SF-Pro-Display-Heavy.otf");
}
@font-face {
  font-family: "SF Pro Display";
  font-weight: 400;
  src: url("../fonts/SF-Pro-Display-Regular.otf");
}
@font-face {
  font-family: "Hiragino Kaku Gothic Std";
  src: url("../fonts/Hiragino-Kaku-Gothic-Std.otf");
}
.h2 {
  color: #000;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 80px;
  text-align: center;
}

.h3 {
  color: #000;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 27px;
}

@media screen and (max-width: 780px) {
  .h2 {
    font-size: 6.154vw;
    margin-bottom: 10.256vw;
  }
  .h3 {
    font-size: 5.128vw;
    margin-bottom: 5.128vw;
  }
  .h4 {
    font-size: 5.128vw;
    margin-bottom: 5.128vw;
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "SF Pro";
  font-size: 20px;
  min-width: 1400px;
  -webkit-text-size-adjust: none;
}

.container {
  margin: 0 auto;
  width: 1260px;
}

.section {
  padding: 180px 0 140px;
}

.is-blue {
  color: #00AFAA;
}

.is-light-orange {
  color: #FFE6B6;
}

.is-light-orange-300 {
  color: #FFE0A3;
}

.is-dark-orange {
  color: #FF4D00;
}

.is-orange {
  color: #EE8030 !important;
}

.is-orange-500 {
  color: #F57620;
}

.is-orange-600 {
  color: #E6673A;
}

.is-light-gray {
  color: #555 !important;
}

.is-red {
  color: #FF0000;
}

.is-pink {
  color: #FF006B;
}

.is-bold {
  font-weight: 600;
}

.pc {
  display: block;
}

.sp {
  display: none !important;
}

b {
  font-weight: 700;
}

@media screen and (max-width: 780px) {
  body {
    font-size: 4.103vw;
    min-width: 0;
  }
  .container,
  .sp-container {
    margin: 0 5.128vw;
    width: auto;
  }
  .section {
    padding: 20.513vw 0 15.385vw;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}

.d-inline-block {
  display: inline-block;
}

.jc-space-between {
  justify-content: space-between;
}

.jc-center {
  justify-content: center;
}

.fd-row-reverse {
  flex-direction: row-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-start {
  align-items: start;
}

.p-relative {
  position: relative;
}

.w-20 {
  width: 20%;
}

.w-40 {
  width: 40%;
}

.w-50 {
  width: 50%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-80 {
  width: 80%;
}

.gap-x-100 {
  gap: 0 100px;
}

@media screen and (max-width: 780px) {
  .sp-text-center {
    text-align: center;
  }
  .sp-block {
    display: block;
  }
  .sp-flex-wrap {
    flex-wrap: wrap;
  }
  .sp-jc-center {
    justify-content: center;
  }
  .w-20,
  .w-40,
  .w-50,
  .w-60,
  .w-65,
  .w-80,
  .w-100 {
    width: 100%;
  }
  .gap-x-100 {
    gap: 0;
  }
}
.card {
  background-color: #fff;
  border-radius: 30px;
  cursor: pointer;
  margin-bottom: 40px;
  position: relative;
  width: 610px;
}
.card:nth-child(odd) {
  margin-right: 20px;
}
.card:nth-child(even) {
  margin-left: 20px;
}
.card:nth-last-child(2), .card:last-child {
  margin-bottom: 0;
}
.card__img {
  overflow: hidden;
  position: relative;
}
.card img {
  height: 100%;
  width: 100%;
}
.card__content {
  font-size: 24px;
  padding: 25px 30px 30px;
}
.card__content p {
  line-height: 1.5;
}
.card__hover {
  background: linear-gradient(#171717, #461F1F, #BA5649, #FFB077);
  border-radius: 30px;
  color: #fff;
  height: calc(100% - 60px);
  opacity: 0;
  padding: 30px;
  position: absolute;
  top: 0;
}
.card__hover h4 {
  font-weight: 600;
}
.card__hover p {
  line-height: 1.8;
}
.card.has-hover.is-hovered > .card__main {
  opacity: 0;
  transition: all 0.5s ease;
}
.card.has-hover.is-hovered > .card__hover {
  opacity: 1;
  transition: all 0.5s ease;
}

@media screen and (max-width: 780px) {
  .card {
    border-radius: 4.359vw;
    margin: 0 0 5.128vw !important;
    width: 100%;
  }
  .card__content {
    font-size: 5.128vw;
    padding: 4.103vw 5.128vw;
  }
  .card__hover {
    border-radius: 4.359vw;
    height: calc(100% - 8.205vw);
    opacity: 0;
    padding: 4.103vw 5.128vw;
  }
  .card__hover p {
    font-size: 3.077vw;
  }
}
.floating-menu {
  background-color: #fff;
  padding-top: 20px;
  position: sticky;
  top: 120px;
}
.floating-menu__list {
  border-bottom: 1px solid #EBEDED;
  height: 530px;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
.floating-menu__list li a {
  cursor: pointer;
}
.floating-menu__list li a.is-active, .floating-menu__list li a:hover {
  background-color: #FEF9F5;
  border-left-color: #EE8030;
  color: #EE8030;
}
.floating-menu__list .no-link {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
}
.floating-menu__list .no-link,
.floating-menu__list a {
  border-left: 3px solid #fff;
  color: #555;
  display: block;
  padding: 6px 0;
  padding-left: 17px;
  transition: all 0.3s ease;
}
.floating-menu__top {
  color: #555;
  display: block;
  padding: 15px 0;
  padding-left: 20px;
}
.floating-menu__top::before {
  background: url("../img/howtobiz/ico-arrow-up.svg") no-repeat center/contain;
  content: "";
  display: inline-block;
  height: 16px;
  margin-right: 16px;
  vertical-align: middle;
  width: 16px;
}

@media screen and (max-width: 780px) {
  .floating-menu {
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    overflow-y: scroll;
    padding: 5.128vw 0 7.692vw;
    transition: all 0.3s ease;
    top: 0;
    z-index: 9999;
  }
  .is-open .floating-menu {
    display: block;
    transition: all 0.5s ease;
  }
  .floating-menu__list {
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    height: calc(100% + 22.128vw);
    height: 100%;
    margin-bottom: 5.128vw;
    padding-bottom: 2.564vw;
  }
  .floating-menu__list li.no-link {
    font-size: 3.59vw;
    padding-bottom: 1.538vw;
    padding-top: 1.538vw;
    width: auto;
  }
  .floating-menu__list a {
    border-left-width: 0.769vw;
    font-size: 4.103vw;
    padding: 1.538vw 5.128vw 1.538vw 4.359vw;
  }
  .floating-menu__button {
    background-color: #fff;
    bottom: 10.256vw;
    color: #222;
    position: fixed;
    right: 0;
    z-index: 99;
  }
  .floating-menu__button button {
    background: transparent;
    border: 0;
    border-bottom: 0.256vw solid #EBEDED;
    font-size: 4.103vw;
    padding: 4.487vw 3.59vw;
  }
  .floating-menu__overlay {
    background-color: #000;
    display: none;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.3s ease;
    width: 100%;
    z-index: 99;
  }
  .is-open .floating-menu__overlay {
    display: block;
    opacity: 0.4;
    transition: all 0.5s ease;
  }
  .floating-menu__top {
    color: #222;
    font-size: 4.103vw;
    padding: 2.564vw 3.846vw 3.846vw;
    text-align: center;
  }
  .floating-menu__top::before {
    display: block;
    height: 4.103vw;
    margin: 0 auto;
    width: 4.103vw;
  }
}
.howto {
  padding-left: 35px;
  width: 80%;
}
.howto__wrapper {
  border-bottom: 1px solid #D3D3D3;
  padding: 80px 0;
}
.howto__wrapper:last-of-type, .howto__wrapper.no-border {
  border: 0;
  padding-bottom: 0;
}
.howto__title {
  color: #222;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
.howto__subtitle {
  color: #222;
  font-size: 24px;
  font-weight: 700;
}
.howto__text {
  color: #222;
  font-size: 20px;
  margin-bottom: 27px !important;
}
.howto p.is-small {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px !important;
}
.howto p.is-smaller {
  color: #555;
  font-size: 12px;
}
.howto p.is-smaller.has-bg {
  background-color: #F6F6F9;
  border-radius: 8px;
  padding: 12px 20px;
}
.howto p.mb-10 {
  margin-bottom: 10px !important;
}
.howto p:last-child {
  margin-bottom: 0 !important;
}
.howto__content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 27px;
}
.howto__content img {
  width: 215px;
}
.howto__step {
  align-items: start;
  display: flex;
  margin-bottom: 55px;
  margin-right: 35px;
  width: 48%;
}
.howto__step:nth-child(even), .howto__step.mr-0 {
  margin-right: 0;
}
.howto__step.mr-35 {
  margin-right: 35px;
}
.howto__step:last-child, .howto__step:nth-last-child(2) {
  margin-bottom: 0;
}
.howto__step.is-full {
  align-items: normal;
  margin-right: 0;
  width: 100%;
}
.howto__step.has-bg {
  background-color: #F6F6F9;
  border-radius: 20px;
  padding: 20px 30px 40px 40px;
}
.howto__step .has-img-line {
  margin-right: 10px;
  padding-right: 40px;
  position: relative;
}
.howto__step .has-img-line img {
  width: 390px;
}
.howto__step .has-img-line::after {
  border-right: 1px solid #D3D3D3;
  content: "";
  color: #D3D3D3;
  height: 390px;
  position: absolute;
  right: 0;
  top: 20px;
  width: 1px;
}
.howto__step__text {
  margin-left: 26px;
  padding-top: 20px;
}
.howto__step__text.has-bg {
  background-color: #F6F6F9;
  border-radius: 16px;
  padding: 30px;
  width: 100%;
}
.howto__step__text.ml-0 {
  margin-left: 0;
}
.howto__step__text .howto__text {
  margin-bottom: 3px !important;
}
.howto__step__list {
  list-style: decimal;
  margin-left: 25px;
}
.howto__step a {
  color: #555;
}
.howto__banner {
  background-color: #E6F7F7;
  border: 2px solid #B3E7E6;
  border-radius: 16px;
  display: block;
  margin-top: 40px;
  padding: 30px 0 7px;
  position: relative;
  text-align: center;
}
.howto__banner__title {
  background-color: #fff;
  border-radius: 17px;
  color: #00AFAA;
  display: inline-block;
  font-family: "SF Pro Display";
  font-size: 51px;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 3px 20px 10px;
  position: relative;
}
.howto__banner__title::after {
  background: url("../assets/icons/ico-chat-arrow.svg") no-repeat center;
  bottom: -10px;
  content: "";
  height: 41px;
  position: absolute;
  right: -10px;
  width: 59px;
}
.howto__banner__text {
  color: #3B4D4C;
  font-family: "SF Pro Display";
  font-size: 26px;
  margin-bottom: 0 !important;
}
.howto__banner__text::before {
  background: url("../assets/icons/ico-book.svg") no-repeat center;
  content: "";
  display: inline-block;
  height: 51px;
  margin-bottom: 8px;
  margin-right: 6px;
  vertical-align: middle;
  width: 51px;
}
.howto__banner__img-1 {
  left: 88px;
  position: absolute;
  top: 19px;
}
.howto__banner__img-2 {
  bottom: 32px;
  position: absolute;
  right: 120px;
}
.howto__download {
  background-color: #F6F6F9;
  border-radius: 16px;
  padding: 40px 60px;
}
.howto__download__text {
  margin-left: 20px;
}
.howto__download p {
  font-size: 20px;
  margin-bottom: 0 !important;
}
.howto__download p.is-small {
  color: #555;
  font-size: 14px;
}
.howto__download__link {
  color: #222;
  font-size: 16px !important;
}
.howto__download .w-20 {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}
.howto__download__dl {
  display: block;
  height: 54px;
  width: 172px;
}
.howto__download__dl:first-child {
  margin-bottom: 10px;
}
.howto__download__dl img {
  height: 54px;
  width: 172px;
}
.howto__faq__title {
  background-color: #fff;
  border-radius: 50%;
  color: #EE8030;
  display: inline-block;
  font-size: 48px;
  font-weight: bold;
  padding: 34px 110px 25px;
  position: relative;
}
.howto__faq__title::after {
  background: url("../img/howtobiz/ico-chat-arrow.svg") no-repeat center/contain;
  bottom: -10px;
  content: "";
  height: 76px;
  position: absolute;
  width: 62px;
  left: 45px;
}
.howto__faq__title-wrapper {
  background: url("../img/howtobiz/faq-bg.png") no-repeat center/cover;
  border-radius: 16px;
  overflow: hidden;
  padding: 27px 0 36px;
  position: relative;
  text-align: center;
}
.howto__faq .howto__title {
  padding-top: 80px;
}
.howto__faq dl {
  margin-bottom: 30px;
}
.howto__faq dl dt::before,
.howto__faq dl dd::before {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 30px;
  justify-content: center;
  margin-right: 17px;
  padding: 0 10px;
  width: 10px;
}
.howto__faq dl dt {
  color: #555;
  display: flex;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.howto__faq dl dt::before {
  background-color: #F19959;
  content: "Q";
}
.howto__faq dl dd {
  color: #555;
  display: flex;
  font-size: 20px;
}
.howto__faq dl dd::before {
  background-color: #8A9494;
  content: "A";
}
.howto__faq dl dd .has-underline {
  text-decoration: underline;
}
.howto__faq dl dd p {
  margin-bottom: 0;
}

@media screen and (max-width: 780px) {
  .howto {
    padding-left: 0;
    width: 100%;
  }
  .howto__wrapper {
    border-bottom-width: 0.256vw;
    padding: 15.385vw 0;
  }
  .howto__wrapper:last-of-type, .howto__wrapper.no-border {
    border: 0;
  }
  .howto__wrapper.no-border {
    padding-bottom: 0;
  }
  .howto__title {
    font-size: 6.154vw;
    margin-bottom: 4.487vw;
  }
  .howto__subtitle {
    font-size: 5.128vw;
    margin-top: 10.256vw;
  }
  .howto__subtitle.mt-20 {
    margin-top: 5.128vw;
  }
  .howto__text {
    font-size: 4.615vw;
    line-height: 1.7 !important;
    margin-bottom: 7.051vw !important;
  }
  .howto p.is-small {
    font-size: 3.59vw;
    margin-bottom: 5.385vw !important;
  }
  .howto p.is-smaller {
    font-size: 2.564vw;
    line-height: 1.6;
  }
  .howto p.is-smaller.has-bg {
    border-radius: 2.051vw;
    padding: 3.077vw 5.128vw;
  }
  .howto p.is-smaller-sp {
    color: #555;
    font-size: 3.077vw;
  }
  .howto p:last-of-type {
    margin-bottom: 0 !important;
  }
  .howto__content {
    margin-top: 7.051vw;
  }
  .howto__content img {
    height: 93.59vw;
    width: 44.359vw;
  }
  .howto__step {
    margin-bottom: 7.051vw;
    margin-right: 0;
    width: 100%;
  }
  .howto__step:nth-last-child(2) {
    margin-bottom: 7.051vw;
  }
  .howto__step:last-of-type {
    margin-bottom: 0;
  }
  .howto__step.mr-35 {
    margin-right: 0;
  }
  .howto__step.has-bg {
    border-radius: 3.077vw;
    padding: 4.103vw 3.077vw;
  }
  .howto__step .has-img-line {
    margin-bottom: 3.077vw;
    margin-right: 0;
    padding-right: 0;
  }
  .howto__step .has-img-line img {
    width: 100%;
  }
  .howto__step .has-img-line::after {
    display: none;
  }
  .howto__step__text {
    margin-left: 3.846vw;
    padding-top: 1.282vw;
  }
  .howto__step__text.has-bg {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
  }
  .howto__step__text .howto__text {
    margin-bottom: 1.538vw !important;
  }
  .howto .has-bg-sp {
    background-color: #F6F6F9;
    border-radius: 3.077vw;
    padding: 3.846vw;
  }
  .howto .has-bg-sp.mb-30 {
    margin-bottom: 7.692vw;
  }
  .howto .has-bg-sp a {
    color: #555;
  }
  .howto .gap-x-100-sp {
    display: flex !important;
    gap: 0 12.821vw;
  }
  .howto .gap-x-100-sp p {
    margin-bottom: 0 !important;
  }
  .howto .mt-20 {
    margin-top: 5.128vw;
  }
  .howto .mb-10 {
    margin-bottom: 2.564vw;
  }
  .howto .mb-30 {
    margin-bottom: 7.692vw;
  }
  .howto .ml-0 {
    margin-left: 0;
  }
  .howto .pt-0 {
    padding-top: 0;
  }
  .howto__banner {
    border-width: 0.256vw;
    border-radius: 2.051vw;
    margin-top: 7.051vw;
    padding: 2.308vw 0 7px;
  }
  .howto__banner__title {
    border-radius: 2.051vw;
    font-size: 6.154vw;
    margin-bottom: 0.641vw;
    padding: 1.667vw 1.923vw 1.282vw;
  }
  .howto__banner__title::after {
    background-size: cover;
    bottom: -1.282vw;
    height: 4.872vw;
    right: -1.282vw;
    width: 7.179vw;
  }
  .howto__banner__text {
    font-size: 3.077vw;
  }
  .howto__banner__text::before {
    background-size: cover;
    height: 6.154vw;
    margin-bottom: 1.282vw;
    margin-right: 1.026vw;
    width: 6.154vw;
  }
  .howto__banner__img-1 {
    left: 2.051vw;
    top: 1.538vw;
    width: 11.538vw;
  }
  .howto__banner__img-2 {
    bottom: 2.564vw;
    right: 3.846vw;
    width: 8.718vw;
  }
  .howto__download {
    border-radius: 3.077vw;
    margin-top: 5.128vw;
    padding: 3.846vw;
  }
  .howto__download .is-logo {
    height: 23.077vw;
    width: 23.077vw;
  }
  .howto__download__text {
    margin: 2.564vw 0 7.692vw 2.564vw;
  }
  .howto__download p {
    font-size: 4.103vw;
  }
  .howto__download p.is-small {
    font-size: 3.59vw;
  }
  .howto__download__link {
    font-size: 4.103vw !important;
    text-align: center;
  }
  .howto__download .w-20 {
    display: block;
  }
  .howto__download__dl {
    display: inline-block;
    height: 12.308vw;
    margin-top: 5.128vw;
    width: 39.487vw;
  }
  .howto__download__dl:first-of-type {
    margin-bottom: 0;
    margin-right: 1.077vw;
  }
  .howto__download__dl img {
    height: 12.308vw;
    width: 39.487vw;
  }
  .howto__faq__title {
    font-size: 5.897vw;
    padding: 3.333vw 10.256vw 2.564vw;
  }
  .howto__faq__title::after {
    bottom: -1.282vw;
    height: 8.462vw;
    width: 6.923vw;
    left: 5.769vw;
  }
  .howto__faq__title-wrapper {
    background-image: url("../img/howtobiz/sp/faq-bg.png");
    border-radius: 1.026vw;
    padding: 4.103vw 0 4.615vw;
  }
  .howto__faq .howto__title {
    padding-top: 7.692vw;
  }
  .howto__faq dl {
    margin-bottom: 5.128vw;
  }
  .howto__faq dl dt::before,
  .howto__faq dl dd::before {
    height: 5.897vw;
    margin-right: 2.051vw;
    padding: 0 1.795vw;
    width: 2.307vw;
  }
  .howto__faq dl dt {
    font-size: 4.103vw;
    margin-bottom: 20px;
  }
  .howto__faq dl dd {
    font-size: 4.103vw;
  }
}
.notice {
  background-color: #FDF2EA;
  display: none;
  padding: 16px 0 19px;
  position: relative;
  text-align: center;
  transition: all 0.5s ease;
}
.notice.is-shown {
  display: block;
}
.notice__close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}
.notice p {
  font-size: 16px;
}
.notice p.is-small {
  font-size: 14px;
  margin-top: 15px;
  white-space: nowrap;
}
.notice p strong {
  font-size: 16px;
  font-weight: bold;
}
.notice p a {
  color: #2000D8;
  text-decoration: underline;
}

@media screen and (max-width: 780px) {
  .notice {
    padding: 6.154vw 0;
    text-align: left;
  }
  .notice .container {
    margin: 0 3.8vw;
  }
  .notice__close {
    height: 7.692vw;
    width: 7.692vw;
  }
  .notice__close img {
    height: 100%;
    width: 100%;
  }
  .notice p {
    font-size: 3.59vw;
  }
  .notice p.is-small {
    font-size: 3.077vw;
    margin-top: 2.564vw;
    white-space: normal;
  }
  .notice p strong {
    font-size: 3.59vw;
  }
}
.plan {
  background-color: #FEF9F5;
  border-radius: 30px;
}
.plan-container {
  gap: 0 35px;
  margin-bottom: 70px;
}
.plan-free {
  background-color: #F9FAFA;
  width: 320px;
}
.plan-2 {
  width: 440px;
}
.plan-3 {
  width: 430px;
}
.plan__header {
  background-color: #FDF2EA;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  color: #4B4B4B;
  font-family: "Hiragino Kaku Gothic Std";
  font-size: 32px;
  font-weight: 600;
  opacity: 0.8;
  padding: 26px 10px 13px;
  position: relative;
  text-align: center;
}
.plan__header--free {
  background-color: #EBEDED;
}
.plan__header--plus {
  font-size: 36px;
  opacity: 1;
  padding: 41px 60px;
  text-align: left;
}
.plan__header--plus .is-orange {
  font-size: 44px;
}
.plan__header__promo {
  background: url("../img/home/plan-promo-bg.svg") no-repeat center/contain;
  color: #fff;
  font-family: "SF Pro Display";
  font-size: 24px;
  font-weight: 700;
  padding: 21px 35px;
  position: absolute;
  right: 0;
  top: -20px;
}
.plan__header__promo .is-big {
  font-size: 40px;
}
.plan__content {
  padding: 20px 38px 43px;
}
.plan__content--free {
  padding: 50px 35px;
}
.plan__content p {
  color: #F57620;
  font-weight: 800;
  text-align: center;
}
.plan__content p .is-sm {
  font-size: 20px;
}
.plan__content p .is-big {
  font-size: 49px;
  margin: 0 7px;
}
.plan__content p.is-med {
  font-size: 24px;
  margin-bottom: 12px;
  opacity: 0.7;
}
.plan__content p .has-highlight {
  color: #C25836;
  font-family: "SF Pro Display";
  font-size: 24px;
  font-weight: 400;
  padding-left: 25px;
  padding-right: 11px;
  position: relative;
  z-index: 1;
}
.plan__content p .has-highlight::after {
  background-color: #F9EEEB;
  bottom: 0;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: -1;
}
.plan__content p .has-highlight-2 {
  padding: 0 10px;
}
.plan__content--plus {
  padding: 50px 60px;
}
.plan__content--plus .d-flex {
  gap: 0 60px;
  margin-bottom: 72px;
}
.plan__content--plus p {
  font-family: "SF Pro Display";
  font-size: 24px;
  font-weight: 700;
  padding-left: 34px;
  position: relative;
  text-align: left;
  text-indent: -34px;
}
.plan__content--plus p::before {
  background: url("../img/home/plan-ico-check-orange.svg") no-repeat center/contain;
  content: "";
  height: 24px;
  display: inline-block;
  margin-right: 10px;
  width: 24px;
}
.plan__list {
  margin-left: 16px;
}
.plan__list li {
  color: #768282;
  list-style-type: disc;
  margin-bottom: 30px;
}
.plan__list li:last-child {
  margin-bottom: 0;
}
.plan__btn {
  background-color: #EE8030;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  padding: 25px 127px;
}
.plan__btn:hover {
  opacity: 0.7;
}
.plan-modal {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: none;
  max-width: 992px;
  padding: 50px;
}
.plan-modal__text {
  color: #222;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}
.plan-modal__button > a {
  height: 135px;
  width: 50%;
}
.plan-modal__button > a:first-child {
  margin-right: 35px;
}
.plan-modal__button > a img {
  height: 100%;
  width: auto;
}
.plan-modal.modal a.close-modal {
  background-image: url("../img/home/ico-close.svg");
  height: 20px;
  right: 24px;
  top: 22px;
  width: 20px;
}

@media screen and (max-width: 780px) {
  .plan {
    border-radius: 5.128vw;
  }
  .plan-container {
    gap: 5.128vw 0;
    margin-bottom: 5.128vw;
  }
  .plan-free, .plan-2, .plan-3 {
    width: 100%;
  }
  .plan__header {
    border-top-right-radius: 5.128vw;
    border-top-left-radius: 5.128vw;
    font-size: 5.128vw;
    padding: 4.103vw 5.128vw 3.077vw;
  }
  .plan__header--plus {
    font-size: 5.128vw;
    padding: 6.154vw 7.692vw;
  }
  .plan__header--plus .is-orange {
    font-size: 7.692vw;
  }
  .plan__header__promo {
    font-size: 3.333vw;
    padding: 1.282vw 0.769vw 2.051vw 2.308vw;
    top: -2.564vw;
  }
  .plan__header__promo .is-big {
    font-size: 6.154vw;
  }
  .plan__content {
    padding: 4.359vw 8.974vw 8.974vw;
  }
  .plan__content--free {
    padding: 7.692vw 10.256vw 15.385vw;
  }
  .plan__content p .is-sm {
    font-size: 4.103vw;
  }
  .plan__content p .is-big {
    font-size: 10.256vw;
    margin-left: 1.026vw;
    margin-right: 1.795vw;
  }
  .plan__content p.is-med {
    font-size: 4.103vw;
    margin: 1.026vw 0 6.667vw;
  }
  .plan__content p .has-highlight {
    font-size: 5.128vw;
    padding-left: 7.692vw;
    padding-right: 5.128vw;
  }
  .plan__content p .has-highlight::after {
    bottom: -1.026vw;
    height: 5.641vw;
  }
  .plan__content p .has-highlight-2 {
    padding: 0 3.59vw;
  }
  .plan__content--plus {
    padding: 8.205vw 5.128vw;
  }
  .plan__content--plus .d-flex {
    gap: 7.692vw 0;
    margin-bottom: 9.231vw;
    margin-left: 2.564vw;
  }
  .plan__content--plus p {
    font-size: 4.615vw;
    padding-left: 7.692vw;
    text-indent: -7.692vw;
  }
  .plan__content--plus p::before {
    height: 5.128vw;
    margin-bottom: 1.026vw;
    margin-right: 2.564vw;
    vertical-align: middle;
    width: 5.128vw;
  }
  .plan__list {
    margin-left: 16px;
  }
  .plan__list li {
    color: #768282;
    list-style-type: disc;
    margin-bottom: 30px;
  }
  .plan__list li:last-child {
    margin-bottom: 0;
  }
  .plan__btn {
    border-radius: 3.077vw;
    cursor: default;
    font-size: 4.359vw;
    padding: 4.872vw 8.205vw;
  }
  .plan__btn:hover {
    opacity: 1;
  }
  .plan-modal {
    display: none;
  }
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.header__wrapper {
  align-items: start;
  display: flex;
  justify-content: space-between;
}
.header__logo {
  align-items: center;
  display: flex;
  margin-top: 38px;
}
.header__logo span {
  color: #fff;
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-left: 16px;
}
.header .logo-dark {
  display: none;
}
.header-white .header__logo a, .is-nav .header .header__logo a {
  width: 48px;
}
.header-white .header__logo span, .is-nav .header .header__logo span {
  color: #000;
  font-size: 19px;
}
.header-white, .is-nav .header {
  background-color: #fff;
  border-bottom: 1px solid #EBEDED;
  transition: all 0.3s;
}
.header-white .header__wrapper, .is-nav .header .header__wrapper {
  align-items: center;
}
.header-white .header__logo, .is-nav .header .header__logo {
  margin-top: 0;
}
.header-white .header__logo img, .is-nav .header .header__logo img {
  width: 100%;
}
.header-white .header__logo .logo-dark, .is-nav .header .header__logo .logo-dark {
  display: block;
}
.header-white .header__logo .logo-white, .is-nav .header .header__logo .logo-white {
  display: none;
}

@media screen and (max-width: 780px) {
  .header {
    padding: 2.308vw 0;
  }
  .header__wrapper {
    align-items: start;
    display: flex;
    justify-content: space-between;
  }
  .header__logo {
    margin-top: 5.128vw;
    width: 50vw;
  }
  .header__logo a {
    display: block;
  }
  .header__logo img {
    width: 10.256vw;
  }
  .header__logo span {
    font-size: 4.103vw;
    margin-left: 2.051vw;
  }
  .header-white .header__logo, .is-nav .header .header__logo {
    margin-top: 0;
    width: auto;
  }
  .header-white .header__logo a, .is-nav .header .header__logo a {
    width: 8.205vw;
  }
  .header-white .header__logo span, .is-nav .header .header__logo span {
    font-size: 3.333vw;
    margin-left: 2.564vw;
  }
}
.l-nav__list {
  align-items: center;
  display: flex;
  height: 100%;
}
.l-nav__item {
  font-size: 16px;
  position: relative;
}
.l-nav__item:last-child {
  padding-right: 0;
}
.l-nav__item > a {
  color: #222;
  cursor: pointer;
  display: block;
  padding: 28px 17px;
}
.l-nav__item > a:hover {
  color: #EE8030;
}
.l-nav__item.is-active > a {
  color: #EE8030;
}
.l-nav__child {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.0784313725);
  display: none;
  padding: 30px;
  position: absolute;
  right: 0;
  top: 60px;
}
.l-nav__item > a.is-hovered ~ .l-nav__child {
  display: block;
}

.l-nav__child li {
  margin-bottom: 10px;
}
.l-nav__child li:last-child {
  margin-bottom: 0;
}
.l-nav__child li.is-app {
  margin-bottom: 24px;
}
.l-nav__child li.is-app > a {
  align-items: center;
  color: #555;
  display: flex;
  font-size: 14px;
}
.l-nav__child li.is-app > a p {
  margin-left: 14px;
}
.l-nav__child__img {
  height: 48px;
}
.l-nav-check {
  display: none;
}
.l-nav-menu {
  display: none;
}

@media screen and (max-width: 780px) {
  .l-nav {
    background: #fff;
    bottom: 0;
    height: 100vh;
    left: 100%;
    margin-top: 0;
    position: absolute;
    top: 13.077vw;
    width: 100%;
    z-index: 999;
  }
  .l-nav__list {
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    margin: 0 auto;
    overflow: auto;
    padding: 12.821vw 0;
    position: fixed;
    right: 0;
    top: 12.821vw;
    width: auto;
  }
  .l-nav__item {
    font-size: 4.103vw;
    margin-bottom: 19.231vw;
    padding: 0 5.128vw;
    text-align: center;
  }
  .l-nav__item:last-child {
    padding-right: 5.128vw;
  }
  .l-nav__item a {
    padding: 0;
  }
  .l-nav__child {
    border-radius: 3.077vw;
    box-shadow: 0 1.026vw 5.128vw rgba(0, 0, 0, 0.0784313725);
    padding: 7.692vw;
    position: relative;
    right: 0;
    top: 10.256vw;
  }
  .l-nav__child li {
    margin-bottom: 2.564vw;
  }
  .l-nav__child li.is-sp-half {
    display: inline-block;
    width: 48%;
  }
  .l-nav__child li:last-child {
    margin-bottom: 0;
  }
  .l-nav__child li.is-app {
    margin-bottom: 6.154vw;
  }
  .l-nav__child li.is-app > a {
    font-size: 3.59vw;
    justify-content: center;
  }
  .l-nav__child li.is-app > a p {
    margin-left: 3.59vw;
  }
  .l-nav__child__img {
    height: auto;
    width: 100%;
  }
  .l-nav-menu {
    align-items: center;
    display: flex;
    height: 7.692vw;
    justify-content: center;
    width: 7.692vw;
  }
  .l-nav-menu .bar {
    background-color: #fff;
    display: block;
    height: 0.385vw;
    margin: 1.795vw auto;
    transition: all 0.5s ease;
    width: 5.128vw;
  }
  .l-nav-menu .bar::before, .l-nav-menu .bar::after {
    background-color: #fff;
    content: "";
    height: 0.385vw;
    position: absolute;
    transition: all 0.5s ease;
    width: 5.128vw;
  }
  .l-nav-menu .bar::before {
    transform: translateY(-1.795vw);
  }
  .l-nav-menu .bar::after {
    transform: translateY(1.795vw);
  }
  .header-white .l-nav-menu .bar {
    background-color: #222;
  }
  .header-white .l-nav-menu .bar::before, .header-white .l-nav-menu .bar::after {
    background-color: #222;
  }
  .l-nav-check:checked ~ .l-nav-menu {
    position: relative;
    z-index: 99999;
  }
  .l-nav-check:checked ~ .l-nav-menu .bar {
    background: #222;
    transform: translateX(12.821vw);
  }
  .l-nav-check:checked ~ .l-nav-menu .bar::before {
    background: #222;
    transform: rotate(45deg) translate(-8.974vw, 8.974vw);
  }
  .l-nav-check:checked ~ .l-nav-menu .bar::after {
    background: #222;
    transform: rotate(-45deg) translate(-8.974vw, -8.974vw);
  }
  .l-nav-check:not(:checked) ~ .l-nav {
    display: none;
  }
  .l-nav-check:checked ~ .l-nav {
    left: 0;
  }
}
.footer {
  background: linear-gradient(#FB9D55, #E76B2F);
  color: #fff;
  font-family: "SF Pro Display";
  font-size: 16px;
  padding: 80px 0;
}
.footer__nav {
  display: flex;
  justify-content: center;
}
.footer__nav li::before {
  content: "|";
  margin: 0 19px;
}
.footer__nav li:first-child::before {
  display: none;
}
.footer__nav li a {
  color: #fff;
  letter-spacing: 1px;
}
.footer__copyright {
  opacity: 0.8;
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 780px) {
  .footer {
    font-size: 3.59vw;
    padding: 10.256vw 0 10.256vw;
  }
  .footer__nav {
    flex-wrap: wrap;
  }
  .footer__nav li {
    margin-bottom: 5.128vw;
  }
  .footer__nav li:first-child, .footer__nav li:last-child {
    text-align: center;
    width: 100%;
  }
  .footer__nav li::before {
    margin: 0 1.564vw;
  }
  .footer__nav li.no-border::before {
    display: none;
  }
  .footer__nav li a {
    letter-spacing: 0.256vw;
  }
  .footer__copyright {
    font-size: 4.103vw;
    letter-spacing: 0.256vw;
    line-height: 1.6;
    margin-top: 4.103vw;
  }
}
.page {
  background-color: #F9FAFD;
  font-size: 16px;
  padding: 210px 0 60px;
}
.page-container {
  margin: 0 auto;
  width: 1060px;
}
.page-banner {
  background: url("../img/howto/howto-banner.png") no-repeat center/cover;
  padding: 80px 0 30px;
}
.page-banner__title {
  color: #555;
  font-family: "SF Pro Display";
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 33px;
}
.page-banner__title.is-blue {
  color: #00AFAA;
}
.page-banner__subtitle {
  color: #555;
  font-family: "SF Pro Display";
  font-size: 20px;
}
.page-banner__subtitle.is-blue {
  color: #00AFAA;
}
.page p {
  line-height: 1.9;
  margin-bottom: 37px;
}
.page p.mb-2 {
  margin-bottom: 2px;
}
.page p.mb-0 {
  margin-bottom: 0 !important;
}
.page p.mb-20 {
  margin-bottom: 20px !important;
}
.page__wrapper {
  margin-bottom: 55px;
}
.page__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 70px;
  text-align: center;
}
.page__subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 40px;
}
.page__list-number {
  list-style: decimal;
  margin-left: 24px;
}
.page__list-number li {
  line-height: 1.9;
  margin-bottom: 2px;
}
.page__list-dot {
  list-style-type: disc;
}
.page__list-letter {
  list-style: lower-alpha;
  margin-left: 25px;
}
.page a {
  overflow-wrap: break-word;
}
.page .is-indented {
  display: block;
  margin-left: 15px;
}
.page__section-1 {
  margin-bottom: 150px;
}
.page__link-section {
  display: block;
  height: 150px;
  margin-top: -150px;
  visibility: hidden;
}

@media screen and (max-width: 780px) {
  .page {
    font-size: 3.59vw;
    padding: 28.205vw 0 12.436vw;
  }
  .page .container, .page-container {
    margin: 0 5.128vw;
    width: auto;
  }
  .page-banner {
    background-image: url("../img/howto/sp/howto-banner.png");
    padding: 12.821vw 0 43.077vw;
  }
  .page-banner__title {
    font-size: 7vw;
    margin-bottom: 5.385vw;
    white-space: nowrap;
  }
  .page-banner__subtitle {
    font-size: 3.59vw;
  }
  .page p {
    line-height: 2;
    margin-bottom: 7.179vw;
  }
  .page p.mb-2 {
    margin-bottom: 0.256vw;
  }
  .page p.mb-20 {
    margin-bottom: 3.077vw !important;
  }
  .page__wrapper {
    margin-bottom: 7.692vw;
  }
  .page__title {
    font-size: 8.205vw;
    margin-bottom: 7.949vw;
  }
  .page__subtitle {
    font-size: 5.128vw;
    line-height: 2;
    margin-bottom: 5.128vw;
  }
  .page__list-number {
    margin-left: 4.487vw;
  }
  .page__list-number li {
    line-height: 2;
    margin-bottom: 0.256vw;
  }
  .page__list-letter {
    margin-left: 5.128vw;
  }
  .page .is-indented {
    margin-left: 2.564vw;
  }
  .page__section-1 {
    margin-bottom: 30.769vw;
  }
  .page__link-section {
    height: 15.385vw;
    margin-top: -15.385vw;
  }
}
.p-home .header {
  transition: all ease-out 0.5s;
}
.p-home .header.is-notice-shown {
  top: 140px;
}
.p-home .header.header-white, .is-nav .p-home .header {
  top: 0;
}
.p-home .blocker {
  background-color: rgba(63, 75, 91, 0.6509803922);
}
.p-home .banner {
  color: #fff;
  overflow: hidden;
  padding: 190px 0 60px;
  position: relative;
}
.p-home .banner::before {
  background: url("../img/home/banner-bg-1.png") no-repeat center right/100% 100%;
  content: "";
  height: 100%;
  left: -200px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
.p-home .banner::after {
  background: url("../img/home/banner-bg-2.png") no-repeat top right/cover;
  border-top-left-radius: 150px;
  bottom: 0;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 90px;
  width: 45%;
  z-index: -3;
}
.p-home .banner__obj {
  left: -800px;
  position: absolute;
  top: 0;
  width: 1260px;
  z-index: -1;
}
.p-home .banner .w-40 {
  bottom: 0;
  position: absolute;
  right: 0;
}
.p-home .banner__title {
  margin-bottom: 20px;
  width: 582px;
}
.p-home .banner__title img {
  width: 100%;
}
.p-home .banner__download {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 30px;
  max-width: 400px;
  padding: 16px 20px 18px;
}
.p-home .banner__download__text {
  color: #222;
  font-size: 20px;
  margin-bottom: 13px;
  text-align: center;
}
.p-home .banner__download__button > a {
  height: 54px;
  width: 50%;
}
.p-home .banner__download__button > a:first-child {
  margin-right: 12px;
}
.p-home .banner__download__button > a img {
  height: 100%;
  width: auto;
}
.p-home .banner__download__btn {
  background-color: #000;
  border-radius: 10px;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 55px;
  position: relative;
  text-align: center;
}
.p-home .banner__download__btn::after {
  background: url("../img/common/ico-arrow-btn.svg") no-repeat center/contain;
  content: "";
  display: inline-block;
  height: 24px;
  margin-bottom: 3px;
  vertical-align: middle;
  width: 24px;
}
.p-home .banner__download__btn:hover {
  background-color: #222;
}
.p-home .banner__alc-logo img {
  width: 109px;
}
.p-home .banner__img-1 {
  height: 100%;
  margin-left: -85px;
  position: relative;
  vertical-align: bottom;
  width: 564px;
  z-index: 2;
}
.p-home .banner__img-2 {
  bottom: 0;
  left: -220px;
  position: absolute;
  width: 255px;
  z-index: 2;
}
.p-home .banner__img-3 {
  bottom: 0;
  left: -20px;
  position: absolute;
  width: 195px;
  z-index: -1;
}
.p-home .section-1 {
  background: url("../img/home/sec1-bg.png") no-repeat center/cover;
  padding: 60px 0;
}
.p-home .section-1 .h2 {
  color: #EE8030;
  margin-bottom: 57px;
}
.p-home .section-1 .has-ico::before {
  background: url("../img/home/ico-bulb.svg") no-repeat center/cover;
  content: "";
  display: inline-block;
  height: 64px;
  margin-top: -10px;
  vertical-align: middle;
  width: 40px;
}
.p-home .section-1__img-1 {
  margin-bottom: 58px;
}
.p-home .section-1__img-2 {
  margin-bottom: 57px;
}
.p-home .section-1__img-2 img {
  width: 340px;
}
.p-home .section-2 {
  background: linear-gradient(#171717, #461F1F 34%, #BA5649 67%, #FFB077 130%);
  color: #fff;
  position: relative;
  padding: 30px 0 105px;
}
.p-home .section-2::after {
  background: url("../img/home/sec2-arrow.svg") no-repeat center bottom;
  bottom: -79px;
  content: "";
  height: 80px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 225px;
}
.p-home .section-2 .container {
  width: 1000px;
}
.p-home .section-2 img {
  margin-bottom: 22px;
}
.p-home .section-2 p {
  font-size: 32px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.p-home .section-2 p:last-of-type {
  margin-bottom: 0;
}
.p-home .section-3 .d-flex {
  margin-top: 87px;
}
.p-home .section-3__img {
  margin-right: 52px;
  width: 480px;
}
.p-home .section-3__img img {
  width: 100%;
}
.p-home .section-3__text {
  width: 730px;
}
.p-home .section-3 p {
  color: #3B4D4C;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 35px;
}
.p-home .section-3 p:last-of-type {
  margin-bottom: 0;
}
.p-home .section-4 {
  background-color: #F9FAFA;
}
.p-home .section-4 .h2-2 {
  margin-top: 180px;
}
.p-home .section-4__img {
  position: absolute;
}
.p-home .section-4__img-2 {
  bottom: 13px;
  height: 240px;
  right: -29px;
  transform: rotate(0deg) scaleX(-1);
  width: 260px;
}
.p-home .section-4__img-3 {
  bottom: 90px;
  height: 210px;
  right: 57px;
  width: 210px;
}
.p-home .section-4__img-4 {
  bottom: 19px;
  height: 225px;
  right: 1px;
  width: 263px;
}
.p-home .section-4__content {
  background: url("../img/home/sec4-bg.png") no-repeat center/cover;
  border-radius: 30px;
  margin-bottom: 40px;
}
.p-home .section-4__text {
  padding: 90px 50px 90px 60px;
  width: 350px;
}
.p-home .section-4__text h3 {
  background: linear-gradient(to right, #E45B5B, #E7711B 26%, #FFAA6C);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  -webkit-text-fill-color: transparent;
}
.p-home .section-4__text p {
  line-height: 1.7;
  margin-bottom: 75px;
}
.p-home .section-4__text p:last-of-type {
  margin-bottom: 0;
}
.p-home .section-4__video {
  width: 800px;
}
.p-home .section-4__video iframe {
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  height: 100%;
  width: 100%;
}
.p-home .section-4__cards .card {
  margin-bottom: 0;
}
.p-home .section-4__cards .card__content p {
  color: #222;
  font-size: 24px;
  line-height: 1.6;
}
.p-home .section-5 {
  background: url("../img/home/sec5-bg.png") no-repeat center/cover;
  padding-bottom: 120px;
}
.p-home .section-5 .h2 {
  margin-bottom: 45px;
}
.p-home .section-5 p {
  font-size: 20px;
  line-height: 1.8;
}
.p-home .section-5 p b {
  font-weight: 700;
}
.p-home .section-5__img {
  margin: 40px 0 35px;
}
.p-home .section-5__img img {
  width: 600px;
}
.p-home .section-6 {
  background: url("../img/home/sec6-bg.png") no-repeat center/cover;
}
.p-home .section-6 .h2 {
  margin-bottom: 75px;
}
.p-home .section-6__img {
  text-align: center;
}
.p-home .section-6__img img {
  width: 100%;
}
.p-home .section-7 {
  background: url("../img/home/sec7-bg.png") no-repeat center/cover;
  overflow: hidden;
}
.p-home .section-7 .h2 {
  margin-bottom: 366px;
}
.p-home .section-7__contents {
  position: relative;
}
.p-home .section-7__round {
  position: relative;
}
.p-home .section-7__round::before {
  background: url("../img/home/sec7-round-bg.svg") no-repeat center/contain;
  bottom: 0;
  content: "";
  height: 1000px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -370px;
  width: 1000px;
}
.p-home .section-7__round__text {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  height: 400px;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 400px;
  z-index: 1;
}
.p-home .section-7__round h3 {
  color: #4B4B4B;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-home .section-7__round p {
  color: #4B4B4B;
  font-size: 20px;
}
.p-home .section-7__box {
  background: linear-gradient(#FDF2EA, #FFFFFF);
  border: 1px solid rgba(238, 128, 48, 0.3);
  border-radius: 8px;
  box-shadow: 0 12px 60px 0 rgba(0, 0, 0, 0.0588235294);
  padding: 20px 30px;
  position: absolute;
  width: 450px;
  z-index: 2;
}
.p-home .section-7__box--1 {
  top: -288px;
}
.p-home .section-7__box--2 {
  right: 0;
  top: -288px;
}
.p-home .section-7__box--3 {
  top: -8px;
}
.p-home .section-7__box--4 {
  right: 0;
  top: -8px;
}
.p-home .section-7__box.is-small {
  width: 300px;
}
.p-home .section-7__box h3 {
  color: #EE8030;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}
.p-home .section-7__box p {
  color: #3B4D4C;
  font-size: 18px;
}
.p-home .section-8 {
  padding-bottom: 160px;
}
.p-home .section-9 {
  background: url("../img/home/sec9-bg.png") no-repeat center/cover;
  overflow: hidden;
  padding: 190px 0 50px;
}
.p-home .section-9__content {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
}
.p-home .section-9__logo {
  margin-left: 400px;
}
.p-home .section-9__img {
  bottom: -90px;
  position: absolute;
  left: 0;
  width: 296px;
  z-index: -1;
}
.p-home .section-9__img img {
  display: block;
  width: 296px;
}
.p-home .section-9__download {
  background-color: #fff;
  border-radius: 12px;
  display: inline-block;
  margin-left: 400px;
  margin-top: 80px;
  max-width: 400px;
  padding: 20px 18px 23px;
}
.p-home .section-9__download__text {
  color: #222;
  font-size: 20px;
  margin-bottom: 13px;
  text-align: center;
}
.p-home .section-9__download__button > a {
  height: 54px;
  width: 50%;
}
.p-home .section-9__download__button > a:first-child {
  margin-right: 10px;
}
.p-home .section-9__download__button > a img {
  height: 100%;
  width: auto;
}
.p-home .section-10 {
  background: url("../img/home/sec10-bg.png") no-repeat center/cover;
  padding: 55px 0 75px;
}
.p-home .section-10 .h2 {
  margin-bottom: 20px;
}
.p-home .section-10 .slider {
  margin-top: 52px;
}
.p-home .section-10 .slider__item {
  background: linear-gradient(to bottom, #FDF2EA, #FFFFFF);
  border: 1px solid #D8DBDB;
  border-radius: 20px;
  box-sizing: border-box;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  min-height: 1000px;
  margin: 0 25px;
  padding: 40px 30px;
  width: 510px !important;
}
.p-home .section-10 .slider__item h3 {
  color: #EE8030;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}
.p-home .section-10 .slider__top {
  align-items: center;
  border-bottom: 1px solid #D8DBDB;
  color: #3B4D4C;
  gap: 0 12px;
  margin-bottom: 16px;
  padding: 16px 0;
}
.p-home .section-10 .slider__top img {
  width: 150px;
}
.p-home .section-10 .slider__top p {
  font-size: 16px;
}
.p-home .section-10 .slider__step {
  margin-bottom: 16px;
}
.p-home .section-10 .slider__step p {
  font-size: 16px;
}
.p-home .section-10 .slider__step p span {
  font-size: 20px;
}
.p-home .section-10 .slider__step audio {
  margin: 16px 0;
  width: 100%;
}
.p-home .section-10 .slider__step__cols {
  gap: 0 24px;
}
.p-home .section-10 .slider__step__cols--2 {
  gap: 14px 13px;
}
.p-home .section-10 .slider__step__cols ul li {
  color: #3B4D4C;
  font-size: 18px;
}
.p-home .section-10 .slider__step__cols .is-sm {
  color: #3B4D4C;
  font-size: 12px;
}
.p-home .section-10 .slider__step__input {
  color: #3B4D4C;
  font-size: 18px;
}
.p-home .section-10 .slider__step__checkboxes {
  gap: 0 24px;
}
.p-home .section-10 .slider__step label {
  color: #3B4D4C;
  font-size: 12px;
}
.p-home .section-10 .slider__step label.is-checkbox {
  align-items: center;
  display: flex;
  position: relative;
}
.p-home .section-10 .slider__step label.is-checkbox.is-correct {
  color: #4DD967;
}
.p-home .section-10 .slider__step label.is-checkbox.is-correct .is-custom-check {
  background-color: #4DD967;
}
.p-home .section-10 .slider__step label.is-checkbox.is-correct .is-custom-check::after {
  border: solid white;
  border-width: 0 2px 2px 0;
  display: block;
  height: 10px;
  left: 9px;
  top: 5px;
  width: 5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-home .section-10 .slider__step label.is-checkbox.is-wrong {
  color: #F34040;
}
.p-home .section-10 .slider__step label.is-checkbox.is-wrong .is-custom-check {
  background-color: #F34040;
}
.p-home .section-10 .slider__step label.is-checkbox.is-wrong .is-custom-check::before, .p-home .section-10 .slider__step label.is-checkbox.is-wrong .is-custom-check::after {
  background: #fff;
  display: block;
  position: absolute;
  width: 2px;
  height: 16px;
  left: 11px;
  top: 4px;
}
.p-home .section-10 .slider__step label.is-checkbox.is-wrong .is-custom-check::before {
  transform: rotate(45deg);
  z-index: 1;
}
.p-home .section-10 .slider__step label.is-checkbox.is-wrong .is-custom-check::after {
  transform: rotate(-45deg);
  z-index: 1;
}
.p-home .section-10 .slider__step label.is-checkbox .is-custom-check {
  background-color: #D8DBDB;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  height: 24px;
  margin: 0;
  margin-right: 8px;
  width: 24px;
}
.p-home .section-10 .slider__step label.is-checkbox .is-custom-check::after, .p-home .section-10 .slider__step label.is-checkbox .is-custom-check::before {
  content: "";
  display: none;
  position: absolute;
}
.p-home .section-10 .slider__step input[type=text] {
  border: 0;
  border-bottom: 1px solid #3B4D4C;
  color: #3B4D4C;
  font-size: 18px;
  max-width: 17px;
  text-align: center;
}
.p-home .section-10 .slider__step input[type=text]:focus-visible {
  outline: none;
}
.p-home .section-10 .slider__step input[type=text].is-correct {
  border-color: #4DD967;
  color: #4DD967;
}
.p-home .section-10 .slider__step input[type=text].is-wrong {
  border-color: #F34040;
  color: #F34040;
}
.p-home .section-10 .slider__step input[type=checkbox] {
  cursor: pointer;
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}
.p-home .section-10 .slider__step__img {
  align-items: center;
  gap: 0 17px;
  width: 48%;
}
.p-home .section-10 .slider__step__img img {
  width: 67px;
}
.p-home .section-10 .slider__step__img span {
  width: calc(100% - 67px);
}
.p-home .section-10 .slider__answer {
  border: 1px solid #EE8030;
  border-radius: 8px;
  color: #EE8030;
  cursor: pointer;
  font-size: 20px;
  margin-top: 20px;
  padding: 16px;
  text-align: center;
}
.p-home .section-10 .slider__answer .is-hidden {
  color: #000;
  display: none;
  font-weight: 700;
}
.p-home .section-10 .slider__answer .is-hidden p {
  margin: 10px 0;
}
.p-home .section-10 .slider__answer .is-hidden p:last-child {
  margin-bottom: 0;
}
.p-home .section-10 .slider .slick-prev,
.p-home .section-10 .slider .slick-next {
  bottom: -133px;
  height: 48px;
  top: auto;
  width: 48px;
  z-index: 2;
}
.p-home .section-10 .slider .slick-prev::before,
.p-home .section-10 .slider .slick-next::before {
  background: url("../img/home/sec10-arrow.svg") no-repeat center/contain;
  content: "";
  height: 48px;
  display: block;
  width: 48px;
}
.p-home .section-10 .slider .slick-prev {
  left: 42%;
}
.p-home .section-10 .slider .slick-prev::before {
  transform: rotate(180deg);
}
.p-home .section-10 .slider .slick-next {
  right: 42%;
}
.p-home .section-10 .slider .slick-dots {
  bottom: auto;
  margin-top: 64px;
}
.p-home .section-10 .slider .slick-dots li {
  margin: 0 15px;
}
.p-home .section-10 .slider .slick-dots button::before {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  height: 22px;
  opacity: 1;
  width: 22px;
}
.p-home .section-10 .slider .slick-dots .slick-active button::before {
  background-color: #EE8030;
}
.p-home .section-10__btn {
  margin-top: 150px;
  text-align: center;
}
.p-home .section-10__btn a {
  background-color: #EE8030;
  border-radius: 12px;
  color: #fff;
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  padding: 26px 0;
  width: 580px;
}

@media screen and (min-width: 1600px) {
  .p-home .section-10 .slider .slick-prev {
    left: 44%;
  }
  .p-home .section-10 .slider .slick-next {
    right: 44%;
  }
}
@media screen and (max-width: 780px) {
  .p-home .header.is-notice-shown {
    top: 45vw;
  }
  .p-home .header.header-white, .is-nav .p-home .header {
    top: 0;
  }
  .p-home .banner {
    padding: 28.205vw 0 0;
  }
  .p-home .banner::before {
    background: url("../img/home/sp/banner-bg-1.png") no-repeat center left/cover;
    height: 107.692vw;
    left: 0;
  }
  .p-home .banner::after {
    background: url("../img/home/sp/banner-bg-2.png") no-repeat top left/cover;
    border-radius: 0;
    bottom: 0;
    height: 100vw;
    top: 90.179vw;
    width: 100%;
  }
  .p-home .banner__obj {
    left: -5.128vw;
    top: -28.205vw;
    width: 80.769vw;
  }
  .p-home .banner .w-40 {
    height: 61.5vw;
    overflow: hidden;
    padding-top: 29.7vw;
    position: relative;
  }
  .p-home .banner__title {
    margin-bottom: 7.692vw;
    width: 89.744vw;
  }
  .p-home .banner__subtitle {
    font-size: 4.615vw;
    margin: 4.103vw 0 6.154vw;
  }
  .p-home .banner__download {
    background-color: #F5F6F6;
    border-radius: 1.923vw;
    margin: 5.128vw 5.128vw 0;
    max-width: 100%;
    padding: 4.103vw 8.846vw 5.128vw;
  }
  .p-home .banner__download__text {
    font-size: 4.615vw;
    margin-bottom: 2.564vw;
    text-align: center;
  }
  .p-home .banner__download__button > a {
    height: auto;
    width: 50%;
  }
  .p-home .banner__download__button > a:first-child {
    margin-right: 3.077vw;
  }
  .p-home .banner__download__button > a img {
    height: auto;
    width: 100%;
  }
  .p-home .banner__download__btn {
    border-radius: 2.564vw;
    font-size: 4.103vw;
    padding: 2.564vw 14.103vw;
  }
  .p-home .banner__download__btn::after {
    height: 4.154vw;
    margin-bottom: 0.769vw;
    margin-left: 1.282vw;
    width: 4.154vw;
  }
  .p-home .banner__alc-logo {
    width: 20.513vw;
  }
  .p-home .banner__alc-logo img {
    width: 100%;
  }
  .p-home .banner__img-1 {
    bottom: 0;
    height: auto;
    left: 34.077vw;
    margin: 0 auto -6.41vw;
    position: absolute;
    right: 0;
    width: 82.051vw;
    z-index: 2;
  }
  .p-home .banner__img-2 {
    left: 2.846vw;
    width: 38vw;
    z-index: 2;
  }
  .p-home .banner__img-3 {
    left: 26.718vw;
    width: 30.231vw;
  }
  .p-home .section-1 {
    background-image: url("../img/home/sp/sec1-bg.png");
    padding: 10.256vw 0;
  }
  .p-home .section-1 .h2 {
    font-size: 5.128vw;
    margin-bottom: 11.538vw;
  }
  .p-home .section-1 .has-ico::before {
    height: 8.205vw;
    margin-right: 1.282vw;
    margin-top: -2.051vw;
    width: 5.128vw;
  }
  .p-home .section-1__img-1 {
    margin-bottom: 10.256vw;
  }
  .p-home .section-1__img-1 img {
    height: 5.128vw;
    width: 17.949vw;
  }
  .p-home .section-1__img-2 {
    margin-bottom: 11.538vw;
  }
  .p-home .section-1__img-2 img {
    width: 43.59vw;
  }
  .p-home .section-1__img-3 img {
    height: 5.128vw;
    width: 17.949vw;
  }
  .p-home .section-2 {
    padding: 10.256vw 0 14.872vw;
  }
  .p-home .section-2::after {
    background-size: cover;
    bottom: -10vw;
    height: 10.256vw;
    width: 28.718vw;
  }
  .p-home .section-2 .container {
    margin: 0 8.974vw;
    width: auto;
  }
  .p-home .section-2 img {
    margin-bottom: 7.692vw;
    width: 8.205vw;
  }
  .p-home .section-2 p {
    font-size: 4.103vw;
    margin-bottom: 7.692vw;
  }
  .p-home .section-3 {
    padding: 24.872vw 0 20.513vw;
  }
  .p-home .section-3 .h2 {
    margin-bottom: 8.974vw;
  }
  .p-home .section-3 .d-flex {
    margin-top: 8.974vw;
  }
  .p-home .section-3__img {
    margin: 0 3.846vw 7.179vw;
    width: 100%;
  }
  .p-home .section-3__text {
    width: 100%;
  }
  .p-home .section-3 p {
    font-size: 4.103vw;
    margin-bottom: 7.692vw;
  }
  .p-home .section-4 {
    padding: 20.513vw 0 12.821vw;
  }
  .p-home .section-4 .h2-2 {
    margin-top: 15.385vw;
  }
  .p-home .section-4__img-2 {
    bottom: 1.923vw;
    height: 35.256vw;
    right: -5.769vw;
    width: 41.026vw;
  }
  .p-home .section-4__img-3 {
    bottom: 12.821vw;
    height: 31.026vw;
    right: 8.333vw;
    width: 31.026vw;
  }
  .p-home .section-4__img-4 {
    bottom: 2.692vw;
    height: 33.59vw;
    right: 0.154vw;
    width: 37.179vw;
  }
  .p-home .section-4__content {
    background-image: url("../img/home/sp/sec4-bg.png");
    border-radius: 5.128vw;
    margin-bottom: 5.128vw;
  }
  .p-home .section-4__text {
    padding: 6.154vw 7.692vw;
    width: auto;
  }
  .p-home .section-4__text h3 {
    font-size: 5.128vw;
    margin-bottom: 3.077vw;
  }
  .p-home .section-4__text p {
    margin-bottom: 3.846vw;
  }
  .p-home .section-4__video {
    height: 50.256vw;
    width: 100%;
  }
  .p-home .section-4__video iframe {
    border-radius: 0;
    border-bottom-left-radius: 5.128vw;
    border-bottom-right-radius: 5.128vw;
  }
  .p-home .section-4__cards .card__content p {
    font-size: 5.128vw;
  }
  .p-home .section-5 {
    background-image: url("../img/home/sp/sec5-bg.png");
    padding-bottom: 15.385vw;
  }
  .p-home .section-5 .h2 {
    margin-bottom: 7.692vw;
  }
  .p-home .section-5 p {
    font-size: 3.59vw;
  }
  .p-home .section-5__img {
    margin: 7.692vw 6.41vw;
  }
  .p-home .section-5__img img {
    width: 100%;
  }
  .p-home .section-6 {
    background: url("../img/home/sp/sec6-bg.png");
    overflow-x: scroll;
    padding-bottom: 20.513vw;
  }
  .p-home .section-6 .h2 {
    margin-bottom: 14.872vw;
  }
  .p-home .section-6__img img {
    width: 242.308vw;
  }
  .p-home .section-7 {
    background-image: url("../img/home/sp/sec7-bg.png");
  }
  .p-home .section-7 .h2 {
    margin-bottom: 10.256vw;
    position: relative;
    z-index: 1;
  }
  .p-home .section-7__round {
    margin-bottom: 10.256vw;
  }
  .p-home .section-7__round::before {
    background-image: url("../img/home/sp/sec7-round-bg.svg");
    height: 123.077vw;
    left: -15.385vw;
    top: -30.769vw;
    width: 123.077vw;
  }
  .p-home .section-7__round__text {
    height: 61.538vw;
    width: 61.538vw;
  }
  .p-home .section-7__round h3 {
    font-size: 5.128vw;
    margin-bottom: 1.538vw;
  }
  .p-home .section-7__round p {
    font-size: 3.59vw;
  }
  .p-home .section-7__box {
    border-radius: 8px;
    box-shadow: 0 9px 90px 0 rgba(0, 0, 0, 0.0588235294);
    margin-bottom: 5.128vw;
    padding: 4.103vw;
    position: relative;
    top: auto;
    width: auto;
  }
  .p-home .section-7__box.is-small {
    width: auto;
  }
  .p-home .section-7__box:last-of-type {
    margin-bottom: 0;
  }
  .p-home .section-7__box h3 {
    font-size: 4.615vw;
    margin-bottom: 1.538vw;
  }
  .p-home .section-7__box p {
    font-size: 3.59vw;
  }
  .p-home .section-8 {
    padding-bottom: 7.692vw;
  }
  .p-home .section-9 {
    background: url("../img/home/sp/sec9-bg.png") no-repeat bottom center/contain;
    padding-top: 12.821vw;
  }
  .p-home .section-9__content {
    flex-direction: column;
    max-width: 100%;
  }
  .p-home .section-9__logo {
    margin: 0 auto 10.256vw;
    width: 66.667vw;
  }
  .p-home .section-9__logo img {
    width: 100%;
  }
  .p-home .section-9__img {
    margin: 0 auto;
    position: relative;
    right: 0;
    top: 0;
    width: 73.59vw;
    z-index: 1;
  }
  .p-home .section-9__img img {
    width: 100%;
  }
  .p-home .section-9__download {
    border-radius: 1.923vw;
    display: block;
    margin: 4.103vw auto 0;
    max-width: 89.744vw;
    padding: 3.846vw 3.846vw 5.128vw;
  }
  .p-home .section-9__download__text {
    font-size: 5.128vw;
    margin-bottom: 3.846vw;
    text-align: center;
  }
  .p-home .section-9__download__button > a {
    height: auto;
  }
  .p-home .section-9__download__button > a:first-child {
    margin-right: 3.205vw;
  }
  .p-home .section-9__download__button > a img {
    height: auto;
    width: 100%;
  }
  .p-home .section-10 {
    background-image: url("../img/home/sp/sec10-bg.png");
    padding: 6.154vw 0 17.949vw;
  }
  .p-home .section-10 .h2 {
    margin-bottom: 2.564vw;
  }
  .p-home .section-10 .slider {
    margin-top: 7.692vw;
  }
  .p-home .section-10 .slider__item {
    border-radius: 3.846vw;
    margin: 0 2.564vw;
    min-height: auto;
    padding: 7.692vw 5.128vw;
    width: 95.641vw !important;
  }
  .p-home .section-10 .slider__item h3 {
    font-size: 5.128vw;
  }
  .p-home .section-10 .slider__top {
    gap: 0 2.564vw;
    margin-bottom: 6.154vw;
    padding: 6.154vw 0;
  }
  .p-home .section-10 .slider__top img {
    width: 28.205vw;
  }
  .p-home .section-10 .slider__top p {
    font-size: 3.077vw;
  }
  .p-home .section-10 .slider__step {
    margin-bottom: 6.154vw;
  }
  .p-home .section-10 .slider__step p {
    font-size: 3.077vw;
  }
  .p-home .section-10 .slider__step p span {
    font-size: 3.59vw;
  }
  .p-home .section-10 .slider__step audio {
    margin: 6.154vw 0;
  }
  .p-home .section-10 .slider__step__cols {
    gap: 0 4.615vw;
  }
  .p-home .section-10 .slider__step__cols--2 {
    gap: 2.564vw 0;
  }
  .p-home .section-10 .slider__step__cols ul li {
    font-size: 3.333vw;
  }
  .p-home .section-10 .slider__step__cols .is-sm {
    font-size: 2.308vw;
  }
  .p-home .section-10 .slider__step__input {
    font-size: 16px;
  }
  .p-home .section-10 .slider__step__checkboxes {
    gap: 0 4.615vw;
  }
  .p-home .section-10 .slider__step label {
    font-size: 2.308vw;
  }
  .p-home .section-10 .slider__step label.is-checkbox.is-correct .is-custom-check::after {
    border-width: 0 0.513vw 0.513vw 0;
    height: 2.051vw;
    left: 1.538vw;
    top: 0.769vw;
    width: 1.026vw;
  }
  .p-home .section-10 .slider__step label.is-checkbox.is-wrong .is-custom-check::before, .p-home .section-10 .slider__step label.is-checkbox.is-wrong .is-custom-check::after {
    width: 0.513vw;
    height: 2.564vw;
    left: 2.051vw;
    top: 1.026vw;
  }
  .p-home .section-10 .slider__step label.is-checkbox .is-custom-check {
    border-radius: 0.769vw;
    height: 4.615vw;
    margin-right: 1.538vw;
    width: 4.615vw;
  }
  .p-home .section-10 .slider__step input[type=text] {
    -webkit-appearance: none !important;
    appearance: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 16px;
    height: 2.5em;
    line-height: 1;
    margin: 0.25em;
    max-width: 5.128vw;
    padding: 0;
    text-align: center;
    vertical-align: bottom;
    width: 2.5ch;
  }
  .p-home .section-10 .slider__step input[type=text]:focus {
    box-shadow: none;
    outline: none;
  }
  .p-home .section-10 .slider__step__img {
    gap: 0 3.077vw;
  }
  .p-home .section-10 .slider__step__img img {
    width: 12.821vw;
  }
  .p-home .section-10 .slider__step__img span {
    width: calc(100% - 12.821vw);
  }
  .p-home .section-10 .slider__answer {
    border-radius: 1.538vw;
    font-size: 3.846vw;
    margin-top: 0;
    padding: 3.077vw 0 1.282vw;
  }
  .p-home .section-10 .slider__answer p {
    margin-bottom: 1.795vw;
  }
  .p-home .section-10 .slider .slick-prev,
  .p-home .section-10 .slider .slick-next {
    bottom: -24.103vw;
  }
  .p-home .section-10 .slider .slick-prev::before,
  .p-home .section-10 .slider .slick-next::before {
    height: 8.462vw;
    width: 8.462vw;
  }
  .p-home .section-10 .slider .slick-prev {
    left: 26%;
  }
  .p-home .section-10 .slider .slick-next {
    right: 24%;
  }
  .p-home .section-10 .slider .slick-dots {
    margin-top: 8.718vw;
  }
  .p-home .section-10 .slider .slick-dots li {
    margin: 0 2.051vw;
  }
  .p-home .section-10 .slider .slick-dots button::before {
    height: 3.846vw;
    width: 3.846vw;
  }
  .p-home .section-10__btn {
    margin-top: 30vw;
  }
  .p-home .section-10__btn a {
    border-radius: 3.077vw;
    font-size: 4.615vw;
    padding: 5.128vw 14.359vw;
    width: auto;
  }
}
.p-howto {
  padding: 75px 0 0;
}
.p-howto__banner {
  padding: 120px 0 155px;
}
.p-howto__banner__title {
  font-size: 44px;
  line-height: 1.65;
  margin-bottom: 0;
}
.p-howto__banner__title .is-left {
  margin-left: -28px;
}
.p-howto .section-1 {
  background-color: #F9FAFD;
  padding: 20px 0 160px;
}
.p-howto__floating {
  padding-top: 80px;
  position: relative;
}
.p-howto__floating .floating-menu__list .no-link,
.p-howto__floating .floating-menu__list a {
  padding-left: 8px;
}
.p-howto__floating .floating-menu__list .has-ls {
  letter-spacing: -2px;
}

@media screen and (max-width: 780px) {
  .p-howto {
    padding: 13vw 0 0;
  }
  .p-howto .page-banner {
    padding: 23.128vw 0 45.718vw;
  }
  .p-howto .page-banner__title {
    font-size: 8.205vw;
  }
  .p-howto .page-banner__title .is-left {
    margin-left: -5.128vw;
  }
  .p-howto .section-1 {
    padding: 0 0 15.385vw;
  }
  .p-howto__floating {
    bottom: 0;
    height: 0;
    left: 0;
    padding-top: 0;
    position: fixed;
    top: 0;
    width: 65%;
    z-index: 999;
  }
  .p-howto__floating.is-open {
    height: 100%;
    z-index: 9999;
  }
  .p-howto__floating .floating-menu__list .no-link,
  .p-howto__floating .floating-menu__list a {
    padding-left: 4.359vw;
  }
  .p-howto__floating .floating-menu__list .has-ls {
    letter-spacing: -0.513vw;
  }
}
.p-howtobiz {
  background-color: #fff;
  padding-bottom: 0;
}
.p-howtobiz .page-banner {
  background-image: url("../img/howtobiz/howtobiz-banner.png");
}
.p-howtobiz__title {
  color: #00AFAA;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 80px;
  position: relative;
  text-align: center;
}
.p-howtobiz__title::before, .p-howtobiz__title::after {
  background-color: #B3E7E6;
  content: "";
  display: inline-block;
  height: 3px;
  left: 0;
  position: absolute;
  top: 50%;
  width: 400px;
}
.p-howtobiz__title::after {
  left: auto;
  right: 0;
}
.p-howtobiz__card {
  margin-bottom: 42px;
  width: 615px;
}
.p-howtobiz__card:nth-child(odd) {
  margin-right: 30px;
}
.p-howtobiz__card-video {
  height: 346px;
}
.p-howtobiz__card-video iframe {
  height: 100%;
  width: 100%;
}
.p-howtobiz__card-text {
  background-color: #F6F6F9;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 20px;
}
.p-howtobiz__card-text p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

@media screen and (max-width: 780px) {
  .p-howtobiz .page-banner {
    background-image: url("../img/howtobiz/sp/howtobiz-banner.png");
  }
  .p-howtobiz__title {
    font-size: 7.179vw;
    margin-bottom: 10.256vw;
  }
  .p-howtobiz__title::before, .p-howtobiz__title::after {
    display: none;
  }
  .p-howtobiz__card {
    margin-bottom: 5.128vw;
    width: 100%;
  }
  .p-howtobiz__card:nth-child(odd) {
    margin-right: 0;
  }
  .p-howtobiz__card-video {
    height: 50.513vw;
  }
  .p-howtobiz__card-text {
    border-bottom-left-radius: 2.564vw;
    border-bottom-right-radius: 2.564vw;
    padding: 2.564vw 5.128vw;
  }
  .p-howtobiz__card-text p {
    font-size: 4.615vw;
  }
  .p-howtobiz .section-1 {
    padding-bottom: 7.692vw;
  }
  .p-howtobiz .section-2__wrapper {
    padding-bottom: 0;
  }
}
.p-terms h2[id]::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}

@media screen and (max-width: 780px) {
  .p-terms h2[id]::before {
    height: 15.385vw;
    margin-top: -15.385vw;
  }
}
.p-transaction .page-container {
  width: 800px;
}

@media screen and (max-width: 780px) {
  .p-transaction .page-container {
    width: auto;
  }
}

/*# sourceMappingURL=style.css.map */
