@charset "utf-8";
/* 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;
  vertical-align: baseline;
  font: inherit;
  font-size: 100%;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}

/*--------------------- form reset -------------------- */
/*----- ios用 start -----*/
input,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;

  -webkit-appearance: none;
}
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  cursor: pointer;

  -webkit-appearance: button;
  appearance: button;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

select {
  outline: none;
  border: none;
  background: transparent;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button,
input[type="submit"] {
  padding: 0;
  outline: none;
  border: none;
  background: transparent;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + label {
  background: #ff0000;
}
/*------ ios用 end ------*/

/*------ テキスト start -----*/
.text-test {
  padding: 0.4em 0.8em;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  background-color: transparent;
  background-image: none;
  color: inherit;
  font-size: 1em;
  font-family: inherit;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.text-test:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
}
/*------- テキスト end ------*/

/*------ テキストエリア start -----*/
.textarea-text {
  padding: 0.4em 0.8em;
  width: 100%;
  height: 100px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  background-color: transparent;
  background-image: none;
  color: inherit;
  font-size: 1em;
  font-family: inherit;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.textarea-text:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
}
/*------- テキストエリア end ------*/

/*------ ラジオボタン start -----*/
.radio-test {
  display: none;
}

.radio-test + span {
  position: relative;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  cursor: pointer;
}

.radio-test + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  background: #fff;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio-test + span::after {
  position: absolute;
  top: 50%;
  left: 4px;
  padding: 2px;
  width: 8px;
  height: 8px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  content: "";
  opacity: 0;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio-test:checked + span::after {
  opacity: 1;
}
/*------- ラジオボタン end ------*/

/*------ チェックボックス start -----*/
.check-test {
  display: none;
}

.check-test + span {
  position: relative;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.2em;
  cursor: pointer;
}

.check-test + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  background: #fff;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.check-test + span::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -0.2em;
  width: 1em;
  height: 0.6em;
  border-bottom: 3px solid rgba(0, 0, 0, 0.32);
  border-left: 3px solid rgba(0, 0, 0, 0.32);
  content: "";
  opacity: 0;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.check-test:checked + span::after {
  opacity: 1;
}
/*------- チェックボックス end ------*/

/*------ セレクトボックス start -----*/
.select-test {
  padding: 0.4em 0.8em;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  background: transparent
    url(https://haniwaman.com/wp-content/uploads/2018/12/form-css-arrow.png)
    no-repeat center right 8px/16px 16px;
  color: inherit;
  font-size: 1em;
  font-family: inherit;
  cursor: pointer;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.select-test::-ms-expand {
  display: none;
}

.select-test:focus {
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
}
/*------- セレクトボックス end ------*/

/*------ セレクトボックス start -----*/
.submit-test {
  display: inline-block;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  border: none;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  cursor: pointer;

  -webkit-appearance: none;
}

.submit-test:hover,
.submit-test:focus {
  outline: none;
}

.submit-test::-moz-foucus-inner {
  padding: 0;
  border: none;
}
/*------- セレクトボックス end ------*/

/*------ ボタン start -----*/
.submit-test {
  display: inline-block;
  margin: 0 0 1em;
  padding: 0.6em 2em;
  border: none;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.32);
  background-image: none;
  color: #fff;
  text-decoration: none;
  font-size: 1em;
  cursor: pointer;

  -webkit-appearance: none;
}

.submit-test:hover,
.submit-test:focus {
  outline: none;
}

.submit-test::-moz-foucus-inner {
  padding: 0;
  border: none;
}
/*------- ボタン end ------*/

/*------ ファイル start -----*/
#file-test {
  display: none;
}

#file-test-label {
  padding: 0.4em 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  cursor: pointer;
}

#file-test-name {
  display: none;
  padding: 0.4em 0;
  width: 100%;
  border: none;
  border-radius: 0;
  background-color: transparent;
  background-image: none;
  color: inherit;
  font-size: 1em;
  font-family: inherit;

  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
/*------- ファイル end ------*/
/*---------------------- form end --------------------- */
:host {
  display: block;
}
.header {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9996;
  padding: 10px 0;
  width: 100%;
  background-color: #012530;
}
@media screen and (max-width: 1750px) {
  .header {
    padding: 10px 0;
  }
}
@media screen and (max-width: 1270px) {
  .header {
    padding: 22px 0;
  }
}
.header::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgb(20, 187, 187);
  background: linear-gradient(
    90deg,
    rgba(20, 187, 187, 1) 0%,
    rgba(50, 140, 230, 1) 100%
  );
  content: "";
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 0 40px;
}
@media screen and (max-width: 1750px) {
  .header .header__inner {
    padding: 0 25px 0 30px;
  }
}
@media screen and (max-width: 1400px) {
  .header .header__inner {
    padding: 0 15px 0 15px;
  }
}
@media screen and (max-width: 1270px) {
  .header .header__inner {
    padding: 0 20px;
  }
}
.header__left .logo {
  width: 329.12px;
}
@media screen and (max-width: 1750px) {
  .header__left .logo {
    width: 246.84px;
  }
}
@media screen and (max-width: 1270px) {
  .header__left .logo {
    width: 237.89px;
  }
}
@media screen and (max-width: 320px) {
  .header__left .logo {
    width: 210px;
  }
}
.header__left .logo img {
  display: block;
  width: 100%;
}
.header__right .nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1270px) {
  .header__right .nav {
    position: fixed;
    top: 0;
    left: -100vw;
    z-index: 9998;
    overflow: hidden;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
    background-color: #fff;
    transition: all 0.3s ease;
  }
}
.nav-item {
  margin-right: 20px;
}
@media screen and (max-width: 1850px) {
  .nav-item {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1750px) {
  .nav-item {
    margin-right: 25px;
  }
}
@media screen and (max-width: 1400px) {
  .nav-item {
    margin-right: 10px;
  }
}
@media screen and (max-width: 1270px) {
  .nav-item {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.nav-item:last-of-type {
  margin-right: 0;
}
.nav-item a {
  display: inline-block;
  color: #fff;
  white-space: nowrap;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 1750px) {
  .nav-item a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1270px) {
  .nav-item a {
    color: #333;
    font-size: 16px;
  }
}
.nav-item.contact-item .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18.18em;
  height: 2.72em;
  border-radius: 39px;
  background: rgb(20, 187, 187);
  background: linear-gradient(
    90deg,
    rgba(20, 187, 187, 1) 0%,
    rgba(50, 140, 230, 1) 100%
  );
  color: #fff;
  white-space: nowrap;
  font-size: 18px;
}
.nav-item.contact-item .btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 567px) {
  .nav-item.contact-item .btn:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 1750px) {
  .nav-item.contact-item .btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 1270px) {
  .nav-item.contact-item .btn {
    font-size: 15px;
  }
}
.header__btn--fixed {
  display: none;
}
@media screen and (max-width: 1270px) {
  .header__btn--fixed {
    position: fixed;
    bottom: 5em;
    left: 2vw;
    z-index: 500;
    display: block;
  }
}
.header__btn--fixed .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96vw;
  height: 3.5em;
  border-radius: 5px;
  background: rgb(20, 187, 187);
  background: linear-gradient(
    125deg,
    rgba(20, 187, 187, 1) 0%,
    rgba(50, 188, 230, 1) 100%
  );
  color: #fff;
  white-space: nowrap;
  font-size: 18px;
}
.header__btn--fixed .btn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 567px) {
  .header__btn--fixed .btn:hover {
    opacity: 1;
  }
}
#burger {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  height: 27px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1270px) {
  #burger {
    display: flex;
  }
}
#burger div {
  position: relative;
  width: 32px;
  height: 3px;
  background-color: #fff;
}
#burger div::before,
#burger div::after {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  content: "";
  transition: all 0.3s ease;
}
#burger div::before {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
#burger div::after {
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.header.active #burger div {
  background-color: #fff;
}
.header.active #burger div::before {
  top: 50%;
  left: 50%;
  background-color: #000;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header.active #burger div::after {
  top: 50%;
  left: 50%;
  background-color: #000;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 1270px) {
  .header.active .nav {
    left: 0;
  }
}
.footer {
  background-color: #fcfcfc;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__inner {
  padding: 0 20px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px 0;
  margin-bottom: 0;
}

