@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 var(--ripple-color, #001737);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(27, 133, 251, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(27, 133, 251, 0);
  }
}
@keyframes rippleHeaderSp {
  0% {
    box-shadow: 0 0 0 0 var(--ripple-color, #001737);
  }
  70% {
    box-shadow: 0 0 0 5px rgba(27, 133, 251, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(27, 133, 251, 0);
  }
}
@keyframes shiny {
  0% {
    left: -100%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 200%;
  }
}
#site_header {
  pointer-events: none;
  position: absolute;
  z-index: 1000;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  #site_header {
    padding: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #site_header {
    padding: 5rem 4rem;
  }
}

#logo a {
  display: inline-block;
  transition: 0.3s;
  pointer-events: all;
}
#logo a:hover {
  opacity: 0.8;
}

.demo-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}
.demo-menu li {
  padding: 1rem 2rem;
}
.demo-menu li a {
  text-decoration: none;
  color: #000;
}
.demo-menu li a:hover {
  text-decoration: underline;
}

#header-fixed {
  position: fixed;
  z-index: 9999;
  width: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.7019607843);
  transform: translateY(-100%);
  transition: all 0.3s;
  pointer-events: none;
}
#header-fixed a {
  pointer-events: all;
}
#header-fixed.active {
  transform: translateY(0);
}
#header-fixed .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
@media screen and (min-width: 768px) {
  #header-fixed .header-wrap {
    padding: 1.5rem 4rem;
  }
}
#header-fixed .header-wrap .logo {
  width: 16rem;
}
@media screen and (min-width: 768px) {
  #header-fixed .header-wrap .logo {
    width: 24rem;
  }
}
#header-fixed .header-wrap .btn {
  background-color: #e5005a;
  --ripple-color: #e5005a;
  display: inline-block;
  color: #fff;
  border-radius: 10rem;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  padding: 1rem 1.5rem;
  transition: 0.3s;
  animation: ripple 1.5s infinite;
}
@media screen and (min-width: 768px) {
  #header-fixed .header-wrap .btn {
    padding: 1.5rem 2.5rem;
  }
}
#header-fixed .header-wrap .btn::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(-40deg, rgba(255, 255, 255, 0) 15%, rgba(242, 250, 228, 0.2) 50%, rgba(255, 255, 255, 0) 85%);
  width: 20rem;
  height: 20rem;
  left: -100%;
  top: 50%;
  transform: translateY(-50%);
  animation: shiny 4s infinite linear;
}
#header-fixed .header-wrap .btn span {
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #header-fixed .header-wrap .btn span {
    font-size: 1.8rem;
  }
}
#header-fixed .header-wrap .btn:hover {
  background-color: #001737;
  --ripple-color: #001737;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.3255813953vw !important;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1230px) {
  html {
    font-size: 0.8333333333vw;
  }
}

