@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansJP-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansJP-ExtraLight.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansJP-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansJP-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansJP-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansJP-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansJP-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansJP-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "noto-sans";
  src: url("../fonts/NotoSansJP-Black.ttf");
  font-weight: 900;
}
@font-face {
  font-family: "rocksalt";
  src: url("../fonts/RockSalt-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "zen-kakugo";
  src: url("../fonts/ZenKakuGothicNew-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "gothic-a1";
  src: url("../fonts/GothicA1-Bold.ttf");
  font-weight: bold;
}
body {
  font-size: 18px;
  font-weight: 400;
  font-family: "noto-sans", sans-serif;
  line-height: 2;
  background-color: #EEFBFF;
  max-width: 1920px;
  margin: 0 auto;
}

#page_app {
  position: relative;
}
#page_app .back_ground {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/common/bg.png");
  background-repeat: repeat;
  background-size: 100%;
  background-position: center;
  -webkit-animation-name: back_ground_anime;
          animation-name: back_ground_anime;
  -webkit-animation-duration: 30s;
          animation-duration: 30s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes back_ground_anime {
  from {
    background-position: left top;
    transform: scale(1, 1);
  }
  to {
    background-position: right bottom;
    transform: scale(1, 1);
  }
}

@keyframes back_ground_anime {
  from {
    background-position: left top;
    transform: scale(1, 1);
  }
  to {
    background-position: right bottom;
    transform: scale(1, 1);
  }
}
.load_header {
  background-image: url("../images/common/mv_back.png");
  background-repeat: no-repeat;
  background-position: right 8vw top calc(50% + 28px);
  background-size: 55%;
  height: 100vh;
  position: relative;
  z-index: 2;
}
.load_header.close {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
.load_header .header_logo {
  max-width: 310px;
  margin-left: auto;
  padding: 3.7dvh 35px 0 0;
}
.load_header .header_logo img {
  width: 100%;
}
.load_header .mv_content_wrap {
  max-width: 1647px;
  margin: 0 auto;
  width: 95%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
.load_header .mv_content_wrap .catch_phrase {
  padding: 6.3dvh 0;
}
.load_header .mv_content_wrap .catch_phrase p {
  font-size: 41px;
  font-weight: bold;
  line-height: 1.463;
}
.load_header .mv_content_wrap .catch_phrase p .rock {
  font-size: 87px;
  font-family: "rocksalt", sans-serif;
  color: #FF0000;
  letter-spacing: -0.14em;
  line-height: 1;
  display: inline-block;
  margin: 0 14px;
}
.load_header .mv_content_wrap .header_title {
  padding: 2dvh 0;
}
.load_header .mv_content_wrap .header_text {
  padding: 6.1dvh 0;
}
.load_header .mv_content_wrap .header_text .header_text_large {
  display: inline-block;
  background-color: #318BCB;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 2.333;
  padding: 0px 37px 0 11px;
}
.load_header .mv_content_wrap .header_text .header_text_large .header_text_small {
  font-size: 15px;
  font-weight: bold;
  line-height: 3.733;
  display: inline-block;
  margin: 0 10px;
}
.load_header .scroll_arrow {
  display: block;
  position: absolute;
  bottom: 5.4dvh;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  font-family: "zen-kakugo", sans-serif;
  color: #318BCB;
  line-height: 1;
}
.load_header .scroll_arrow:before, .load_header .scroll_arrow:after {
  content: "";
  width: 15px;
  height: 15px;
  border-bottom: 2px solid #318BCB;
  border-right: 2px solid #318BCB;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  -webkit-animation-name: arrow-move;
          animation-name: arrow-move;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
}
.load_header .scroll_arrow:after {
  bottom: -18px;
}
.load_header .mv_all_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.load_header .mv_all_wrapper img {
  opacity: 0;
}

@-webkit-keyframes arrow-move {
  0% {
    transform: translateY(0%) rotate(45deg);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateY(150%) rotate(45deg);
    opacity: 0;
  }
}

@keyframes arrow-move {
  0% {
    transform: translateY(0%) rotate(45deg);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translateY(150%) rotate(45deg);
    opacity: 0;
  }
}
#to_top {
  position: fixed;
  bottom: 10.8dvh;
  right: 1vw;
  transition: 0.5s;
  z-index: 10;
}
#to_top:hover {
  opacity: 0.5;
  transition: 0.5s;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
header.open {
  opacity: 1;
  visibility: visible;
  transition: 1s;
}
header .pc_nav {
  max-width: 478px;
  width: 100%;
  position: absolute;
  top: 3dvh;
  left: 10.8%;
}
header .pc_nav .image_wrap {
  max-width: 380px;
  margin: 0 auto 4.3dvh 53px;
}
header .pc_nav .image_wrap img {
  width: 100%;
}
header .pc_nav ul {
  margin: 0 0 1.7dvh 0;
}
header .pc_nav ul li a {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.25;
  border-bottom: 1px solid #33CEFF;
  padding: 20px 20px;
  position: relative;
  color: #318BCB;
  display: block;
  transition: 0.2s;
  text-shadow: #EEFBFF;
}
header .pc_nav ul li a:before {
  content: "";
  display: block;
  border-bottom: 1px solid #33CEFF;
  border-right: 1px solid #33CEFF;
  width: 9px;
  height: 9px;
  transform: rotate(-45deg) translateY(-50%);
  position: absolute;
  left: 5px;
  top: 50%;
  transition: 0.5s;
}
header .pc_nav ul li a.light_on {
  color: #33CEFF;
  border-bottom: 3px solid #33CEFF;
  transition: 0.5s;
}
header .pc_nav ul li a.light_on:before {
  border-bottom: 3px solid #33CEFF;
  border-right: 3px solid #33CEFF;
  transition: 0.5s;
}
header .pc_nav ul li a:hover {
  opacity: 1;
}
header .pc_nav ul.other_page_btn {
  margin: 0 0 1.7dvh 0;
}
header .pc_nav ul.other_page_btn li {
  width: 270px;
  height: 50px;
  border-radius: 5px;
  margin: 0 0 1rem 0;
}
header .pc_nav ul.other_page_btn li a {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.25;
  border-bottom: none;
  padding: 12.5px 20px;
  position: relative;
  color: #fff;
  background-color: #318BCB;
  display: block;
  transition: 0.2s;
  border-radius: 10px;
  text-align: center;
  box-shadow: 2px 2px 0px #EEFBFF;
}
header .pc_nav ul.other_page_btn li a:before {
  /*
  content:"";
  display: block;
  border-bottom: 1px solid value.$light-color;
  border-right: 1px solid value.$light-color;
  width: 9px;
  height: 9px;
  transform: rotate(-45deg) translateY(-50%);
  position: absolute;
  left: 5px;
  top: 50%;
  transition: 0.5s;
  */
  content: none;
}
header .pc_nav ul.other_page_btn li a.light_on {
  color: #33CEFF;
  border-bottom: 3px solid #33CEFF;
  transition: 0.5s;
}
header .pc_nav ul.other_page_btn li a.light_on:before {
  border-bottom: 3px solid #33CEFF;
  border-right: 3px solid #33CEFF;
  transition: 0.5s;
}
header .pc_nav ul.other_page_btn li a:hover {
  opacity: 1;
}
header .pc_nav .pc_nav_contact {
  /*font-size: 30px;*/
  font-weight: bold;
  font-family: "gothic-a1", sans-serif;
  /*letter-spacing: 0.09em;
  color: #fff;
  border-radius: 50px;
  background: linear-gradient(to bottom right ,value.$light-color 15%, value.$main-color);
  padding: 16px 0;
  display: block;
  text-align: center;
  max-width: 410px;
  margin: 0 auto;
  transition: 0.5s;
  border: none;
  &.light_on {
      background: #2FA439;
      color: value.$light_color;
      transition: 0.5s;
  }
  &:hover {
      opacity: 1;
  }
      */
}
header .pc_back_logo {
  display: block;
  position: absolute;
  left: 3vw;
  bottom: 5dvh;
  max-width: 244px;
}

footer {
  position: relative;
  padding: 0 0 13px 0;
}
footer .footer_nav ul {
  display: flex;
  justify-content: flex-end;
  max-width: 1596px;
  margin: 0 auto;
  width: 95%;
}
footer .footer_nav ul li {
  color: #318BCB;
  font-size: 24px;
  font-weight: 500;
  border-left: 2px solid #318BCB;
  padding: 0 37px;
}
footer .footer_nav ul li:nth-of-type(1) {
  border: none;
}
footer .footer_nav ul li a {
  font-weight: bold;
}

/* add 2025*/
.common-txt-width {
  width: 90%;
  text-align: center;
  line-height: 1.666;
  margin: 0 auto 30px auto;
}

@media screen and (max-height: 900px) {
  header .pc_nav .image_wrap {
    margin: 0 auto 1em;
  }
  header .pc_nav ul li a {
    padding: 0.5em 2em;
  }
  header .pc_back_logo {
    left: 1vw;
    max-width: 200px;
  }
}
@media screen and (max-width: 1400px) {
  header {
    display: none;
  }
  footer .footer_nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em 0px;
    text-align: center;
  }
  footer .footer_nav ul li {
    width: 50%;
  }
  footer .footer_nav ul li:nth-of-type(3) {
    border-left: none;
  }
  footer .footer_nav ul li:nth-of-type(5) {
    border-left: none;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
  #to_top {
    bottom: 3dvh;
    right: 3vw;
    width: 50px;
  }
  .load_header {
    background-position: center bottom 13dvh;
    background-size: 40%;
    height: 100dvh;
  }
  .load_header .header_logo {
    max-width: 180px;
    margin: 1em auto;
    padding: 0;
  }
  .load_header .mv_content_wrap {
    position: static;
    transform: none;
  }
  .load_header .mv_content_wrap .catch_phrase {
    padding: 1dvh;
  }
  .load_header .mv_content_wrap .catch_phrase p {
    font-size: 24px;
  }
  .load_header .mv_content_wrap .catch_phrase p .rock {
    font-size: 40px;
  }
  .load_header .mv_content_wrap .header_title {
    max-width: 250px;
    margin: 0 auto;
  }
  .load_header .mv_content_wrap .header_text {
    padding: 2dvh;
  }
  .load_header .mv_content_wrap .header_text br {
    display: none;
  }
  .load_header .mv_content_wrap .header_text .header_text_large {
    display: block;
    padding: 1.5em 1em;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 1em;
  }
  .load_header .mv_content_wrap .header_text .header_text_large .header_text_small {
    line-height: 1;
  }
  .load_header .scroll_arrow {
    bottom: 9.4dvh;
  }
  footer .footer_nav ul {
    display: block;
  }
  footer .footer_nav ul li {
    width: 100%;
    border: none;
  }
  footer .footer_nav ul li a {
    text-decoration: underline;
  }
}
/*# sourceMappingURL=common.css.map */