#site_header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  transition: all 0.3s;
  padding: 0.5rem 1.6rem;
}
@media screen and (min-width: 768px) {
  #site_header {
    padding: 2.4rem 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  #site_header .logo {
    width: 8rem;
  }
}
#site_header.fixed {
  padding: 0.5rem 1.6rem;
}
@media screen and (min-width: 768px) {
  #site_header.fixed {
    padding: 1rem 4.8rem;
  }
}
@media screen and (max-width: 767px) {
  #site_header.fixed .logo {
    width: 8rem;
  }
}
@media screen and (min-width: 768px) {
  #site_header.fixed .logo {
    width: 12rem;
  }
}
#site_header.fixed .header_wrap {
  border-radius: 0.8rem;
}
@media screen and (max-width: 767px) {
  #site_header.fixed .header_wrap {
    padding: 0.5rem 0.8rem;
  }
}
@media screen and (min-width: 768px) {
  #site_header.fixed .header_wrap {
    border-radius: 1.6rem;
  }
}
#site_header .header_wrap {
  background-color: #00a08e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  padding: 0.5rem 0.8rem;
  border-radius: 0.8rem;
}
@media screen and (min-width: 768px) {
  #site_header .header_wrap {
    padding: 0.5rem 4.8rem;
    border-radius: 2.4rem;
  }
}
#site_header .header_wrap .header_mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  #site_header .header_wrap .header_mobile {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #site_header .header_wrap .header_menu_btn {
    display: flex;
    gap: 0.8rem;
    align-items: center;
  }
  #site_header .header_wrap .header_menu_btn .form {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: #fabf01;
    text-decoration: none;
    color: #00a08e;
    font-weight: 900;
    width: 13rem;
    height: 3.6rem;
  }
  #site_header .header_wrap .header_menu_btn .form:after {
    content: none;
    display: block;
    aspect-ratio: 1;
    width: 1.1rem;
    background: url(../images/common/icon-hand.svg) center/contain no-repeat;
  }
  #site_header .header_wrap .header_menu_btn .form span {
    display: inline-block;
    font-size: 1.2rem;
  }
  #site_header .header_wrap .header_menu_btn .line span {
    text-indent: -1000vw;
    display: inline-block;
    background: url(../images/common/header-line.png) center/contain no-repeat;
    width: 3.6rem;
    height: 3.6rem;
  }
}
@media screen and (min-width: 768px) {
  #site_header .header_wrap .header_menu_btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #site_header .header_wrap .header_menu {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    width: 100%;
    z-index: 90;
    left: 0;
    height: 100dvh;
    background-color: #00a08e;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
  }
}
#site_header .header_wrap .header_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.8rem;
}
@media screen and (max-width: 767px) {
  #site_header .header_wrap .header_menu ul {
    flex-direction: column;
  }
}
#site_header .header_wrap .header_menu ul li {
  padding: 1rem 0;
}
#site_header .header_wrap .header_menu ul li a {
  font-weight: 900;
  text-decoration: none;
  color: #fff;
}
#site_header .header_wrap .header_menu ul li a:hover {
  text-decoration: underline;
}

#logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
#logo a {
  display: inline-block;
  transition: 0.3s;
}
#logo a:hover {
  opacity: 0.8;
}

.btn-menu {
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  transform: scale(0.65);
  margin-left: -0.8rem;
}
.btn-menu span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 0.4rem;
}
.btn-menu span:nth-of-type(1) {
  top: 0.5rem;
}
.btn-menu span:nth-of-type(2) {
  top: 2.2rem;
}
.btn-menu span:nth-of-type(3) {
  bottom: 0.1rem;
}

body.menu_open {
  overflow: hidden;
}
body.menu_open .btn-menu span:nth-of-type(1) {
  top: 0;
  transform: translateY(2rem) rotate(-45deg);
}
body.menu_open .btn-menu span:nth-of-type(2) {
  opacity: 0;
}
body.menu_open .btn-menu span:nth-of-type(3) {
  bottom: 0;
  transform: translateY(-2rem) rotate(45deg);
}
body.menu_open #site_header .header_wrap .header_menu {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s;
}

html {
  font-size: 62.5%;
  -webkit-backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1230px) {
  html {
    font-size: 0.8333333333vw;
  }
}
html * {
  -webkit-backface-visibility: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #232323;
  font-weight: 500;
  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%;
}

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

