@charset "UTF-8";
/* Scss Document */
/* CSS Document */
/*------------------------------mixin フォント------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/NotoSansJP-Medium.woff2") format("woff2"), url("../font/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/ZenKakuGothicNew-Bold.woff2") format("woff2"), url("../font/ZenKakuGothicNew-Bold.woff") format("woff");
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/ZenKakuGothicNew-Medium.woff2") format("woff2"), url("../font/ZenKakuGothicNew-Medium.woff") format("woff");
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/ZenKakuGothicNew-Regular.woff2") format("woff2"), url("../font/ZenKakuGothicNew-Regular.woff") format("woff");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/Montserrat-Regular.woff2") format("woff2"), url("../font/Montserrat-Regular.woff") format("woff");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../font/Montserrat-Medium.woff2") format("woff2"), url("../font/Montserrat-Medium.woff") format("woff");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/Montserrat-SemiBold.woff2") format("woff2"), url("../font/Montserrat-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../font/Montserrat-Bold.woff2") format("woff2"), url("../font/Montserrat-Bold.woff") format("woff");
}
/*------------------------------mixin bg------------------------------*/
/*------------------------------mixin flex------------------------------*/
/*------------------------------基本設定------------------------------*/
html {
  margin-top: 0 !important;
  font-size: 2.5641025641vw;
  font-feature-settings: "palt";
}
@media only screen and (min-width: 1000px) {
  html {
    font-size: 0.694444444vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #000;
  font-size: 1.6rem;
}
body * {
  letter-spacing: 0.05em;
}

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

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}
.wrapper--b-page {
  padding-top: 5.8rem;
  background: #F9F9F9;
}
@media only screen and (min-width: 1000px) {
  .wrapper--b-page {
    padding-top: 0;
  }
}

main {
  flex: 1;
  width: 100vw;
  background: #F9F9F9;
  color: #606060;
}

.pc-only {
  display: none;
}
@media only screen and (min-width: 1000px) {
  .pc-only {
    display: block;
  }
}

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

@media only screen and (min-width: 1000px) {
  .pc-flex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

section {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

@media only screen and (min-width: 1000px) {
  main {
    width: calc(100% - 18rem);
    margin-left: auto;
  }
}

.wrap {
  padding: 6rem 3rem;
}
@media only screen and (min-width: 1000px) {
  .wrap {
    margin: 0 auto;
    padding: 10rem 13rem;
    width: 100%;
    height: 100%;
  }
}

picture {
  display: block;
}

.bold {
  font-weight: 700;
}

.l-blue {
  color: #24B0BA;
}

.font-en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/*------------------------------タイトル------------------------------*/
.ttl01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
}
.ttl01 .main {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #24B0BA;
  font-size: 4.8rem;
}
@media only screen and (min-width: 1000px) {
  .ttl01 .main {
    font-size: 9.6rem;
  }
}
.ttl01 .sub {
  margin-top: 0.4rem;
  font-size: 1rem;
  color: #001E3C;
}
@media only screen and (min-width: 1000px) {
  .ttl01 .sub {
    font-size: 1.4rem;
  }
}

.ttl02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #D9D9D9;
}
.ttl02 .main {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #24B0BA;
  font-size: 4.8rem;
  line-height: 1.2;
}
@media only screen and (min-width: 1000px) {
  .ttl02 .main {
    font-size: 9.6rem;
  }
}
.ttl02 .sub {
  margin-top: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  color: #606060;
  line-height: 1.3;
}
@media only screen and (min-width: 1000px) {
  .ttl02 .sub {
    font-size: 2.4rem;
  }
}

.ttl03 {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #001E3C;
  font-weight: bold;
  font-size: 2rem;
}
@media only screen and (min-width: 1000px) {
  .ttl03 {
    text-align: left;
    font-size: 2.8rem;
  }
}

