@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  scroll-behavior: smooth;
  font-size: 10px;
}
@media (max-width: 1050px) {
  html {
    font-size: 0.9523809524vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    -webkit-transition: none;
    transition: none;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  width: 100%;
}

.l-header {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(15.7142857143vw, 220px);
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 11rem;
  }
}

.l-header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-header__name {
  z-index: 600;
  position: relative;
  height: inherit;
  font-weight: inherit;
}

.l-header__name::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 52vw;
  height: min(15.7142857143vw, 220px);
  margin-left: calc((50vw - 100%) * -1);
  background-color: #fff;
  border-bottom-right-radius: min(7.8571428571vw, 110px);
}
@media screen and (max-width: 767px) {
  .l-header__name::before {
    width: 54vw;
    height: 11rem;
    margin-left: calc((54vw - 100%) * -1);
    border-bottom-right-radius: 6rem;
  }
}

.l-header__name-link {
  padding-inline: min(2.1428571429vw, 30px);
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-header__name-link {
    padding-inline: 2rem;
  }
}

.l-header__name-text {
  font-size: min(1vw, 14px);
  line-height: 1.43;
}
@media screen and (max-width: 767px) {
  .l-header__name-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.l-header__name-logo {
  margin-top: min(0.8571428571vw, 12px);
  width: min(24.8571428571vw, 348px);
  height: auto;
  aspect-ratio: 348/114;
}
@media screen and (max-width: 767px) {
  .l-header__name-logo {
    margin-top: 0.4rem;
    width: 14.6rem;
  }
}

.l-header__menu-container {
  z-index: 500;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: min(4.8571428571vw, 68px);
}

.l-header__menu-inner {
  margin-top: min(3.2142857143vw, 45px);
  margin-left: auto;
  width: 100%;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: min(3.2142857143vw, 45px);
     -moz-column-gap: min(3.2142857143vw, 45px);
          column-gap: min(3.2142857143vw, 45px);
}

.l-header__nav {
  padding-inline: min(2.8571428571vw, 40px);
  width: min(26.8571428571vw, 376px);
  height: inherit;
  background-color: #fff;
  border-radius: min(5.6428571429vw, 79px);
}

.l-header__nav-lists {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.l-header__nav-list {
  height: inherit;
}

.l-header__nav-link {
  position: relative;
  padding-inline: min(1.4285714286vw, 20px);
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.1428571429vw, 16px);
  line-height: 1.5;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.l-header__nav-link::before {
  position: absolute;
  content: "";
  bottom: min(1.5vw, 21px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #4FC7F3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-header__nav-link:hover {
  color: #4FC7F3;
}

.l-header__nav-link:hover::before {
  width: calc(100% - min(2.8571428571vw, 40px));
}

/* ------------------------------------------------
hamburger
--------------------------------------------------- */
.l-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 2rem;
    right: 2rem;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
  }
}

@media screen and (max-width: 767px) {
  .l-hamburger.is-active {
    top: 2.8rem;
    right: 3rem;
    background-color: transparent;
  }
}

.l-hamburger__inner {
  padding-top: 1.8rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-hamburger__icon {
  position: relative;
  width: 3.8rem;
  height: 2.4rem;
  font-size: 3.8rem;
  text-align: center;
}

.l-hamburger.is-active .l-hamburger__icon {
  width: 2rem;
  height: 3.2rem;
  font-size: 2.2rem;
}

.l-hamburger__icon::before {
  position: absolute;
  content: "＝";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.l-hamburger.is-active .l-hamburger__icon::before {
  content: "×";
}

.l-hamburger__text {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.l-hamburger.is-active .l-hamburger__text {
  opacity: 0;
}

/* ------------------------------------------------
drawer
--------------------------------------------------- */
.l-drawer {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  overflow: hidden;
}

.l-drawer.is-open {
  display: block;
  opacity: 1;
}

.l-drawer__inner {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  padding: 8rem 4rem;
  width: 25.1rem;
  height: auto;
  background-color: #fff;
  border-radius: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  overflow-y: auto;
}

.l-drawer__nav-lists {
  margin-top: 0.4rem;
  width: 100%;
}

.l-drawer__nav-list {
  width: 100%;
}

.l-drawer__link {
  width: 100%;
  padding: 0.8rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-size: 1.5rem;
  line-height: 1.53;
}

.l-drawer__link:hover {
  opacity: 0.7;
}

.l-drawer__contact {
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-drawer__button {
  -webkit-box-shadow: 0.3rem 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.3rem 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
}

.footer {
  z-index: 1;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #4FC7F3;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.l-footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-footer__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-footer__info-container {
  padding: 4rem 4rem 5rem;
  width: 38.6rem;
  background-color: #ffffff;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer__info-container {
    width: 100%;
  }
}

.l-footer__logo {
  width: 29.9rem;
  height: auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 25.9rem;
  }
}

.l-footer__info-text {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .l-footer__info-text {
    margin-top: 2rem;
    font-size: 1.2rem;
    line-height: 1.42;
  }
}

.l-footer__menu {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-footer__menu {
    margin-top: 3rem;
    width: 100%;
  }
}

.l-footer__menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-footer__menu-lists {
  width: 47.6%;
}
@media screen and (max-width: 767px) {
  .l-footer__menu-lists {
    width: 50%;
  }
}

.l-footer__menu-list a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.4rem;
     -moz-column-gap: 0.4rem;
          column-gap: 0.4rem;
  font-size: 1.5rem;
  line-height: 1.4;
}

.l-footer__menu-list a:first-child {
  padding-top: initial;
}
@media screen and (max-width: 767px) {
  .l-footer__menu-list a:first-child {
    padding-top: 1rem;
  }
}

.l-footer__menu-list a::before {
  content: "";
  width: 0.4rem;
  height: auto;
  aspect-ratio: 397/753;
  background-image: url(../images/icon-arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.l-footer__button {
  margin-top: 7.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__button {
    margin-top: 2rem;
  }
}

.l-footer__copyright {
  margin-top: 12rem;
  display: block;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.57;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin-top: 4rem;
  }
}

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

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

.l-inner {
  max-width: 1050px;
  margin-inline: auto;
  padding-inline: 25px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 20px;
  }
}

.l-large-inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .l-large-inner {
    padding-inline: 20px;
  }
}

.l-large-inner.--header {
  padding-inline: initial;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .l-large-inner.--header {
    padding-right: 20px;
  }
}

.l-page-top {
  z-index: 100;
  right: 3rem;
  bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 12rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0.3rem 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.3rem 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-page-top {
    right: 2rem;
    bottom: 2rem;
    width: 7.2rem;
  }
}

.l-page-top.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.l-page-top.is-show:hover {
  opacity: 0.8;
}

.l-page-top .icon {
  width: 3.8rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .l-page-top .icon {
    width: 2.3rem;
  }
}

.l-page-top .arrow-up {
  fill: #8c8e90;
}

/* ------------------------------------------------
mv
--------------------------------------------------- */
.mv {
  position: relative;
  padding-top: min(11.2142857143vw, 157px);
  width: 100%;
  background-color: #F4FCFF;
}
@media screen and (max-width: 767px) {
  .mv {
    padding-top: 13rem;
  }
}

.mv__body {
  position: relative;
  width: 100%;
  height: min(20vw, 280px);
  background-color: #ffffff;
  border-radius: min(4.2857142857vw, 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .mv__body {
    height: 8.8rem;
    background-color: #ffffff;
    border-radius: 2rem;
  }
}

.mv__title {
  font-size: min(3.2857142857vw, 46px);
  font-weight: 500;
  line-height: 1.43;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 2.6rem;
  }
}

.mv__img {
  position: absolute;
  top: 50%;
  right: min(5.7142857143vw, 80px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(14.5vw, 203px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .mv__img {
    right: 2rem;
    width: 5.1rem;
  }
}

.c-button {
  z-index: 1;
  position: relative;
  outline: none;
  background-color: #2476F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
  overflow: hidden;
}

.c-button::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.c-button::after {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #2476F0;
  background-color: transparent;
}

.c-button:hover {
  opacity: 1;
}

.c-button:hover::before {
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.c-button-text {
  z-index: 5;
  position: relative;
  color: #fff;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.c-button:hover .c-button-text {
  color: #2476F0;
}

.c-contact-button {
  padding-inline: min(1.4285714286vw, 20px);
  width: min(15.4285714286vw, 216px);
  height: min(4.8571428571vw, 68px);
  border-radius: min(2.4285714286vw, 34px);
  font-size: min(1.1428571429vw, 16px);
}
@media screen and (max-width: 767px) {
  .c-contact-button {
    padding-inline: 2rem;
    width: 16.8rem;
    height: 5.6rem;
    border-radius: 3.6rem;
    font-size: 1.6rem;
  }
}

.c-contact-button::before,
.c-contact-button::after {
  border-radius: min(2.4285714286vw, 34px);
}
@media screen and (max-width: 767px) {
  .c-contact-button::before,
  .c-contact-button::after {
    border-radius: 3.6rem;
  }
}

.c-main-button {
  padding: 1.2rem 2rem 1.2rem 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  border-radius: 2.4rem;
  font-size: 1.6rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-main-button {
    margin-inline: auto;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}

.c-main-button::before,
.c-main-button::after {
  border-radius: 2.4rem;
}

.c-main-button.--second {
  padding: 1.2rem 3rem 1.2rem 4rem;
}

.c-main-button .arrow {
  z-index: 5;
  position: relative;
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.c-main-button:hover .arrow {
  background-color: #2476F0;
}

.c-main-button .arrow .icon {
  width: 0.7rem;
  height: auto;
}

.c-main-button .arrow .svg-arrow {
  fill: #2476F0;
  -webkit-transition: fill 0.5s ease;
  transition: fill 0.5s ease;
}

.c-main-button:hover .arrow .svg-arrow {
  fill: #fff;
}

@media screen and (max-width: 767px) {
  .news__button {
    margin-inline: initial;
    padding: 0;
    background-color: transparent;
    -webkit-column-gap: 1.2rem;
       -moz-column-gap: 1.2rem;
            column-gap: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  .news__button::before,
  .news__button::after {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .news__button:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 767px) {
  .news__button .c-button-text {
    font-size: 1.4rem;
    line-height: 1.43;
    color: #2476F0;
  }
}

@media screen and (max-width: 767px) {
  .news__button.c-main-button .arrow {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: transparent;
  }
}

@media screen and (max-width: 767px) {
  .news__button.c-main-button:hover .arrow {
    background-color: transparent;
  }
}

@media screen and (max-width: 767px) {
  .news__button.c-main-button:hover .arrow .svg-arrow {
    fill: #2476F0;
  }
}

.c-footer-button {
  width: 100%;
  height: 10.5rem;
  border-radius: 5.3rem;
  -webkit-box-shadow: 0.3rem 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.3rem 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .c-footer-button {
    height: 7.1rem;
    border-radius: 3.6rem;
  }
}

.c-footer-button::before,
.c-footer-button::after {
  border-radius: 5.3rem;
}
@media screen and (max-width: 767px) {
  .c-footer-button::before,
  .c-footer-button::after {
    border-radius: 3.6rem;
  }
}

.c-footer-button .c-button-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  font-size: 2.2rem;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .c-footer-button .c-button-text {
    -webkit-column-gap: 0.9rem;
       -moz-column-gap: 0.9rem;
            column-gap: 0.9rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.c-footer-button .icon {
  width: 4.5rem;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-footer-button .icon {
    width: 2.3rem;
  }
}

.c-footer-button .icon-mail {
  width: 100%;
}

.c-footer-button .icon-mail,
.c-footer-button .rect-mail,
.c-footer-button .path-mail {
  fill: transparent;
  stroke: #fff;
  -webkit-transition: stroke 0.5s ease;
  transition: stroke 0.5s ease;
}

.c-footer-button:hover .icon-mail,
.c-footer-button:hover .rect-mail,
.c-footer-button:hover .path-mail {
  stroke: #2476F0;
}

.section-heading {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.594;
}
@media screen and (max-width: 767px) {
  .section-heading {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.section-heading.--center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-heading.--center {
    text-align: left;
  }
}

.section-heading-second {
  position: relative;
  padding-right: 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.594;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .section-heading-second {
    padding-right: 1.2rem;
    font-size: 2.4rem;
    line-height: 0.875;
  }
}

.news .section-heading-second.--en .img {
  width: 7.2rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .news .section-heading-second.--en .img {
    width: 4.3rem;
  }
}

.service .section-heading-second.--en .img {
  width: 10.5rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .service .section-heading-second.--en .img {
    width: 6.2rem;
  }
}

.section-heading-second::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 4rem;
  background-color: #4FC7F3;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .section-heading-second::before {
    height: 2.6rem;
  }
}

.main-text {
  font-size: 1.6rem;
  line-height: 1.625;
}

/* フェードアニメーション */
/* ----------FV---------- */
.fadeIn-fv {
  opacity: 0;
  -webkit-animation: fvFadeUp 0.8s ease-out 0s forwards;
          animation: fvFadeUp 0.8s ease-out 0s forwards;
}

@-webkit-keyframes fvFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fvFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  @-webkit-keyframes fvFadeUp {
    0% {
      opacity: 0;
      -webkit-transform: translate(50%, 3rem);
              transform: translate(50%, 3rem);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(50%, 0);
              transform: translate(50%, 0);
    }
  }
  @keyframes fvFadeUp {
    0% {
      opacity: 0;
      -webkit-transform: translate(50%, 3rem);
              transform: translate(50%, 3rem);
    }
    100% {
      opacity: 1;
      -webkit-transform: translate(50%, 0);
              transform: translate(50%, 0);
    }
  }
}
.fadeUp-fv {
  opacity: 0;
  -webkit-animation: fvFadeIn 0.8s ease-out 1.2s forwards;
          animation: fvFadeIn 0.8s ease-out 1.2s forwards;
}

@-webkit-keyframes fvFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fvFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ----------下からふわっと---------- */
.fadeUp {
  opacity: 0;
}

.fadeUp.is-animated {
  opacity: 0;
  -webkit-animation: FadeUp 0.5s ease-out 0s forwards;
          animation: FadeUp 0.5s ease-out 0s forwards;
}

@-webkit-keyframes FadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes FadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5rem);
            transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
main {
  z-index: 1;
  position: relative;
}

/* ------------------------------------------------
bg
--------------------------------------------------- */
.bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #F4FCFF;
}

.bg__inner {
  position: relative;
  width: 100%;
}

.bg__fv {
  position: absolute;
  top: -Hvw(8);
  left: 0;
  width: min(63.9285714286vw, 895px);
  height: auto;
}
@media screen and (max-width: 767px) {
  .bg__fv {
    top: 7rem;
    left: 53%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 45.4rem;
  }
}

.bg__company {
  position: absolute;
  top: 85.7rem;
  left: 46%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 157.3rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .bg__company {
    top: 105.6rem;
    left: 45.4%;
    width: 47.5rem;
  }
}

.bg__service {
  position: absolute;
  top: 169.9rem;
  left: 47%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 149rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .bg__service {
    top: 175.6rem;
    left: initial;
    -webkit-transform: initial;
            transform: initial;
    right: -2.4rem;
    width: 18rem;
  }
}

.bg__contact {
  position: absolute;
  top: 268rem;
  left: 61%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 141.3rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .bg__contact {
    top: 295.6rem;
    left: -1.1rem;
    -webkit-transform: initial;
            transform: initial;
    width: 15.3rem;
  }
}

/* ------------------------------------------------
fv
--------------------------------------------------- */
.fv {
  position: relative;
  width: 100%;
  height: min(49.7142857143vw, 696px);
}
@media screen and (max-width: 767px) {
  .fv {
    overflow: hidden;
    height: 56rem;
  }
}

.fv__inner {
  position: relative;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.fv__title {
  z-index: 2;
  position: relative;
  margin-top: min(25.7142857143vw, 360px);
  margin-left: min(10.0714285714vw, 141px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: min(3.2857142857vw, 46px);
  font-weight: 500;
  line-height: 1.565;
}
@media screen and (max-width: 767px) {
  .fv__title {
    margin-top: 20rem;
    margin-left: initial;
    font-size: 2.8rem;
    text-align: center;
  }
}

.fv__title--top {
  margin-left: min(2.1428571429vw, 30px);
}
@media screen and (max-width: 767px) {
  .fv__title--top {
    margin-left: initial;
  }
}

@media screen and (max-width: 767px) {
  .fv__title--bottom {
    margin-top: 0.8rem;
  }
}

.fv__img {
  position: absolute;
  top: 24.4%;
  right: min(2.1428571429vw, 30px);
  width: min(49vw, 686px);
  height: auto;
  aspect-ratio: 686/515;
}
@media screen and (max-width: 767px) {
  .fv__img {
    top: 45.2%;
    right: 50%;
    width: 38.3rem;
  }
}

.fv__scrolldown {
  position: absolute;
  bottom: min(1.4285714286vw, 20px);
  right: min(2.8571428571vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: min(1.7142857143vw, 24px);
}
@media screen and (max-width: 767px) {
  .fv__scrolldown {
    bottom: 2rem;
    right: -0.4rem;
    row-gap: 2.4rem;
  }
}

.fv__scrolldown-text {
  font-size: 1.5rem;
  line-height: 1.4;
  rotate: 90deg;
  text-transform: uppercase;
}

.fv__scrolldown-bar {
  position: relative;
}

.fv__scrolldown-bar span {
  display: inline-block;
}

.fv__scrolldown-bar .bar {
  width: 1px;
  height: 6.7rem;
  background: #333333;
}

.fv__scrolldown-bar .circle {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 6px;
  height: auto;
  aspect-ratio: 1;
  background: #333333;
  border-radius: 50%;
  -webkit-animation: 2s ease-in-out backwards infinite scrollDown;
          animation: 2s ease-in-out backwards infinite scrollDown;
}
@-webkit-keyframes scrollDown {
  0% {
    top: 0;
  }
  80% {
    top: 6.7rem;
  }
  100% {
    top: 6.7rem;
  }
}
@keyframes scrollDown {
  0% {
    top: 0;
  }
  80% {
    top: 6.7rem;
  }
  100% {
    top: 6.7rem;
  }
}

/* ------------------------------------------------
news
--------------------------------------------------- */
.news {
  position: relative;
}

.news__container {
  padding: 3rem 6rem;
  background-color: #ffffff;
  border-radius: 3rem;
  -webkit-box-shadow: 0.3rem 0.3rem 0.6rem 0 rgba(79, 199, 243, 0.1);
          box-shadow: 0.3rem 0.3rem 0.6rem 0 rgba(79, 199, 243, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .news__container {
    padding: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1rem;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

.news__sp-block {
  display: contents;
}
@media screen and (max-width: 767px) {
  .news__sp-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.news__heading {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 11.6rem;
}
@media screen and (max-width: 767px) {
  .news__heading {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 5.8rem;
  }
}

.news__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  row-gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .news__content {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}

.news__link {
  padding-left: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 2.25;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .news__link {
    padding-left: initial;
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
    font-size: 1.5rem;
    line-height: 1.53;
  }
}

.news__link:hover {
  opacity: 0.8;
}

.news__date {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.news__link:hover .news__date {
  opacity: 0.8;
}

.news__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .news__title {
    -webkit-line-clamp: 2;
  }
}

.news__link:hover .news__title {
  opacity: 0.8;
}

.news__button {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-left: 2rem;
  width: 19rem;
}
@media screen and (max-width: 767px) {
  .news__button {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: auto;
    width: 9rem;
  }
}

/* ------------------------------------------------
company
--------------------------------------------------- */
.company {
  padding-top: 10rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}

.company__content {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .company__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2rem;
  }
}

.company__img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .company__img {
    width: 100%;
  }
}

.company__img img {
  border-radius: 5rem;
}
@media screen and (max-width: 767px) {
  .company__img img {
    border-radius: 2rem;
  }
}

.company__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.company__text.--second {
  margin-top: 1em;
}

.company__button {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .company__button {
    margin-top: 2rem;
  }
}

/* ------------------------------------------------
service
--------------------------------------------------- */
.service {
  padding-top: 8rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .service {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.service__container {
  padding: 4rem 6rem;
  background-color: #ffffff;
  border-radius: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .service__container {
    padding: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

.service__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .service__text-area {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .service__heading {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 1rem;
  }
}

.service__text {
  margin-top: 1.6rem;
  line-height: 7.1875;
}
@media screen and (max-width: 767px) {
  .service__text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    line-height: 2.45;
  }
}

.service__text .strong {
  margin-left: 1.2rem;
  font-size: 2.8rem;
  line-height: 4.107;
}
@media screen and (max-width: 767px) {
  .service__text .strong {
    margin-top: 0.8rem;
    margin-left: initial;
    display: block;
    line-height: 1.4;
  }
}

.service__button {
  margin-top: 3.9rem;
}
@media screen and (max-width: 767px) {
  .service__button {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 2rem;
  }
}

.service__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .service__img {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 1rem;
    width: 100%;
  }
}

/* ------------------------------------------------
feature
--------------------------------------------------- */
.feature {
  padding-top: 5rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .feature {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.feature__contents {
  margin-top: 6rem;
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .feature__contents {
    margin-top: 4rem;
    row-gap: 2rem;
  }
}

.feature__item {
  padding: 3rem 2rem;
  width: 36rem;
  background-color: #ffffff;
  border-radius: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .feature__item {
    padding: 2rem 0;
    width: 100%;
  }
}

.feature__item:nth-child(2),
.feature__item:nth-child(3) {
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .feature__item:nth-child(2),
  .feature__item:nth-child(3) {
    width: 100%;
  }
}

.feature__item-title {
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature__item-title {
    font-size: 2rem;
    line-height: 2.8;
  }
}

.feature__item-img {
  margin-top: 0.8rem;
}

.feature__item:nth-child(1) .feature__item-img {
  width: 10.5rem;
}
@media screen and (max-width: 767px) {
  .feature__item:nth-child(1) .feature__item-img {
    width: 8.4rem;
  }
}

.feature__item:nth-child(2) .feature__item-img {
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .feature__item:nth-child(2) .feature__item-img {
    width: 8rem;
  }
}

.feature__item:nth-child(3) .feature__item-img {
  width: 7.8rem;
}
@media screen and (max-width: 767px) {
  .feature__item:nth-child(3) .feature__item-img {
    width: 6.3rem;
  }
}

.feature__item:nth-child(4) .feature__item-img {
  width: 11rem;
}
@media screen and (max-width: 767px) {
  .feature__item:nth-child(4) .feature__item-img {
    width: 8.8rem;
  }
}

.feature__item-text {
  margin-top: 0.2rem;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature__item-text {
    margin-top: 0.4rem;
    font-size: 2.6rem;
    line-height: 2.115;
  }
}

@media screen and (max-width: 767px) {
  .feature__item:not(:first-child) .feature__item-text {
    line-height: 2.31;
  }
}

.feature__item-text .strong {
  font-size: 4.8rem;
  line-height: 1.25;
  color: #4FC7F3;
}
@media screen and (max-width: 767px) {
  .feature__item-text .strong {
    font-size: 4.4rem;
  }
}

@media screen and (max-width: 767px) {
  .feature__item:not(:first-child) .feature__item-text .strong {
    line-height: 1.36;
  }
}

/* ------------------------------------------------
contact
--------------------------------------------------- */
.contact {
  padding-top: 8rem;
  padding-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 4rem;
  }
}

.contact__content {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .contact__content {
    margin-top: 4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 2rem;
  }
}

.contact__img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .contact__img {
    width: 100%;
  }
}

.contact__img img {
  border-radius: 5rem;
}
@media screen and (max-width: 767px) {
  .contact__img img {
    border-radius: 2rem;
  }
}

.contact__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.contact__text.--second {
  margin-top: 1em;
}

.contact__button {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .contact__button {
    margin-top: 2rem;
  }
}

/* ------------------------------------------------
message
--------------------------------------------------- */
.message {
  padding-top: 12rem;
  background-color: #F4FCFF;
}
@media screen and (max-width: 767px) {
  .message {
    padding-top: 4rem;
  }
}

.message__content {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .message__content {
    margin-top: 4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2rem;
  }
}

.message__img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .message__img {
    width: 100%;
  }
}

.message__img img {
  border-radius: 4rem;
}
@media screen and (max-width: 767px) {
  .message__img img {
    border-radius: 2rem;
  }
}

.message__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.message__text:not(:first-child) {
  margin-top: 1.625em;
}

.message__text .strong {
  font-weight: 700;
  color: #2476F0;
}

/* ------------------------------------------------
profile
--------------------------------------------------- */
.profile {
  padding-top: 10rem;
  background-color: #F4FCFF;
}
@media screen and (max-width: 767px) {
  .profile {
    padding-top: 8rem;
  }
}

.profile__table {
  margin-top: 6rem;
  margin-inline: auto;
  width: 80rem;
}
@media screen and (max-width: 767px) {
  .profile__table {
    margin-top: 4rem;
    width: 100%;
  }
}

.profile__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .profile__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.profile__item:first-child {
  background-image: repeating-linear-gradient(90deg, rgba(154, 154, 154, 0.2), rgba(154, 154, 154, 0.2) 8px, transparent 8px, transparent 16px), repeating-linear-gradient(90deg, rgba(154, 154, 154, 0.2), rgba(154, 154, 154, 0.2) 8px, transparent 8px, transparent 16px);
  background-position: left top, left bottom;
  background-repeat: repeat-x, repeat-x;
  background-size: 100% 2px, 100% 2px;
}

.profile__item:not(:first-child) {
  background-image: repeating-linear-gradient(90deg, rgba(154, 154, 154, 0.2), rgba(154, 154, 154, 0.2) 8px, transparent 8px, transparent 16px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
}

.profile__title {
  padding-top: 2rem;
  padding-bottom: 2rem;
  width: 26%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .profile__title {
    padding-bottom: initial;
    padding-inline: 2rem;
    width: 100%;
  }
}

.profile__text {
  padding-top: 2rem;
  padding-bottom: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .profile__text {
    margin-top: 1.2rem;
    padding-top: initial;
    padding-inline: 2rem;
  }
}

.profile__text span {
  display: block;
}

.profile__text span:not(:first-child) {
  margin-top: 1.625em;
}

/* ------------------------------------------------
map
--------------------------------------------------- */
.map {
  padding-top: 6rem;
  padding-bottom: 20rem;
  background-color: #F4FCFF;
}
@media screen and (max-width: 767px) {
  .map {
    padding-top: 8rem;
  }
}

.map__body {
  margin-top: 6rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .map__body {
    margin-top: 4rem;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 3rem;
  }
}

.map__body .map__iframe {
  display: block;
  width: 49%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .map__body .map__iframe {
    width: 100%;
  }
}

.map__iframe-text {
  margin-left: 1.2rem;
  padding: 0 0.8rem 0.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #333333;
  font-size: 1.6rem;
  line-height: 1.2;
}

.map__body iframe {
  margin-top: 1.6rem;
  width: 100%;
  height: auto;
  border-radius: 4rem;
  aspect-ratio: 8/6;
}
@media screen and (max-width: 767px) {
  .map__body iframe {
    border-radius: 2rem;
    aspect-ratio: 335/251;
  }
}

/* ------------------------------------------------
news一覧
--------------------------------------------------- */
.news-list {
  padding-top: 12rem;
  padding-bottom: 20rem;
  background-color: #F4FCFF;
}
@media screen and (max-width: 767px) {
  .news-list {
    padding-top: 4rem;
  }
}

.news-category__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .news-category__tab {
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
    row-gap: 1.2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news-category__tab-link {
  padding: 1.1rem 3.6rem;
  border-radius: 3rem;
  background-color: #8C8E90;
  font-size: 1.8rem;
  line-height: 1.44;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .news-category__tab-link {
    padding: 1rem 3.2rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.news-category__tab-link.is-active {
  background-color: #4FC7F3;
}

.news-list__lists {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .news-list__lists {
    margin-top: 4rem;
  }
}

.news-list__list:not(:first-child) {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .news-list__list:not(:first-child) {
    margin-top: 2rem;
  }
}

.news-list__link {
  padding: 4rem 6rem;
  width: 100%;
  background-color: #fff;
  border-radius: 4rem;
  display: block;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  .news-list__link {
    padding: 2rem;
    border-radius: 2rem;
  }
}

.news-list__link:hover {
  -webkit-box-shadow: 0.3rem 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.3rem 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
  opacity: 1;
}

.news-list__date {
  font-size: 1.4rem;
  line-height: 1.43;
  color: #4FC7F3;
}

.news-list__title {
  margin-top: 0.4rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  color: #4FC7F3;
}
@media screen and (max-width: 767px) {
  .news-list__title {
    margin-top: 0.8rem;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.news-list__category-container {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .news-list__category-container {
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
    row-gap: 1.2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news-list__category {
  padding: 0.8rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2.4rem;
  background-color: #4FC7F3;
  font-size: 1.4rem;
  line-height: 1.43;
  color: #fff;
}

.news-list__text {
  margin-top: 2rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .news-list__text {
    -webkit-line-clamp: 7;
  }
}

.news-list__pagination {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .news-list__pagination {
    margin-top: 6rem;
  }
}

.screen-reader-text {
  display: none;
}

.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4rem;
  height: auto;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s, -webkit-box-shadow 0.3s;
  transition: opacity 0.3s, -webkit-box-shadow 0.3s;
  transition: opacity 0.3s, box-shadow 0.3s;
  transition: opacity 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}

.page-numbers:hover {
  -webkit-box-shadow: 0.1rem 0.1rem 0.4rem 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0.1rem 0.1rem 0.4rem 0 rgba(0, 0, 0, 0.16);
  opacity: 0.7;
}

.page-numbers.current {
  background-color: #4FC7F3;
  color: #fff;
}

.page-numbers.current:hover {
  opacity: 1;
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.page-numbers.next,
.page-numbers.prev {
  background-color: transparent;
  border-radius: initial;
}

.page-numbers.next:hover,
.page-numbers.prev:hover {
  -webkit-box-shadow: initial;
          box-shadow: initial;
}

.news-list__pagination-arrow {
  width: 0.8rem;
  height: auto;
}

.news-list__pagination-arrow.--prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ------------------------------------------------
news個別
--------------------------------------------------- */
.detail {
  padding-top: 12rem;
  padding-bottom: 20rem;
  background-color: #F4FCFF;
}
@media screen and (max-width: 767px) {
  .detail {
    padding-top: 4rem;
  }
}

.detail__info {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .detail__info {
    margin-bottom: 3.2rem;
  }
}

.detail__date {
  font-size: 1.4rem;
  line-height: 1.43;
  color: #4FC7F3;
}

.detail__title {
  margin-top: 0.4rem;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.47;
  color: #4FC7F3;
}
@media screen and (max-width: 767px) {
  .detail__title {
    margin-top: 1.2rem;
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

.detail__category-container {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  row-gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .detail__category-container {
    margin-top: 1.2rem;
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
    row-gap: 1.2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.detail__category {
  padding: 0.8rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2.4rem;
  background-color: #4FC7F3;
  font-size: 1.4rem;
  line-height: 1.43;
  color: #fff;
}

.detail__content h2 {
  position: relative;
  margin-top: 4rem;
  padding-bottom: 0.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .detail__content h2 {
    margin-top: 3.2rem;
  }
}

.detail__content h2::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4FC7F3;
  border-radius: 50px;
}

.detail__content h3 {
  position: relative;
  margin-top: 4rem;
  padding-left: 0.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .detail__content h3 {
    margin-top: 3.2rem;
  }
}

.detail__content h3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #4FC7F3;
  border-radius: 50px;
}

.detail__content p {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.625;
}

.detail__content a {
  text-decoration: underline;
  color: #2476F0;
}

.detail__content ul {
  margin-top: 3.2rem;
}

.detail__content li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.625;
}

.detail__content li::before {
  position: absolute;
  content: "";
  top: 1rem;
  left: 0;
  width: 0.6rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000;
}

.detail__content li + li {
  margin-top: 0.8rem;
}

.detail__content figure {
  margin-top: 4rem;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .detail__content figure {
    margin-top: 3.2rem;
  }
}

.detail__content img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.detail__button {
  margin-top: 10rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .detail__button {
    margin-top: 6rem;
  }
}

/* ------------------------------------------------
contact
--------------------------------------------------- */
.contact-form {
  padding-top: 10rem;
  padding-bottom: 20rem;
  background-color: #F4FCFF;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding-top: 4rem;
  }
}

.form {
  margin-top: 8.2rem;
}
@media screen and (max-width: 767px) {
  .form {
    margin-top: 4.2rem;
  }
}

.form__head-text {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .form__head-text {
    line-height: 1.625;
  }
}

.form .required {
  padding: 0.4rem;
  width: 4.8rem;
  height: 2.8rem;
  background-color: #CB1A1A;
  border-radius: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.43;
  color: #fff;
}

.form__head-text .required {
  margin-right: 0.4rem;
  padding: 0.4rem 1rem;
  display: inline-block;
}

.form__list {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .form__list {
    margin-top: 4.2rem;
  }
}

.form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .form__field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form__field:not(:first-child) {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .form__field:not(:first-child) {
    margin-top: 2rem;
  }
}

.form__label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form__label label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.form__data {
  z-index: 1;
  width: 68rem;
}
@media screen and (max-width: 767px) {
  .form__data {
    margin-top: 0.6rem;
    width: 100%;
  }
}

.form__input,
textarea.form__textarea {
  padding: 1rem 1.2rem;
  width: 100%;
  background-color: #fff;
  border: 1px solid #4FC7F3;
  font-size: 1.4rem;
  line-height: 1.43;
}

textarea.form__textarea {
  height: 12rem;
}

.form__input::-webkit-input-placeholder, textarea.form__textarea::-webkit-input-placeholder {
  color: #a3a3a3;
}

.form__input::-moz-placeholder, textarea.form__textarea::-moz-placeholder {
  color: #a3a3a3;
}

.form__input:-ms-input-placeholder, textarea.form__textarea:-ms-input-placeholder {
  color: #a3a3a3;
}

.form__input::-ms-input-placeholder, textarea.form__textarea::-ms-input-placeholder {
  color: #a3a3a3;
}

.form__input::placeholder,
textarea.form__textarea::placeholder {
  color: #a3a3a3;
}

.form__privacy {
  margin-top: 6rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    margin-top: 4rem;
    padding-bottom: 2.4rem;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
  }
}

.form__privacy .wpcf7-list-item-label {
  position: relative;
  padding-left: 4.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .form__privacy .wpcf7-list-item-label {
    padding-left: 2.9rem;
  }
}

.form__privacy .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  top: 51%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.8rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #4FC7F3;
}
@media screen and (max-width: 767px) {
  .form__privacy .wpcf7-list-item-label::before {
    top: 48%;
    width: 2.4rem;
  }
}

.form__privacy .wpcf7-list-item-label::after {
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  width: 1.6rem;
  height: auto;
  aspect-ratio: 23/15;
  content: "";
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  opacity: 0;
  border-bottom: 0.2rem solid #4FC7F3;
  border-left: 0.2rem solid #4FC7F3;
}
@media screen and (max-width: 767px) {
  .form__privacy .wpcf7-list-item-label::after {
    top: 0.7rem;
    left: 0.9rem;
    width: 1.2rem;
  }
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.wpcf7-list-item {
  margin: 0;
}

.form__privacy-text {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .form__privacy-text {
    font-size: 1.5rem;
  }
}

.form__privacy-link {
  text-decoration: underline;
}

.wpcf7-not-valid-tip {
  color: #CB1A1A;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.43;
}

@media screen and (max-width: 767px) {
  .form__privacy .wpcf7-not-valid-tip {
    position: absolute;
    bottom: -2.8rem;
    left: -3.6rem;
  }
}

.wpcf7-response-output {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.43;
}

.form__field-button {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .form__field-button {
    margin-top: 6rem;
  }
}

.form__submit-button {
  z-index: 1;
  position: relative;
  margin-inline: auto;
  width: 26rem;
  outline: none;
  background-color: #2476F0;
  border-radius: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
  overflow: hidden;
}

.form__submit-button::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 3.2rem;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.form__submit-button::after {
  z-index: 2;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3.2rem;
  border: 1px solid #2476F0;
  background-color: transparent;
}

.form__submit-button:hover {
  opacity: 1;
}

.form__submit-button:hover::before {
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.form__submit-input {
  z-index: 5;
  position: relative;
  padding: 2rem 4.4rem 2rem;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.form__submit-input:hover {
  color: #2476F0;
}

.form__submit-button .arrow {
  z-index: 5;
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.form__submit-button:hover .arrow {
  background-color: #2476F0;
}

.form__submit-button .arrow .icon {
  width: 0.7rem;
  height: auto;
}

.form__submit-button .arrow .svg-arrow {
  fill: #2476F0;
  -webkit-transition: fill 0.5s ease;
  transition: fill 0.5s ease;
}

.form__submit-button:hover .arrow .svg-arrow {
  fill: #fff;
}

.wpcf7-spinner {
  position: absolute;
  bottom: 0;
  right: 0;
}

/* ------------------------------------------------
thanks
--------------------------------------------------- */
.thanks {
  padding-top: 10rem;
  padding-bottom: 20rem;
  background-color: #F4FCFF;
}
@media screen and (max-width: 767px) {
  .thanks {
    padding-top: 4rem;
  }
}

.thanks__heading {
  text-align: center;
}

.thanks__text {
  margin-top: 3.2rem;
  text-align: center;
}

.thanks__button {
  margin-top: 8rem;
  margin-inline: auto;
  border-radius: 3.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.2rem 4rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .thanks__button {
    margin-top: 4rem;
  }
}

.thanks__button::before,
.thanks__button::after {
  border-radius: 3.4rem;
}

.thanks__button:hover {
  opacity: 1;
}

.thanks__button .c-button-text {
  font-size: 1.6rem;
  line-height: 1.5;
}

/* ------------------------------------------------
policy
--------------------------------------------------- */
.policy {
  padding-top: 12rem;
  padding-bottom: 20rem;
  background-color: #F4FCFF;
}
@media screen and (max-width: 767px) {
  .policy {
    padding-top: 4rem;
  }
}

.policy__content {
  margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
  .policy__content {
    margin-top: 2.4rem;
  }
}

.policy__item:not(:first-child) {
  margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
  .policy__item:not(:first-child) {
    margin-top: 2.4rem;
  }
}

.policy__item-text:not(:first-child) {
  margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
  .policy__item-text:not(:first-child) {
    margin-top: 2.4rem;
  }
}

.policy__bottom {
  margin-top: 5.2rem;
}
@media screen and (max-width: 767px) {
  .policy__bottom {
    margin-top: 4.8rem;
  }
}

@media screen and (max-width: 767px) {
  .policy__head-text,
  .policy__item-text,
  .policy__bottom-text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

/* ------------------------------------------------
error
--------------------------------------------------- */
.error {
  padding-top: 10rem;
  padding-bottom: 20rem;
  background-color: #F4FCFF;
}
@media screen and (max-width: 767px) {
  .error {
    padding-top: 4rem;
  }
}

.error__text {
  text-align: center;
}

.error__button {
  margin-top: 8rem;
  margin-inline: auto;
  border-radius: 3.4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.2rem 4rem 1.2rem;
}
@media screen and (max-width: 767px) {
  .error__button {
    margin-top: 4rem;
  }
}

.error__button::before,
.error__button::after {
  border-radius: 3.4rem;
}

.error__button:hover {
  opacity: 1;
}

.error__button .c-button-text {
  font-size: 1.6rem;
  line-height: 1.5;
}/*# sourceMappingURL=style.css.map */