.bold {
  font-weight: bold;
}

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

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

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

.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;
}

.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}
.page_title span {
  display: inline-block;
  color: #00a08e;
}
.page_title span.ja {
  font-weight: 900;
  line-height: 2;
  font-size: 2rem;
  background: url(../images/common/title_bg.svg) center/100% 100% no-repeat;
  position: relative;
  text-align: center;
  text-shadow: -2px -1px 0 #ffffff, -2px 0px 0 #ffffff, -2px 1px 0 #ffffff, -1px -2px 0 #ffffff, -1px -1px 0 #ffffff, -1px 0px 0 #ffffff, -1px 1px 0 #ffffff, -1px 2px 0 #ffffff, 0px -2px 0 #ffffff, 0px -1px 0 #ffffff, 0px 0px 0 #ffffff, 0px 1px 0 #ffffff, 0px 2px 0 #ffffff, 1px -2px 0 #ffffff, 1px -1px 0 #ffffff, 1px 0px 0 #ffffff, 1px 1px 0 #ffffff, 1px 2px 0 #ffffff, 2px -1px 0 #ffffff, 2px 0px 0 #ffffff, 2px 1px 0 #ffffff;
}
@media screen and (max-width: 767px) {
  .page_title span.ja {
    font-size: 2.4rem;
    width: 30rem;
    padding: 0.5rem 0rem;
  }
}
@media screen and (min-width: 768px) {
  .page_title span.ja {
    padding: 3rem 2.5rem;
    line-height: 1.2;
    font-size: 3.6rem;
    width: 60rem;
  }
}
.page_title span.en {
  font-weight: 700;
  background: linear-gradient(to bottom, #a0a0a0 0%, #0f0f0f 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
@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;
}
@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: 0.3rem solid #00a08e;
  filter: drop-shadow(1rem 1rem 0 #e0f7f6);
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .page-content {
    padding: 2rem 2rem;
    padding-bottom: 5rem;
    filter: drop-shadow(0.5rem 0.5rem 0 #e0f7f6);
  }
}
@media screen and (min-width: 768px) {
  .page-content {
    padding: 7rem 6rem;
    filter: drop-shadow(1rem 1rem 0 #e0f7f6);
  }
}

.back-to-home {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .back-to-home {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .back-to-home {
    margin-top: 10rem;
  }
}
.back-to-home a {
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  background-color: #00a08e;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: 0.3rem solid #00a08e;
  border-radius: 4rem;
  padding: 0.75rem 2rem;
  --ripple-color: #00a08e;
}
.back-to-home a::before {
  content: "";
  aspect-ratio: 1;
  display: block;
  background: url(../images/common/icon-to-home.svg) center/contain no-repeat;
  width: 3.2rem;
}
@media screen and (min-width: 768px) {
  .back-to-home a::before {
    width: 4rem;
  }
}
.back-to-home a span {
  width: 10rem;
}
.back-to-home a:hover {
  animation: ripple 1.5s infinite;
}

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

.section_title {
  background: url(../images/common/title_bg.svg) center/contain no-repeat;
  position: relative;
  text-align: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .section_title {
    padding: 3.5rem;
  }
}
.section_title span {
  font-weight: 900;
  color: #00a08e;
  line-height: 2;
  font-size: 2rem;
  text-shadow: -2px -1px 0 #ffffff, -2px 0px 0 #ffffff, -2px 1px 0 #ffffff, -1px -2px 0 #ffffff, -1px -1px 0 #ffffff, -1px 0px 0 #ffffff, -1px 1px 0 #ffffff, -1px 2px 0 #ffffff, 0px -2px 0 #ffffff, 0px -1px 0 #ffffff, 0px 0px 0 #ffffff, 0px 1px 0 #ffffff, 0px 2px 0 #ffffff, 1px -2px 0 #ffffff, 1px -1px 0 #ffffff, 1px 0px 0 #ffffff, 1px 1px 0 #ffffff, 1px 2px 0 #ffffff, 2px -1px 0 #ffffff, 2px 0px 0 #ffffff, 2px 1px 0 #ffffff;
}
@media screen and (min-width: 768px) {
  .section_title span {
    line-height: 1.2;
    font-size: 3.6rem;
  }
}

.section {
  padding: 5rem 1.6rem;
}
@media screen and (min-width: 768px) {
  .section {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.actions {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .actions {
    flex-direction: column;
    gap: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .actions .btn {
    width: 30rem;
  }
}
@media screen and (min-width: 768px) {
  .actions {
    gap: 2.8rem;
  }
}

.btn {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 2.7rem;
  border-radius: 8rem;
  padding: 0.8rem 1.8rem;
  transition: 0.3s;
  filter: drop-shadow(0.3rem 0.3rem 0 rgba(0, 0, 0, 0.2509803922));
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 1.2rem 2.4rem;
    width: 38rem;
    filter: drop-shadow(0.6rem 0.6rem 0 rgba(0, 0, 0, 0.2509803922));
  }
}
.btn::before {
  content: "";
  aspect-ratio: 1;
  display: block;
  width: 4.2rem;
}
@media screen and (min-width: 768px) {
  .btn::before {
    width: 5.6rem;
  }
}
.btn span {
  font-weight: 900;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .btn span {
    padding-right: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .btn span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .btn:hover {
    transform: translateX(0.2rem) translateY(0.2rem);
    filter: drop-shadow(0.1rem 0.1rem 0 rgba(0, 0, 0, 0.2509803922));
  }
}
@media screen and (min-width: 768px) {
  .btn:hover {
    transform: translateX(0.4rem) translateY(0.4rem);
    filter: drop-shadow(0.2rem 0.2rem 0 rgba(0, 0, 0, 0.2509803922));
  }
}
.btn-form {
  background-color: #fabf01;
  border: 0.1rem solid #00a08e;
  color: #00a08e;
}
.btn-form::before {
  background: url(../images/top/icon-form.svg) center/contain no-repeat;
}
.btn-line {
  background-color: #00b900;
  border: 0.1rem solid #00b900;
  color: #fff;
}
.btn-line::before {
  background: url(../images/top/icon-line.png) center/contain no-repeat;
}

#site_footer {
  text-align: center;
  padding: 1.2rem 1.6rem;
  background: url(../images/common/footer_bg.png) top center;
  color: #00a08e;
}
@media screen and (min-width: 768px) {
  #site_footer {
    padding: 4rem 4.8rem;
  }
}
#site_footer .logo {
  --img: url(../images/common/logo_footer.png);
  width: 15.7rem;
}
#site_footer .footer_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4.8rem;
  border-bottom: 0.1rem solid #00a08e;
}
@media screen and (max-width: 767px) {
  #site_footer .footer_wrap {
    justify-content: center;
    flex-direction: column;
    padding: 1.2rem 0;
  }
}
#site_footer .footer_wrap .menu_footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.8rem;
}
#site_footer .footer_wrap .menu_footer ul li {
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  #site_footer .footer_wrap .menu_footer ul li.section-link {
    display: none;
  }
}
#site_footer .footer_wrap .menu_footer ul li a {
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}
#site_footer .footer_wrap .menu_footer ul li a:hover {
  text-decoration: underline;
}
#site_footer #logo_footer a {
  display: inline-block;
}
#site_footer .copyright {
  font-weight: 900;
  padding-top: 1.2rem;
  line-height: 1.4;
}

.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, #fefff4 0%, #48d4c4 40%, #00a08e 100%);
  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: #000000 transparent transparent #000;
  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;
  }
}

#cta {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 99;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  #cta {
    display: none !important;
  }
}
#cta.active {
  opacity: 1;
  visibility: visible;
}
#cta .cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-right: 1rem;
}
#cta .cta-wrap .btn {
  width: auto;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem 0.8rem;
  gap: 1.2rem;
}
#cta .cta-wrap .btn::before {
  width: 4rem;
}
@media screen and (min-width: 768px) {
  #cta .cta-wrap .btn::before {
    width: 4.6rem;
  }
}
#cta .cta-wrap .btn > span {
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
  width: auto;
  padding: 0;
}
#cta .cta-wrap .btn .vertical-text {
  text-orientation: upright;
  display: flex;
}
#cta .cta-wrap .btn .vertical-text span {
  display: block;
  width: auto;
  line-height: 1.5;
  padding: 0;
}