html {
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0;
}
html body {
  font-family: "Noto Sans JP";
  position: relative;
  overflow-x: hidden;
  -webkit-box-sizing: border-box;
          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;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
html body main {
  padding-top: 100px;
}
@media screen and (max-width: 991px) {
  html body main {
    padding-top: 60px;
  }
}
html body header {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  background-color: #fff;
  padding: 0 40px;
}
@media screen and (max-width: 991px) {
  html body header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
html body header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
}
@media screen and (max-width: 991px) {
  html body header .header-inner {
    height: 60px;
    width: 100%;
  }
}
html body header .header-inner .logo-wrapper h1 {
  position: relative;
}
html body header .header-inner .logo-wrapper h1 span {
  position: absolute;
  visibility: hidden;
}
html body header .header-inner .logo-wrapper a {
  display: inline-block;
}
html body header .header-inner .header-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
html body header .header-inner .h-contact {
  width: 130px;
  height: 30px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  html body header .header-inner .h-contact {
    display: none;
  }
}
html body header .header-inner .h-contact p {
  cursor: pointer;
  background-color: #0E1A3C;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
  z-index: 0;
}
html body header .header-inner .h-contact p:hover {
  opacity: 0.6;
}
html body header .header-inner .h-contact p::before {
  content: "";
  position: absolute;
  background-color: #0E1A3C;
  width: 7px;
  height: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 20px;
  margin: auto 0 auto auto;
  z-index: 1;
}
html body header .header-inner .h-contact p::after {
  content: "";
  position: absolute;
  background-color: #0E1A3C;
  width: 1px;
  height: 7px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 22.8px;
  margin: auto 0 auto auto;
  z-index: 1;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html body header .header-inner .h-contact p.active::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
html body header .header-inner .h-contact p span {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  padding-right: 5px;
  position: relative;
  z-index: 0;
}
html body header .header-inner .h-contact p span::before {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 100%;
  width: 17px;
  height: 17px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 15px;
  margin: auto 0 auto auto;
  z-index: -1;
}
html body header .header-inner .h-contact ul {
  display: none;
  position: absolute;
  width: 290px;
  right: 0;
  background-color: #fff;
  margin-top: 20px;
  padding: 30px 20px;
}
html body header .header-inner .h-contact ul li a {
  display: block;
  color: #0E1A3C;
  font-size: 14px;
  line-height: 1.4285714286;
  position: relative;
  z-index: 0;
}
html body header .header-inner .h-contact ul li a::after {
  content: "";
  position: absolute;
  background-image: url("../../images/common/h-ico-arw-r.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 17px;
  height: 17px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto 0 auto auto;
  z-index: -1;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html body header .header-inner .h-contact ul li a:hover::after {
  background-image: url("../../images/common/h-ico-arw-r-hover.svg");
}
html body header .header-inner .h-contact ul li:not(:last-child) {
  margin-bottom: 12px;
}
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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: #505050;
}
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;
  /* #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: 0;
  width: 74px;
  height: 30px;
  z-index: 1;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  html body header .header-inner .menu-button-wrapper #menuButton {
    width: 40px;
  }
}
html body header .header-inner .menu-button-wrapper #menuButton span {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #505050;
  -webkit-transition: 0.4s;
  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: #505050;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span {
  -webkit-animation: none;
          animation: none;
  width: 60px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translate(0, 2px) rotate(30deg);
          transform: translate(0, 2px) rotate(30deg);
}
@media screen and (max-width: 767px) {
  html body header .header-inner .menu-button-wrapper.menu-open #menuButton span {
    width: 35px;
  }
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span::before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}
html body header .header-inner .menu-button-wrapper.menu-open #menuButton span::after {
  -webkit-animation: none;
          animation: none;
  width: 60px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translate(0px, -8px) rotate(120deg);
          transform: translate(0px, -8px) rotate(120deg);
}
@media screen and (max-width: 767px) {
  html body header .header-inner .menu-button-wrapper.menu-open #menuButton span::after {
    width: 35px;
  }
}
html body header .header-inner .sp-nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
  z-index: 10;
  opacity: 0;
}
html body header .header-inner .sp-nav nav {
  height: 100%;
  background-color: #fff;
  padding: 100px 0 40px;
  overflow: scroll;
}
@media screen and (max-width: 991px) {
  html body header .header-inner .sp-nav nav {
    padding-top: 100px;
  }
}
html body header .header-inner .sp-nav nav .nav-inner {
  max-width: 740px;
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  html body header .header-inner .sp-nav nav .nav-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
html body header .header-inner .sp-nav nav .nav-inner .nav-l,
html body header .header-inner .sp-nav nav .nav-inner .nav-r {
  max-width: 310px;
  width: 100%;
  margin: 0 auto;
}
html body header .header-inner .sp-nav nav .nav-inner .nav-l .box-nav-sns,
html body header .header-inner .sp-nav nav .nav-inner .nav-r .box-nav-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 23px;
}
html body header .header-inner .sp-nav nav .nav-inner .nav-l a,
html body header .header-inner .sp-nav nav .nav-inner .nav-r a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html body header .header-inner .sp-nav nav .nav-inner .nav-l a:hover,
html body header .header-inner .sp-nav nav .nav-inner .nav-r a:hover {
  opacity: 0.6;
}
html body header .header-inner .sp-nav nav .nav-inner .box-nav .box-nav-sns {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  html body header .header-inner .sp-nav nav .nav-inner .box-nav .box-nav-sns {
    margin-top: 25px;
  }
}
html body header .header-inner .sp-nav nav .nav-inner .nav-l .box-nav-l-1 {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  html body header .header-inner .sp-nav nav .nav-inner .nav-l .box-nav-l-1 {
    gap: 20px;
    margin-bottom: 25px;
  }
}
html body header .header-inner .sp-nav nav .nav-inner .nav-l .box-nav {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  html body header .header-inner .sp-nav nav .nav-inner .nav-l .box-nav {
    display: none;
  }
}
html body header .header-inner .sp-nav nav .nav-inner .nav-r .box-nav {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  html body header .header-inner .sp-nav nav .nav-inner .nav-r .box-nav {
    display: none;
  }
}
html body header .header-inner .sp-nav nav ul {
  border-top: 1px solid #CCCCCC;
}
html body header .header-inner .sp-nav nav ul li {
  text-align: left;
  padding: 0 1rem;
  opacity: 0;
  border-bottom: 1px solid #CCCCCC;
}
html body header .header-inner .sp-nav nav ul li a {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  display: block;
  padding: 1rem 0;
  position: relative;
  z-index: 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::after {
  content: "";
  position: absolute;
  background-image: url("../../images/common/arw-h-bottom.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 14px;
  height: 16px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto 0 auto auto;
  z-index: -1;
}
html body header .header-inner .sp-nav.menu-open {
  opacity: 1;
  max-width: 860px;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}
html body header .header-inner .sp-nav.menu-open nav ul li {
  opacity: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
html body footer {
  background-color: #0E1A3C;
  padding: 45px 0;
}
@media screen and (max-width: 767px) {
  html body footer {
    padding: 40px 0 68px;
  }
}
html body footer .inner {
  max-width: calc(1400px + 2rem);
  width: 100%;
  margin: auto;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  html body footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
  }
}
html body footer .inner .footer-l {
  width: 625px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  html body footer .inner .footer-l {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
  }
}
html body footer .inner .footer-l figure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  html body footer .inner .footer-l figure {
    width: 245px;
  }
}
html body footer .inner .footer-l .f-btn {
  max-width: 172px;
  width: 100%;
  margin: auto;
}
html body footer .inner .footer-l .f-btn a {
  width: 100%;
  height: 30px;
  display: grid;
  place-content: center;
  border-radius: 15px;
  line-height: 1;
  border: 1px solid #F8F8F8;
  color: #fff;
  font-size: 15px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html body footer .inner .footer-l .f-btn a:hover {
  background-color: #fff;
  color: #0E1A3C;
}
html body footer .inner .footer-r {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  html body footer .inner .footer-r {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  html body footer .inner .footer-r {
    gap: 20px;
  }
}
html body footer .inner .footer-r .box-f-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 23px;
}
@media screen and (max-width: 991px) {
  html body footer .inner .footer-r .box-f-sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 18px;
  }
}
html body footer .inner .footer-r .box-f-sns a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html body footer .inner .footer-r .box-f-sns a:hover {
  opacity: 0.6;
}
html body footer .copyright p {
  text-align: right;
  color: #fff;
  font-size: 12px;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  html body footer .copyright p {
    text-align: center;
    font-size: 11px;
  }
}
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 .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: 58px;
  height: 58px;
  border: none;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media screen and (max-width: 991px) {
  html body .pagetop {
    bottom: 80px;
  }
}
@media screen and (max-width: 575px) {
  html body .pagetop {
    width: 40px;
    height: 40px;
    right: 15px;
  }
}
html body .pagetop:hover {
  opacity: 0.6;
}
html body .pc-cta {
  position: fixed;
  right: 0;
  top: 170px;
  display: grid;
  gap: 8px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  html body .pc-cta {
    display: none;
  }
}
html body .pc-cta a {
  width: 358px;
  height: 60px;
  display: grid;
  grid-template-columns: 60px 298px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
  right: -298px;
}
html body .pc-cta a figure {
  background-color: #0E1A3C;
  width: 60px;
  height: 100%;
  display: grid;
  place-content: center;
  border-radius: 12px 0 0 12px;
}
html body .pc-cta a span {
  width: 298px;
  background-color: #fff;
  color: #0E1A3C;
  font-size: 16px;
  line-height: 1.5;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-left: 16px;
  position: relative;
  z-index: 0;
}
html body .pc-cta a span::after {
  content: "";
  position: absolute;
  background-image: url("../../images/common/h-ico-arw-r.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 24px;
  height: 24px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 16px;
  margin: auto 0 auto auto;
  z-index: -1;
}
html body .pc-cta a:hover {
  right: 0;
}
html body .sp-cta {
  position: fixed;
  z-index: 12;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #0E1A3C;
}
@media screen and (min-width: 768px) {
  html body .sp-cta {
    display: none;
  }
}
html body .sp-cta .sp-cta-tel {
  border-right: 1px solid #fff;
}
html body .sp-cta .sp-cta-tel a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
html body .sp-cta .sp-cta-tel a p {
  color: #fff;
  font-size: 12px;
  line-height: 1.4166666667;
}
@media screen and (max-width: 375px) {
  html body .sp-cta .sp-cta-tel a p {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
html body .sp-cta .sp-cta-tel a p span {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 375px) {
  html body .sp-cta .sp-cta-tel a p span {
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
html body .sp-cta .sp-cta-contact {
  position: relative;
}
html body .sp-cta .sp-cta-contact p {
  cursor: pointer;
  background-color: #0E1A3C;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
  z-index: 0;
}
html body .sp-cta .sp-cta-contact p:hover {
  opacity: 0.6;
}
html body .sp-cta .sp-cta-contact p::before {
  content: "";
  position: absolute;
  background-color: #0E1A3C;
  width: 7px;
  height: 1px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 20px;
  margin: auto 0 auto auto;
  z-index: 1;
}
html body .sp-cta .sp-cta-contact p::after {
  content: "";
  position: absolute;
  background-color: #0E1A3C;
  width: 1px;
  height: 7px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 22.8px;
  margin: auto 0 auto auto;
  z-index: 1;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html body .sp-cta .sp-cta-contact p.active::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
html body .sp-cta .sp-cta-contact p span {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  padding-right: 5px;
  position: relative;
  z-index: 0;
}
html body .sp-cta .sp-cta-contact p span::before {
  content: "";
  position: absolute;
  background-color: #fff;
  border-radius: 100%;
  width: 17px;
  height: 17px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 15px;
  margin: auto 0 auto auto;
  z-index: -1;
}
html body .sp-cta .sp-cta-contact ul {
  display: none;
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 12px;
}
html body .sp-cta .sp-cta-contact ul li a {
  display: block;
  color: #0E1A3C;
  font-size: 14px;
  line-height: 1.4285714286;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 375px) {
  html body .sp-cta .sp-cta-contact ul li a {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
html body .sp-cta .sp-cta-contact ul li a::after {
  content: "";
  position: absolute;
  background-image: url("../../images/common/h-ico-arw-r.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 17px;
  height: 17px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto 0 auto auto;
  z-index: -1;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
html body .sp-cta .sp-cta-contact ul li a:hover::after {
  background-image: url("../../images/common/h-ico-arw-r-hover.svg");
}
html body .sp-cta .sp-cta-contact ul li:not(:last-child) {
  margin-bottom: 12px;
}
html body .contents {
  color: #0E1A3C;
  padding: 4rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  html body .contents {
    padding: 3.75rem 0;
  }
}
html body .contents h2.h2-ttl-1 {
  color: #0E1A3C;
  text-align: center;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-bottom: 90px;
  margin-bottom: 50px;
  display: grid;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  html body .contents h2.h2-ttl-1 {
    font-size: 26px;
    padding-bottom: 40px;
    margin-bottom: 30px;
  }
}
html body .contents h2.h2-ttl-1::after {
  content: "";
  position: absolute;
  background-color: #0E1A3C;
  width: 2px;
  height: 58px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto auto 0 auto;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  html body .contents h2.h2-ttl-1::after {
    height: 30px;
  }
}
html body .contents h2.h2-ttl-1 span {
  font-family: "Jost", sans-serif;
  font-size: 30px;
  line-height: 2.25;
  letter-spacing: 0;
  position: relative;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  html body .contents h2.h2-ttl-1 span {
    font-size: 16px;
  }
}
html body .contents h2.h2-ttl-1 span::before, html body .contents h2.h2-ttl-1 span::after {
  content: "";
  position: absolute;
  top: 35%;
  display: inline-block;
  width: 1px;
  height: 0.7em;
  background-color: #0E1A3C;
}
html body .contents h2.h2-ttl-1 span::before {
  left: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
html body .contents h2.h2-ttl-1 span::after {
  right: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
html body .contents p,
html body .contents li,
html body .contents dd {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 2em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  html body .contents p,
  html body .contents li,
  html body .contents dd {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.8em;
  }
}
html body .contents p:last-child,
html body .contents li:last-child,
html body .contents dd:last-child {
  margin-bottom: 0;
}
html body .contents .more a {
  color: #505050;
  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;
  -webkit-transition: 0.6s;
  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 #505050 transparent;
}
html body .contents .more a::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  height: 1px;
  width: calc(100% + 20px);
  background-color: #505050;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
html body .contents .btn-1 {
  max-width: 375px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  html body .contents .btn-1 {
    max-width: 310px;
  }
}
html body .contents .btn-1 a {
  width: 315px;
  height: 60px;
  display: grid;
  place-content: center;
  background-color: #fff;
  border: 2px solid #0E1A3C;
  color: #0E1A3C;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  html body .contents .btn-1 a {
    width: 270px;
    height: 55px;
    font-size: 16px;
  }
}
html body .contents .btn-1 a::after {
  content: "";
  position: absolute;
  background-image: url("../../images/common/btn-arw-1.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 78px;
  height: 7px;
  top: 0;
  bottom: 0;
  left: 0;
  right: -60px;
  margin: auto 0 auto auto;
  z-index: -1;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media screen and (max-width: 767px) {
  html body .contents .btn-1 a::after {
    width: 55px;
    right: -40px;
  }
}
html body .contents .btn-1 a:hover {
  background-color: #0E1A3C;
  color: #fff;
}
html body .contents .btn-1 a:hover::after {
  right: -70px;
}
@media screen and (max-width: 767px) {
  html body .contents .btn-1 a:hover::after {
    right: -50px;
  }
}
html body .contents .btn-2 {
  max-width: 375px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  html body .contents .btn-2 {
    max-width: 310px;
  }
}
html body .contents .btn-2 a {
  width: 315px;
  height: 60px;
  display: grid;
  place-content: center;
  border: 2px solid #fff;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  html body .contents .btn-2 a {
    width: 270px;
    height: 55px;
    font-size: 16px;
  }
}
html body .contents .btn-2 a::after {
  content: "";
  position: absolute;
  background-image: url("../../images/common/btn-arw-2.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 78px;
  height: 7px;
  top: 0;
  bottom: 0;
  left: 0;
  right: -60px;
  margin: auto 0 auto auto;
  z-index: -1;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media screen and (max-width: 767px) {
  html body .contents .btn-2 a::after {
    width: 55px;
    right: -40px;
  }
}
html body .contents .btn-2 a:hover {
  background-color: #fff;
  color: #0E1A3C;
}
html body .contents .btn-2 a:hover::after {
  right: -70px;
}
@media screen and (max-width: 767px) {
  html body .contents .btn-2 a:hover::after {
    right: -50px;
  }
}
html body .contents.sec-event {
  background-color: #F8F8F8;
}
html body .contents.sec-event .wrapper {
  max-width: calc(1600px + 2rem);
}
html body .contents.sec-event .wrapper > figure {
  text-align: center;
  margin-bottom: -45px;
}
@media screen and (max-width: 1600px) {
  html body .contents.sec-event .wrapper > figure {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  html body .contents.sec-event .wrapper > figure {
    margin-bottom: 10px;
  }
}
html body .contents.sec-event h2 {
  text-align: center;
  font-size: 46px;
  line-height: 1.2608695652;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  html body .contents.sec-event h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 375px) {
  html body .contents.sec-event h2 {
    font-size: 26px;
    font-size: 6.9333333333vw;
  }
}
@media screen and (max-width: 1199px) {
  html body .contents.sec-event h2 br {
    display: block;
  }
}
html body .contents.sec-event h3 a {
  display: block;
  background-color: #0E2971;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 40px 6px;
  border-radius: 27px;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.4666666667;
  letter-spacing: 0.05em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  html body .contents.sec-event h3 a {
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
  }
}
html body .contents.sec-event dl {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  html body .contents.sec-event dl {
    margin-bottom: 30px;
  }
}
html body .contents.sec-event dl dt {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #0E1A3C;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  html body .contents.sec-event dl dt {
    font-size: 18px;
  }
}
html body .contents.sec-event dl dt span {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7777777778;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  html body .contents.sec-event dl dt span {
    font-size: 16px;
  }
}
html body .contents.sec-event dl dd {
  margin-bottom: 0;
}
html body .contents.sec-event dl dd ul li {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.04em;
  margin-bottom: 0px;
  padding-left: 1.2em;
}
@media screen and (max-width: 767px) {
  html body .contents.sec-event dl dd ul li {
    font-size: 14px;
  }
}
html body .contents.sec-event dl dd ul li span {
  margin-left: -1.2em;
}
html body .contents.sec-event dl + figure {
  display: none;
}
@media screen and (max-width: 767px) {
  html body .contents.sec-event dl + figure {
    display: block;
    width: 182px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px !important;
  }
}
html body .wrapper {
  max-width: 1200px;
  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 {
  -webkit-transition: opacity 250ms;
  transition: opacity 250ms;
}
html body .alpha:hover {
  opacity: 0.75;
}
html body figure {
  text-align: center;
}
html body br.pc {
  display: none;
}
@media screen and (min-width: 376px) {
  html body br.pc {
    display: block;
  }
}
html body br.sp {
  display: none;
}
@media screen and (max-width: 575px) {
  html body br.sp {
    display: block;
  }
}
html body .pc_only {
  display: block;
}
@media screen and (max-width: 767px) {
  html body .pc_only {
    display: none;
  }
}
html body .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  html body .sp_only {
    display: block;
  }
}
html body .xs_only {
  display: none;
}
@media screen and (max-width: 575px) {
  html body .xs_only {
    display: block;
  }
}
html body .t_r {
  text-align: right;
}/*# sourceMappingURL=common.css.map */