@charset "utf-8";

*, ::before, ::after {
  box-sizing: border-box;
}

html {
  height: -webkit-fill-available;
  min-height: 100svh;
  font-size: 22px;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100svh;
  min-height: -webkit-fill-available;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  background-color: #fffA;
  position: relative;
}

body.scroll-lock {
  overflow: hidden;
}

a {
  text-decoration: none;
}

.content-title {
  font-size: 2.727rem;
  font-weight: 700;
  color: #004098;
  text-align: center;
  margin-bottom: 50px;
  white-space: nowrap;
}

.content-title.inner {
  font-size: 2.2727rem;
}

.content-title::first-letter {
  color: #E6002D;
}

.line-title {
  font-size: 1.3636rem;
  font-weight: 700;
  margin-bottom: 40px;
  padding: 15px 33px;
  border-bottom: solid 1px #8F8F8F;
  position: relative;
}

.line-title::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.line-title.red::before {
  background-color: #E6002D;
}

.line-title.blue::before {
  background-color: #004098;
}

.wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 100px 25px;
}

.bg-color-gray {
  background-color: #F1F2F4;
}

.bg-color-blue {
  background-color: #F1F5FB;
}

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

.text-site-link a {
  color: #333;
  text-decoration: underline;
}

.text-site-link a .icon {
  display: inline-block;
  width: 24px;
  height: auto;
  margin: 0 3px;
}

.text-site-link a .icon img {
  vertical-align: sub;
}

@media screen and (min-width: 1201px) {
  .max1200-only {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .max1024-only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }

  .sp-only {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .content-title.inner {
    font-size: min(5vw,2.727rem);
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .pc-only {
    display: none !important;
  }

  .content-title {
    font-size: 1.785rem;
    margin-bottom: 25px;
  }

  .content-title.inner {
    font-size: 1.428rem;
  }

  .wrapper {
    padding: 40px 25px;
  }

  .line-title {
    font-size: 1.2857rem;
    margin-bottom: 20px;
    padding: 10px 19px;
  }

  .line-title::before {
    width: 10px;
    height: 10px;
  }

  .text-site-link a .icon {
    width: 20px;
  }
}

/* === header === */
.header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
}

.header-logo a {
  display: block;
  width: 353px;
  height: auto;
}

.header-nav-menu ul {
  display: flex;
  gap: 50px;
}

.header-nav-menu a {
  color: #333;
  font-weight: 600;
}

.hum {
  width: 26px;
  height: 26px;
  position: relative;
}

.hum span {
  display: block;
  width: 18px;
  height: 1px;
  background-color: #333;
  position: absolute;
  left: 4px;
  transition: .3s ease-out;
}

.hum span:nth-child(1) {
  top: 7px;
}

.hum.active span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}

.hum span:nth-child(2) {
  top: 12px;
}

.hum.active span:nth-child(2) {
  transform: rotate(-45deg);
}

.hum span:nth-child(3) {
  top: 17px;
}

.hum.active span:nth-child(3) {
  opacity: 0;
}

.sp-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background-color: #fff;
  padding-top: 48px;
  display: none;
}

.nav-menu-inner {
  border-top: solid 1px #EBE9E9;
}

.sp-nav-menu li {
  border-bottom: solid 1px #EBE9E9;
}

.sp-nav-menu a {
  color: #333;
  font-weight: 600;
}

.sp-nav-menu li a {
  display: block;
  padding: 8px 26px;
  position: relative;
}

.sp-nav-menu li a::before,
.sp-nav-menu li a::after {
  content: '';
  display: block;
  width: 9px;
  height: 1px;
  background-color: #333;
  position: absolute;
  right: 28px;
}

.sp-nav-menu li a::before {
  top: 21px;
  transform: rotate(45deg);
}

.sp-nav-menu li a::after {
  top: 27px;
  transform: rotate(-45deg);
}

.sp-nav-menu .share-link {
  color: #333;
  font-weight: 600;
  padding: 23px 26px;
}

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

