@charset "UTF-8";
/* CSS Document */
/*
-----------------------------------------------
** header
----------------------------------------------- */
.header_in {
  padding: 3.5% 4%;
}
.logo {
  width: 10%;
  max-width: 110px;
}


/*
-----------------------------------------------
** グローバルメニュー中身
----------------------------------------------- */
.nav_drawer {
  background-color: #efe7e0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  padding: 3.5% 4% 7vw;
  right: -100%;
  transition: all 0.5s 0s ease;
  z-index: 10;
  overflow-y: auto;
}
#header-menu.active {
  right: 0;
}
.nav_list li a {
  text-decoration: none;
  color: #333;
  position: relative;
  transition: all 0.5s 0s ease;
  padding-bottom: 5px;
}
.nav_list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(9, auto);
  width: 45%;
  font-size: 1.6rem;
  font-weight: 300;
  margin: 0 auto;
  padding-left: 4em;
}
.nav_list li {
  margin-bottom: 1em;
}
.nav_list li a::after {
  content: "";
  background-color: #333;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -5px;
  opacity: 0;
  transition: all .3s ease;
}
.nav_list li a:hover::before {
  content: "\025cf";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -2em;
  font-size: 8px;
  color: #333;
}
.nav_list li a:hover::after {
  bottom: 0;
  opacity: 1;
}
.nav-btn_box {
  display: flex;
  justify-content: center;
  margin-top: 5vw;
  column-gap: 20px;
}
.nav-btn {
  font-weight: 300;
  border: solid 1.5px #595657;
}
.nav-btn .btn_span01 {
  font-size: 3rem;
}
.nav-btn .btn_span02 {
  font-size: 1.6rem;
  margin-left: 0.3em;
}
.nav-btn a {
  text-decoration: none;
  padding: 0.2em 1.3em;
  display: inline-block;
}
.nav-btn01 {
  background-color: #595657;
}
.nav-btn01 a {
  color: #efe7e0;
  transition: all 0.5s 0s ease;
}
.nav-btn02 a {
  color: #595657;
  transition: all 0.5s 0s ease;
}
.nav-btn01 a:hover {
  background-color: #efe7e0;
  color: #595657;
}
.nav-btn02 a:hover {
  background-color: #595657;
  color: #efe7e0;
}
html.is-fixed, html.is-fixed body {
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .nav_list {
    padding-left: 0;
  }
  .nav-btn_box {
    margin-top: 70px;
  }
}
@media screen and (max-width: 767px) {
  .nav_list {
    width: 55%;
  }
}
@media screen and (max-width: 630px) {
  .nav_list {
    width: 90%;
    font-size: 1.5rem;
  }
  .nav-btn .btn_span01 {
    font-size: 2rem;
  }
  .nav-btn .btn_span02 {
    font-size: 1.3rem;
  }
  .nav-btn_box {
    margin-top: 40px;
  }
}
@media screen and (max-width: 550px) {
  .nav_list {
    margin-top: 20px;
  }
  .nav-btn_box {
    flex-direction: column;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .nav-btn {
    width: 225px;
  }
  .nav-btn01 {
    margin-bottom: 20px;
  }
}
/*
-----------------------------------------------
** ハンバーガー
----------------------------------------------- */
.hamburger {
  position: fixed;
  top: 40px;
  right: 32px;
  width: 40px;
  height: 34px;
  z-index: 10;
  cursor: pointer;
}
.hamburger span {
  transition: all .3s;
  position: absolute;
  height: 1px;
  background-color: #333;
  width: 100%;
  z-index: 10;
}
.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 17px;
}
.hamburger span:nth-of-type(3) {
  top: 34px;
}
.hamburger.active span:nth-of-type(1) {
  /*openのとき、上の線を右斜めにする*/
  top: 10px;
  transform: translateY(6px) rotate(-45deg);
}
.hamburger.active span:nth-of-type(2) {
  /*真ん中の線を消す*/
  opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
  /*下の線を左斜めにする*/
  top: 22px;
  transform: translateY(-6px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .hamburger {
    width: 35px;
    height: 26px;
  }
  .hamburger span:nth-of-type(2) {
    top: 13px;
  }
  .hamburger span:nth-of-type(3) {
    top: 26px;
  }
}
@media screen and (max-width: 600px) {
  .logo {
    width: 13%;
  }
  .hamburger {
    top: 25px;
    right: 23px;
  }
}
/*
-----------------------------------------------
** footer nav
----------------------------------------------- */
.footer_nav {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  column-gap: 7%;
}
.footer_nav li a {
  text-decoration: none;
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 1em;
  display: inline-block;
  transition: all 0.5s 0s ease;
}
.footer_small {
  background-color: #cf010f;
  text-align: center;
  padding: 0.1em 0 0.2em;
}
.footer_small small {
  color: #fff;
  font-size: 1.1rem;
}
.footer_nav li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .footer_nav {
    column-gap: 2em;
  }
  .footer_nav li a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 500px) {
  .footer_nav {
    grid-template-rows: repeat(2, auto);
  }
}
/*
-----------------------------------------------
** page top
----------------------------------------------- */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background-color: #e6e6e8;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop_arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(20%) rotate(-45deg);
}
@media screen and (max-width: 600px) {
  .pagetop {
    right: 10px;
    width: 40px;
    height: 40px;
  }
  .pagetop_arrow {
    width: 8px;
    height: 8px;
  }
}