.footer__top .items {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 100%;
  width: 767px;
  list-style: none;
  padding: 0;
}

.footer__top .item {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
}

.footer__top .item a {
  display: block;
  margin-bottom: 17px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 20px;
  color: inherit;
  text-decoration: none;
}

.footer__top .item a:focus {
  outline: none;
  text-decoration: none;
}

.footer__top .item a:last-of-type {
  margin-bottom: 0;
}

.footer__top .item a:hover {
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background-color: #000000;
}

.footer__bottom .copy-right {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  margin: 0;
}

.footer__top .item a {
  color: #333;
  text-decoration: none;
}

/* メディアクエリ */
@media (max-width: 1440px) {
  .footer__top .item a {
    font-size: 18px;
  }

  .footer__bottom .copy-right {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .footer__top {
    padding: 40px 0 25px 0;
  }

  .footer__top .items {
    position: relative;
    flex-direction: column;
  }

  .footer__top .item {
    width: 50%;
  }

  .footer__top .item:last-of-type {
    position: absolute;
    top: 0;
    right: 0;
  }

  .footer__top .item a {
    font-size: 16px;
  }

  .footer__top .item a:last-of-type {
    margin-bottom: 20px;
  }
}

@media (max-width: 567px) {
  .footer__bottom .copy-right {
    font-size: 15em;
  }
}

@media (max-width: 374px) {
  .footer__top .item a {
    font-size: 12em;
  }
}
@charset "utf-8";

/* Gothic, Mincho フォント */
.goshic {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, YuGothic,
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo,
    verdana, sans-serif;
}

.mincho {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
}

/* リセット・共通設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  word-break: break-word;
}

html {
  overflow-x: clip;
}

body {
  position: relative;
  overflow-x: hidden;
  background: #f9f9f9;
  background-image: url("/assets/img/common/bg.png");
  background-position: top 680em center;
  background-size: 1920px auto;
  background-repeat: repeat-y;
  color: #000;
  font-size: 100%;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック体, YuGothic,
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo,
    verdana, sans-serif;
  -webkit-appearance: none;
  -webkit-text-size-adjust: none;
}

.header-space {
  margin-top: 68.95px;
}

@media (max-width: 1440px) {
  body {
    background-position: top 715em center;
    background-size: 1440em;
  }
}

@media (max-width: 567px) {
  body {
    background-image: none;
  }
}

/* share start */
a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

@media (max-width: 567px) {
  a:hover {
    opacity: 1;
  }
}

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

.container {
  overflow: hidden;
  margin: 0 auto;
  max-width: 100%;
  width: 1920px;
}

@media (max-width: 1440px) {
  .container {
    width: 1440px;
  }
}

.inner {
  overflow: hidden;
  padding: 0 20px;
}

.pc {
  display: block;
}

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

.sp {
  display: none;
}

@media (max-width: 567px) {
  .sp {
    display: block;
  }
}

/* .btn-area 内の .btn */
.btn-area .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 1.2em;
  width: 20em;
  height: 2.5em;
  border: 2px solid #000;
  border-radius: 25px;
  background-color: #000;
  color: #fff;
  white-space: nowrap;
  font-weight: 700;
  font-size: 22em;
  transition: all 0.3s ease;
}

