/* ============================================================================
header
============================================================================== */
.header {
  position: fixed;
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 10;
  border-bottom: 1px solid #ebeaea;
  box-shadow: 0px 5px 8px -5px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 991px) {
  .header {
    position: absolute;
    height: 4.5rem;
    border: none;
    box-shadow: none;
  }
}

header::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
}

header.is-cover::before {
  opacity: 1;
}

.header_inner.inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1230px;
  padding-left: 35px;
}
@media screen and (max-width: 991px) {
  .header_inner.inner {
    padding-left: 2.3rem;
    padding-right: 0;
  }
}

.header_logo {
  width: 14rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .header_logo {
    width: 6rem;
    margin-top: 0.9rem;
  }
}

.header_logo:hover {
  opacity: 0.8;
}

.header_logo a {
  display: block;
}

.header_logo img {
  width: 7.6rem;
}
@media screen and (max-width: 991px) {
  .header_logo img {
    width: 5.5rem;
  }
}

.header_logo span {
  font-size: 1rem;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 991px) {
  .header_logo span {
    font-size: 0.6rem;
  }
}

.header_nav {
  width: calc(100% - 14rem);
  height: 100%;
  border-left: 1px solid #ebeaea;
}
@media screen and (max-width: 991px) {
  .header_nav {
    width: 8rem;
    margin-left: auto;
    margin-right: 6.5rem;
    border: none;
  }
}

.header_hamburger {
  display: none;
}
@media screen and (max-width: 991px) {
  .header_hamburger {
    display: block;
  }
}

.drawer {
  display: none;
}
@media screen and (max-width: 991px) {
  .drawer {
    display: block;
    z-index: 10;
  }
}

.header_contact {
  display: none;
}
@media screen and (max-width: 991px) {
  .header_contact {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    margin-left: auto;
    margin-right: 6rem;
  }
}

.header_tel {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header_tel img {
  width: 1.2rem;
}

.header_tel a {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: normal;
}

.header_mail {
  width: 1.95rem;
  height: 1.34rem;
}

.header_mail a {
  height: 100%;
  display: block;
  background-color: #a79257;
  -webkit-mask: url(../img/img-common/icon_mail.svg) center top/contain no-repeat;
          mask: url(../img/img-common/icon_mail.svg) center top/contain no-repeat;
}

/* ============================================================================
gnav
============================================================================== */
.gnav {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .gnav {
    display: none;
  }
}

.gnav_lists {
  display: grid;
  grid-template-columns: 25% 1fr 1fr;
  width: calc(100% - 33rem);
  height: 100%;
}
@media screen and (max-width: 991px) {
  .gnav_lists {
    display: none;
  }
}

.gnav_list {
  height: 100%;
}

.gnav_list a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.gnav_list:nth-child(2) a {
  background-color: #ebeaea;
}

.gnav_list:last-child a {
  color: #9d8a54;
  background-color: #f3f3ea;
}

.gnav_list a::before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.4rem;
  width: 0.8rem;
  height: 0.5rem;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #aeaeae;
}

.gnav_list:last-child a::before {
  background-color: #c3b17a;
}

.gnav_list:not(:first-child) a {
  padding-top: 1rem;
  letter-spacing: 0.4em;
}

.gnav_list a span {
  position: absolute;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: bold;
  top: 1rem;
  left: 1.9rem;
}

.gnav_youtube {
  width: 12rem;
}
@media screen and (max-width: 991px) {
  .gnav_youtube {
    display: none;
  }
}

.gnav_youtube a {
  display: grid;
  place-items: center;
}

.gnav_youtube img {
  width: 7rem;
}

.gnav_contact {
  border-left: 1px solid #ebeaea;
  padding-inline: 2.5rem;
  width: 21rem;
}

.gnav_tel {
  display: flex;
  align-items: center;
}

.gnav_tel img {
  width: 15px;
  margin-right: 0.5rem;
}

.gnav_tel a {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: normal;
}

