#site_header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #site_header.fixed {
    background-color: rgba(255, 255, 255, 0.831372549);
  }
}
@media screen and (max-width: 767px) {
  #site_header {
    padding: 1rem 1.5rem;
  }
  #site_header.fixed {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 768px) {
  #site_header {
    padding: 5.5rem 7.5rem;
  }
  #site_header .logo {
    transition: 0.3s;
  }
  #site_header.fixed {
    padding: 0 3rem;
  }
  #site_header.fixed .logo {
    width: 26rem;
  }
}

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

@media screen and (max-width: 767px) {
  body.top #site_header {
    width: 100%;
    text-align: center;
  }
  body.top #site_header .logo {
    width: 15rem;
  }
}
@media screen and (min-width: 768px) {
  body.top #site_header {
    width: -moz-fit-content;
    width: fit-content;
  }
  body.top #site_header .logo {
    width: 16.6666666667vw;
  }
}

body:not(.top) #logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
body:not(.top) #site_header.fixed {
  background-color: rgba(255, 255, 255, 0.831372549);
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw !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 {
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 500;
  color: #121212;
  font-size: 1.6rem;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}
body > img {
  display: none;
  position: absolute;
  z-index: -1;
}

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

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

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

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

.page_wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100dvh;
}

.container {
  width: 100%;
  max-width: 1230px;
  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);
  }
}
.page_title {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page_title {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .page_title {
    margin-bottom: 10rem;
  }
}
.page_title span {
  display: block;
}
.page_title span.ja {
  font-weight: 900;
  color: #c94a97;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .page_title span.ja {
    font-size: 3.4rem;
  }
}
@media screen and (min-width: 768px) {
  .page_title span.ja {
    font-size: 7rem;
  }
}
.page_title span.en {
  font-weight: 700;
  background: linear-gradient(to bottom, #846ae2, #1c83dc);
  -webkit-background-clip: text;
          background-clip: text;
  color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 767px) {
  .page_title span.en {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .page_title span.en {
    font-size: 3rem;
  }
}

.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 {
  background-color: rgba(255, 255, 255, 0.5019607843);
}
@media screen and (max-width: 767px) {
  .page-content {
    padding: 5rem 1.5rem;
    padding-bottom: 5rem;
    font-size: 1.6rem;
    margin-bottom: 10rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .page-content {
    padding: 7rem 6rem;
    font-size: 1.8rem;
    margin-bottom: 20rem;
  }
}

.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: #2f38d3;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: 0.3rem solid #2f38d3;
  border-radius: 1rem;
  padding: 1rem 4rem;
  --ripple-color: #2f38d3;
}
.btn-back-home a:hover {
  animation: ripple 1.5s infinite;
}

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

.bold {
  font-weight: 900;
}

.txt_red {
  color: #e72f2f;
}

.section_title {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section_title {
    margin-bottom: 10rem;
    margin-top: 20rem;
  }
}
@media screen and (min-width: 768px) {
  .section_title {
    margin-bottom: 16rem;
    margin-top: 22.5rem;
  }
}
.section_title::before, .section_title::after {
  content: "";
  display: block;
  height: auto;
  background: var(--img) center/contain no-repeat;
  display: block;
  position: absolute;
  left: 50%;
}
.section_title::before {
  z-index: 1;
  aspect-ratio: 210/275;
}
@media screen and (max-width: 767px) {
  .section_title::before {
    width: 14rem;
    transform: translateX(-50%) translateY(-80%);
  }
}
@media screen and (min-width: 768px) {
  .section_title::before {
    width: 21rem;
    transform: translateX(-50%) translateY(-22.5rem);
  }
}
.section_title::after {
  z-index: 3;
  --img: url(../images/top/section_title_bottom.png);
  aspect-ratio: 341/71;
  bottom: 0;
  transform: translateX(-50%) translateY(80%);
}
@media screen and (max-width: 767px) {
  .section_title::after {
    width: 20rem;
  }
}
@media screen and (min-width: 768px) {
  .section_title::after {
    width: 34rem;
  }
}
.section_title .section_title_wrap {
  display: inline-block;
  background: linear-gradient(to right, #846ae2, #1c83dc);
  border-radius: 10rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .section_title .section_title_wrap {
    padding: 0.3rem;
  }
}
@media screen and (min-width: 768px) {
  .section_title .section_title_wrap {
    padding: 0.5rem;
  }
}
.section_title .section_title_inn {
  position: relative;
  z-index: 2;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section_title .section_title_inn {
    padding: 1.5rem 7rem;
  }
}
@media screen and (max-width: 767px) {
  .section_title .section_title_inn {
    padding: 1.5rem 3rem;
    min-width: 25rem;
  }
}
.section_title .txt {
  font-weight: 900;
  background: linear-gradient(to right, #846ae2, #1c83dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .section_title .txt {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .section_title .txt {
    font-size: 4rem;
  }
}

@keyframes shiny {
  0% {
    left: -50%;
  }
  20% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 var(--ripple-color);
  }
  70% {
    box-shadow: 0 0 0 2rem rgba(27, 133, 251, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(27, 133, 251, 0);
  }
}
.btn_form {
  display: block;
  border: 0.5rem solid #fff;
  border-radius: 0.3rem;
  text-decoration: none;
  filter: drop-shadow(0 0 2rem rgba(0, 0, 0, 0.2509803922));
  position: relative;
  overflow: hidden;
  --ripple-color: #fff;
}
.btn_form::before {
  content: "";
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0) 80%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
  animation: shiny 3s linear infinite;
}
.btn_form:hover {
  animation: ripple 1.5s infinite;
}
.btn_form .btn_form_wrap {
  background: linear-gradient(to right, #846ae2, #1c83dc);
  color: #fff;
  font-size: 1.6rem;
  padding: 2.5rem 5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .btn_form .btn_form_wrap {
    padding: 1.5rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  .btn_form .btn_form_wrap {
    padding: 2.5rem 5rem;
  }
}
.btn_form .btn_form_wrap::before, .btn_form .btn_form_wrap::after {
  display: block;
  height: auto;
  background: var(--img) center/contain no-repeat;
  overflow: hidden;
  text-indent: -1000vw;
  overflow: hidden;
  aspect-ratio: 1;
  content: "";
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .btn_form .btn_form_wrap::before, .btn_form .btn_form_wrap::after {
    width: 4rem;
  }
}
.btn_form .btn_form_wrap::before {
  --img: url(../images/common/icon_hand.png);
}
.btn_form .btn_form_wrap::after {
  --img: url(../images/common/icon_arrow_right.png);
}
.btn_form .btn_form_wrap b {
  display: block;
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .btn_form .btn_form_wrap b {
    font-size: 2rem;
  }
}

body:not(.top) {
  background: url(../images/common/page_bg.png) center/cover no-repeat;
}
body:not(.top) .page_wrap {
  padding-top: 15rem;
}
@media screen and (max-width: 767px) {
  body:not(.top) .page_wrap {
    padding-top: 5rem;
  }
}

#site_footer {
  position: relative;
  text-align: center;
  margin-top: -8rem;
  background: url(../images/common/footer_bg_bot.png) bottom center/auto repeat-x, url(../images/common/footer_bg.png) top center/auto repeat-x;
}
@media screen and (max-width: 1920px) {
  #site_footer {
    background-size: 100%, cover;
  }
}
#site_footer::before, #site_footer::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
}
#site_footer::before {
  left: auto;
  aspect-ratio: 561/666;
  background: url(../images/common/footer_img_left.png) top left/auto 100% no-repeat;
  width: 56rem;
  width: 29.1666666667vw;
  left: 0;
  transform: translateY(-65%);
}
@media screen and (max-width: 767px) {
  #site_footer::before {
    transform: translateY(-30%);
  }
}
#site_footer::after {
  left: auto;
  aspect-ratio: 40/55;
  background: url(../images/common/footer_img_right.png) top left/auto 100% no-repeat;
  width: 40rem;
  width: 20.8333333333vw;
  right: 0;
  transform: translateY(-50%) translateX(-20%);
}
#site_footer .container {
  position: relative;
}
#site_footer #logo_footer a {
  display: inline-block;
}
#site_footer #logo_footer .logo {
  aspect-ratio: 38/12;
}
@media screen and (max-width: 767px) {
  #site_footer #logo_footer .logo {
    width: 20rem;
  }
}
@media screen and (min-width: 768px) {
  #site_footer #logo_footer .logo {
    width: 38rem;
  }
}
#site_footer .footer_wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  padding-top: 11rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  #site_footer .footer_wrap {
    padding-bottom: 12rem;
    padding-top: 6rem;
    gap: 2rem;
  }
}
#site_footer .footer_wrap::before {
  content: "";
  position: absolute;
  aspect-ratio: 203/222;
  background: url(../images/common/footer_wrap.png) center/contain no-repeat;
  width: 10.4166666667vw;
  top: 0;
  left: 50%;
  transform-origin: top center;
  transform: translateX(100%) translateY(-60%);
}
#site_footer .footer_info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  #site_footer .footer_info {
    gap: 1.5rem;
  }
}
#site_footer .footer_contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#site_footer .footer_contact .tel {
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 0.875;
}
@media screen and (max-width: 767px) {
  #site_footer .footer_contact .tel {
    font-size: 1.8rem;
  }
}
#site_footer .footer_contact .tel a {
  font-size: 4rem;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #site_footer .footer_contact .tel a {
    font-size: 3rem;
  }
}
#site_footer .footer_contact .tel a:hover {
  text-decoration: underline;
}
#site_footer .footer_contact .working_time {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #site_footer .footer_contact .working_time {
    font-size: 1.6rem;
  }
}
#site_footer .menu_footer a {
  display: inline-block;
  color: inherit;
  font-size: 2.5rem;
  text-decoration: none;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  #site_footer .menu_footer a {
    font-size: 1.6rem;
  }
}
#site_footer .menu_footer a:hover {
  text-decoration: underline;
}
#site_footer .logo {
  --img: url(../images/logo_footer.png);
  aspect-ratio: 280/194;
}
@media screen and (max-width: 767px) {
  #site_footer .logo {
    width: 16rem;
  }
}
@media screen and (min-width: 768px) {
  #site_footer .logo {
    width: 28rem;
  }
}
#site_footer .copyright {
  font-size: 1.4rem;
}

.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: 100%;
  transition: all 0.3s;
  background: linear-gradient(to bottom, #846ae2, #1c83dc);
  color: #fff;
  box-shadow: inset 0.5rem 3rem 2rem rgba(255, 255, 255, 0.5), 0 6px 10px rgba(0, 0, 0, 0.2);
}
.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;
}

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

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