@media (max-width: 1440px) {
  .btn-area .btn {
    font-size: 18em;
  }
}

@media (max-width: 567px) {
  .btn-area .btn {
    width: 100%;
    font-size: 18em;
  }
}

.btn-area .btn:hover {
  background-color: #fff;
  color: #000;
  opacity: 1;
}

.btn-area .btn:hover .arrow {
  background-image: url("/assets/img/common/btn-arrow-black.svg");
}

.btn-area .btn .arrow {
  display: inline-block;
  margin-left: 1em;
  width: 2.14em;
  height: 100%;
  background-image: url("/assets/img/common/btn-arrow.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 567px) {
  .btn-area .btn .arrow {
    margin-left: 0.7em;
    width: 2.61em;
  }
}

/* application */
.application {
  padding: 80em 0;
  background-image: url("/assets/img/common/animation-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

@media (max-width: 1440px) {
  .application {
    padding: 60em 0;
    background-image: url("/assets/img/common/animation-bg-md.png");
  }
}

@media (max-width: 567px) {
  .application {
    background-image: url("/assets/img/common/animation-bg-sp.png");
  }
}

/* application__title */
.application__title {
  margin-bottom: 65em;
}

@media (max-width: 567px) {
  .application__title {
    margin-bottom: 63em;
  }
}

.application__title h3 {
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 40em;
  line-height: 1.5;
}

@media (max-width: 1440px) {
  .application__title h3 {
    font-size: 30em;
  }
}

@media (max-width: 567px) {
  .application__title h3 {
    font-size: 26em;
    line-height: 1.6;
  }
}

.application__title h3::after {
  position: absolute;
  bottom: -0.9em;
  left: 50%;
  width: 4em;
  height: 3px;
  background-color: #fff;
  content: "";
  transform: translateX(-50%);
}

@media (max-width: 567px) {
  .application__title h3::after {
    width: 6.11em;
  }
}

/* application__txt */
.application__txt {
  margin-bottom: 30em;
}

@media (max-width: 567px) {
  .application__txt {
    margin-bottom: 22em;
  }
}

.application__txt p {
  color: #fff;
  white-space: nowrap;
  font-weight: 700;
  font-size: 25em;
  line-height: 1.6;
}

@media (max-width: 1440px) {
  .application__txt p {
    font-size: 18em;
  }
}

@media (max-width: 567px) {
  .application__txt p {
    font-size: 18em;
  }
}

.application__txt--sub {
  margin-top: 30em;
}

@media (max-width: 567px) {
  .application__txt--sub {
    margin-top: 40em;
  }
}

.application__txt--sub p {
  color: #fff;
  font-weight: 700;
  font-size: 22em;
  opacity: 0.5;
}

@media (max-width: 1440px) {
  .application__txt--sub p {
    font-size: 20em;
  }
}

@media (max-width: 567px) {
  .application__txt--sub p {
    font-size: 14em;
    line-height: 1.57;
  }
}

/* .btn-area .inner */
.btn-area .inner {
  padding: 0;
}

@media (max-width: 567px) {
  .btn-area .inner {
    padding: 20em;
  }
}

/* application__btn */
.application__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 28.77em;
  height: 3em;
  border-radius: 41px;
  background: linear-gradient(
    125deg,
    rgba(20, 187, 187, 1) 0%,
    rgba(50, 188, 230, 1) 100%
  );
  color: #fff;
  font-weight: 700;
  font-size: 27em;
}

@media (max-width: 1440px) {
  .application__btn {
    font-size: 26em;
  }
}

@media (max-width: 567px) {
  .application__btn {
    width: 100%;
    height: 3.72em;
    border-radius: 32px;
    font-size: 18em;
  }
}

.application__btn:hover {
  opacity: 0.6;
}

@media (max-width: 567px) {
  .application__btn:hover {
    opacity: 1;
  }
}

/* application__second */
.application__second {
  padding-top: 78.5em;
  padding-bottom: 87.5em;
  background-image: url("/assets/img/common/application-bg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

@media (max-width: 1440px) {
  .application__second {
    padding-top: 58.87em;
    padding-bottom: 65.62em;
  }
}

@media (max-width: 567px) {
  .application__second {
    padding-top: 51.8em;
    padding-bottom: 50.9em;
    background-image: image-set(
      url("/assets/img/common/application-bg-sp.webp") type("image/webp"),
      url("/assets/img/common/application-bg-sp.jpg") type("image/jpeg")
    );
  }
}

/* application__second__title */
.application__second__title {
  color: #fff;
  white-space: nowrap;
  font-weight: 700;
  font-size: 50em;
  line-height: 1.5;
}

@media (max-width: 1440px) {
  .application__second__title {
    font-size: 37.5em;
  }
}

@media (max-width: 567px) {
  .application__second__title {
    font-size: 34em;
  }
}

/* application__second__subtitle */
.application__second__subtitle {
  margin-top: 8em;
  margin-bottom: 37em;
}

@media (max-width: 1440px) {
  .application__second__subtitle {
    margin-top: 6em;
    margin-bottom: 27.75em;
  }
}

@media (max-width: 567px) {
  .application__second__subtitle {
    margin-top: 16em;
    margin-bottom: 39.2em;
  }
}

.application__second__subtitle span {
  display: block;
  color: #14bbbb;
  font-weight: 700;
  font-size: 16em;
}

@media (max-width: 1440px) {
  .application__second__subtitle span {
    font-size: 12em;
  }
}

@media (max-width: 567px) {
  .application__second__subtitle span {
    font-size: 13em;
  }
}

/* application__second__txt */
.application__second__txt p {
  color: #fff;
  white-space: nowrap;
  font-weight: 700;
  font-size: 42em;
  line-height: 1.76;
}

@media (max-width: 1440px) {
  .application__second__txt p {
    font-size: 31.5em;
  }
}

@media (max-width: 567px) {
  .application__second__txt p {
    font-size: 28em;
    line-height: 1.5;
  }
}

.application__second__txt p span {
  display: inline-block;
  margin-right: 0.5em;
  margin-left: 0.5em;
  padding: 0 0.2em;
  background-color: #fff;
  color: #003848;
}

@media (max-width: 567px) {
  .application__second__txt p span {
    margin-right: 0.3em;
    margin-left: 0;
  }
}

@media (max-width: 567px) {
  .application__second__txt p span:first-of-type {
    margin-bottom: 0.15em;
  }
}

/* ───── sec ───── */
.sec {
  /* fz_vw(1) */
  font-size: 1px;
  font-size: calc((100 / 1920) * 1vw);
}

@media (max-width: 1440px) {
  .sec {
    /* fz_vw_md(1) */
    font-size: calc((100 / 1440) * 1vw);
  }
}

@media (max-width: 567px) {
  .sec {
    /* fz_vw_sp(1) */
    font-size: calc((100 / 414) * 1vw);
  }
}

@media screen and (min-width: 1921px) {
  .sec {
    font-size: 1px;
  }
}

/* .sec .inner */
.sec .inner {
  padding: 0 360em;
}

@media (max-width: 1440px) {
  .sec .inner {
    padding: 0 216em;
  }
}

@media (max-width: 567px) {
  .sec .inner {
    padding: 0 17em;
  }
}

/* .sec .title */
.sec .title {
  position: relative;
  margin-bottom: 80em;
  padding-top: 5em;
  padding-bottom: 5em;
  padding-left: 36em;
  line-height: 1.5;
}

@media (max-width: 1440px) {
  .sec .title {
    margin-bottom: 70em;
    padding-left: 25em;
  }
}

@media (max-width: 567px) {
  .sec .title {
    margin-bottom: 35em;
    padding-left: 25em;
  }
}

.sec .title::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9em;
  height: 100%;
  background-color: #14bbbb;
  content: "";
  transform: translateY(-50%);
}

@media (max-width: 1440px) {
  .sec .title::after {
    width: 7em;
  }
}

@media (max-width: 567px) {
  .sec .title::after {
    width: 6em;
  }
}

.sec .title__top {
  font-weight: 700;
  font-size: 40em;
}

@media (max-width: 1440px) {
  .sec .title__top {
    font-size: 30em;
  }
}

@media (max-width: 567px) {
  .sec .title__top {
    font-size: 24em;
  }
}

.sec .title__bottom {
  display: block;
  color: #14bbbb;
  font-weight: 700;
  font-size: 16em;
}

@media (max-width: 1440px) {
  .sec .title__bottom {
    font-size: 13em;
  }
}

@media (max-width: 567px) {
  .sec .title__bottom {
    font-size: 14em;
  }
}

.sec i {
  color: #00a1a1;
}

/* ───── fv-page ───── */
.fv-page {
  display: flex;
  height: 400em;
  background-image: url("/assets/img/common/fv-page.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1440px) {
  .fv-page {
    background-image: url("/assets/img/common/fv-page-md.png");
  }
}

@media (max-width: 567px) {
  .fv-page {
    height: 200em;
    background-image: url("/assets/img/common/fv-page-sp.png");
  }
}

.fv-page .container {
  position: relative;
  width: 100%;
  height: 100%;
}

.fv-page .title {
  position: absolute;
  top: 50%;
  left: 135em;
  margin-bottom: 0;
  padding-left: 40em;
  color: #fff;
  transform: translateY(-50%);
}

@media (max-width: 567px) {
  .fv-page .title {
    left: 30em;
    top: 45em;
    transform: none;
    width: 100%;
  }
}

.fv-page .title__top {
  font-size: 44em;
}

@media (max-width: 567px) {
  .fv-page .title__top {
    font-size: 30em;
  }
}

.fv-page .title__bottom {
  color: #fff;
  font-weight: 500;
  font-size: 30em;
}

@media (max-width: 567px) {
  .fv-page .title__bottom {
    font-size: 18em;
  }
}

.fv-page .levels {
  position: absolute;
  top: 50%;
  right: 135em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 733em;
  height: 274em;
  border: 4em solid #04c2c2;
  background-color: #fff;
  transform: translateY(-50%);
}

@media (max-width: 1440px) {
  .fv-page .levels {
    right: 113em;
    width: 533em;
    height: 199em;
  }
}

@media (max-width: 567px) {
  .fv-page .levels {
    top: auto;
    bottom: 50em;
    left: 50%;
    align-items: flex-end;
    padding-bottom: 50em;
    width: 390em;
    transform: translateX(-50%);
  }
}

.fv-page .levels .level {
  width: 50%;
}

.fv-page .levels .level:last-of-type {
  margin-right: 0;
}

.fv-page .levels .level .head {
  margin-bottom: 10em;
  text-align: center;
}

.fv-page .levels .level .head p {
  font-weight: 700;
  font-size: 24em;
}

@media (max-width: 1440px) {
  .fv-page .levels .level .head p {
    font-size: 16em;
  }
}

@media (max-width: 567px) {
  .fv-page .levels .level .head p {
    font-size: 20em;
    line-height: 1.3;
  }
}

.fv-page .levels .level .percent {
  text-align: center;
  font-weight: 700;
  font-size: 56em;
}

@media (max-width: 1440px) {
  .fv-page .levels .level .percent {
    font-size: 40em;
  }
}

.fv-page .levels .level .percent span {
  font-size: 0.52em;
}

@media (max-width: 567px) {
  .fv-page .levels .level:last-of-type .head {
    margin-bottom: 18em;
  }
}

/* ───── price ───── */
.price {
  margin-bottom: 100em;
}

@media (max-width: 1440px) {
  .price {
    margin-bottom: 75em;
  }
}

@media (max-width: 567px) {
  .price {
    margin-bottom: 35em;
  }
}

.price .warning-area {
  display: flex;
  flex-direction: column;
}

.price .warning {
  font-weight: 500;
  font-size: 18em;
}

@media (max-width: 1440px) {
  .price .warning {
    font-size: 15em;
  }
}

@media (max-width: 567px) {
  .price .warning {
    font-size: 12em;
  }
}

.price .warning + .warning {
  margin-top: 0.5em;
}

.price .scroll-area {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 10em;
}

@media (max-width: 567px) {
  .price .scroll-area {
    display: flex;
  }
}

.price .scroll-area p {
  font-weight: 500;
  font-size: 16em;
  margin-right: 28%;
}

@media screen and (min-width: 380px) and (max-width: 440px) {
  .price .scroll-area p {
    margin-right: 20%;
  }
}

@media screen and (min-width: 440px) and (max-width: 567px) {
  .price .scroll-area p {
    margin-right: 15%;
  }
}

.price .scroll-area .arrow {
  margin-top: 0;
  position: relative;
  display: inline-block;
  width: 150px;
  height: 4px;
  border-radius: 9999px;
  background-color: #000000;
}

.price .scroll-area .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 30px;
  height: 4px;
  border-radius: 9999px;
  background-color: #000000;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}

.price .warning:first-child {
  margin-top: 1.66em;
}

.price__title {
  margin-bottom: 25em;
}

@media (max-width: 1440px) {
  .price__title {
    margin-bottom: 20em;
  }
}

.price__title h3 {
  text-align: center;
  font-weight: 700;
  font-size: 40em;
}

@media (max-width: 1440px) {
  .price__title h3 {
    font-size: 30em;
  }
}

@media (max-width: 567px) {
  .price__title h3 {
    font-size: 24em;
  }
}

.price .items {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 567px) {
  .price .items {
    overflow-x: scroll;
    padding-right: 28em;
    width: 100vw;
    gap: 10em;
  }
}

.price .items .price__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.price .items .price__item__top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6em;
  min-height: 64em;
  width: 100%;
  color: #fff;
}

@media (max-width: 1440px) {
  .price .items .price__item__top {
    height: 64em;
  }
}

@media (max-width: 567px) {
  .price .items .price__item__top {
    margin-bottom: 10em;
    width: 215em;
    height: 106em;
  }
}

@media (max-width: 567px) {
  .price .items .price__item__top--first {
    width: 79em;
  }
}

.price .items .price__item__top p {
  font-weight: 700;
  font-size: 24em;
}

@media (max-width: 1440px) {
  .price .items .price__item__top p {
    font-size: 24em;
  }
}

@media (max-width: 567px) {
  .price .items .price__item__top p {
    font-size: 26em;
  }
}

.price .items .price__item__top p span {
  display: inline-block;
  margin-left: 1em;
  font-size: 0.53em;
}

@media (max-width: 567px) {
  .price .items .price__item__top p span {
    margin-left: 0.5em;
    font-size: 0.69em;
  }
}

.price .items .price__item__txt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6em;
  min-height: 54em;
  width: 100%;
  background-color: #fff;
}

@media (max-width: 567px) {
  .price .items .price__item__txt {
    margin-bottom: 10em;
    min-height: 96em;
  }
}

.price .items .price__item__txt:last-of-type {
  margin-bottom: 0;
}

.price .items .price__item__txt p {
  font-weight: 700;
  font-size: 18em;
}

@media (max-width: 1440px) {
  .price .items .price__item__txt p {
    font-size: 18em;
  }
}

@media (max-width: 567px) {
  .price .items .price__item__txt p {
    text-align: center;
    font-size: 22em;
  }

  .price .items .price__item__txt--first p {
    text-align: center;
    font-size: 16em;
  }
}

.price .items .price__item__txt p span {
  margin-left: 0.5em;
  font-size: 0.6em;
}

@media (max-width: 567px) {
  .price .items .price__item__txt p span {
    margin-left: 0;
  }
}

.price .items .price__item .column {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 30em 0;
  min-height: 152.34em;
}

.price .items .price__item .column dl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.7em;
  width: 12em;
  font-weight: 700;
  font-size: 21em;
}

.price .items .price__item .column dl:last-of-type {
  margin-bottom: 0;
}

.price .items .price__item .column dl dt {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  margin-right: 0.95em;
  width: 7.5em;
}

.price .items .price__item .column dl dd {
  width: calc(100% - 7.5em - 0.95em);
}

.price .items .price__item__plan {
  margin: 6em;
  width: 490em;
}

@media (max-width: 1440px) {
  .price .items .price__item__plan {
    width: 413em;
  }
}

@media (max-width: 567px) {
  .price .items .price__item__plan {
    width: 490em;
  }
}

.price .items .price__item__title {
  position: sticky;
  left: -2px;
  z-index: 10;
  width: calc(100% - 490em - 490em);
  background-color: #f9f9f9;
}

@media (max-width: 1440px) {
  .price .items .price__item__title {
    width: calc(100% - 413em - 413em);
  }
}

@media (max-width: 567px) {
  .price .items .price__item__title {
    width: calc(100% - 158em - 158em);
  }
}

.price .price__item__top {
  background-color: #000;
}

.price .price__item__txt {
  background-color: transparent;
}

.price .price__item__txt > span {
  position: absolute;
  top: -0.3em;
  right: 0.4em;
  display: block;
  font-weight: 500;
  font-size: 14em;
}

@media (max-width: 1440px) {
  .price .price__item__txt > span {
    top: -0.3em;
    right: -0.1em;
    font-size: 12em;
  }
}

@media (max-width: 567px) {
  .price .price__item__txt > span {
    top: 0.8em;
    right: -0.3em;
    font-size: 12em;
  }
}

.price .price__item__txt p {
  font-weight: 700;
  font-size: 18em;
}

@media (max-width: 567px) {
  .price .price__item__txt p {
    font-size: 16em;
    line-height: 1.375;
  }
}

.price .items .price__item__title .price__item__top {
  background-color: #f9f9f9;
}

.price .items .price__item__title .price__item__txt {
  background-color: #f9f9f9;
}

/* ───── End of price ───── */
.price-sp {
  margin-bottom: 50em;
}

.price-sp > p {
  font-weight: 500;
  font-size: 12em;
}

.price-sp__title {
  margin-bottom: 20em;
}

.price-sp__title h3 {
  font-weight: 700;
  font-size: 20em;
}

.price-sp .plan {
  margin-bottom: 40em;
}

.price-sp .plan:last-of-type {
  margin-bottom: 0;
}

.price-sp .plan__head {
  margin-bottom: 10em;
  height: 110em;
  background-color: #000;
  color: #fff;
}

.price-sp .plan__head dl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.price-sp .plan__head dl dt {
  text-align: center;
  font-weight: 700;
  font-size: 26em;
  line-height: 1.27;
}

.price-sp .plan__head dl dt span {
  display: block;
  font-size: 0.54em;
}

.price-sp .plan__head dl dd {
  margin-left: 0.6em;
  font-weight: 700;
  font-size: 18em;
}

.price-sp .plan__list > dl {
  display: flex;
  margin-bottom: 10em;
}

.price-sp .plan__list > dl > dt {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96em;
  width: calc(100% - 180em);
}

.price-sp .plan__list > dl > dt > span {
  display: inline-block;
  font-weight: 700;
  font-size: 16em;
}

.price-sp .plan__list > dl > dt > dl {
  display: flex;
  align-items: center;
}

.price-sp .plan__list > dl > dt > dl > dt {
  margin-right: 10em;
}

.price-sp .plan__list > dl > dt > dl > dt > span {
  display: inline-block;
  font-weight: 700;
  font-size: 14em;
  line-height: 1.5;
}

.price-sp .plan__list > dl > dt > dl > dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-sp .plan__list > dl > dt > dl > dd p {
  margin-bottom: 1em;
  font-weight: 700;
  font-size: 13em;
}

.price-sp .plan__list > dl > dt > dl > dd p:last-of-type {
  margin-bottom: 0;
}

.price-sp .plan__list > dl > dd {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96em;
  width: 180em;
  background-color: #fff;
}

.price-sp .plan__list > dl > dd > p {
  text-align: center;
  font-weight: 700;
  font-size: 26em;
}

.price-sp .plan__list > dl > dd > p > .asterisk {
  position: absolute;
  top: 0.6em;
  right: 1.5em;
}

.price-sp .plan__list > dl > dd > p > span {
  margin-left: 0.5em;
  font-size: 0.615em;
}

.price-sp .plan__list > dl > dd > p > .ml0 {
  margin-left: 0;
}

.price-sp .plan__list > dl > dd > ul > li {
  margin-bottom: 0.4em;
  font-weight: 700;
  font-size: 26em;
}

.price-sp .plan__list > dl > dd > ul > li:last-of-type {
  margin-bottom: 0;
}

.price-sp .plan__list > dl > dd > ul > li > span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.5em;
}

