@charset "UTF-8";
@import "https://cdn.jsdelivr.net/npm/ress@2.0.4/dist/ress.min.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rampart+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Train+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
.siteHeader {
  position: fixed;
  background-color: transparent;
  width: 100%;
  z-index: 999;
}

.globalNav {
  display: flex;
  justify-content: center;
  vertical-align: middle;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.75);
  margin: 0 auto;
  padding: 10px 5px 15px;
  width: 100%;
}
.globalNav .nav {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 834px) {
  .globalNav .nav {
    display: block;
  }
}
.globalNav .nav .nav__center {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 834px) {
  .globalNav {
    background-color: unset;
  }
}
.globalNav__container ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
@media (max-width: 834px) {
  .globalNav__container ul {
    display: block;
  }
}
.globalNav__container ul li a {
  text-decoration: none;
  font-size: 18px;
}
.globalNav__container ul li:not(:first-child) {
  margin-left: 30px;
}
@media (max-width: 834px) {
  .globalNav__container ul li:not(:first-child) {
    margin-left: unset;
  }
}

@media (max-width: 834px) {
  .nav {
    position: fixed;
    right: -320px;
    /* 右から出てくる */
    top: 0;
    width: 300px;
    height: 100vh;
    padding-top: 60px;
    background-color: rgba(0, 0, 0, 0.75);
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto;
    /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
  }
  .nav_item a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #333;
    text-decoration: none;
  }
  .nav_item a:hover {
    background-color: #eee;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #fafafa;
    transition: all 0.6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
    background-color: #555;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
    background-color: #555;
  }
}
/****************************
 * ページ毎定義
 ****************************/
* {
  box-sizing: border-box;
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

html {
  font-size: 20px;
}
@media (max-width: 480px) {
  html {
    font-size: 16px;
  }
}

img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
  vertical-align: top;
}

.sp-only {
  display: none;
}

@media (max-width: 480px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}
.mw-40 {
  max-width: 40%;
}

.mw-50 {
  max-width: 50%;
}

.mw-60 {
  max-width: 60%;
}

.mw-70 {
  max-width: 70%;
}

.mw-80 {
  max-width: 80%;
}

.mw-85 {
  max-width: 85%;
}

.mw-90 {
  max-width: 90%;
}

.z-1 {
  position: relative;
  z-index: 1;
}

.z-10 {
  position: relative;
  z-index: 10;
}

main {
  max-width: 800px;
  margin: 0 auto;
  background-color: #231915;
}

.mv {
  position: relative;
}
.mv .header {
  padding: 20px 40px 0;
  position: absolute;
  width: 100%;
}
@media (max-width: 480px) {
  .mv .header {
    padding: 10px 20px 0;
  }
}
.mv .header .inner {
  display: flex;
  justify-content: space-between;
}
.mv .header .inner .left {
  width: 30%;
}
@media (max-width: 480px) {
  .mv .header .inner .left {
    padding-top: 6px;
  }
}
.mv .header .inner .left a {
  display: block;
  width: 100%;
  height: 100%;
}
.mv .header .inner .left a img {
  width: 100%;
}
.mv .header .inner .right {
  width: 50%;
}
.mv .header .inner .right a {
  display: block;
  width: 100%;
  height: 100%;
}
.mv .header .inner .right a img {
  width: 100%;
}

.step__line {
  margin: 40px auto;
}
.step__line a {
  display: block;
  width: 100%;
  height: 100%;
}
.step__line a img {
  width: 100%;
}

.reason .mt-n {
  margin-top: -70px;
}
@media (max-width: 480px) {
  .reason .mt-n {
    margin-top: -30px;
  }
}
.reason .text {
  margin-top: 30px;
  margin-bottom: 60px;
}

.banner {
  position: relative;
  margin-top: 100px;
  margin-bottom: 30px;
}
@media (max-width: 480px) {
  .banner {
    margin-top: 30px;
  }
}
.banner .frame {
  width: 95%;
}
.banner .line {
  position: absolute;
  width: 80%;
  bottom: 35%;
  left: 10%;
}
.banner .line a {
  display: block;
  width: 100%;
  height: 100%;
}
.banner .line a img {
  width: 100%;
}
.banner .mobile {
  position: absolute;
  bottom: 2px;
  left: 30%;
}

.jisseki {
  margin-top: 180px;
  margin-bottom: 100px;
}
@media (max-width: 480px) {
  .jisseki {
    margin-top: 100px;
  }
}

.case .mt-n {
  margin-top: -70px;
}
@media (max-width: 480px) {
  .case .mt-n {
    margin-top: -30px;
  }
}
.case .text {
  margin-top: 30px;
  margin-bottom: 60px;
}
.case .mb {
  margin-bottom: 100px;
}

.certificate .mb {
  margin-bottom: 60px;
}

.waza {
  margin-top: 180px;
}
@media (max-width: 480px) {
  .waza {
    margin-top: 100px;
  }
}
.waza .mw-90 {
  margin-top: -20px;
}

footer {
  background-color: #fff;
  padding: 50px 10px 10px;
}
@media (max-width: 480px) {
  footer {
    padding: 30px 0 20px;
  }
}
footer .menu {
  margin-bottom: 10px;
}
footer .menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
footer .menu ul li {
  font-size: 24px;
  padding: 0 18px;
}
@media (max-width: 480px) {
  footer .menu ul li {
    font-size: 3.8vw;
    padding: 0 10px;
  }
}
footer .menu ul li a {
  text-decoration: none;
}
footer .menu ul li:not(:last-child) {
  border-right: 2px solid #333;
}
@media (max-width: 480px) {
  footer .copyright {
    font-size: 3.5vw;
  }
}/*# sourceMappingURL=style.css.map */