.gnav_mail {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.gnav_mail img {
  width: 16px;
  margin-right: 0.6rem;
}

.gnav_mail a {
  font-size: 1.2rem;
  line-height: 1;
  padding-bottom: 0.3em;
  letter-spacing: 0.05em;
}

/* ============================================================================
hamburger
============================================================================== */
.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 4.5rem;
  height: 4.5rem;
  border: none;
  padding: 0;
  background-color: #9d8a54;
  z-index: 21;
}

.hamburger span {
  position: absolute;
  background-color: #fff;
  height: 0.15rem;
  width: 1.7rem;
  border-radius: 1.5rem;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}

.hamburger span:nth-child(1) {
  top: calc(50% - 0.7rem);
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger span:nth-child(3) {
  top: calc(50% + 0.7rem);
}

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ============================================================================
.drawer 
============================================================================== */
.drawer {
  position: fixed;
  height: 100vh;
  height: 100dvh;
  top: 0;
  right: 0;
  z-index: 20;
  transform: translateX(105%);
  transition: all 0.5s;
  overflow-y: scroll;
  background-color: #fff;
}

.drawer.is-active {
  transform: translateX(0);
}

.drawer_inner {
  background-color: #fff;
  width: 25rem;
  height: 100%;
  margin-left: auto;
  padding-top: 0.9rem;
}

.drawer_logo {
  width: 13rem;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .drawer_logo {
    width: 6rem;
    margin-left: 2.5rem;
  }
}

.drawer_logo img {
  width: 7.6rem;
}
@media screen and (max-width: 991px) {
  .drawer_logo img {
    width: 5.5rem;
  }
}

.drawer_logo span {
  font-size: 1rem;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 991px) {
  .drawer_logo span {
    font-size: 0.6rem;
  }
}

.drawer_item {
  padding-inline: 2.5rem;
}

.drawer_item:nth-child(2) {
  background-color: #ebeaea;
  padding-top: 1.5rem;
}

.drawer_item:nth-child(3) {
  background-color: #f3f3ea;
  padding-top: 1.5rem;
}

.drawer_item_txt {
  position: relative;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-left: 1.2rem;
  line-height: 1;
}

.drawer_item:nth-child(3) .drawer_item_txt {
  color: #9d8a54;
}

.drawer_item_txt::before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.1rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.drawer_item:nth-child(2) .drawer_item_txt::before {
  background-color: #555555;
}

.drawer_item:nth-child(3) .drawer_item_txt::before {
  background-color: #9d8a54;
}

.drawer_link + .drawer_link {
  border-top: 1px solid rgba(217, 216, 216, 0.5);
}

.drawer_link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  padding-block: 2rem;
  width: 100%;
}

.drawer_link a::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 0.7rem;
  height: 1.55rem;
  background: url(../img/img-common/arrow.png) center center/contain no-repeat;
  right: 1rem;
}

.drawer_link img {
  width: 5rem;
}

.drawer_close {
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 3rem;
}

.drawer_close span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-inline: 1rem;
}

.drawer_close span::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 1rem;
  width: 0.1rem;
  background-color: #555555;
}

.drawer_close span::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 1rem;
  width: 0.1rem;
  background-color: #555555;
}

.drawer_close span img {
  width: 3.5rem;
}

.drawer_btn {
  display: flex;
  align-items: center;
}

.drawer_btn a {
  padding-inline: 1.5rem;
  display: inline-flex;
  align-items: center;
  width: 100%;
  border: 1px solid #aaaaaa;
  height: 4rem;
  border-radius: 3rem;
}

.drawer_btn + .drawer_btn {
  margin-top: 1rem;
}

.drawer_btn img {
  width: 1.5rem;
}

.drawer_btn span {
  display: inline-block;
  text-align: center;
  width: calc(100% - 1.5rem);
}

.drawer_btn:first-child img {
  width: 1.4rem;
  margin-left: 0.15rem;
}

.drawer_btn:first-child a {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: normal;
}

.drawer_btn:last-child img {
  width: 1.8rem;
}

.drawer_btn:last-child a {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ============================================================================
footer
============================================================================== */
.footer {
  background-color: #fff;
}

.footer_copy {
  text-align: center;
  padding-block: 2.7rem;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .footer_copy {
    font-size: 0.8rem;
    padding-block: 1.5rem;
  }
}
/*# sourceMappingURL=default.css.map */