/* ───── white-area ───── */
.white-area {
  padding: 80em 110em 125em;
  background-color: #fff;
}

@media (max-width: 1440px) {
  .white-area {
    padding: 70em;
  }
}

@media (max-width: 567px) {
  .white-area {
    padding: 50em 10em;
  }
}

/* ───── sec-title (共通) ───── */
.sec-title {
  position: relative;
  margin-bottom: 56em;
  text-align: center;
}

.sec-title__under-text {
  width: 100%;
  background: linear-gradient(
    90deg,
    #00A1A1 0%,
    #328CE6 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 130em;
  line-height: 1.2;
  overflow: visible;
  opacity: 0.05;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 567px) {
  .sec-title__under-text {
    font-size: 60em;
  }
}

.sec-title__text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  font-weight: bold;
  font-size: 48em;
  color: #00526B;
  transform: translate(-50%, -50%);
}

@media (max-width: 567px) {
  .sec-title__text {
    font-size: 24em;
  }
}

/* ───── question ───── */
.question {
  margin-bottom: 160em;
}

@media (max-width: 1440px) {
  .question {
    margin-bottom: 105em;
  }
}

@media (max-width: 567px) {
  .question {
    margin-bottom: 50em;
  }
}

.question .accordion {
  margin-bottom: 20em;
}

