@charset "UTF-8";
/* 変数 */
:root {
  --text_green:#72c88c;
  --text_gray:#606060;
}

/* 全体 */
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
}

body {
  color: var(--text_green);
  font-family: "dnp-shuei-mgothic-std", sans-serif;
}

h2 {
  font-size: 3rem;
}

p {
  font-size: 2rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  h2 {
    font-size: 1.6rem;
  }
  p {
    font-size: 1rem;
  }
}
.container {
  margin: 0 auto;
}

.bg_img_tl {
  width: 30vw;
  height: 14.1122914vw;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  background-image: url(../img/bg_tl2.png);
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.bg_img_tr {
  width: 17.9021647vw;
  height: 14.1122914vw;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  background-image: url(../img/bg_tr2.png);
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.bg_img_center {
  width: 100%;
  height: 9.3175vw;
  position: fixed;
  bottom: -3vh;
  left: 0;
  z-index: 1;
  background-image: url(../img/bg_center2.png);
  background-size: contain;
  background-repeat: repeat-x;
  pointer-events: none;
}

@media (max-width: 767px) {
  .bg_img_tl {
    width: 50vw;
    height: 23.5204855vw;
  }
  .bg_img_tr {
    width: 29.8369408055vw;
    height: 23.5204855vw;
  }
  .bg_img_center {
    height: 18.635vw;
    bottom: 0;
    background-repeat: no-repeat;
  }
}
/* メニュー */
.btn_menuOpen {
  width: 80px;
  height: 80px;
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 90;
  transition: opacity 0.4s ease;
}
.btn_menuOpen:hover {
  cursor: pointer;
}
.btn_menuOpen.is_active {
  opacity: 0;
}

@media (max-width: 767px) {
  .btn_menuOpen {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
  }
}
nav {
  --right:-100%;
  position: fixed;
  right: var(--right);
  top: 0;
  width: 250px;
  height: 100vh;
  background-color: #23d0c9;
  padding-top: 30vh;
  z-index: 99;
  transition: right 0.4s ease;
}
nav.is_active {
  --right:0;
}
nav .btn_menuClose {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50px;
  right: 50px;
}
nav .btn_menuClose:hover {
  cursor: pointer;
}
@media (max-width: 767px) {
  nav .btn_menuClose {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 20px;
  }
}
nav ul {
  display: block;
  width: fit-content;
  margin: 0 auto;
  list-style-type: none;
}
nav ul a {
  color: white;
}
nav ul li {
  position: relative;
  padding-left: 20px; /* 画像分の余白を追加 */
  line-height: 2;
  font-size: 1.3rem;
}
nav ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px; /* 画像の幅 */
  height: 10px; /* 画像の高さ */
  background-image: url("../img/menu_point.png"); /* 画像のパス */
  background-size: contain;
  background-repeat: no-repeat;
}

footer {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .container {
  padding: 20vh 0;
  width: 40%;
}
footer .container .logo_footer {
  width: 70%;
  margin: 0 auto 20px;
}
@media (max-width: 767px) {
  footer .container .logo_footer {
    width: 60%;
  }
}
footer .container .footer_contents {
  width: 50vw;
  min-width: 500px;
  margin: 0 auto 50px;
  display: flex;
}
footer .container .footer_contents p {
  font-size: 1rem;
}
footer .container .footer_contents .footer_left, footer .container .footer_contents .footer_right {
  width: 50%;
}
@media (max-width: 767px) {
  footer .container .footer_contents p {
    font-size: 0.7rem;
  }
}
@media (max-width: 767px) {
  footer .container {
    width: 90%;
  }
  footer .container .footer_contents {
    padding: 0 5px;
    width: 100%;
    min-width: auto;
    justify-content: center;
  }
  footer .container .footer_contents .footer_left, footer .container .footer_contents .footer_right {
    width: fit-content;
    margin: 0 10px;
  }
}
footer .copyright {
  color: var(--text_gray);
  font-size: 0.6rem;
  text-align: center;
}/*# sourceMappingURL=style_common.css.map */