@charset "UTF-8";
.global_header {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 500px;
  z-index: 99999;
}
.gnb {
  padding: 16px 0;
  max-height: 60px;
  box-sizing: border-box;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 500px;
  align-items: center;
}
.gnb .logo img {
  max-width: 100px;
}
.mnav_wrap {
  position: absolute;
  right: 0;
  top: 0;
  height: 100vh;
  box-sizing: border-box;
  width: 100%;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  /* transition: 0.45s; */
  overflow: hidden;
}
.mnav_wrap .inner {
  padding-top: 60px;
  transition: 0.45s;
  /* transition-delay: 0.45s; */
  transform: translateX(100%);
  width: 80%;
  height: 100%;
  box-sizing: border-box;
  background: #fff;
  position: absolute;
  z-index: 1;
  right: 0;
  overflow-y: auto;
}
.mnav_wrap:after {
  width: 100vw;
  max-width: 500px;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  right: 0;
  transform: translateX(100%);
  opacity: 0;
  transition: opacity 0.45s;
  /* transition-delay: 0.45s; */
}
.mnav_wrap.on {
  opacity: 1;
  visibility: visible;
}
.mnav_wrap.on .inner {
  transform: translateX(0);
  transition: 0.45s;
  display: flex;
  gap: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.mnav_wrap.on:after {
  transform: translateX(0);
  opacity: 1;
  transition: opacity 0.45s;
}
.mnav_wrap .link_btn {
  border-radius: 6px;
  background: #333;
  color: #fff;
  font-family: 'Noto Sans JP';
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 136%; /* 20.469px */
  padding: 10px;
  box-sizing: border-box;
  display: block;
  width: 90%;
  margin: 0 auto 10px;
  text-align: center;
}
.mnav_menu {
  background: #f7f7f7;
}
.mnav_menu:nth-child(2n) {
  background: #fff;
}
.mnav_menu a {
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mnav_menu a::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url('/img/common/mnav_menu_icon.png') no-repeat center center /
    100%;
}
button.burger {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 15px;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 100000;
}
button.burger > div {
  width: 100%;
  height: 2px;
  background: #333;
  transition: 0.45s;
}
button.burger > div:nth-child(2) {
  width: 60%;
}
button.burger.on > div:nth-child(1) {
  transform: rotate(45deg) translateY(-1px);
  transform-origin: left;
}
button.burger.on > div:nth-child(2) {
  width: 0;
  opacity: 0;
}
button.burger.on > div:nth-child(3) {
  transform: rotate(-45deg) translateY(1px);
  transform-origin: left;
}
.quick_menu_wrap {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: 0.45s;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .quick_menu_wrap.on {
    bottom: 157px;
  }
  .quick_menu_wrap .quick_item {
    width: 30px;
    height: 30px;
  }
}
.quick_menu_wrap .quick_menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inquiry.on {
  transform: translate(-50%, 100%);
}
.inquiry {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 500px;
  z-index: 999;
  transition: 0.45s;
}
.inquiry .toggle_btn {
  border-radius: 10px 10px 0px 0px;
  background: linear-gradient(180deg, #dac6a9 0%, #b79f7d 100%);
  padding: 10px 20px;
  box-sizing: border-box;
  color: #fff;
  font-family: 'Noto Sans JP';
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: 100%;
}
.inquiry_inner {
  padding: 10px 16px;
  box-sizing: border-box;
  border-radius: 10px 10px 0px 0px;
  background: linear-gradient(
    180deg,
    rgba(132, 128, 119, 0.85) 0%,
    rgba(132, 128, 119, 0.51) 100%
  );
  backdrop-filter: blur(3px);
}
.inquiry .input_wrap {
  display: flex;
  gap: 4px;
  margin-bottom: 6px;
}
.inquiry .input_wrap > div {
  flex: 1;
}
.inquiry .input_wrap input {
  width: 100%;
  padding: 6px 15px;
  box-sizing: border-box;
  background: #fff;
  color: #333;
  font-family: 'Noto Sans JP';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
  border-radius: 6px;
  border: none;
}
.inquiry .input_wrap input::placeholder {
  color: #818181;
}
.inquiry .chk_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.inquiry .chk_wrap input {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  transition: 0.45s;
  background: #fff;
  cursor: pointer;
}
.inquiry .chk_wrap input:checked {
  background: url('/img/common/inquiry_chk.png') center center / cover no-repeat;
}
.inquiry .chk_wrap label {
  color: #fff;
  font-family: 'Noto Sans JP';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.3;
  user-select: none;
}
.inquiry .chk_wrap a {
  color: #fff;
  line-height: 1.3;
  font-family: 'Noto Sans JP';
  font-size: 12px;
  font-style: normal;
  text-decoration-line: underline;
  text-underline-offset: 3px;
  font-weight: 400;
}
.inquiry .submit_btn {
  border-radius: 6px;
  background: #dbd5bc;
  box-shadow: -1px -1px 2px 0px rgba(0, 0, 0, 0.3) inset,
    1px 1px 1px 0px rgba(255, 255, 255, 0.2) inset;
  border: none;
  color: #615547;
  font-family: 'Noto Sans JP';
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  padding: 6px;
  box-sizing: border-box;
}