.question .accordion .accordion-hidden {
  display: none;
}

.question .accordion .accordion-open {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.8em 2em 0.8em 0.8em;
  border-radius: 29px;
  background-color: #f5f5f5;
  font-weight: bold;
  font-size: 20em;
  line-height: 1.35;
}

@media (max-width: 567px) {
  .question .accordion .accordion-open {
    padding: 1em 2.66em 1em 2.66em;
    border-radius: 12px;
    font-size: 18em;
    line-height: 1.5;
  }
}

.question .accordion .accordion-open:hover {
  cursor: pointer;
}

.question .accordion .accordion-open span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5em;
  width: 1.55em;
  height: 1.55em;
  border-radius: 50%;
  background: linear-gradient(
    125deg,
    rgba(20, 187, 187, 1) 0%,
    rgba(50, 188, 230, 1) 100%
  );
}

@media (max-width: 567px) {
  .question .accordion .accordion-open span:first-child {
    position: absolute;
    top: 50%;
    left: 0.55em;
    margin-right: 0;
    width: 1.27em;
    height: 1.27em;
    transform: translateY(-50%);
  }
}

.question .accordion .accordion-open span:first-child i {
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 0.8em;
}

@media (max-width: 567px) {
  .question .accordion .accordion-open span:first-child i {
    font-size: 0.66em;
  }
}

