@charset "UTF-8";
/*
Theme Name:
*/
.tel.no_link {
  pointer-events: none;
}

.noto_serif {
  font-family: "Noto Serif JP", serif;
}

.flx {
  display: flex;
}
.flx.reverse {
  flex-direction: row-reverse;
}
.flx.jfc_sb {
  justify-content: space-between;
}
.flx.jfc_c {
  justify-content: center;
}
.flx.aic {
  align-items: center;
}
.flx.clm {
  flex-direction: column;
}
.flx.clm > * {
  min-height: 0%;
}

.ablt {
  position: absolute;
}

.red {
  color: #e20513;
}

.lead {
  font-size: 1vw;
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-weight: 500;
}
@media screen and (max-width: 896px) {
  .lead {
    font-size: 3.4666666667vw;
  }
}

.vertical {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 896px) {
  .vertical {
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
  }
}

.btn_blue {
  display: inline-block;
  background-color: #02aeee;
  border-radius: 7.1428571429vw;
  padding: 1.1428571429vw 2.5vw;
  font-size: 1vw;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #fff;
  width: 15.7142857143vw;
  border: 1px solid #02aeee;
  position: relative;
}
.btn_blue::after {
  position: absolute;
  content: "";
  right: 1.5714285714vw;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
  width: 0.5vw;
  height: 0.5vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 0.3s;
}
@media screen and (min-width: 897px) {
  .btn_blue:hover {
    background-color: #fff;
    color: #02aeee;
  }
  .btn_blue:hover::after {
    border-color: #02aeee;
  }
}
@media screen and (max-width: 896px) {
  .btn_blue {
    font-size: 3.7333333333vw;
    padding: 2.1333333333vw 4.2666666667vw;
  }
}