body {
  --space: 1.5rem;
  --ripple-color: #1b85fb;
  font-family: "Noto Sans JP", sans-serif;
  color: #001737;
  font-size: 1.6rem;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  background: #eef7fc;
}
@media screen and (min-width: 768px) {
  body {
    background: #eef7fc url(../images/bg.png) top center/cover;
  }
}
body:not(.top) .page_wrap {
  padding-top: 10rem;
}
@media screen and (min-width: 768px) {
  body:not(.top) .page_wrap {
    padding-top: 20rem;
  }
}
body > img {
  display: none;
  position: absolute;
  z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6,
dl,
p,
dt,
dd,
form,
select,
option,
address,
pre {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

figure {
  width: 100%;
  height: 100%;
}

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

@media screen and (min-width: 768px) {
  .hide-pc,
  .sp {
    display: none;
  }
}

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

.logo {
  overflow: hidden;
  text-indent: -1000vw;
  display: block;
  height: auto;
  aspect-ratio: 1;
  background: var(--img) center/contain no-repeat;
  aspect-ratio: 5;
}
@media screen and (max-width: 767px) {
  .logo {
    --img: url(../images/logo.png);
    width: 23rem;
  }
}
@media screen and (min-width: 768px) {
  .logo {
    --img: url(../images/logo.svg);
    width: 46rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1230px) {
  .logo {
    width: 38rem;
  }
}

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

.page_wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100dvh;
}
.page_wrap #site_footer {
  margin-top: auto;
  margin-bottom: 0;
}

.txt-indent-left {
  text-indent: -1em;
  padding-left: 1em;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: 1164px;
  padding-left: var(--space);
  padding-right: var(--space);
  margin-left: auto;
  margin-right: auto;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 var(--ripple-color);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(27, 133, 251, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(27, 133, 251, 0);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
.section {
  padding-top: 8rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .section {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .title {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .title {
    margin-bottom: 10rem;
  }
}
.title span {
  display: block;
}
.title span.en {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  color: #e5005a;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .title span.en {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .title span.en {
    font-size: 2.4rem;
  }
}
.title span.ja {
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .title span.ja {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .title span.ja {
    font-size: 4rem;
  }
}

.page-head {
  background-color: #fff;
  padding: 2.4rem 1.5rem;
  border-radius: 2.4rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .page-head {
    margin-bottom: 8rem;
  }
}
.page-head .title {
  margin-bottom: 0;
}

.inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space);
  padding-right: var(--space);
}
@media screen and (max-width: 767px) {
  .inner {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}

.page-content {
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .page-content {
    padding: 0 2rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .page-content {
    padding: 0 6rem;
  }
}

.btn-back-home {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn-back-home {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .btn-back-home {
    margin-top: 10rem;
  }
}
.btn-back-home a {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: 0.3rem solid #000000;
  border-radius: 1rem;
  padding: 1rem 4rem;
  --ripple-color: #000000;
}
.btn-back-home a:hover {
  animation: ripple 1.5s infinite;
}

.error-content {
  text-align: center;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.txt_red {
  color: #f00;
}

.section-page {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.boxed {
  background-color: #e0f4fa;
  border: 0.3rem solid #fff;
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.2509803922));
  margin-bottom: 3.6rem;
  padding: 2.4rem 1.5rem;
  border-radius: 1.2rem;
}
@media screen and (min-width: 768px) {
  .boxed {
    border-radius: 2.4rem;
    padding: 3.6rem 3.6rem;
  }
}
.boxed-red {
  background-color: #ffdddd;
}

.terms_content {
  height: 80rem;
  overflow: auto;
  font-weight: 500;
  padding: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .terms_content {
    padding: 5rem 5rem;
  }
}

.terms_accept_label {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.terms_accept_label a {
  color: inherit;
  text-decoration: underline;
}
.terms_accept_label a:hover {
  color: #e5005a;
}
.terms_accept_label > span {
  display: inline-block;
  vertical-align: super;
}

#breadcrumb ul {
  display: flex;
  font-weight: bold;
}
#breadcrumb ul li:not(:last-child)::after {
  content: ">";
  margin: 0 0.8rem;
}
#breadcrumb ul a {
  color: #e5005a;
  text-decoration: none;
}
#breadcrumb ul a:hover {
  text-decoration: underline;
}
#breadcrumb ul span {
  color: #000;
}

#site_footer {
  text-align: center;
}
#site_footer .container {
  position: relative;
}
#site_footer .footer_wrap {
  padding-top: 6rem;
  padding-bottom: 3.6rem;
}
#site_footer #logo_footer a {
  display: inline-block;
}
#site_footer .hotline {
  margin-top: 3rem;
}
#site_footer .hotline p {
  margin-bottom: 1.5rem;
  font-weight: bold;
}
#site_footer .hotline a {
  background-color: #001737;
  --ripple-color: #001737;
  padding: 1rem 3rem;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  color: #fff;
  font-weight: bold;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 2.8rem;
  transition: 0.3s;
}
#site_footer .hotline a::before {
  content: "";
  display: block;
  width: 2.4rem;
  aspect-ratio: 1;
  background-image: url("../images/icon-phone.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#site_footer .hotline a:hover {
  background-color: #e3015a;
  --ripple-color: #e3015a;
  animation: ripple 1.5s infinite;
}
#site_footer .menu_footer {
  margin-top: 3rem;
}
#site_footer .menu_footer a {
  display: inline-block;
  color: inherit;
  letter-spacing: 0.25em;
  font-size: 1.4rem;
  text-decoration: none;
}
#site_footer .menu_footer a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #site_footer .logo {
    width: 30rem;
  }
}
@media screen and (min-width: 768px) {
  #site_footer .logo {
    width: 38rem;
  }
}
#site_footer .copyright {
  font-size: 1.2rem;
  padding: 1.5rem;
  color: #105c9a;
}

@media screen and (max-width: 767px) {
  .has-contact-btn-fixed #site_footer {
    padding-bottom: 10rem;
  }
}

.to-top {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1;
  width: 7rem;
  padding-top: 10%;
  margin: 0 auto;
  position: relative;
  border-radius: 0.5rem;
  transition: all 0.3s;
  background: linear-gradient(to bottom, #e3015a 0%, #f1c809 50%, #0295cf 100%);
  box-shadow: inset 0.5rem 3rem 2rem rgba(255, 255, 255, 0.5), 0 6px 10px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.to-top::before {
  content: "";
  transition: all 0.3s;
  position: absolute;
  width: 1rem;
  aspect-ratio: 1;
  display: block;
  top: 2rem;
  left: 50%;
  border: 0.2rem solid;
  border-color: #fff transparent transparent #fff;
  transform: rotate(45deg) translateX(-70%);
}
.to-top:hover {
  box-shadow: inset 1.5rem 3rem 4rem rgba(255, 255, 255, 0.55), 0 3px 7px rgba(0, 0, 0, 0.2);
}
.to-top:hover::before {
  top: 1.5rem;
}

#bottom_fixed {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s opacity;
}
#bottom_fixed.active {
  opacity: 1;
  visibility: visible;
}

.bottom_fixed {
  position: fixed;
  z-index: 999;
  right: 2rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .bottom_fixed {
    gap: 1.6rem;
    justify-content: flex-end;
    width: calc(100% - 4rem);
  }
  .bottom_fixed .btn-top {
    order: 2;
  }
}
@media screen and (min-width: 768px) {
  .bottom_fixed {
    gap: 2rem;
    flex-direction: column;
  }
}

.btn-contact-fixed {
  background-color: #e3015a;
  --ripple-color: #e3015a;
  flex: 1;
  display: inline-block;
  color: #fff;
  padding: 2rem 1.6rem;
  border-radius: 1rem;
  text-decoration: none;
  animation: ripple 1.5s infinite;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .btn-contact-fixed {
    display: none !important;
  }
}
.btn-contact-fixed::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(-40deg, rgba(255, 255, 255, 0) 15%, rgba(242, 250, 228, 0.2) 50%, rgba(255, 255, 255, 0) 85%);
  width: 20rem;
  height: 20rem;
  left: -100%;
  top: 50%;
  transform: translateY(-50%);
  animation: shiny 4s infinite linear;
}
.btn-contact-fixed span {
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 2rem;
}