.question .accordion .accordion-open .plus {
  position: absolute;
  top: 50%;
  right: 0.68em;
  width: 1.55em;
  height: 1.55em;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}

.question .accordion .accordion-open .plus::before,
.question .accordion .accordion-open .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.question .accordion .accordion-open .plus::after {
  transform: translate(-50%, -50%) rotate(-450deg);
  transform-origin: center center;
}

.question .accordion .accordion-hidden:checked + .accordion-open .plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
}

.question .accordion .accordion-close {
  overflow: hidden;
  padding: 0;
  height: 0;
  opacity: 0;
  transition: all ease 0.3s;
}

.question
  .accordion
  .accordion-hidden:checked
  + .accordion-open
  + .accordion-close {
  padding: 0.8em 0.8em 0.8em 3em;
  height: auto;
  font-weight: 500;
  font-size: 20em;
  line-height: 1.5;
  opacity: 1;
}

@media (max-width: 567px) {
  .question
    .accordion
    .accordion-hidden:checked
    + .accordion-open
    + .accordion-close {
    padding: 1em;
    font-size: 18em;
  }
}

/* ───── archive ───── */
.archive {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 567px) {
  .archive {
    flex-direction: column;
  }
}

.archive__item {
  position: relative;
  display: block;
  overflow: hidden;
  margin-right: 30em;
  margin-bottom: 90em;
  width: calc(100% / 3 - 30em * 2 / 3);
  aspect-ratio: 16/9;
}

