@charset "utf-8";
.form-box .addressbox > div:not(:last-of-type) {
  margin-bottom: 10px;
}
.form-box .addressbox .address1 {
  gap: 10px;
}
.form-box .addressbox .address1 input {
  max-width: 100px;
}
.form-box .addressbox input {
  background-color: #F9F9F9;
  border: #DEDEDE solid 2px;
  border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 20px;
  font-size: 14px;
  width: 100%;
}
.titlebox .line {
  width: 30px;
  height: 1.5px;
  background-color: #847D5F;
}
.en_txt3 {
  font-family: "EB Garamond", sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 400;
  color: #847D5F;
}
.default_title {
  font-family: "Zen Old Mincho", sans-serif;
  color: #433213;
}
/*  FAQ  */
.faq_list .box {
  position: relative;
}
.faq_list .box:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
}
.faq_list .box::after, .faq_list .box .qbox::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
}
.faq_list .box .qbox {
  cursor: pointer;
  position: relative;
  padding: 20px 25px;
  padding-right: 50px;
  gap: 15px;
}
.qbox p {
  color: #847D5F;
}
.faq_list .q_icon, .faq_list .a_icon {
  width: 20px;
  height: auto;
}
.faq_list .box .qbox .icon {
  position: absolute;
  width: 20px;
  height: 20px;
  right: clamp(10px, 5vw, 25px);
  top: 50%;
  transform: translateY(-50%);
}
.faq_list .box .qbox .icon::before, .faq_list .box .qbox .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #847D5F;
  transition: ease 0.3s;
}
.faq_list .box .qbox .icon::before {
  width: 100%;
  height: 1px;
}
.faq_list .box .qbox .icon::after {
  height: 100%;
  width: 1px;
}
.faq_list .box .qbox.active .icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq_list .box .abox {
  padding: 30px;
  background: #fff;
}
body.on .faq_list .box .abox {
  display: none;
}
.privacypolicy {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 100px 100px;
  background-color: #000;
  color: #ffffff;
  z-index: 99999;
  overflow: auto;
}
.privacypolicy .title {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900;
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 50px);
}
.privacypolicy .box-wrap {
  padding-top: 50px;
}
.privacypolicy .box-wrap .box:not(:last-of-type) {
  margin-bottom: 80px;
}
.privacypolicy .box-wrap a {
  display: inline-block;
  opacity: 1;
  transition: ease 0.3s;
}
.privacypolicy .box-wrap a:hover {
  opacity: 0.5;
}
.privacypolicy .box-wrap p {
  color: #fff !important;
}
.privacypolicy .close-bt {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #000;
  transition: ease 0.3s;
  cursor: pointer;
}
.privacypolicy .close-bt:hover {
  opacity: 0.6
}
.privacypolicy .close-bt::before, .privacypolicy .close-bt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 3px;
  background-color: #ffffff;
}
.privacypolicy .close-bt::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.privacypolicy .close-bt::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.privacypolicy .box-wrap .box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #ffffff;
  color: #fff !important;
}
.privacypolicy .box-wrap .box p a {
  color: #fff !important;
}
/* ---------- form ---------- */
.form_link {
  cursor: pointer;
}
.form_area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(248, 248, 248, 0.95);
  z-index: 99999;
  padding-top: 100px;
  padding-bottom: 100px;
}
.form_area .form_close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: ease 0.3s;
}
.form_area .form_close:hover {
  opacity: 0.5;
}
.form_area .form_close::before, .form_area .form_close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #181818;
  top: 50%;
  left: 50%;
}
.form_area .form_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.form_area .form_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.form_area .titlebox {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 50px;
}
.form_area .titlebox::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background-color: #181818;
}
.form_area .form_wrap .form-box {
  padding: 80px;
  background-color: #fff;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}
.form-box .box-wrap {
  max-width: 1000px;
}
.form-box .box-wrap .box:not(:last-of-type) {
  margin-bottom: 40px;
}
.form-box .box-wrap .box h3 {
  width: 300px;
  position: relative;
  padding-right: 80px;
}
.form-box .box-wrap .box.required-box h3::after {
  content: "必須";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #BF272D;
  border-radius: 3px;
  padding: 2px 20px 3px;
  color: #fff;
  font-size: 14px;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.form-box .box-wrap .box .inputbox {
  width: calc(100% - 300px);
  padding-left: 30px;
}
.form-box .box-wrap .box .inputbox > input, .form-box .box-wrap .box .inputbox textarea, .form-box .box-wrap .box .itemwrap input {
  background-color: #F9F9F9;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  padding-left: clamp(10px, 2vw, 20px);
  border: #DEDEDE solid 2px;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.form-box .box-wrap .box .inputbox input::placeholder, .form-box .box-wrap .box .inputbox textarea::placeholder {
  color: #333333;
  opacity: 0.5;
  font-size: 14px;
}
.form-box .box-wrap .box .inputbox textarea {
  height: 300px;
}
.form-box .box-wrap .box .inputbox .check-wrap {
  justify-content: flex-start;
  gap: 20px;
}
.form-box .box-wrap .box .inputbox .check-wrap .check-box {
  width: 100%;
  gap: 10px;
}
.form-box .box-wrap .box .inputbox .check-wrap .check-box input {}
.form-box .box-wrap .box .itemwrap input {
  max-width: 80px;
}
.send, .check-area {
  text-align: center;
}
.check-area {
  margin-bottom: clamp(30px, 5vw, 50px);
  padding-top: clamp(30px, 4vw, 40px);
}
/* ---------- radiobt ---------- */
.form-box .box-wrap .box .inputbox .check-wrap .check-box input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  vertical-align: middle;
  transition: border-color 0.3s, background-color 0.3s;
}
.form-box .box-wrap .box .inputbox .check-wrap .check-box input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.check-box p {
  cursor: pointer;
  font-weight: 400;
}
.form-box .box-wrap .box .inputbox .check-wrap .check-box {
  width: 100%;
  gap: 10px;
}
.form-box .box-wrap .box .inputbox .check-wrap .check-box input {}
.form-box .box-wrap .box .inputbox .check-wrap .check-box:not(:last-of-type) {
  margin-bottom: 10px;
}
.form-box .inputbox1 {
  justify-content: flex-start;
}
.form-box .inputbox1 > input {
  border: none !important;
  background-color: transparent !important;
  padding: 0px;
}
.privacy-bt {
  cursor: pointer;
}
.send .send-bt button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  cursor: pointer;
}
/* 本体：.more1 a と同じプロパティに合わせる */
.send .send-bt {
  /* .more1 a と同じデザイン用カスタムプロパティ */
  --line: #857E60;
  --stroke: 1px;
  --inset: 8px;
  --tick: 42px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* .more1 a に合わせる（サイズ・余白） */
  padding: 14px 48px;
  min-width: 260px;
  /* 文字色を .more1 a と同じに */
  color: #FDF7E7;
  /* .more1 a と同じ線のアニメ付き枠 */
  background:
    linear-gradient(var(--line), var(--line)) top center / calc(100% - 2*var(--inset)) var(--stroke) no-repeat, linear-gradient(var(--line), var(--line)) bottom center / calc(100% - 2*var(--inset)) var(--stroke) no-repeat, linear-gradient(var(--line), var(--line)) left center / var(--stroke) var(--tick) no-repeat, linear-gradient(var(--line), var(--line)) right center / var(--stroke) var(--tick) no-repeat;
  border: none;
  border-radius: 0; /* 元の丸ボタンをフラットに */
  background-color: transparent; /* 塗りつぶしは無し（.more1 a と同じ） */
  overflow: hidden;
  /* アニメーション類も .more1 a に合わせる */
  transition: background-size .35s ease, opacity .2s ease, color .35s ease;
}
/* テキストは currentColor を使うと色切替が楽 */
.send .send-bt p {
  margin: 0;
  color: #433213;
  transition: inherit;
}
/* ホバー時の線アニメ（.more1 a と同じ計算式） */
.send .send-bt:hover {
  background-size:
    calc(100% - 2 * (var(--inset) + 8px)) var(--stroke), calc(100% - 2 * (var(--inset) + 8px)) var(--stroke), var(--stroke) calc(var(--tick) - 14px), var(--stroke) calc(var(--tick) - 14px);
  opacity: 0.5;
}
/* 明色ライン版（.more1-w a と同じ指定） */
.more1-w .send-bt {
  --line: #FDF7E7;
}
/* フォーカス（キーボード操作時の見やすさ） */
.send .send-bt:has(button:focus-visible) {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
/* 無効状態の雰囲気（必要なら） */
.send.is-disabled .send-bt, .send .send-bt:has(button[disabled]) {
  opacity: .5;
  pointer-events: none;
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
  /* ---------- form ---------- */
  .form-box .box-wrap .box h3 {
    width: 250px;
  }
  .form-box .box-wrap .box .inputbox {
    width: calc(100% - 250px);
  }
  .send, .check-area {
    margin-left: 250px;
  }
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  .shop-images .item {
    width: 250px;
  }
  /* ---------- form ---------- */
  .form-box .box-wrap .box h3 {
    width: 100%;
    margin-bottom: 10px;
  }
  .form-box .box-wrap .box .inputbox .check-wrap1 .check-box {
    width: auto;
    box-sizing: border-box;
  }
  .form-box .box-wrap .box .inputbox {
    width: 100%;
    padding-left: 0;
  }
  .form-box .box-wrap .box.required-box h3 {
    padding-right: 0;
    padding-left: 0px;
  }
  .form-box .box-wrap .box.required-box h3::after {
    position: static;
    display: inline-block;
    margin-left: 20px;
    font-size: 13px;
    transform: translateY(-2px);
  }
  .send, .check-area {
    margin-left: 0px;
  }
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .privacypolicy {
    padding: 100px 50px;
  }
  .privacypolicy .box-wrap {
    padding-left: 30px;
    padding-top: 50px;
  }
  .privacypolicy .box-wrap .box h3 {
    font-size: 18px;
  }
  .privacypolicy p {
    font-size: 14px;
  }
  .privacypolicy .close-bt {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .privacypolicy .close-bt::before, .privacypolicy .close-bt::after {
    width: 36px;
    height: 2px;
  }
  /* ---------- form ---------- */
  .form_area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .form_area .form_wrap .form-box {
    padding: 50px;
  }
  .form-box .box-wrap .box .inputbox {}
  .form-box .box-wrap .box .inputbox .check-wrap {
    padding-top: 10px;
    gap: 20px;
  }
  .form-box .box-wrap .box .inputbox .check-wrap1 .check-box {
    box-sizing: border-box;
  }
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .faq_list .box .qbox .icon {
    width: 15px;
    height: 15px;
  }
  .privacypolicy {
    padding: 80px 20px;
  }
  .privacypolicy .box-wrap .box:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .privacypolicy .box-wrap {
    padding-top: 30px;
    padding-left: 0;
  }
  /* ---------- form ---------- */
  .form_area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .form_area .titlebox {
    margin-bottom: 30px;
  }
  .form_area .form_wrap .form-box {
    padding: 40px 20px;
  }
  .form-box .box-wrap .box .inputbox > input, .form-box .box-wrap .box .inputbox textarea {
    font-size: 14px;
  }
  .form-box .box-wrap .box .inputbox {
    padding-left: 0;
  }
  .form-box .box-wrap .box .inputbox .check-wrap {
    padding-top: 20px;
    gap: 20px;
  }
  .form-box .box-wrap .box .inputbox .check-wrap1 .check-box {
    width: 100%;
    box-sizing: border-box;
  }
  .form-box .box-wrap .box.required-box h3::after {
    font-size: 12px;
    padding: 2px 10px;
  }
  .form-box .box-wrap .box h3 {
    padding-left: 0px;
  }
  .form-box .box-wrap .box.required-box h3 {}
  .send-bt p {
    font-size: 15px !important;
  }
  .send .send-bt {
    min-width: 200px;
    padding: 15px 20px;
  }
  .form-box .box-wrap .box .itemwrap input {
    max-width: 60px;
  }
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}