html {
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
html:has(.cta-fixed) footer {
  padding-bottom: 95px;
}
@media screen and (max-width: 575px) {
  html:has(.cta-fixed) footer {
    padding-bottom: 100px;
  }
}
html body {
  font-family: "Noto Sans JP";
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
html body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
html body header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
  padding-left: 3.75rem;
}
@media screen and (max-width: 1199px) {
  html body header {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 991px) {
  html body header {
    padding-left: 1rem;
  }
}
html body header .header-inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  html body header .header-inner {
    height: 50px;
    width: 100%;
  }
}
html body header .header-inner .logo-wrapper a {
  display: inline-block;
}
html body header .header-inner .pc-nav {
  margin-left: auto;
}
@media screen and (max-width: 991px) {
  html body header .header-inner .pc-nav {
    display: none;
  }
}
html body header .header-inner .pc-nav nav ul {
  display: flex;
  align-items: center;
}
html body header .header-inner .pc-nav nav ul li {
  text-align: center;
}
html body header .header-inner .pc-nav nav ul li a {
  font-size: 1rem;
  font-weight: bold;
  display: inline-block;
  padding: 1.25rem 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1199px) {
  html body header .header-inner .pc-nav nav ul li a {
    padding: 1.25rem 1.25rem;
  }
}
html body header .header-inner .pc-nav nav ul li a span {
  display: block;
  font-size: 0.625rem;
  font-weight: normal;
  margin-top: 5px;
}
html body header .header-inner .pc-nav nav ul li.contact-nav {
  background-color: #1E9884;
}
html body header .header-inner .pc-nav nav ul li.contact-nav a {
  color: #fff;
}
html body header .header-inner .menu-button-wrapper {
  margin-left: auto;
  z-index: 11;
  display: none;
  /* #menu-open */
}
@media screen and (max-width: 991px) {
  html body header .header-inner .menu-button-wrapper {
    display: block;
  }
}
html body header .header-inner .menu-button-wrapper #menuButton {
  color: #fff;
  font-size: 0.625rem;
  text-align: center;
  line-height: 1;
  display: inline-block;
  padding: 16px 12px;
  width: 50px;
  height: 50px;
  background-color: #333;
  z-index: 1;
  position: relative;
  transition: 0.4s;
  cursor: pointer;
}
html body header .header-inner .menu-button-wrapper #menuButton span {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.4s;
}
html body header .header-inner .menu-button-wrapper #menuButton span::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 1;
  transition: 0.4s;
}
html body header .header-inner .menu-button-wrapper #menuButton span::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: 0.4s;
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span {
  animation: none;
  width: 18px;
  transition: 0.4s;
  transform: translate(0, 2px) rotate(45deg);
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span::before {
  transition: 0.4s;
  opacity: 0;
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span::after {
  animation: none;
  width: 18px;
  transition: 0.4s;
  transform: translate(0px, -8px) rotate(90deg);
}
html body header .header-inner .sp-nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition: 0.4s ease-in;
  z-index: 10;
  opacity: 0;
}
html body header .header-inner .sp-nav nav {
  height: 100%;
  background-color: #fff;
  padding: 3.5rem 0 0;
}
html body header .header-inner .sp-nav nav ul li {
  text-align: center;
  padding: 0 1rem;
  opacity: 0;
  transition: 0.6s;
}
html body header .header-inner .sp-nav nav ul li a {
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  display: block;
  padding: 1rem 0;
}
@media screen and (max-width: 575px) {
  html body header .header-inner .sp-nav nav ul li a {
    font-size: 1rem;
  }
}
html body header .header-inner .sp-nav nav ul li a span {
  font-size: 0.625rem;
  font-weight: normal;
  display: block;
  margin-top: 5px;
}
html body header .header-inner .sp-nav.menu-open {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: 0.4s ease-in;
}
html body header .header-inner .sp-nav.menu-open nav ul li {
  opacity: 1;
  transition: 0.6s;
}
html body footer .footer-1 {
  background-color: #fff;
  padding: 20px 0 15px;
  color: #1E9884;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  html body footer .footer-1 {
    flex-direction: column;
    gap: 0;
  }
}
html body footer .footer-1 .box-l {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  html body footer .footer-1 .box-l {
    max-width: 264px;
    width: 100%;
    margin: auto;
    flex-direction: column;
  }
}
html body footer .footer-1 .box-l::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 1px;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: -18px;
  margin: auto 0 auto auto;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  html body footer .footer-1 .box-l::after {
    content: none;
  }
}
html body footer .footer-1 .box-l p {
  font-size: 18px;
}
@media screen and (max-width: 991px) {
  html body footer .footer-1 .box-l p {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  html body footer .footer-1 .box-l p:first-child {
    width: 100%;
    position: relative;
    z-index: 0;
  }
  html body footer .footer-1 .box-l p:first-child::after {
    content: "";
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 1px;
    top: 0;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto auto 0 auto;
    z-index: -1;
  }
}
html body footer .footer-1 .box-l p.tel a {
  font-size: 53px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  padding-bottom: 7px;
}
@media screen and (max-width: 991px) {
  html body footer .footer-1 .box-l p.tel a {
    font-size: 33px;
  }
}
html body footer .footer-1 .box-l p.tel a img {
  width: 63px;
}
@media screen and (max-width: 991px) {
  html body footer .footer-1 .box-l p.tel a img {
    width: 45px;
  }
}
@media screen and (max-width: 767px) {
  html body footer .footer-1 .box-l p.tel a img {
    width: 45px;
    margin-bottom: -5px;
    margin-right: 3px;
  }
}
html body footer .footer-1 .box-r p {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  html body footer .footer-1 .box-r p {
    font-size: 12px;
  }
}
html body footer .footer-1::after {
  content: "";
  position: absolute;
  background-color: #1E9884;
  max-width: 915px;
  width: calc(100% - 2rem);
  height: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto 0 auto;
  z-index: -1;
}
html body footer .footer-2 {
  background-color: #fff;
  text-align: center;
  padding: 20px 0 25px;
}
@media screen and (max-width: 767px) {
  html body footer .footer-2 {
    padding-bottom: 15px;
  }
}
html body footer .footer-2 p {
  color: #1E9884;
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  html body footer .footer-2 p {
    font-size: 14px;
  }
}
html body footer .copyright {
  text-align: center;
  font-size: 15px;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  html body footer .copyright {
    font-size: 12px;
  }
}
html body .cta-fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #1E9884;
  height: 95px;
  width: 100%;
  z-index: 11;
}
@media screen and (max-width: 575px) {
  html body .cta-fixed {
    height: 100px;
  }
}
html body .cta-fixed .inner {
  max-width: calc(1040px + 2rem);
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 575px) {
  html body .cta-fixed .inner {
    flex-direction: column;
    gap: 3px;
  }
}
html body .cta-fixed .btn-cta-fixed {
  max-width: 345px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 991px) {
  html body .cta-fixed .btn-cta-fixed {
    max-width: 295px;
  }
}
@media screen and (max-width: 575px) {
  html body .cta-fixed .btn-cta-fixed {
    margin: 0 auto;
  }
}
html body .cta-fixed .btn-cta-fixed a {
  width: 100%;
  height: 45px;
  display: grid;
  place-content: center;
  border-radius: 45px;
  background-color: #fff;
  color: #1E9884;
  font-size: 24px;
  font-weight: bold;
  transition: 0.3s all ease;
  padding-right: 20px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  html body .cta-fixed .btn-cta-fixed a {
    height: 35px;
    font-size: 18px;
  }
}
html body .cta-fixed .btn-cta-fixed a::after {
  content: "";
  position: absolute;
  background-image: url("../../images/common/arw-right-green.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 13px;
  height: 19px;
  top: 4px;
  bottom: 0;
  left: 0;
  right: 5%;
  margin: auto 0 auto auto;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  html body .cta-fixed .btn-cta-fixed a::after {
    width: 9px;
    height: 13px;
    top: 2px;
  }
}
html body .cta-fixed .btn-cta-fixed a:hover {
  background-color: #fff;
  color: #59B8BC;
}
html body .cta-fixed .btn-cta-fixed a:hover::after {
  background-image: url("../../images/common/arw-right-green-hover.svg");
}
html body .subvisual {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  margin-top: 74.9px;
}
@media screen and (max-width: 991px) {
  html body .subvisual {
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  html body .subvisual {
    margin-top: 50px;
    height: 200px;
  }
}
html body .subvisual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.3);
  z-index: 1;
}
html body .subvisual h1 {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.2em;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  html body .subvisual h1 {
    font-size: 1.75rem;
  }
}
html body .subvisual h1 span {
  display: block;
  font-size: 1rem;
  margin-top: 10px;
}
@media screen and (max-width: 575px) {
  html body .subvisual h1 span {
    font-size: 0.75rem;
  }
}
html body .h1-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 140px auto 40px;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  html body .h1-wrap {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
html body .h1-wrap h1 {
  text-align: center;
  padding-bottom: 35px;
  border-bottom: 1px solid #1E9884;
}
@media screen and (max-width: 767px) {
  html body .h1-wrap h1 {
    padding-bottom: 1rem;
  }
}
html body .contents-breadcrumb {
  padding-top: 1.25rem;
}
html body .contents-breadcrumb.single-breadcrumb {
  margin-top: 86px;
  padding-top: 3.75rem;
}
@media screen and (max-width: 991px) {
  html body .contents-breadcrumb.single-breadcrumb {
    margin-top: 50px;
  }
}
html body .contents-breadcrumb .breadcrumb a {
  border-bottom: 1px solid #555;
}
html body .contents-breadcrumb .breadcrumb span.bread-list {
  padding: 0 0.625rem;
}
html body .contents-breadcrumb .breadcrumb span.bread-nolink {
  padding: 0 0.625rem;
}
html body .contents-breadcrumb .breadcrumb span.current-item {
  padding: 0 0.625rem;
}
html body .pagetop {
  position: fixed;
  z-index: 11;
  right: 20px;
  bottom: 60px;
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  border-radius: 0;
  padding-top: 15px;
  background-color: #1E9884;
  text-align: center;
}
@media screen and (max-width: 575px) {
  html body .pagetop {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 40px;
    padding-top: 12px;
  }
}
html body .pagetop::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 12px 8px;
  border-color: transparent transparent #fff transparent;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  html body .pagetop::after {
    top: 10px;
    left: calc(50% - 6px);
    border-width: 0 6px 10px 6px;
  }
}
html body .pagetop span {
  color: #fff;
  font-size: 0.75rem;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  html body .pagetop span {
    font-size: 0.625rem;
  }
}
html body .contents {
  color: #333;
  padding: 4rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  html body .contents {
    padding: 3.75rem 0;
  }
}
html body .contents h2 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.6em;
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  html body .contents h2 {
    margin-bottom: 20px;
  }
}
html body .contents h2 span {
  display: block;
  font-size: 0.75rem;
  font-family: "Noto Sans JP";
  position: relative;
  margin-top: 15px;
}
html body .contents h2 span::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  width: 20px;
  height: 1px;
  background-color: #555;
}
html body .contents p {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  html body .contents p {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.8em;
  }
}
html body .contents .more a {
  color: #1E9884;
  display: inline-block;
  position: relative;
  margin-top: 60px;
}
@media screen and (max-width: 1199px) {
  html body .contents .more a {
    margin-top: 40px;
  }
}
html body .contents .more a:hover::after {
  width: 0;
  transition: 0.6s;
}
html body .contents .more a::before {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -22px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent transparent #1E9884 transparent;
}
html body .contents .more a::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  height: 1px;
  width: calc(100% + 20px);
  background-color: #1E9884;
  transition: 0.6s;
}
html body .contents .btn {
  max-width: 600px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 991px) {
  html body .contents .btn {
    max-width: 420px;
  }
}
html body .contents .btn a {
  width: 100%;
  height: 60px;
  display: grid;
  place-content: center;
  border-radius: 60px;
  background-color: #1E9884;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s all ease;
  padding-right: 1rem;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  html body .contents .btn a {
    height: 35px;
    font-size: 16px;
    padding-right: 0;
  }
}
@media screen and (max-width: 575px) {
  html body .contents .btn a {
    font-size: 14px;
  }
}
html body .contents .btn a:hover {
  background-color: #59B8BC;
}
html body .contents .btn a::after {
  content: "";
  background-image: url("../../images/common/ico-link.svg");
  background-size: 100% auto;
  position: absolute;
  width: 30px;
  height: 31px;
  top: 24%;
  right: 6%;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  html body .contents .btn a::after {
    width: 17px;
    height: 18px;
  }
}
html body .contents .btn-2 {
  max-width: 375px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 991px) {
  html body .contents .btn-2 {
    max-width: 295px;
  }
}
html body .contents .btn-2 a {
  width: 100%;
  height: 60px;
  display: grid;
  place-content: center;
  border-radius: 60px;
  background-color: #1E9884;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s all ease;
}
@media screen and (max-width: 991px) {
  html body .contents .btn-2 a {
    height: 35px;
    font-size: 16px;
  }
}
html body .contents .btn-2 a:hover {
  background-color: #59B8BC;
}
html body .contents figure {
  text-align: center;
}
html body .contents br.pc {
  display: none;
}
@media screen and (min-width: 376px) {
  html body .contents br.pc {
    display: block;
  }
}
html body .contents br.sp {
  display: none;
}
@media screen and (max-width: 575px) {
  html body .contents br.sp {
    display: block;
  }
}
html body .contents .pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  html body .contents .pc_only {
    display: none;
  }
}
html body .contents .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  html body .contents .sp_only {
    display: block;
  }
}
html body .contents .t_r {
  text-align: right;
}
html body .contents .t_c {
  text-align: center;
}
html body .wrapper {
  max-width: calc(1200px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}
html body img {
  height: auto;
  max-width: 100%;
}
html body .cf::before, html body .cf::after {
  display: table;
  clear: both;
  content: "";
}
html body .alpha {
  transition: opacity 250ms;
}
html body .alpha:hover {
  opacity: 0.75;
}

/*# sourceMappingURL=common.css.map */