.btn_red {
  display: inline-block;
  background-color: #e94968;
  border-radius: 7.1428571429vw;
  padding: 1.1428571429vw 2.5vw;
  font-size: 1vw;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
  color: #fff;
  width: 15.7142857143vw;
  border: 1px solid #e94968;
  position: relative;
}
.btn_red::after {
  position: absolute;
  content: "";
  right: 1.5714285714vw;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
  width: 0.5vw;
  height: 0.5vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 0.3s;
}
@media screen and (min-width: 897px) {
  .btn_red:hover {
    background-color: #fff;
    color: #e94968;
  }
  .btn_red:hover::after {
    border-color: #e94968;
  }
}
@media screen and (max-width: 896px) {
  .btn_red {
    font-size: 3.7333333333vw;
    padding: 2.1333333333vw 4.2666666667vw;
  }
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-700 {
  font-weight: 700;
}

.c-btn {
  font-family: var(--font-noto);
  box-shadow: 0px 4px 8px 0px rgba(26, 74, 101, 0.2);
  border-radius: 7.14vw;
  padding: 0 2.5vw 0px;
  font-size: 1vw;
  font-weight: 700;
  height: 60px;
  line-height: 57px;
  letter-spacing: 0.03em;
  color: #fff;
  width: 15.71vw;
  position: relative;
  display: block;
}
@media screen and (max-width: 896px) {
  .c-btn {
    width: 100%;
    max-width: 300px;
    height: 60px;
    line-height: 56px;
    border-radius: 30px;
    font-size: 1rem;
    padding: 0px 15px;
    margin: 10px auto 0;
  }
}
.c-btn::before {
  position: absolute;
  right: 1.79vw;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
  width: 0.5vw;
  height: 0.5vw;
}
@media screen and (max-width: 896px) {
  .c-btn::before {
    width: 8px;
    height: 8px;
    right: 5%;
  }
}
.c-btn.c-blue {
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
  color: var(--color-white);
}
.c-btn.c-blue::before {
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 0.3s;
}
.c-btn.c-blue:hover {
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  background-color: var(--color-white);
}
.c-btn.c-blue:hover::before {
  border-top: 2px solid var(--color-blue);
  border-right: 2px solid var(--color-blue);
}
.c-btn.c-red {
  background-color: var(--color-red);
  border: 1px solid var(--color-red);
  color: var(--color-white);
}
.c-btn.c-red::before {
  content: "";
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transition: 0.3s;
}
.c-btn.c-red:hover {
  border: 1px solid var(--color-red);
  color: var(--color-red);
  background-color: var(--color-white);
}
.c-btn.c-red:hover::before {
  border-top: 2px solid var(--color-red);
  border-right: 2px solid var(--color-red);
}
.c-btn.cta-btn {
  text-align: center;
  width: max-content;
  margin: 0 auto;
  padding: 0 50px;
}
.c-btn.cta-btn::before {
  right: 5%;
}

.c-cta .c-cta__title {
  text-align: center;
  font-family: var(--font-noto);
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 0.68px;
}
@media screen and (max-width: 896px) {
  .c-cta .c-cta__title {
    line-height: 1.6;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 896px) {
  .c-cta .c-cta__title span {
    display: block;
  }
}
.c-cta .c-cta__text {
  text-align: center;
  font-family: var(--font-noto);
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 896px) {
  .c-cta .c-cta__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 896px) {
  .c-cta .c-cta__text span {
    display: block;
  }
}

/*----------------------------------------
  reset
-----------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

p {
  text-align: justify;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #2b2e33;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #2b2e33;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  outline: 0;
}

ul,
li {
  list-style: none;
}

input[type=text],
input[type=button],
input[type=submit],
input[type=tel],
input[type=email] {
  border: none;
  box-sizing: border-box;
}

input[type=text]:focus,
input[type=button]:focus,
input[type=submit]:focus,
input[type=tel]:focus,
input[type=email]:focus,
textarea:focus {
  outline: 0;
  background-color: #fff;
}

input:-internal-autofill-selected {
  background-color: #fff !important;
}

input[type=text]:focus:placeholder-shown,
input[type=button]:focus:placeholder-shown,
input[type=submit]:focus:placeholder-shown,
input[type=tel]:focus:placeholder-shown,
input[type=email]:focus:placeholder-shown,
textarea:focus:placeholder-shown {
  color: #ddd;
}

input[type=text]:focus:-webkit-input-placeholder,
input[type=button]:focus:-webkit-input-placeholder,
input[type=submit]:focus:-webkit-input-placeholder,
input[type=tel]:focus:-webkit-input-placeholder,
input[type=email]:focus:-webkit-input-placeholder,
textarea:focus:-webkit-input-placeholder {
  color: #ddd;
}

input[type=text]:focus:-moz-placeholder,
input[type=button]:focus:-moz-placeholder,
input[type=submit]:focus:-moz-placeholder,
input[type=tel]:focus:-moz-placeholder,
input[type=email]:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: #ddd;
}

input[type=text]:focus:-ms-input-placeholder,
input[type=button]:focus:-ms-input-placeholder,
input[type=submit]:focus:-ms-input-placeholder,
input[type=tel]:focus:-ms-input-placeholder,
input[type=email]:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: #ddd;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
}

input[type=text]:placeholder-shown,
input[type=email]:placeholder-shown,
input[type=tel]:placeholder-shown {
  color: #ddd;
}

input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder {
  color: #ddd;
}

input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
textarea:-moz-placeholder {
  color: #ddd;
}

input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #fff;
}

textarea {
  resize: vertical;
}

textarea:placeholder-shown {
  color: #ddd;
}

textarea::-webkit-input-placeholder {
  color: #ddd;
}

textarea::-moz-placeholder {
  color: #ddd;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
  transition: 0.1s;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
  transition: 0.1s;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
  transition: 0.1s;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
  transition: 0.1s;
}

button {
  background-color: transparent;
  outline: 0;
  border: 0;
}

/*スマートフォンサイトでaタグをタップしたときにでるハイライトの色を消す*/
a {
  -webkit-tap-highlight-color: transparent;
  color: #2b2e33;
}
@media screen and (min-width: 896px) {
  a {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
  }
  a:hover {
    cursor: pointer;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
  }
}

@media screen and (min-width: 897px) {
  body.loaded a {
    transition: 0.3s;
  }
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  vertical-align: middle;
  border: solid 1px #2b2e33;
  font-weight: normal;
  text-align: left;
  border: 0;
}

caption {
  text-align: left;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: var(--font-zen);
  font-weight: 500;
  letter-spacing: 0.05em;
  font-display: swap;
  color: var(--color-black);
  font-size: 1rem;
}
@media screen and (max-width: 896px) {
  html,
  body {
    font-weight: 400;
  }
}

@media screen and (max-width: 896px) {
  body.sp_fix {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

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

svg {
  width: 100%;
  height: auto;
}

.slick-list:focus {
  outline: none !important;
}

:root {
  --main-width: 1120px;
  --color-white: #fff;
  --color-black-dark: #000000;
  --color-black: #2b2e33;
  --color-black-thin: #888888;
  --color-blue: #02aeee;
  --color-red: #fb4368;
  --color-gray-thin: #f9f9f9;
  --color-gray: #d9dce3;
  --color-gray-dark: #d3d3d3;
  --color-gray-bg: #f6f6f6;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-zen: "Zen Kaku Gothic New", sans-serif;
  --font-din: "din-2014", sans-serif;
  --font-robo: "Roboto", sans-serif;
}

.sp {
  display: none;
}
@media screen and (max-width: 896px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 896px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 896px) {
  .block-text {
    display: block;
  }
}

.l-container {
  position: relative;
  border-radius: 40px;
  padding-top: 8.57vw;
  padding-bottom: 8.57vw;
}
@media screen and (max-width: 896px) {
  .l-container {
    border-radius: 20px;
    padding: 40px 8% 80px;
  }
}
.l-container.bg-black {
  background-color: var(--color-black);
}
.l-container.bg-white {
  background-color: var(--color-white);
}
.l-container.l-container__features {
  margin-top: -57px;
  padding-top: 9.29vw;
  padding-bottom: 11.36vw;
}
@media screen and (max-width: 896px) {
  .l-container.l-container__features {
    margin-top: -30px;
  }
}
.l-container.l-container__function {
  margin-top: -57px;
  z-index: 2;
  padding-top: 8.57vw;
  padding-bottom: 4.29vw;
}
@media screen and (max-width: 896px) {
  .l-container.l-container__function {
    margin-top: -40px;
    padding: 80px 5% 40px;
  }
}
.l-container.l-container__comparison {
  padding-top: 16.64vw;
  z-index: 1;
  margin-top: -70px;
}
@media screen and (max-width: 896px) {
  .l-container.l-container__comparison {
    margin-top: -60px;
    padding: 130px 5% 80px;
  }
}
.l-container.l-container__plan {
  z-index: 0;
  background-color: var(--color-gray-bg);
  border-radius: 0;
  margin-top: -50px;
  padding-top: 10vw;
  padding-bottom: 8.57vw;
}
@media screen and (max-width: 896px) {
  .l-container.l-container__plan {
    margin-top: -40px;
    padding: 80px 5% 80px;
  }
}
.l-container.l-container__faq {
  z-index: 0;
  background-color: var(--color-gray-bg);
  border-radius: 0;
}

.l-contents {
  max-width: var(--main-width);
  margin: 0 auto;
}

.c-heading {
  text-align: center;
}
.c-heading .c-heading-en {
  display: block;
  font-family: var(--font-din);
  font-weight: 700;
  color: var(--color-blue);
  font-size: 1.25rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
@media screen and (max-width: 896px) {
  .c-heading .c-heading-en {
    font-size: 1.125rem;
  }
}
.c-heading .c-heading-ja {
  display: block;
  font-family: var(--font-noto);
  font-size: 3.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 10px;
}
@media screen and (max-width: 896px) {
  .c-heading .c-heading-ja {
    font-size: 1.75rem;
  }
}
.c-heading .c-heading-ja i {
  position: relative;
  font-style: normal;
}
.c-heading .c-heading-ja i::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: -4px;
  background-color: var(--color-blue);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (max-width: 896px) {
  .c-heading .c-heading-ja i::before {
    width: 3px;
    height: 3px;
  }
}
.c-heading .c-heading-ja.heading-color-white {
  color: var(--color-white);
}

.c-heading-text {
  color: var(--color-white);
  font-family: var(--font-noto);
  font-size: 1rem;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.32px;
  text-align: center;
  margin-top: 23px;
}
@media screen and (max-width: 896px) {
  .c-heading-text {
    font-size: 0.75rem;
    margin-top: 18px;
    line-height: 1.6;
  }
}

.p-top-cta {
  max-width: 1260px;
  margin: 80px auto 0;
  background-color: var(--color-black);
  border-radius: 40px;
  padding: 30px 0 42px;
}
@media screen and (max-width: 896px) {
  .p-top-cta {
    margin: 50px auto 0;
    padding: 30px 6% 70px;
    border-radius: 20px;
  }
}
.p-top-cta .p-top-cta__items {
  max-width: 1080px;
  width: 100%;
  margin: 20px auto 0;
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
@media screen and (max-width: 896px) {
  .p-top-cta .p-top-cta__items {
    flex-flow: column;
  }
}
.p-top-cta .p-top-cta__item.cta-img {
  width: 43.5185185185%;
  margin-right: 1.8518518519%;
}
@media screen and (max-width: 896px) {
  .p-top-cta .p-top-cta__item.cta-img {
    width: 100%;
    margin-right: 0;
  }
}
.p-top-cta .p-top-cta__item.cta-text {
  width: 54.6296296296%;
}
@media screen and (max-width: 896px) {
  .p-top-cta .p-top-cta__item.cta-text {
    width: 100%;
  }
}
.p-top-cta .p-top-cta__item.cta-text .cta-text__title {
  font-size: 2.5rem;
  color: var(--color-white);
  font-family: var(--font-noto);
  font-weight: 700;
  line-height: 1.78;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 897px) {
  .p-top-cta .p-top-cta__item.cta-text .cta-text__title {
    text-align: center;
  }
}
@media screen and (max-width: 896px) {
  .p-top-cta .p-top-cta__item.cta-text .cta-text__title {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.p-top-cta .p-top-cta__item.cta-text .cta-text__info {
  color: var(--color-white);
  margin-top: 12px;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 897px) {
  .p-top-cta .p-top-cta__item.cta-text .cta-text__info {
    text-align: center;
  }
}
@media screen and (max-width: 896px) {
  .p-top-cta .p-top-cta__item.cta-text .cta-text__info {
    margin-top: 16px;
    line-height: 1.6;
    font-size: 0.875rem;
  }
}
.p-top-cta .p-top-cta__item.cta-text .cta-text__btn {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: 1.43vw;
  margin-top: 28px;
}
@media screen and (max-width: 896px) {
  .p-top-cta .p-top-cta__item.cta-text .cta-text__btn {
    margin-top: 15px;
    justify-content: space-between;
  }
}

#stage {
  overflow-x: hidden;
}
#stage .modal_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
}
.l-header .l-header__container {
  padding: 13px 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container {
    padding: 0;
    width: 100%;
    background: transparent;
  }
}
.l-header .l-header__container .p-logo {
  position: relative;
  z-index: 20;
}
.l-header .l-header__container .p-logo a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.l-header .l-header__container .p-logo a img {
  width: min(152px, 10.857vw);
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .p-logo a img {
    width: 100%;
  }
}
.l-header .l-header__container .p-logo a .txt {
  width: min(120px, 8.571vw);
  display: inline-block;
  font-size: min(13px, 0.929vw);
  letter-spacing: 0;
  line-height: 1.2;
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .p-logo a .txt {
    display: none;
  }
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .p-logo {
    width: 110px;
    left: 3.7%;
    top: 15px;
  }
}
.l-header .l-header__container .p-header-btn {
  display: none;
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .p-header-btn {
    position: absolute;
    z-index: 10;
    right: 3.5%;
    top: 15px;
    display: block;
    width: 60px;
    height: 40px;
    border-radius: 3px;
    border: none;
    background-color: var(--color-blue);
  }
  .l-header .l-header__container .p-header-btn::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
    width: 43px;
    height: 2px;
    background-color: #fff;
  }
  .l-header .l-header__container .p-header-btn::after {
    content: "";
    position: absolute;
    top: 24px;
    transition: 0.5s;
    left: 50%;
    transform: translateX(-50%);
    width: 43px;
    height: 2px;
    background-color: #fff;
  }
}
.l-header .l-header__container .p-header-btn.js-menu-active::before {
  width: 32px;
  left: 50%;
  top: 18px;
  transform: translateX(-50%) rotate(45deg);
}
.l-header .l-header__container .p-header-btn.js-menu-active::after {
  width: 32px;
  left: 50%;
  top: 18px;
  transform: translateX(-50%) rotate(-45deg);
}
.l-header .l-header__container .p-nav {
  margin-left: auto;
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .p-nav {
    position: fixed;
    overflow: scroll;
    transition: 0.5s;
    transform: scale(0);
    width: 100%;
    height: 100%;
    background-color: #efefef;
    z-index: 5;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    padding-top: 10vw;
    align-items: center;
  }
  .l-header .l-header__container .p-nav.js-menu-active {
    transform: scale(1);
  }
}
.l-header .l-header__container .p-nav .p-global-nav {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .p-nav .p-global-nav {
    width: 90%;
    margin: 0 auto;
    flex-flow: wrap;
    justify-content: flex-start;
  }
}
.l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item {
  margin-right: min(26px, 1.857vw);
}
.l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item {
    width: 50%;
    margin-right: 0;
    margin-bottom: 32px;
  }
  .l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item:last-child {
    margin-bottom: 0;
  }
}
.l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item a {
  display: block;
  font-size: min(0.9375rem, 1.071vw);
  font-weight: 700;
  letter-spacing: 0.28px;
}
@media screen and (min-width: 897px) {
  .l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item a:hover {
    color: var(--color-blue);
  }
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item a {
    font-size: 1rem;
  }
}
.l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item.mb-btn {
  display: none;
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item.mb-btn {
    width: 100%;
    margin-top: 2px;
    display: block;
  }
  .l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item.mb-btn a {
    width: 100%;
    height: 55px;
    border-radius: 40px;
    margin: 0 auto;
    line-height: 53px;
    display: block;
    background-color: var(--color-blue);
    text-align: center;
    color: var(--color-white);
    font-family: var(--font-noto);
    font-size: 1rem;
  }
  .l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item.mb-btn a.c-red {
    background-color: var(--color-red);
    border: 1px solid var(--color-red);
  }
}
.l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item.mb-img {
  display: none;
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item.mb-img {
    margin-top: 10px;
    width: 100%;
    display: block;
  }
}
.l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item.mb-img img {
  width: 324px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .p-nav .p-global-nav .p-global-nav__item.mb-img img {
    margin: 0 0 0 5vw;
  }
}
.l-header .l-header__container .l-header__cta {
  margin-left: 9px;
  width: min(156px, 11.143vw);
  height: 49px;
  line-height: 49px;
  text-align: center;
  color: var(--color-white);
  border-radius: 5px;
  background-color: var(--color-blue);
  font-size: min(0.9375rem, 1.071vw);
  font-weight: 700;
  letter-spacing: -0.16px;
  transition: 0.3s ease-out;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 896px) {
  .l-header .l-header__container .l-header__cta {
    display: none;
  }
}
@media screen and (min-width: 897px) {
  .l-header .l-header__container .l-header__cta.btn-doc {
    border: 1px solid var(--color-blue);
    border-width: 1px;
  }
  .l-header .l-header__container .l-header__cta.btn-doc:hover {
    background-color: #fff;
    color: var(--color-blue);
  }
}
.l-header .l-header__container .l-header__cta.btn-ca {
  margin-left: 0.71vw;
  background-color: var(--color-red);
  border: 1px solid var(--color-red);
  border-width: 1px;
}
@media screen and (min-width: 897px) {
  .l-header .l-header__container .l-header__cta.btn-ca:hover {
    background-color: #fff;
    color: var(--color-red);
  }
}

.l-footer {
  width: 100%;
  padding: 0 0 51px;
  background-color: var(--color-black);
}
@media screen and (max-width: 896px) {
  .l-footer {
    padding: 0 0 47px;
  }
}
.l-footer .l-footer__container {
  max-width: var(--main-width);
  margin: 0 auto;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__container {
    padding: 0 7.5%;
  }
}
.l-footer .l-footer__use {
  margin-bottom: 74px;
  padding: 57px 0 79px;
  background: #35393F;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__use {
    padding-top: 40px;
    margin-bottom: 45px;
  }
}
.l-footer .l-footer__use .l-footer__use-title {
  margin-bottom: 60px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__use .l-footer__use-title {
    margin-bottom: 30px;
    font-size: 1.375rem;
    line-height: 1.4;
  }
}
.l-footer .l-footer__use .l-footer__use-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__use .l-footer__use-list {
    gap: 14px 0;
  }
}
.l-footer .l-footer__use .l-footer__use-list li {
  padding: 28px 30px 27px;
  width: calc((100% - 39px) / 4);
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0px 0px 40px 0px rgba(148, 148, 148, 0.25);
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__use .l-footer__use-list li {
    padding: 15px 20px 19px;
    width: 100%;
  }
}
.l-footer .l-footer__use .l-footer__use-list li p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 13px;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__use .l-footer__use-list li p {
    margin-bottom: 11px;
    font-size: 1.375rem;
  }
}
.l-footer .l-footer__use .l-footer__use-list li .img {
  margin: 0 9px 16px 10px;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__use .l-footer__use-list li .img {
    margin: 0 auto 17px;
    width: 72.5%;
  }
}
.l-footer .l-footer__use .l-footer__use-list li .img img {
  width: 100%;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
.l-footer .l-footer__use .l-footer__use-list li .img.img01 {
  margin: 0 5px 8px 15px;
  padding-top: 8px;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__use .l-footer__use-list li .img.img01 {
    margin: 0 auto 2px;
    padding-top: 0;
    width: 79%;
  }
}
.l-footer .l-footer__use .l-footer__use-list li .img.img01 img {
  box-shadow: none;
}
.l-footer .l-footer__use .l-footer__use-list li .btn {
  width: 210px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__use .l-footer__use-list li .btn {
    width: 230px;
  }
}
.l-footer .l-footer__use .l-footer__use-list li .btn a {
  padding: 0 5px;
  width: 100%;
  height: 52px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  border-radius: 5px;
  background: #02AEEE;
  border: 1px solid #02AEEE;
  box-sizing: border-box;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 897px) {
  .l-footer .l-footer__use .l-footer__use-list li .btn a:hover {
    color: #02AEEE;
    background-color: white;
  }
}
.l-footer .l-footer__items {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-bottom: 64px;
}
.l-footer .l-footer__items:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__items {
    margin-bottom: 58px;
    flex-flow: column-reverse;
  }
}
.l-footer .l-footer__item {
  width: 50%;
  max-width: 404px;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__item {
    width: 100%;
  }
}
.l-footer .l-footer__logo {
  margin-top: 6px;
  width: 224px;
  margin-left: auto;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__logo {
    width: 170px;
    margin-left: 0;
    margin-bottom: 38px;
  }
}
.l-footer .l-footer__link {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  gap: 30px;
}
.l-footer .l-footer__link li {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__link li {
    width: 100%;
  }
}
.l-footer .l-footer__link li a {
  position: relative;
  color: var(--color-white);
  font-size: 1rem;
  letter-spacing: 0.64px;
  padding-left: 26px;
}
.l-footer .l-footer__link li a::before {
  content: "";
  width: 8px;
  height: 2px;
  background-color: var(--color-blue);
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
}
.l-footer .l-footer__copy {
  color: var(--color-black-thin);
  font-size: 0.875rem;
  font-family: var(--font-noto);
  font-weight: 700;
  letter-spacing: 0.84px;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__copy {
    margin-top: 37px;
  }
}
.l-footer .l-footer__nav {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__nav {
    justify-content: center;
  }
}
.l-footer .l-footer__nav li {
  margin-right: 30px;
}
.l-footer .l-footer__nav li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 896px) {
  .l-footer .l-footer__nav li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .l-footer .l-footer__nav li:last-child {
    margin-bottom: 0;
  }
}
.l-footer .l-footer__nav li a {
  color: var(--color-black-thin);
  display: block;
  font-size: 0.875rem;
  font-family: var(--font-noto);
  letter-spacing: 0.28px;
}

