@charset "utf-8";
/* CSS Document */

/* ===============================
	header
 =============================== */
#header {
  max-width: 1080px;
  border-bottom: var(--C-green) 2px solid;
  margin: auto;
  z-index: 999;
  padding-top: 28px;
  padding-bottom: 26px;
}
.header_inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.header-nav .nav_toggle {
  display: none;
}
.header-nav .nav_menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header-nav .nav_menu li {
  position: relative;
}
.header-nav .nav_list a {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.031em;
  color: var(--C-green);
  display: block;
  padding: 1ch 1.8ch;
}
.header-nav .nav_list:hover a {
  opacity: 1;
  color: var(--C-black);
}
.header-nav .nav_list::before {
  content: '';
  width: 1px;
  height: 21px;
  background: var(--C-green);
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  #header {
    height: 15.73333333333333vw;
    border-bottom: none;
    position: fixed;
    padding: 0;
  }
  .header_inner {
    height: 100%;
    align-items: flex-end;
  }
  .header_logo {
    margin-left: 3.6vw;
  }
  .header_logo a {
    width: 20.26666666666667vw;
    display: block;
  }
  .header_logo img {
    width: auto;
    height: 13.46666666666667vw;
  }
  .header-nav {
    margin-left: auto;
  }
  .header-nav .nav_toggle {
    display: block;
    position: fixed;
    right: 2.66666666666667vw;
    top: 1.33333333333333vw;
    width: 12vw;
    height: 12vw;
    z-index: +1;
  }
  .header-nav .nav_toggle span {
    background: var(--C-green);
    width: 63.33333333333333%;
    height: .53333333333333vw;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: .5s;
  }
  .header-nav .nav_toggle span:first-child {
    top: 27.77777777777778%;
  }
  .header-nav .nav_toggle span:nth-child(2) {
    top: 50%;
    bottom: 50%;
  }
  .header-nav .nav_toggle span:last-child {
    bottom: 27.77777777777778%;
  }
  .header-nav .nav_menu {
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: var(--C-green);
    visibility: hidden;
    opacity: 0;
    transform: translateX(-100vw);
    padding-top: 6.66666666666667vw;
    transition: .5s;
  }
  .header-nav .nav_list {
    text-align: left;
    width: 79.2vw;
    margin: auto;
  }
  .header-nav .nav_list a {
    font-size: 5.73333333333333vw;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--C-white);
    display: inline-block;
    padding: 2.4vw 3.73333333333333vw;
  }
  .header-nav .nav_menu li.nav_menu_sub a {
    font-size: 2.93333333333333vw;
    letter-spacing: 0.445em;
    padding: 2.4vw 0;
  }
  .header-nav .nav_menu li.nav_menu_sub::before {
    content: none;
  }
  .header_contact {
    transform: translateX(-100vw);
    display: flex;
    justify-content: center;
    gap: 2.4vw;
    opacity: 0;
  }
  .header_contact .contact_btn {
    font-size: 4.6vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--C-green);
    background: var(--C-white);
    border: var(--C-orange) .53333333333333vw solid;
    border-radius: 100px;
    width: 42.6vw;
    height: 11.73333333333333vw;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, .3));
  }
  .header_contact .contact_btn:last-child {
    font-size: 5vw;
  }
  .header_img {
    position: fixed;
    top: 73.6vw;
    right: 0;
    width: 23.6vw;
    transform: translateX(100vw);
    transition: .5s;
  }
  /* ナビオープン時 */
  .nav-open .header-nav .nav_menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
  .header-nav .nav_list::before {
    width: 2px;
    height: 5.6vw;
    background: var(--C-white);
  }
  .nav-open .header-nav .nav_toggle span {
    background: var(--C-white);
  }
  .nav-open .header-nav .nav_toggle span:first-child {
    transform: rotate(-25deg);
    top: 0;
    bottom: 0;
  }
  .nav-open .header-nav .nav_toggle span:nth-child(2) {
    display: none;
  }
  .nav-open .header-nav .nav_toggle span:last-child {
    transform: rotate(25deg);
    top: 0;
    bottom: 0;
  }
  .nav-open .header_contact {
    width: 100%;
    position: fixed;
    top: 110.1333333333333vw;
    opacity: 1;
  }
  .nav-open .header_img {
    transform: translateX(0);
  }
}

/* ===============================
	footer
 =============================== */
#footer {
  text-align: center;
  background: var(--C-green);
  padding-top: 20px;
  padding-bottom: 38px;
}
#footer * {
  color: var(--C-white);
}
#footer .tuiju_btn {
  display: none;
}
#footer .footer_nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 0;
  margin-top: 18px;
  margin-bottom: 20px;
}
#footer .footer_nav li {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.031em;
  position: relative;
  padding: 0 2ch;
}
#footer .footer_nav li::before,
#footer .footer_nav li::after {
  content: '';
  width: 1px;
  height: 100%;
  background: var(--C-white);
  position: absolute;
  top: 0;
  bottom: 0;
}
#footer .footer_nav li::before {
  left: 0;
}
#footer .footer_nav li::after {
  right: 0;
}
#footer .footer_nav li:first-child:before,
#footer .footer_nav li:last-child:after {
  width: 2px;
}
#footer .footer_copyright {
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  #footer {
    padding-top: 2.4vw;
    padding-bottom: 30vw;
  }
  #footer .tuiju_btn {
    display: block;
    background: var(--C-green);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
  }
  #footer .tuiju_btn .wrap {
    position: relative;
    overflow: visible;
  }
  #footer .tuiju_btn  picture img {
    width: 76.8vw;
  }
  #footer .tuiju_btn  ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4.26666666666667vw;
    margin-bottom: 4.26666666666667vw;
  }
  #footer .tuiju_btn  ul img {
    width: 40.26666666666667vw;
  }
  #footer .tuiju_btn .contact_img {
    position: absolute;
    width: 14.4vw;
    height: 12.8vw;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  #footer .footer_logo img {
    width: 32.8vw;
  }
  #footer .footer_nav {
    gap: 1.86666666666667vw 0;
    margin-top: 2.93333333333333vw;
    margin-bottom: 4.26666666666667vw;
  }
  #footer .footer_nav li {
    font-size: 2.66666666666667vw;
    padding: 0 2ch;
  }
  #footer .footer_copyright {
    font-size: 1.86666666666667vw;
  }
}