@media screen and (max-width: 1380px) {
  .header-wrapper {
    padding: 22px 30px;
  }

  .header-nav-menu ul {
    gap: 25px;
  }
}

@media screen and (max-width: 1200px) {
  .header {
    background-color: #fff;
    position: fixed;
  }

  .header-wrapper {
    align-items: center;
    padding: 11px 25px;
  }

  .sp-nav-menu {
    padding-top: 58px;
  }

  .header-logo a {
    width: clamp(119px,31.7vw,250px);
  }

  .header-nav-menu {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sp-nav-menu li a::before {
    top: 15px;
  }

  .sp-nav-menu li a::after {
    top: 21px;
  }
}

@media screen and (max-width: 600px) {
  .sp-nav-menu {
    padding-top: 48px;
  }
}

/* === kv === */
.inner-kv {
  padding-top: 30%;
  position: relative;
  background-color: #CFDEF4;
}

.kv-wrapper {
  position: relative;
}

.kv {
  overflow: hidden;
}

.inner-kv .kv-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.kv-text {
  color: #fff;
  font-weight: 700;
  cursor: default;
  text-shadow: 0px 0px 20px rgba(0,0,0,0.25);
}

.inner-kv .kv-text {
  font-size: 3.1818rem;
}

@media screen and (max-width: 1200px) {
  .main {
    padding-top: 57px;
  }

  .inner-kv {
    padding-top: 45.351%;
  }

  .inner-kv .kv-text {
    font-size: 7vw;
  }
}

@media screen and (max-width: 768px) {
  .main {
    padding-top: 48px;
  }

  .inner-kv .kv-text {
    font-size: 6.7vw;
  }
}

/* === footer === */
.footer {
  background-color: #004098;
  border-bottom: solid 19px #CFDEF4;
}

.footer-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 77px 25px 73px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
}

.footer-nav-menu {
  padding-top: 10px;
}

.footer-nav-menu ul {
  display: flex;
  gap: 40px;
}

.footer-nav-menu a {
  font-size: 0.909rem;
  color: #fff;
}

.for-top a {
  display: block;
  width: 45px;
  height: 45px;
  border: solid 1px #fff;
  border-radius: 5px;
  background-color: #004098;
  position: relative;
  margin-left: auto;
}

.for-top a::before,
.for-top a::after {
  content: '';
  display: block;
  width: 13px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 21px;
}

.for-top a::before {
  transform: rotate(-45deg);
  left: 10px;
}

.for-top a::after {
  transform: rotate(45deg);
  left: 19px;
}

.for-top {
  margin-bottom: 82px;
}

.share-link {
  color: #fff;
}

.sns-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 1200px) {
  .footer-nav-menu ul {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    border-width: 5px;
  }

  .footer-wrapper {
    padding: 20px 25px 26px;
  }

  .footer-nav-menu {
    padding-top: 24px;
  }

  .footer-nav-menu li + li {
    margin-top: 6px;
  }

  .footer-nav-menu a {
    font-size: 0.928rem;
  }

  .for-top {
    margin-bottom: 175px;
  }

  .for-top a {
    width: 25px;
    height: 25px;
    border-radius: 1.26px;
  }

  .for-top a::before,
  .for-top a::after {
    width: 7px;
    top: 11px;
  }

  .for-top a::before {
    left: 6px;
  }

  .for-top a::after {
    left: 11px;
  }

  .share-link {
    font-size: 0.928rem;
  }

  .sns-icon {
    width: 23px;
    height: 23px;
  }
}

/* === copy === */
.copy-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 38px 25px;
}

.copy-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copy-logo {
  width: 346px;
  height: auto;
}

.copy-text {
  font-size: 0.681rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .copy-wrapper {
    padding: 15px 25px;
  }

  .copy-flex {
    display: block;
  }

  .copy-logo {
    width: 150px;
    margin: 0 auto 5px;
  }

  .copy-text {
    font-size: 0.5rem;
    text-align: center;
  }
}