@media screen {
  html:not(.no-js) {
    /**
    * Fade animations:
    * fade
    * fade-up, fade-down, fade-left, fade-right
    * fade-up-right, fade-up-left, fade-down-right, fade-down-left
    */
    /**
    * Zoom animations:
    * zoom-in, zoom-in-up, zoom-in-down, zoom-in-left, zoom-in-right
    * zoom-out, zoom-out-up, zoom-out-down, zoom-out-left, zoom-out-right
    */
    /**
    * Slide animations
    */
    /**
    * Flip animations:
    * flip-left, flip-right, flip-up, flip-down
    */
  }
  html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform;
  }
  html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: none;
  }
  html:not(.no-js) [data-aos=fade-up] {
    transform: translate3d(0, 50px, 0);
  }
  html:not(.no-js) [data-aos=fade-down] {
    transform: translate3d(0, -50px, 0);
  }
  html:not(.no-js) [data-aos=fade-right] {
    transform: translate3d(-50px, 0, 0);
  }
  html:not(.no-js) [data-aos=fade-left] {
    transform: translate3d(50px, 0, 0);
  }
  html:not(.no-js) [data-aos=fade-up-right] {
    transform: translate3d(-50px, 50px, 0);
  }
  html:not(.no-js) [data-aos=fade-up-left] {
    transform: translate3d(50px, 50px, 0);
  }
  html:not(.no-js) [data-aos=fade-down-right] {
    transform: translate3d(-50px, -50px, 0);
  }
  html:not(.no-js) [data-aos=fade-down-left] {
    transform: translate3d(50px, -50px, 0);
  }
  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, transform;
  }
  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  html:not(.no-js) [data-aos=zoom-in] {
    transform: scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-up] {
    transform: translate3d(0, 50px, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-down] {
    transform: translate3d(0, -50px, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-right] {
    transform: translate3d(-50px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-left] {
    transform: translate3d(50px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-out] {
    transform: scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-up] {
    transform: translate3d(0, 50px, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-down] {
    transform: translate3d(0, -50px, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-right] {
    transform: translate3d(-50px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-left] {
    transform: translate3d(50px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos^=slide][data-aos^=slide] {
    transition-property: transform;
    visibility: hidden;
  }
  html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  html:not(.no-js) [data-aos=slide-up] {
    transform: translate3d(0, 100%, 0);
  }
  html:not(.no-js) [data-aos=slide-down] {
    transform: translate3d(0, -100%, 0);
  }
  html:not(.no-js) [data-aos=slide-right] {
    transform: translate3d(-100%, 0, 0);
  }
  html:not(.no-js) [data-aos=slide-left] {
    transform: translate3d(100%, 0, 0);
  }
  html:not(.no-js) [data-aos^=flip][data-aos^=flip] {
    backface-visibility: hidden;
    transition-property: transform;
  }
  html:not(.no-js) [data-aos=flip-left] {
    transform: perspective(2500px) rotateY(-100deg);
  }
  html:not(.no-js) [data-aos=flip-left].aos-animate {
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-aos=flip-right] {
    transform: perspective(2500px) rotateY(100deg);
  }
  html:not(.no-js) [data-aos=flip-right].aos-animate {
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-aos=flip-up] {
    transform: perspective(2500px) rotateX(-100deg);
  }
  html:not(.no-js) [data-aos=flip-up].aos-animate {
    transform: perspective(2500px) rotateX(0);
  }
  html:not(.no-js) [data-aos=flip-down] {
    transform: perspective(2500px) rotateX(100deg);
  }
  html:not(.no-js) [data-aos=flip-down].aos-animate {
    transform: perspective(2500px) rotateX(0);
  }
}
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

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: none;
}

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

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

legend {
  *margin-left: -7px;
  padding: 0;
  border: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  *overflow: visible;
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  *width: 13px;
  *height: 13px;
  padding: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

a {
  outline: none;
}

:root {
  --color-blue: #5eb8ff;
  --color-green: #4298b5;
  --color-black: #222222;
  --color-grey: #D9D9D9;
  --color-grey1: #898989;
  --color-white: #ffffff;
  --color-orange: #FF6B00;
  --color-primary: #2CABDB;
}

/*
* Display flex
*/
html {
  font-size: 10px;
  font-size: 0.5208333333vw;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}

body {
  background-color: #f8f6f2;
  font-family: "Noto Sans JP", sans-serif;
  -ms-overflow-style: none;
  scrollbar-width: none;
  box-sizing: border-box;
}
body::-webkit-scrollbar {
  display: none;
}

.container {
  max-width: 1490px;
  width: 78%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: 90%;
  }
}

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

a {
  cursor: pointer;
  text-decoration: none;
  transition: all 300ms;
}
a:hover {
  opacity: 0.6;
}

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

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

.header {
  display: flex;
  align-items: center;
  height: 80px;
  background-color: var(--color-white);
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 197px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 12rem;
  }
}
.header__logo img {
  vertical-align: bottom;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .header__nav ul {
    gap: 0.9rem;
  }
}
.header__nav ul a {
  color: var(--color-black);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .header__nav ul a {
    font-size: 1.2rem;
  }
}
.header__nav ul ul {
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .header__nav ul ul {
    gap: 1.3rem;
  }
}
.header__nav ul ul .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 44px;
  padding: 10px 24px;
  border: solid 2px var(--color-primary);
  border-radius: 100vh;
  line-height: 1.3;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .header__nav ul ul .nav-link {
    width: 8rem;
    height: 3.4rem;
    padding: unset;
  }
}
.header__nav ul ul .nav-link.login {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1;
  background-color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .header__nav ul ul .nav-link.login {
    font-size: 1.4rem;
  }
}
.header__nav ul ul .nav-link.register {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #2cabdb 0%, #8b9bce 100%);
  border: unset;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header__nav ul ul .nav-link.register {
    font-size: 1.4rem;
  }
}

.hero {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .hero {
    margin-top: 4rem;
  }
}
.hero__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .hero__content {
    flex-direction: column;
    gap: 4rem;
  }
}
.hero__sentence {
  flex: 1;
}
.hero__sentence h1 {
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.023em;
}
@media screen and (max-width: 767px) {
  .hero__sentence h1 {
    font-size: 2.8rem;
  }
}
.hero__sentence a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28.4rem;
  height: 7.4rem;
  margin-top: 5.6rem;
  color: var(--color-white);
  font-size: 2.6rem;
  font-weight: 500;
  background: linear-gradient(90deg, #2cabdb 0%, #8b9bce 100%);
  border-radius: 100vh;
}
@media screen and (max-width: 767px) {
  .hero__sentence a {
    width: 16rem;
    height: 5rem;
    margin-top: 2.3rem;
    font-size: 1.6rem;
  }
}
.hero__image {
  width: 75rem;
}
@media screen and (max-width: 767px) {
  .hero__image {
    width: 100%;
  }
}

.about {
  margin-top: -6rem;
  padding-top: 12.8rem;
  padding-bottom: 12rem;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: -6rem;
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}
.about h2 {
  transform: translateX(2rem);
  width: 49.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about h2 {
    transform: unset;
    width: 22rem;
  }
}
.about p {
  width: fit-content;
  margin-top: 3.2rem;
  margin-right: auto;
  margin-left: auto;
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2.2;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .about p {
    margin-top: 2.5rem;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.about__slider {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .about__slider {
    margin-top: 2.7rem;
  }
}

.service {
  padding-top: 12rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .service {
    padding-top: 7.2rem;
    padding-bottom: 7.2rem;
  }
}
.service h2 {
  color: var(--color-primary);
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.023em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service h2 {
    font-size: 2.4rem;
  }
}
.service__table {
  width: 108rem;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-white);
  border-radius: 2.4rem;
  padding: 6.4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .service__table {
    width: 100%;
    margin-top: 3.6rem;
    padding: 2.4rem;
  }
}
.service__table__item {
  display: flex;
  gap: 6.8rem;
  margin-top: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: solid 1px #b4b4b4;
}
@media screen and (max-width: 767px) {
  .service__table__item {
    gap: 4.2rem;
    margin-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}
.service__table__item:first-child {
  margin-top: 0;
}
.service__table__item:last-child {
  padding-bottom: unset;
  border-bottom: unset;
}
.service__table__item p {
  font-size: 2.4rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .service__table__item p {
    font-size: 1.6rem;
  }
}
.service__table__item p:first-child {
  width: 13rem;
}
@media screen and (max-width: 767px) {
  .service__table__item p:first-child {
    width: 7rem;
  }
}
.service__table__item p span {
  display: inline-block;
  margin-top: 1.6rem;
}
.service__table__item p span:first-of-type {
  margin-top: 0;
}

.contact {
  padding-top: 6.4rem;
  padding-bottom: 8rem;
  background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 7.2rem;
    padding-bottom: 7.2rem;
  }
}
.contact h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.6;
  letter-spacing: 0.023em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact h2 {
    font-size: 2.4rem;
  }
}
.contact h2 + p {
  margin-top: 2.4rem;
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.023em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact h2 + p {
    margin-top: 2.8rem;
    font-size: 1.6rem;
    text-align: unset;
  }
}
.contact__tel {
  margin-top: 4.8rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact__tel {
    margin-top: 6rem;
  }
}
.contact__tel__title {
  color: var(--color-white);
  font-size: 2.2rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .contact__tel__title {
    font-size: 1.8rem;
  }
}
.contact__tel a {
  display: inline-block;
  margin-top: 2.8rem;
  color: var(--color-white);
  font-family: "Roboto", sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .contact__tel a {
    margin-top: 2rem;
    font-size: 3.6rem;
    pointer-events: auto;
  }
}
.contact__tel__time {
  margin-top: 0.4rem;
  color: var(--color-white);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .contact__tel__time {
    font-size: 1.2rem;
  }
}
.contact__email {
  margin-top: 4.8rem;
  text-align: center;
  font-weight: 700;
}
.contact__email__title {
  color: var(--color-white);
  font-size: 2.2rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .contact__email__title {
    font-size: 1.8rem;
  }
}
.contact__email__link {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 1rem;
  width: fit-content;
  margin-top: 2.8rem;
  margin-right: auto;
  margin-left: auto;
  padding: 2.4rem 3.2rem;
  background-color: #ffea37;
  border-radius: 1.2rem;
  box-shadow: 0 1rem 0 0 #fed037bd;
}
@media screen and (max-width: 767px) {
  .contact__email__link {
    gap: 0.4rem;
    margin-top: 2rem;
    padding: 2rem 2.8rem;
    box-shadow: 0 0.8rem 0 0 #fed037bd;
  }
}
.contact__email__link p {
  color: var(--color-black);
  font-size: 2.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact__email__link p {
    font-size: 2rem;
  }
}
.contact__email__icon {
  width: 3rem;
}
@media screen and (max-width: 767px) {
  .contact__email__icon {
    width: 2rem;
  }
}
.contact__email__icon img {
  vertical-align: bottom;
}

.company {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 7.2rem;
    padding-bottom: 7.2rem;
  }
}
.company h2 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.023em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company h2 {
    font-size: 2.4rem;
  }
}
.company__table {
  width: 87.2rem;
  margin-top: 3.2rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .company__table {
    width: 100%;
  }
}
.company__table__item {
  display: flex;
  gap: 12.8rem;
  padding-top: 1.6rem;
  padding-right: 6.7rem;
  padding-bottom: 1.6rem;
  padding-left: 6.7rem;
  border-bottom: solid 1px #d8d8db;
}
@media screen and (max-width: 767px) {
  .company__table__item {
    flex-direction: column;
    gap: 0.8rem;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
}
.company__table__item:first-child {
  border-top: solid 1px #d8d8db;
}
.company__table__item p {
  font-size: 1.8rem;
  letter-spacing: 0.023em;
  line-height: 1.6;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .company__table__item p {
    font-size: 1.6rem;
  }
}
.company__table__item p:first-child {
  width: 13.7rem;
}
@media screen and (max-width: 767px) {
  .company__table__item p:first-child {
    width: 100%;
    font-weight: 700;
  }
}
.company__table__item a {
  color: var(--color-black);
  pointer-events: none;
}

.footer {
  padding-top: 8rem;
  padding-bottom: 2.4rem;
  background-color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 4.2rem;
  }
}
.footer__logo {
  width: 26rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 16rem;
  }
}
.footer nav {
  margin-top: 3.1rem;
}
@media screen and (max-width: 767px) {
  .footer nav {
    margin-top: 4rem;
  }
}
.footer nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .footer nav ul {
    flex-wrap: wrap;
    gap: 1.6rem;
  }
}
.footer nav ul a {
  color: var(--color-black);
  font-size: 1.6rem;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  .footer nav ul a {
    font-size: 1.2rem;
  }
}
.footer__copyright {
  margin-top: 6.6rem;
  color: var(--color-black);
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 1rem;
  }
}