@media (max-width: 1440px) {
  .archive__item {
    margin-right: 25em;
    margin-bottom: 75em;
    width: calc(100% / 3 - 25em * 2 / 3);
  }
}

@media (max-width: 567px) {
  .archive__item {
    margin-right: 0;
    margin-bottom: 50em;
    width: 100%;
  }
}

.archive__item:nth-of-type(3n) {
  margin-right: 0;
}

.archive__item img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.archive__item__txt {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 1em;
  color: #fff;
  font-weight: 500;
  font-size: 21em;
  line-height: 1.28;
}

@media (max-width: 1440px) {
  .archive__item__txt {
    font-size: 18em;
  }
}

@media (max-width: 567px) {
  .archive__item__txt {
    font-size: 21em;
  }
}

/* ---------------------
  counseling features
--------------------- */

.counseling__features {
  text-align: center;
  margin-bottom: 48em;
}

.counseling__features-lead {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  padding: 0 0.5em;
  background-color: #fff;
  font-size: 20em;
  font-weight: 700;
  color: #333;
  transform: translateY(50%);
}
.counseling__features-lead-em{
  font-size: 2em;
}

.counseling__features-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20em;
  list-style: none;
  padding: 32em 40em;
  margin: 0 auto;
  border: 1px solid #00526B;
  max-width: 700em;
  width: 100%;
  box-sizing: border-box;
}