.underline {
  position: relative;
}
.underline::after {
  content: "";
  background: #dadada;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: right top;
}
@media screen and (min-width: 897px) {
  .underline:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

.svg_anim svg {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: 1s;
  width: 100%;
  height: auto;
}
.svg_anim.on svg {
  stroke-dashoffset: 2000;
}

.fade_y {
  transform: translateY(3%);
  opacity: 0;
  transition: 0.3s;
}
.fade_y.on {
  opacity: 1;
  transform: translateY(0%);
}

.scr_cvr {
  overflow: hidden;
  position: relative;
  display: block;
  opacity: 0;
  transition: 0.5s;
}
.scr_cvr::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
  background-color: #000;
  transition: all 0.6s cubic-bezier(0.5, 0, 0.3, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.scr_cvr.on {
  opacity: 1;
}
.scr_cvr.on::before {
  right: -100%;
  transition-delay: 0.3s;
}

.document {
  background-color: #FAFAFA;
}

@media screen and (min-width: 897px) {
  .l-document__content {
    display: flex;
    justify-content: space-between;
    max-width: 1120px;
    padding-bottom: 100px;
    margin: 140px auto 0;
  }
}
@media screen and (max-width: 896px) {
  .l-document__content {
    padding: 0 5% 80px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 897px) {
  .l-document__content-textarea {
    width: 56.25%;
  }
}
.l-document__content-textarea .heading {
  position: relative;
  padding-left: 24px;
}
.l-document__content-textarea .heading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #02AEEE;
}
.l-document__content-textarea .heading .page-ttl {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 897px) {
  .l-document__content-textarea .heading .page-ttl {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 896px) {
  .l-document__content-textarea .heading .page-ttl {
    font-size: 1.5rem;
  }
}
.l-document__content-textarea .heading .txt {
  margin-top: 10px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #000;
}
@media screen and (min-width: 897px) {
  .l-document__content-textarea .heading .txt {
    font-size: 0.875rem;
    white-space: nowrap;
  }
}
@media screen and (max-width: 896px) {
  .l-document__content-textarea .heading .txt {
    font-size: 0.8125rem;
  }
}
.l-document__content-img {
  margin-top: 30px;
}
.l-document__content-explanation {
  margin-top: 24px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.l-document__content-merit {
  border: 1px solid #02AEEE;
}
@media screen and (min-width: 897px) {
  .l-document__content-merit {
    padding: 22px 35px;
    margin-top: 28px;
  }
}
@media screen and (max-width: 896px) {
  .l-document__content-merit {
    padding: 20px 5%;
    margin-top: 28px;
  }
}
.l-document__content-merit .sub_heading {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #02AEEE;
}
.l-document__content-merit ul {
  margin-top: 16px;
}
.l-document__content-merit li {
  margin: 15px 0;
  background-image: url(../../img/document/icon-check.svg);
  background-repeat: no-repeat;
  font-weight: 700;
  line-height: 1.625;
}
@media screen and (min-width: 897px) {
  .l-document__content-merit li {
    padding-left: 32px;
    background-size: 25px;
    background-position: 0 center;
    font-size: 1rem;
  }
}
@media screen and (max-width: 896px) {
  .l-document__content-merit li {
    padding-left: 25px;
    background-size: 18px;
    background-position: 0 3px;
    font-size: 0.875rem;
  }
}
.l-document__content-form {
  border-radius: 10px;
  background-color: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(145, 145, 145, 0.25);
}
@media screen and (min-width: 897px) {
  .l-document__content-form {
    width: 38.5%;
  }
}
@media screen and (max-width: 896px) {
  .l-document__content-form {
    margin-top: 50px;
  }
}
.l-document__content-form dt {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}
.l-document__content-form dt:nth-of-type(n+2) {
  margin-top: 30px;
}
.l-document__content-form dt .req {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.8125rem;
  color: var(--color-red);
}
.l-document__content-form dd {
  margin-top: 10px;
}
.l-document__content-form dd.flex {
  display: flex;
  justify-content: space-between;
}
.l-document__content-form dd.flex .input {
  width: 47.5%;
}
.l-document__content-form dd .input {
  width: 100%;
  padding: 10px 5px;
  border-radius: 2px;
  border: 1px solid #D9DCE3;
  background-color: #EFF0F3;
  font-size: 1rem;
}
.l-document__content-form dd .select-wrap {
  position: relative;
}
.l-document__content-form dd .select-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 8px solid #555555;
  border-bottom: 0;
}
.l-document__content-form dd .select-box {
  width: 100%;
  padding: 10px 5px;
  border-radius: 2px;
  border: 1px solid #D9DCE3;
  background-color: #EFF0F3;
  font-size: 1rem;
  box-sizing: border-box;
}
@media screen and (min-width: 897px) {
  .l-document__content-form dd .select-box:hover {
    cursor: pointer;
  }
}
.l-document__content-form dd .checkbtn {
  display: flex;
  flex-wrap: wrap;
}
.l-document__content-form dd .checkbtn li {
  margin: 5px 14px 5px 0;
}
.l-document__content-form dd .checkbtn .checkbox {
  display: none;
}
.l-document__content-form dd .checkbtn .checkbox:checked + .item:before {
  background-color: #02AEEE;
}
.l-document__content-form dd .checkbtn .checkbox:checked + .item:after {
  opacity: 1;
}
.l-document__content-form dd .checkbtn .item {
  position: relative;
  padding-left: 30px;
  color: var(--, #2B2E33);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.l-document__content-form dd .checkbtn .item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 3px;
  border: 1px solid #D9DCE3;
  background: #EFF0F3;
}
.l-document__content-form dd .checkbtn .item:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-75%) rotate(-45deg);
  width: 14px;
  height: 8px;
  border: 2px solid #fff;
  border-width: 0 0 2px 2px;
  opacity: 0;
}
.l-document__content-form .submitbtn {
  width: 100%;
  padding: 20px 0 18px;
  margin-top: 42px;
  border-radius: 96px;
  background-color: #E94968;
  border: 1px solid #E94968;
  font-weight: 700;
  line-height: 1;
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 897px) {
  .l-document__content-form .submitbtn {
    font-size: 1.125rem;
    transition: 0.3s ease-out;
  }
  .l-document__content-form .submitbtn:hover {
    background-color: #fff;
    color: #E94968;
    cursor: pointer;
  }
}
@media screen and (max-width: 896px) {
  .l-document__content-form .submitbtn {
    font-size: 1rem;
  }
}
.l-document__content-form .privacy-txt {
  margin-top: 16px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.l-document__content-form .privacy-txt a {
  text-decoration: underline;
}
@media screen and (min-width: 897px) {
  .l-document__content-form .privacy-txt a:hover {
    text-decoration: none;
  }
}
.l-document__content-thanks {
  max-width: 860px;
  margin: auto;
}
.l-document__content-thanks .page-ttl {
  line-height: 1.6;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 897px) {
  .l-document__content-thanks .page-ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 896px) {
  .l-document__content-thanks .page-ttl {
    font-size: 1.125rem;
  }
}
.l-document__content-thanks .txt {
  margin-top: 30px;
  line-height: 1.78;
}
.l-document__content-thanks .c-btn {
  margin-top: 50px;
}

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