.procedure {
  max-width: 99rem;
  width: 90%;
  margin: 0 auto;
  padding: 12rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .procedure {
    padding: 7.2rem 0 7.2rem;
  }
}
.procedure .none-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .procedure .none-pc {
    display: block;
  }
}
.procedure h1 {
  font-size: 4.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #2cabdb 0%, #8b9bce 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .procedure h1 {
    font-size: 2.8rem;
    line-height: 1.8;
  }
}
.procedure h1 + p {
  margin-top: 7rem;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .procedure h1 + p {
    margin-top: 1.6rem;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: unset;
  }
}
.procedure h2 {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .procedure h2 {
    font-size: 2rem;
  }
}
.procedure__link {
  display: flex;
  gap: 2.1rem;
  align-items: center;
  justify-content: center;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .procedure__link {
    gap: 1.7rem;
    margin-top: 4rem;
  }
}
.procedure__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48.4rem;
  height: 8rem;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 2rem;
  transition: all 300ms;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .procedure__link a {
    width: 100%;
    height: 7.2rem;
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center;
  }
}
.procedure__link a:first-of-type {
  color: #ffffff;
  background: linear-gradient(90deg, #2cabdb 0%, #8b9bce 100%);
}
.procedure__link a:last-of-type {
  color: #c2c2c2;
  border: 3px solid #c2c2c2;
  background-color: #ffffff;
}
.procedure__link a:hover {
  opacity: 0.6;
}
.procedure__flow {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .procedure__flow {
    margin-top: 4rem;
  }
}
.procedure__flow > p {
  margin-top: 1.6rem;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .procedure__flow > p {
    font-size: 1.6rem;
  }
}
.procedure__flow__item {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 3.2rem;
  gap: 5.6rem;
  padding: 4rem 4.8rem;
  background-color: #ffffff;
  border-radius: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .procedure__flow__item {
    flex-direction: column;
    align-items: unset;
    gap: 2.4rem;
    margin-top: 2.4rem;
    padding: 2rem 2.8rem;
  }
}
.procedure__flow__title {
  display: flex;
  align-items: center;
  gap: 5.7rem;
}
@media screen and (max-width: 767px) {
  .procedure__flow__title {
    gap: 3.6rem;
  }
}
.procedure__flow__title p {
  font-size: 2.6rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .procedure__flow__title p {
    font-size: 1.8rem;
  }
}
.procedure__flow__image {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .procedure__flow__image {
    width: 3.2rem;
  }
}
.procedure__flow__sentence {
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .procedure__flow__sentence {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.procedure__flow__arrow {
  position: absolute;
  z-index: 1;
  bottom: 2.2rem;
  left: 5.8rem;
  transform: translateY(100%);
  width: 2.8rem;
}
@media screen and (max-width: 767px) {
  .procedure__flow__arrow {
    bottom: 1.2rem;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 2rem;
  }
}

.policy {
  max-width: 149rem;
  width: 78%;
  margin: 0 auto;
  padding: 12rem 0 16rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .policy {
    width: 90%;
    padding: 7.2rem 0 7.2rem;
  }
}
.policy .none-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .policy .none-pc {
    display: block;
  }
}
.policy p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .policy p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.policy h1 {
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .policy h1 {
    font-size: 2.6rem;
  }
}
.policy h1 + p {
  margin-top: 4.8rem;
}
.policy h2 {
  margin-top: 4rem;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .policy h2 {
    margin-top: 3.2rem;
    font-size: 2rem;
  }
}
.policy h2 + p {
  margin-top: 0.8rem;
}
.policy h3 {
  margin-top: 2.4rem;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .policy h3 {
    font-size: 1.8rem;
  }
}
.policy h3 + p {
  margin-top: 0.8rem;
}
.policy__admin {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 1.2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .policy__admin {
    row-gap: 0.9rem;
  }
}
.policy__admin ul {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .policy__admin ul {
    align-items: baseline;
    gap: 2rem;
  }
}
.policy__admin ul li {
  font-size: 1.8rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .policy__admin ul li {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.policy__admin ul li:first-child {
  width: 7.2rem;
}
@media screen and (max-width: 767px) {
  .policy__admin ul li:first-child {
    width: 7rem;
  }
}
.policy__admin ul li a {
  pointer-events: none;
}

.terms {
  max-width: 149rem;
  width: 78%;
  margin: 0 auto;
  padding: 12rem 0 16rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .terms {
    width: 90%;
    padding: 7.2rem 0 7.2rem;
  }
}
.terms h1 {
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .terms h1 {
    font-size: 2.6rem;
  }
}
.terms h1 + p {
  margin-top: 4.8rem;
}
.terms h2 {
  margin-top: 4rem;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .terms h2 {
    margin-top: 3.2rem;
    font-size: 2rem;
  }
}
.terms h2 + p {
  margin-top: 0.8rem;
}
.terms p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .terms p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.terms ul {
  margin-top: 0.8rem;
}
.terms ul li {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .terms ul li {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.terms__date {
  margin-top: 4rem;
}

.specified {
  max-width: 149rem;
  width: 78%;
  margin: 0 auto;
  padding: 12rem 0 16rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .specified {
    width: 90%;
    padding: 7.2rem 0 7.2rem;
  }
}
.specified .none-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .specified .none-pc {
    display: block;
  }
}
.specified h1 {
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .specified h1 {
    font-size: 2.6rem;
  }
}
.specified h2 {
  margin-top: 2.4rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .specified h2 {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.specified h2:first-of-type {
  margin-top: 4.8rem;
}
.specified h2 + p {
  margin-top: 0.8rem;
}
.specified p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .specified p {
    font-size: 1.6rem;
  }
}
.specified a {
  color: var(--color-black);
}
.specified a.tel {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .specified a.tel {
    pointer-events: auto;
  }
}

.registration {
  max-width: 99rem;
  width: 90%;
  margin: 0 auto;
  padding: 12rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .registration {
    padding: 7.2rem 0 7.2rem;
  }
}
.registration .none-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .registration .none-pc {
    display: block;
  }
}
.registration h1 {
  font-size: 4.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #2cabdb 0%, #8b9bce 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .registration h1 {
    font-size: 2.8rem;
    line-height: 1.8;
  }
}
.registration h1 + p {
  margin-top: 7rem;
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .registration h1 + p {
    margin-top: 1.6rem;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: unset;
  }
}
.registration h2 {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .registration h2 {
    font-size: 2rem;
  }
}
.registration__link {
  display: flex;
  gap: 2.1rem;
  align-items: center;
  justify-content: center;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .registration__link {
    gap: 1.7rem;
    margin-top: 4rem;
  }
}
.registration__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48.4rem;
  height: 8rem;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 2rem;
  transition: all 300ms;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .registration__link a {
    width: 100%;
    height: 7.2rem;
    font-size: 1.8rem;
    line-height: 1.2;
    text-align: center;
  }
}
.registration__link a:first-of-type {
  color: #c2c2c2;
  border: 3px solid #c2c2c2;
  background-color: #ffffff;
}
.registration__link a:last-of-type {
  color: #ffffff;
  background: linear-gradient(90deg, #2cabdb 0%, #8b9bce 100%);
}
.registration__link a:hover {
  opacity: 0.6;
}
.registration__text {
  margin-top: 4rem;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .registration__text {
    font-size: 1.8rem;
  }
}
.registration__flow {
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .registration__flow {
    margin-top: 4rem;
  }
}
.registration__flow p {
  margin-top: 1.6rem;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .registration__flow p {
    font-size: 1.6rem;
  }
}
.registration__flow p span {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .registration__flow p span {
    font-size: 1.2rem;
  }
}
.registration__flow__image {
  margin-top: 1.6rem;
}