.gradient_ttl {
  animation: AnimationTitle 5s ease infinite;
  background: linear-gradient(91deg, #1E9FD6 0.55%, #2bd4d4 51.66%, #5cbdb8 100%);
  background-size: 200% 100%;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
}

@keyframes AnimationTitle {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.rotate {
  transform: rotate(0);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.rotate.animate {
  animation: AnimationRotate 2s ease forwards;
  opacity: 1;
}

@keyframes AnimationRotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*------------------------------ボタン------------------------------*/
.btn01 {
  display: block;
  padding: 1.8rem 0;
  width: 100%;
  border-radius: 999rem;
  background: #fff;
  filter: drop-shadow(0 0.6rem 1.8rem rgba(0, 30, 60, 0.12));
  text-align: center;
  position: relative;
  transition: 300ms;
}
@media only screen and (min-width: 1000px) {
  .btn01 {
    width: 30rem;
  }
}
.btn01 .deco {
  width: 4rem;
  height: 4rem;
  background: url(../img/btn01_deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0.8rem;
  transform: translateY(-50%);
  transition: 500ms;
}
.btn01 p {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.6;
  color: #001E3C;
}
.btn01:hover .deco {
  transform: translateY(-50%) translateX(24rem);
}

.btn02 {
  display: block;
  padding: 2rem 0;
  border: 0.2rem solid #fff;
  border-radius: 999rem;
}
.btn02 p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  font-style: italic;
}
.btn02 p::after {
  content: "";
  margin-left: 0.8rem;
  width: 5.4rem;
  height: 1.6rem;
  background: url(../img/btn02_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.btn03 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
  color: #24B0BA;
}
.btn03::after {
  content: "";
  margin-left: 0.4rem;
  width: 8rem;
  height: 0.8rem;
  background: url(../img/arrow_02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  left: 0;
  transition: 150ms;
}
.btn03:hover::after {
  left: 0.4rem;
}

/*------------------------------本文------------------------------*/
.body_txt {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: justify;
}

/*------------------------------header------------------------------*/
.header {
  padding: 1.8rem 0 1.8rem 1.6rem;
  width: 100%;
  height: 5.8rem;
  background: #fff;
  box-shadow: 0.2rem 0.4rem 1.2rem 0 rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: flex-start;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media only screen and (min-width: 1000px) {
  .header {
    padding: 6rem 2rem;
    width: 18rem;
    height: 100vh;
    right: auto;
    bottom: 0;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 1000px) {
  .header::-webkit-scrollbar {
    width: 0.4rem;
    border-radius: 9rem;
  }
}
@media only screen and (min-width: 1000px) {
  .header::-webkit-scrollbar-thumb {
    background: #D9D9D9;
  }
}
.header--logo {
  height: 100%;
}
@media only screen and (min-width: 1000px) {
  .header--logo {
    margin-bottom: 6rem;
    width: 9.2rem;
    height: auto;
  }
}
.header--logo:hover {
  opacity: 0.7;
}
.header--logo img {
  width: auto;
  height: 100%;
}
@media only screen and (min-width: 1000px) {
  .header--logo img {
    width: 100%;
    height: auto;
  }
}
.header--nav ul li a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #3D4245;
  transition: 300ms;
  position: relative;
}
.header--nav ul li a::after {
  content: "";
  background: #3D4245;
  display: block;
  height: 0.1rem;
  position: absolute;
  left: 0;
  transition: 0.3s all;
  width: 0;
}
.header--nav ul li a.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.header--nav ul li a:hover {
  opacity: 0.6;
}
.header--nav ul li a:hover::after {
  width: 100%;
}
.header--nav ul li.l-blue a {
  color: #24B0BA;
  position: relative;
  transition: 0.3s all;
}
.header--nav ul li.l-blue a::after {
  content: "";
  width: 0;
  height: 0.1rem;
  background: #24B0BA;
  position: absolute;
  bottom: 0;
  left: 0;
}
.header--nav ul li.l-blue a:hover {
  opacity: 0.6;
}
.header--nav ul li.l-blue a:hover::after {
  width: 100%;
}
.header--nav ul li.l-blue + li {
  margin-top: 4.8rem;
}
.header--nav ul li + li {
  margin-top: 1.6rem;
}
.header--nav ul li.has-children {
  position: relative;
}
.header--nav ul li.has-children .sub-menu {
  display: none;
  transition: all 0.3s;
  position: absolute;
  right: -1rem;
  top: -1rem;
  transform: translateX(100%);
  background: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  overflow: hidden;
}
.header--nav ul li.has-children .sub-menu li a {
  font-size: 1.2rem;
  white-space: nowrap;
}
.header--nav ul li.has-children .sub-menu li + li {
  margin-top: 1rem;
}
.header--nav ul li.has-children::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1rem;
  width: 2rem;
  height: 100%;
}
.header--nav ul li.has-children:hover .sub-menu,
.header--nav ul li.has-children .sub-menu:hover .sub-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
}

.openbtn1 {
  width: 5.8rem;
  height: 5.8rem;
  background: linear-gradient(180deg, #1EAAD6 0%, #26C3C3 99.98%, #26C3C3 99.99%, #32B7B1 100%);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  cursor: pointer;
}
.openbtn1 > span {
  display: inline-block;
  width: 1.8rem;
  height: 0.1rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 300ms;
}
.openbtn1 > span::before, .openbtn1 > span::after {
  content: "";
  width: 1.8rem;
  height: 0.1rem;
  background: #fff;
  position: absolute;
  bottom: 0.6rem;
  transition: 300ms;
}
.openbtn1 > span::after {
  top: 0.6rem;
}
.openbtn1.active > span {
  background: transparent;
}
.openbtn1.active > span::before, .openbtn1.active > span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.openbtn1.active > span::after {
  top: 0;
  transform: rotate(45deg);
}

.nav {
  padding: 9.6rem 0 4rem;
  width: 100%;
  background: #fff;
  position: fixed;
  top: -40rem;
  left: 0;
  right: 0;
  z-index: 998;
  text-align: center;
  box-shadow: 0 0.4rem 0.8rem 0px rgba(0, 0, 0, 0.08);
  transition: 300ms;
}
.nav ul li {
  color: #3D4245;
}
.nav ul li a {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
}
.nav ul li a.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.nav ul li.l-blue {
  color: #24B0BA;
}
.nav ul li.l-blue a {
  position: relative;
}
.nav ul li.l-blue a::after {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: #24B0BA;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.nav ul li + li {
  margin-top: 2rem;
}
.nav.panelactive {
  top: 0;
}

/*------------------------------ふんわりフェードイン------------------------------*/
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
  transform: translate(0, 5rem);
}
.fadein.fadein_left {
  transform: translate(-8rem, 0);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.reveal-text {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1s;
  transform: translate(-8rem, 0);
}
.reveal-text.reveal {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.fadein_left {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
  transform: translate(-8rem, 0);
}
.fadein_left.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.fadein_up {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
  transform: translate(0, 5rem);
}
.fadein_up.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/*------------------------------ドーナツ型の装飾------------------------------*/
.donuts_deco {
  width: 29.5rem;
  height: 29.5rem;
  mask-image: url(../img/about-us_deco.svg);
  mask-repeat: no-repeat;
  mask-position: 50% 50%;
  mask-size: 100%;
  position: absolute;
  top: -6rem;
  right: -6.8rem;
}
@media only screen and (min-width: 1000px) {
  .donuts_deco {
    width: 70rem;
    height: 70rem;
    top: -12rem;
    right: -17.2rem;
  }
}
.donuts_deco #gradient-canvas02 {
  width: 100%;
  height: 100%;
  --gradient-color-1: #96C8F2;
  --gradient-color-2: #80E7F2;
  --gradient-color-3: #79F2E6;
  --gradient-color-4: #BBF2D8;
  --gradient-color-5: #37D9E2;
  --gradient-color-6: #C5EFED;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.donuts_deco img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
  opacity: 0.2;
  mix-blend-mode: screen;
}

/*--------------▼ お問い合わせ / .contact ▼--------------*/
.contact {
  background: url(../img/contact_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 1000px) {
  .contact {
    background: url(../img/contact_bg_pc.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: left;
  }
}
.contact--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.contact--bg #gradient-canvas05 {
  width: 100%;
  height: 100%;
  --gradient-color-1: #5FC2D9;
  --gradient-color-2: #66CDD9;
  --gradient-color-3: #41D9D9;
  --gradient-color-4: #66D9D9;
  --gradient-color-5: #4AD9CA;
  --gradient-color-6: #71D6CD;
}
.contact .wrap {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1000px) {
  .contact .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.contact--ttl {
  align-items: center;
}
@media only screen and (min-width: 1000px) {
  .contact--ttl {
    align-items: flex-start;
  }
}
.contact--ttl .main {
  font-size: 6.4rem;
  font-style: italic;
  color: #fff;
}
.contact--ttl .sub {
  color: #fff;
}
.contact--ttl + p {
  margin-top: 2.8rem;
  font-size: 1.6rem;
  line-height: 1.7;
}
.contact .btn02 {
  margin-top: 3.2rem;
}
@media only screen and (min-width: 1000px) {
  .contact .btn02 {
    display: none;
  }
}
@media only screen and (min-width: 1000px) {
  .contact .btn {
    margin-left: 1.6rem;
    width: 9.2rem;
    position: relative;
    left: 0;
    transition: 300ms;
  }
}
@media only screen and (min-width: 1000px) {
  .contact .btn:hover {
    left: 0.8rem;
  }
}

/*--------------▲ お問い合わせ / .contact ▲--------------*/
/*--------------▼ 採用フォーム / .recruit-form ▼--------------*/
.recruit-form {
  background: url(../img/contact_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 1000px) {
  .recruit-form {
    background: url(../img/contact_bg_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: left;
  }
}
.recruit-form .recruit-form_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.recruit-form .recruit-form_bg #gradient-canvas07 {
  width: 100%;
  height: 100%;
  --gradient-color-1: #5FC2D9;
  --gradient-color-2: #66CDD9;
  --gradient-color-3: #41D9D9;
  --gradient-color-4: #66D9D9;
  --gradient-color-5: #4AD9CA;
  --gradient-color-6: #71D6CD;
}
.recruit-form .wrap {
  position: relative;
  z-index: 1;
  padding: 6rem 4rem;
}
@media only screen and (min-width: 1000px) {
  .recruit-form .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10rem 13rem;
  }
}
.recruit-form .recruit-form_txt .title {
  line-height: 1.6;
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 1000px) {
  .recruit-form .recruit-form_txt .title {
    font-size: 3.2rem;
  }
}
.recruit-form .btn01 {
  margin-top: 3rem;
}
@media only screen and (min-width: 1000px) {
  .recruit-form .btn01 {
    width: 30rem;
    margin: 0 auto;
    margin-top: 3.2rem;
  }
}

/*--------------▲ お問い合わせ / .contact ▲--------------*/
/*--------------▼ フッター / .footer ▼--------------*/
.footer {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 1000px) {
  .footer {
    width: calc(100% - 18rem);
    margin-left: auto;
  }
}
.footer--link {
  padding: 6rem 0;
  background: #0F1923;
}
@media only screen and (min-width: 1000px) {
  .footer--link {
    padding: 7.2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.footer--link--logo {
  display: block;
  margin: 0 auto;
  width: 21.8rem;
}
@media only screen and (min-width: 1000px) {
  .footer--link--logo {
    margin: 0;
    width: 31.2rem;
  }
}
.footer--link--link-list {
  margin-top: 2.8rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 1000px) {
  .footer--link--link-list {
    margin-top: 0;
    margin-left: 6rem;
  }
}
.footer--link--link-list li {
  margin-top: 1.2rem;
  padding: 0 1.6rem;
}
@media only screen and (min-width: 1000px) {
  .footer--link--link-list li {
    margin-top: 0;
    padding: 0.6rem 1.6rem;
  }
}
.footer--link--link-list li a {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}
.footer--link--link-list li a.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.footer--link--link-list li a:hover {
  opacity: 0.6;
}
.footer--cw {
  padding: 2rem 0;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer--cw small {
  font-size: 1.2rem;
  color: #fff;
}
.footer--cw small a {
  text-decoration: underline;
}
.footer--cw small a:hover {
  opacity: 0.6;
}

/*--------------▲ フッター / .footer  ▲--------------*/
/*--------------▼ パンくずリスト / .breadcrumbs ▼--------------*/
.breadcrumbs {
  padding: 1.6rem 2rem;
}
@media only screen and (min-width: 1000px) {
  .breadcrumbs {
    padding: 2rem;
  }
}
.breadcrumbs ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  row-gap: 1rem;
  line-height: 1.3;
}
.breadcrumbs ul li {
  font-size: 1.2rem;
  color: #606060;
}
.breadcrumbs ul li a {
  text-decoration: underline;
}
.breadcrumbs ul li + li {
  margin-left: 0.4rem;
}
.breadcrumbs ul li + li::before {
  content: "＞";
}
.breadcrumbs ul li.current a {
  text-decoration: none;
}

/*--------------▲ パンくずリスト / .breadcrumbs ▲--------------*/
/*--------------▼ 下層ページFV / .b-page-fv ▼--------------*/
.b-page-fv {
  width: 100%;
  height: 11.6rem;
  position: relative;
}
@media only screen and (min-width: 1000px) {
  .b-page-fv {
    height: 24.8rem;
  }
}
.b-page-fv #gradient-canvas01, .b-page-fv #gradient-canvas02 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  --gradient-color-1: #9DEEF6;
  --gradient-color-2: #BBDDF7;
  --gradient-color-3: #DFEBE6;
  --gradient-color-4: #C1F4F1;
  --gradient-color-5: #B6EFF5;
  --gradient-color-6: #C0EFEE;
}
.b-page-fv .mask-image {
  width: auto;
  height: 100%;
  mask-image: url("../img/b-page-fv_mask.svg");
  mask-repeat: no-repeat;
  mask-position: 0;
  mask-size: 100%;
  -webkit-mask-image: url("../img/b-page-fv_mask.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0;
  -webkit-mask-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media only screen and (min-width: 1000px) {
  .b-page-fv .mask-image {
    mask-image: url("../img/b-page-fv_mask_pc.svg");
    mask-repeat: no-repeat;
    mask-position: 0;
    mask-size: 100%;
    -webkit-mask-image: url("../img/b-page-fv_mask_pc.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: 0;
    -webkit-mask-size: 100%;
  }
}
.b-page-fv .mask-image img {
  width: auto;
  height: 100%;
}
.b-page-fv .deco {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 22rem;
  bottom: 0;
  z-index: 2;
  opacity: 0.4;
}
@media only screen and (min-width: 1000px) {
  .b-page-fv .deco {
    left: 61.2rem;
  }
}
.b-page-fv .deco img {
  width: auto;
  height: 100%;
}
.b-page-fv .screen {
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

/*--------------▲ 下層ページFV / .b-page-fv ▲--------------*/
/*--------------▼ 下層ページセクションタイトル / .section-title ▼--------------*/
.section-ttl {
  padding: 0 0rem;
  line-height: 1;
}
@media only screen and (min-width: 1000px) {
  .section-ttl {
    padding: 0;
  }
}
.section-ttl p {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #606060;
  text-align: justify;
}

/*--------------▲ 下層ページセクションタイトル / .section-title ▲--------------*/
/*--------------▼ トップへ戻る / .back-to-top-btn ▼--------------*/
.back-to-top-btn {
  display: block;
  width: 6.6rem;
  position: absolute;
  right: 2rem;
  bottom: 26rem;
  opacity: 0;
  transition: 500ms;
  transform: translateY(24px);
}
@media only screen and (min-width: 1000px) {
  .back-to-top-btn {
    right: 8rem;
    bottom: 22rem;
  }
}
.back-to-top-btn.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*--------------▲ トップへ戻る / .back-to-top-btn ▲--------------*/
/*--------------▼ 背景アニメーション / #gradient-canvas03 ▼--------------*/
#gradient-canvas03 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  --gradient-color-1: #9DEEF6;
  --gradient-color-2: #BBDDF7;
  --gradient-color-3: #DFEBE6;
  --gradient-color-4: #C1F4F1;
  --gradient-color-5: #B6EFF5;
  --gradient-color-6: #C0EFEE;
  background: linear-gradient(45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3), var(--gradient-color-4), var(--gradient-color-5), var(--gradient-color-6));
  z-index: 0;
}

.screen {
  width: 100%;
  height: 100%;
  background: #fbffff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/*--------------▲ 背景アニメーション / #gradient-canvas03 ▲--------------*/
/*--------------▼ 背景アニメーション / #gradient-canvas04 ▼--------------*/
#gradient-canvas04 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  --gradient-color-1: #9DEEF6;
  --gradient-color-2: #BBDDF7;
  --gradient-color-3: #DFEBE6;
  --gradient-color-4: #C1F4F1;
  --gradient-color-5: #B6EFF5;
  --gradient-color-6: #C0EFEE;
  background: linear-gradient(45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3), var(--gradient-color-4), var(--gradient-color-5), var(--gradient-color-6));
}

/*--------------▲ 背景アニメーション / #gradient-canvas04 ▲--------------*/
/*--------------▼ 背景アニメーション / #gradient-canvas05 ▼--------------*/
#gradient-canvas05 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  --gradient-color-1: #9DEEF6;
  --gradient-color-2: #BBDDF7;
  --gradient-color-3: #dfeaeb;
  --gradient-color-4: #c1eff4;
  --gradient-color-5: #B6EFF5;
  --gradient-color-6: #c0e0ef;
  background: linear-gradient(45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3), var(--gradient-color-4), var(--gradient-color-5), var(--gradient-color-6));
}

/*--------------▲ 背景アニメーション / #gradient-canvas05 ▲--------------*/
/*--------------▼ 背景アニメーション / #gradient-canvas06 ▼--------------*/
#gradient-canvas06 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  --gradient-color-1: #9df6ea;
  --gradient-color-2: #bbf7e8;
  --gradient-color-3: #DFEBE6;
  --gradient-color-4: #c1f4e2;
  --gradient-color-5: #b6f5f2;
  --gradient-color-6: #c0efde;
  background: linear-gradient(45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3), var(--gradient-color-4), var(--gradient-color-5), var(--gradient-color-6));
}

/*--------------▲ 背景アニメーション / #gradient-canvas06 ▲--------------*/
/*--------------▼ 背景アニメーション / #gradient-canvas05 ▼--------------*/
#gradient-canvas07 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  --gradient-color-1: #9DEEF6;
  --gradient-color-2: #BBDDF7;
  --gradient-color-3: #dfeaeb;
  --gradient-color-4: #c1eff4;
  --gradient-color-5: #B6EFF5;
  --gradient-color-6: #c0e0ef;
  background: linear-gradient(45deg, var(--gradient-color-1), var(--gradient-color-2), var(--gradient-color-3), var(--gradient-color-4), var(--gradient-color-5), var(--gradient-color-6));
}

/*--------------▲ 背景アニメーション / #gradient-canvas05 ▲--------------*/
.thanks .wrap {
  padding: 12rem 3rem;
  text-align: center;
  position: relative;
  z-index: 9;
}
@media only screen and (min-width: 1000px) {
  .thanks .wrap {
    padding: 17.7rem 13rem;
  }
}
.thanks .thanks_ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.8rem;
  color: #24B0BA;
  line-height: 1.3;
  font-weight: 500;
}
@media only screen and (min-width: 1000px) {
  .thanks .thanks_ttl {
    font-size: 3.2rem;
  }
}
.thanks .thanks_txt {
  margin-top: 4rem;
  line-height: 1.8;
}
@media only screen and (min-width: 1000px) {
  .thanks .thanks_txt {
    margin-top: 5rem;
  }
}
.thanks .btn01 {
  margin: 0 auto;
  margin-top: 4rem;
}
@media only screen and (min-width: 1000px) {
  .thanks .btn01 {
    margin-top: 5rem;
  }
}/*# sourceMappingURL=thanks.css.map */