.counseling__features-item {
  display: flex;
  align-items: center;
  font-size: 20em;
  font-weight: 700;
  color: #00526B;
}

.counseling__features-item img {
  width: 1.6em;
  height: 1.6em;
  margin-right: 0.2em;
}

@media (max-width: 567px) {
  .counseling__features {
    margin-bottom: 30em;
  }

  .counseling__features-lead {
    font-size: 13em;
  }

  .counseling__features-list {
    padding: 16em 16em;
    gap: 8em;
  }

  .counseling__features-item {
    font-size: 12em;
    white-space: nowrap;
  }

  .counseling__features-item img {
    width: 1.84em;
    height: 1.84em;
  }
}

/* ---------------------
  steps
--------------------- */
.steps {
  display: flex;
  justify-content: center;
  gap: 80em;
  margin-bottom: 70em;
  width: 100%;
  max-width: 800em;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 567px) {
  .steps {
    margin-bottom: 35em;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: 0;
    width: 100%;
  }
}

.steps .step {
  text-align: center;
  flex: 1;
  width: 33.33%;
  max-width: 260em;
  padding: 0 15em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 567px) {
  .steps .step {
    width: 182em;
    min-width: auto;
    flex: 0 0 182em;
    max-width: none;
    margin-bottom: 0;
    padding: 0 5em;
  }
}

.steps .step__title {
  margin-bottom: 18em;
}

@media (max-width: 567px) {
  .steps .step__title {
    margin-bottom: 10em;
  }
}

.steps .step__title p {
  font-weight: 700;
  font-size: 24em;
  line-height: 1.125;
}

@media (max-width: 567px) {
  .steps .step__title p {
    font-size: 14em;
  }
}

.steps .step__icon {
  margin-bottom: 20em;
}

@media (max-width: 567px) {
  .steps .step__icon {
    margin-bottom: 10em;
  }
}

.steps .step__icon img {
  display: block;
  margin: 0 auto;
  width: 88em;
}

@media (max-width: 567px) {
  .steps .step__icon img {
    width: 44em;
  }
}

.steps .step__txt p {
  white-space: nowrap;
  font-weight: 700;
  font-size: 22em;
  line-height: 2;
}

@media (max-width: 567px) {
  .steps .step__txt p {
    font-size: 14em;
    line-height: 1.5;
  }
  .steps .step__txt .sp {
    display: none;
  }
}

/* ---------------------
  explanation
--------------------- */
.explanation {
  margin-bottom: 80em;
}

@media (max-width: 567px) {
  .explanation {
    margin-bottom: 20em;
    margin-left: 0;
  }
}

.explanation__title {
  margin-bottom: 14em;
}

.explanation__title p {
  font-weight: 700;
  font-size: 30em;
}

@media (max-width: 567px) {
  .explanation__title p {
    font-size: 24em;
  }
}

.explanation__txt {
  margin-bottom: 14em;
}

.explanation__txt p {
  font-weight: 700;
  font-size: 24em;
  line-height: 1.5;
}

.explanation__sub p {
  font-weight: 500;
  font-size: 18em;
  line-height: 1.5;
}

.explanation__sub__strong {
  color: red;
  font-weight: 600;
}

/* ---------------------
  annotation
--------------------- */
.annotation {
  font-size: 12em;
}

/* ---------------------
  loading
--------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  text-align: center;
  z-index: 99999;
  background-color: rgba(255, 255, 255);
}

.loading__text {
  margin-top: 1em;
  font-weight: 300;
  font-size: 16px;
}

.loading__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 250px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading__svg {
  width: 100px;
  animation: loading 3s linear infinite;
}

.loading__svg-circle {
  animation: loading-circle 2s linear infinite;
  /* strokeプロパティ内の各設定 */
  stroke-width: 10;
  stroke-dashoffset: 0;
  stroke-dasharray: 300;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  stroke: #54bbbb;
  fill: transparent;
}

@keyframes loading {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading-circle {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -600;
  }
}

/* ───── footer--simple ───── */
.footer--simple {
  background-color: #f5f5f5;
}

.footer--simple .container {
  width: 100%;
  max-width: 800em;
  margin: 0 auto;
  padding: 50em 20em 50em;
  overflow: visible;
}

.footer--simple__links {
  display: flex;
  justify-content: center;
  gap: 60em;
  padding-bottom: 24em;
}

.footer--simple__links a {
  color: #333;
  text-decoration: underline;
  font-weight: 500;
  font-size: 18em;
}

.footer--simple__bottom {
  text-align: center;
}

.footer--simple__bottom .copy-right {
  color: #333;
  font-weight: 500;
  font-size: 18em;
}

@media (max-width: 567px) {
  .footer--simple .container {
    padding: 40em 20em 40em;
  }

  .footer--simple__links {
    gap: 30em;
  }

  .footer--simple__links a {
    font-size: 14em;
  }

  .footer--simple__bottom .copy-right {
    font-size: 12em;
  }
}