@charset "UTF-8";
.inner {
  min-width: 1000px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1040px) {
  .inner {
    min-width: 0;
    padding: 0 20px;
    width: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 667px) {
  .inner {
    min-width: 0;
    padding: 0 20px;
    width: 100%;
    overflow: hidden;
  }
}

/***********************************
/* ヘッダ
***********************************/
.logo_header_top{
  background: url(../img/logo_header_top.png) center center/cover no-repeat !important;
}
.logo_header {
  width: 83px;
  height: 106px;
  background: url(../img/logo_header.png) center center/cover no-repeat;
  display: block;
  position: fixed;
  top: 20px;
  left: 80px;
  z-index: 100;
}
@media screen and (max-width: 1040px) {
  .logo_header {
    width: 60px;
    height: 77px;
    left: 20px;
  }
}
.under .logo_header {
  background: url(../img/logo_header-under.png) center center/cover no-repeat;
}

.nav-sp {
  display: none;
  background: #A37054;
  border-radius: 50px 0 0 50px;
  position: fixed;
  top: 30px;
  right: 0;
  z-index: 1000;
  padding: 10px 20px 10px 10px;
  transition: background-color 0.5s;
}
.nav-sp.open {
  background: none;
}
.nav-sp.open [class^=btn_switch],
.nav-sp.open .switch_line {
  opacity: 0;
}
.nav-sp.open .btn_drawer span {
  background: white;
}
.nav-sp.open .btn_drawer span:first-of-type {
  top: 6px;
  transform: rotate(30deg);
}
.nav-sp.open .btn_drawer span:nth-of-type(2) {
  display: none;
}
.nav-sp.open .btn_drawer span:last-of-type {
  top: 6px;
  transform: rotate(-30deg);
}
@media screen and (max-width: 1040px) {
  .nav-sp {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.nav-sp [class^=btn_switch] {
  letter-spacing: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: white;
  border: solid 1px white;
  transition: opacity 0.5s;
}
.nav-sp [class^=btn_switch].on {
  background: white;
  color: #A37054;
}
.nav-sp .switch_line {
  width: 1px;
  height: 20px;
  background: white;
  margin: 0 10px;
  transition: opacity 0.5s;
}
.nav-sp .btn_drawer {
  display: none;
  width: 35px;
  height: 12px;
  background: none;
  margin-left: 20px;
  position: relative;
}
.nav-sp .btn_drawer span {
  width: 100%;
  height: 1px;
  background: white;
  display: block;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.nav-sp .btn_drawer span:first-of-type {
  top: 0;
}
.nav-sp .btn_drawer span:nth-of-type(2) {
  top: 6px;
}
.nav-sp .btn_drawer span:last-of-type {
  top: 12px;
}
@media screen and (max-width: 1040px) {
  .nav-sp .btn_drawer {
    display: block;
  }
}

.nav_drawer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #A37054;
  padding: 40px 40px 0;
  overflow: scroll;
  display: none;
  z-index: 999;
}
@media screen and (max-width: 667px) {
  .nav_drawer {
    padding: 40px 20px 60px;
  }
}
.nav_drawer .nav_drawer_inner {
  height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.nav_drawer .nav_drawer_title {
  width: 100px;
  height: 8px;
  background: url(../img/drawer_title.png) center center/contain no-repeat;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.nav_drawer li {
  position: relative;
}
.nav_drawer li:not(:last-of-type) {
  margin-bottom: 38px;
}
.nav_drawer .drawer_menu {
  margin-top: 70px;
}
.nav_drawer .drawer_menu .drawer_menu_title {
  cursor: pointer;
  font-size: 16px;
  color: white;
  font-weight: 700;
  width: 40%;
  position: relative;
}
.nav_drawer .drawer_menu .drawer_menu_title.acc:before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: 0;
  background: white;
}
.nav_drawer .drawer_menu .drawer_menu_title.acc:after {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  position: absolute;
  top: calc(50% - 7px);
  right: 7px;
  background: white;
  transition: all 0.3s;
}
.nav_drawer .drawer_menu .drawer_menu_title.acc.open:after {
  transform: rotate(90deg);
}
.nav_drawer .drawer_cmenu {
  margin-top: 18px;
  border-left: solid 1px white;
  padding-left: 30px;
  display: none;
}
.nav_drawer .drawer_cmenu a {
  cursor: pointer;
  font-size: 16px;
  color: white;
  font-weight: 700;
  display: block;
  position: relative;
}
.nav_drawer .drawer_cmenu a span {
  font-size: 10px;
  margin-left: 20px;
}
.nav_drawer .drawer_cmenu a:not(:last-of-type) {
  margin-bottom: 18px;
}
.nav_drawer .drawer_foot_nav {
  position: absolute;
  bottom: 15px;
  right: 20px;
}
.nav_drawer .drawer_foot_nav a {
  font-size: 12px;
  color: white;
  font-weight: 700;
}
.nav_drawer .drawer_foot_nav span {
  color: white;
  margin: 0 5px;
}

.gnav {
  height: 60px;
  padding: 0 20px;
  background: #A37054;
  border-radius: 50px;
  position: fixed;
  top: 30px;
  right: 80px;
  z-index: 100;
}
@media screen and (max-width: 1040px) {
  .gnav {
    display: none;
  }
}
.gnav .gnav_menu {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.gnav .gnav_menu > li {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.gnav .gnav_menu > li:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  position: absolute;
  bottom: 10px;
  left: calc(50% - 3px);
  opacity: 0;
  transition: opacity 0.2s;
}
.gnav .gnav_menu > li:not(.switch):hover:after {
  opacity: 1;
}
.gnav .gnav_menu > li:not(.switch):hover .cnav {
  display: block;
}
.gnav .gnav_menu > li > a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgb(255, 255, 255);
  transition: color 0.2s;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gnav .gnav_menu .switch {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gnav .gnav_menu .switch [class^=btn_switch] {
  letter-spacing: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: solid 1px white;
  color: white;
}
.gnav .gnav_menu .switch [class^=btn_switch].on {
  background: white;
  border: solid 1px white;
  color: #A37054;
}
.gnav .gnav_menu .switch .switch_line {
  width: 1px;
  height: 20px;
  background: white;
  margin: 0 10px;
}

.cnav {
  width: 100vw;
  position: fixed;
  top: 90px;
  left: 0;
  background: #BC8C72;
  display: none;
}
.cnav .inner {
  width: 1000px;
  padding: 100px 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.cnav .cnav_block-left {
  margin-right: 100px;
}
.cnav .cnav_title {
  font-size: 40px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.15em;
}
.cnav .cnav_title-ja {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
}
.cnav .cnav_menu:not(:last-of-type) {
  margin-right: 40px;
}
.cnav .cnav_menu li:not(:last-of-type) {
  margin-bottom: 20px;
}
.cnav .cnav_menu a {
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.15em;
}
.cnav .cnav_menu a span {
  font-size: 12px;
  font-weight: 300;
  margin-left: 10px;
}

/***********************************
/* フッタ
***********************************/
.footer {
  background: #f6f6f6;
  height: 125px;
  width: 100%;
}
@media screen and (max-width: 667px) {
  .footer {
    height: 80px;
  }
}
.footer .inner {
  padding: 0 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1040px) {
  .footer .inner {
    padding: 20px 20px;
  }
}
.footer .inner .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 667px) {
  .footer .inner .left {
    width: 100%;
    justify-content: space-between;
  }
  .top .footer .inner .left {
    align-items: flex-end;
  }
}
.footer .wp_logo {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 20px;
  transition: opacity 0.2s;
}
@media screen and (min-width: 960px) and (max-width: 1200px) {
  .footer .wp_logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 667px) {
  .footer .wp_logo {
    width: 60px;
    height: 60px;
  }
}
.footer .wp_logo:hover {
  opacity: 0.7;
}
.footer .wp_logo img {
  width: 100%;
}
.footer .copy {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #363636;
  line-height: 1.7;
}
@media screen and (min-width: 960px) and (max-width: 1200px) {
  .footer .copy {
    font-size: 11px;
  }
}
@media screen and (max-width: 667px) {
  .footer .copy {
    font-size: 10px;
  }
}
.footer .copy span {
  font-weight: 100;
}
.under .footer .copy span {
  color: #363636;
}
.footer .footer_nav {
  margin-top: 10px;
}
@media screen and (max-width: 667px) {
  .footer .footer_nav {
    display: none;
  }
}
.footer .footer_nav a {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  display: inline-block;
  color: #363636;
  position: relative;
  padding-right: 40px;
}
@media screen and (min-width: 960px) and (max-width: 1200px) {
  .footer .footer_nav a {
    padding-right: 23px;
    font-weight: 600;
    font-size: 11px;
  }
}
.footer .footer_nav a:hover {
  text-decoration: underline;
}
.footer .footer_nav a:after {
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  background: #363636;
  position: absolute;
  top: 0;
  right: 20px;
}
@media screen and (min-width: 960px) and (max-width: 1200px) {
  .footer .footer_nav a:after {
    right: 10px;
  }
}
.footer .footer_nav a:last-of-type:after {
  background: transparent;
}
.under .footer .footer_nav a:last-of-type:after {
  background: transparent;
}
.footer .footer_btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 667px) {
  .footer .footer_btns {
    display: none;
  }
}
@media screen and (max-height: 550px) {
  .footer .footer_btns {
    display: none;
  }
}
.footer .footer_btns a {
  width: 150px;
  padding: 10px 0 8px;
  border: solid 2px #363636;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #363636;
  text-align: center;
  line-height: 1.1rem;
  display: block;
}
@media screen and (min-width: 980px) and (max-width: 1280px) {
  .footer .footer_btns a {
    width: 135px;
    padding: 10px 0 8px;
    font-size: 11px;
    line-height: 1rem;
  }
}
.footer .footer_btns a:not(:last-of-type) {
  margin-right: 20px;
}
@media screen and (min-width: 980px) and (max-width: 1280px) {
  .footer .footer_btns a:not(:last-of-type) {
    margin-right: 15px;
  }
}
.footer .footer_btns a strong {
  font-weight: 700;
  font-size: 16px;
}
@media screen and (min-width: 980px) and (max-width: 1280px) {
  .footer .footer_btns a strong {
    font-weight: 700;
    font-size: 14px;
  }
}