@charset "UTF-8";
/* safariリセット */
input[type=button],
input[type=text],
input[type=submit],
textarea,
select {
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 16px;
  border-radius: var(--fs-input-bdrs);
}

input[type=radio], input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
input[type=radio]::before {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: 12px;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  transition: background-color 0.2s;
}
input[type=radio]:checked {
  cursor: default;
}
input[type=radio]:checked::before {
  border-color: var(--c-black);
  background-color: var(--c-black);
  box-shadow: inset 0 0 0 1.5px var(--c-white);
}
input[type=checkbox] {
  position: relative;
}
input[type=checkbox]::before {
  align-self: flex-start;
  position: relative;
  left: 0;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 2px solid var(--c-gray-200);
  background: var(--c-white);
  cursor: pointer;
}
input[type=checkbox]:checked::before {
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid var(--c-black);
  background: var(--c-black);
}
input[type=checkbox]:checked::after {
  z-index: 2;
  position: absolute;
  top: 45% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) rotate(45deg);
  content: "";
  display: block;
  width: 4px;
  height: 10px;
  border-right: 1px solid var(--c-white);
  border-bottom: 1px solid var(--c-white);
}
input[type=checkbox].error-field::after {
  top: 7px;
  left: 14px;
}

input[type=text],
textarea {
  display: block;
  width: 100%;
  background-color: var(--fs-input-bg-c);
  border-radius: var(--fs-input-bdrs);
  border: 1px solid var(--c-gray-200);
  outline: none;
  font-weight: 400;
  font-size: 16px;
  padding: 0.6em 12px;
}
input[type=text]::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 14px;
  color: var(--c-dark-600);
}
input[type=text]::placeholder,
textarea::placeholder {
  font-size: 14px;
  color: var(--c-dark-600);
}

input[name=zip_1] {
  width: 85px;
}

input[name=zip_2] {
  width: 100px;
}

label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

main{
  overflow: hidden;
}

select {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}

#mainarea {
  margin-bottom: var(--GENERALSEC);
}

h1.g-heading {
  padding: 0;
}

.sec-ttl {
  text-align: center;
}

.contact-table th .must::after {
  content: "*";
  color: var(--txt-c-emphasis);
  margin-left: 3px;
}

.contact-table th .must.hide {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(0 0 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

textarea#option {
  height: 130px;
}

textarea#pre_comment,
textarea#ret_comment,
textarea#oth_comment,
textarea#change_content {
  height: 250px;
}

/* お問い合わせ種別ラジオ: 2列グリッド */
.contact-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.contact-type-grid li {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

/* 都道府県セレクト */
.select-area--pref {
  width: auto;
  min-width: 160px;
}

/* 住所検索ボタン */
.zip-search-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s;
}

.zip-search-btn:hover {
  background: #d4d2d2;
}

/* 必須項目の説明 */
.form-required-note {
  text-align: left;
  font-size: 13px;
  margin-bottom: 20px;
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.form-required-note .emphasis {
  font-weight: 500;
  color: var(--txt-c-emphasis);
}

@media screen and (max-width: 767px) {
  .contact-type-grid {
    grid-template-columns: 1fr;
  }
}
.choice-area--radio {
  display: flex;
  align-items: center;
  gap: 8px;
}

.choice-area li {
  display: inline-block;
}

.check-label {
  display: inline-flex;
  align-items: center;
}

.check-label > input {
  margin-right: 6px;
}

.select-area-td {
  justify-content: flex-start;
}

.select-area {
  width: 50%;
  margin: 0 auto 0 0;
  min-width: 220px;
  background-color: var(--fs-input-bg-c);
  border-radius: var(--fs-input-bdrs);
  position: relative;
}

.select-area::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1;
  background-color: var(--c-black); /* アイコン色 */
  -webkit-mask-image: url(../images/arrow.svg); /* SVGをマスクとして設定 */
  mask-image: url(../images/arrow.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.select-area select {
  padding: 10px;
  position: relative;
  background-color: transparent;
  z-index: 2;
}

.to-top,
.sendbutton {
  margin: 0 auto;
  width: 90%;
  max-width: 300px;
}

.to-top a,
.sendbutton input {
  width: 100%;
  display: block;
  text-align: center;
  padding: 15px 0;
  background: #000;
  border: 1px solid #000;
  border-radius: 70px;
  color: #fff;
  cursor: pointer;
  transition: 0.5s all;
}

.bac {
  text-align: center;
  margin-top: 10px;
}

.bac a {
  text-decoration: underline;
  color: #333;
  transition: 0.5s all;
}

.complete_p {
  text-align: center;
}

.confirm-table td {
  border: 1px solid #ddd;
  padding: 10px;
  min-height: 40.5px;
}

.check-label[for=check-pp] {
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .check-label[for=check-pp] {
    margin-bottom: 20px;
  }
}
.check-label[for=check-pp].error-field {
  border: none;
  padding: 0;
}
.check-label[for=check-pp]{
  font-size: 1em;
}
.check-label[for=check-pp] > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 1px;
       column-gap: 1px;
  line-height: 1;
  color: var(--c-black);
  font-weight: 500;
  margin-right: 4px;
  margin-left: 4px;
}
.check-label[for=check-pp] > a::after {
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  content: "";
  height: 1px;
  background-color: var(--c-black);
}
.check-label[for=check-pp] > a > svg {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .to-top a:hover,
  .sendbutton input:hover {
    color: #000;
    background: #fff;
  }
  .bac a:hover {
    opacity: 0.7;
  }
  .complete_p {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  #mainarea {
    margin-top: 40px;
  }
  .complete_p {
    margin-bottom: 30px;
  }
}
/* 入力欄のエラー表示 */
.error-field {
  border: 1px solid var(--txt-c-emphasis) !important;
  background-color: #fceef0 !important;
  padding: 8px;
}

.error-message {
  color: var(--txt-c-emphasis);
  font-weight: 500;
  font-size: 11px;
  margin-top: 5px;
}

.formBtn > * a {
  padding: 1em;
  background: var(--txt-c-base);
  border-radius: 5px;
  color: var(--c-white);
}

.formBtn > * a:hover {
  text-decoration: none;
}

.chatBtn > a {
  display: block;
  padding: 1em;
  background: #dd3d3d;
  border: 1px solid #dd3d3d;
  border-radius: 5px;
  text-align: center;
  color: #fff !important;
  font-size: 1.2em;
}

.chatBtn > a:hover {
  background: #ff7676;
  text-decoration: none;
}

.chatBtn p {
  text-align: center;
}

.contactFrom .formBtn {
  border-bottom: none;
  padding: 0 0.5em 0.2em;
}

.pre-order-note {
  /* ご注文前セクションの注意書き */
  color: var(--txt-c-emphasis);
  font-weight: 500;
  font-size: 12px;
  margin-top: 6px;
}

.contact-form {
  width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact-form {
    width: var(--inner-w);
    padding: 20px 0;
  }
}
.contact-section {
  /* 条件分岐セクション: デフォルト非表示 */
  display: none;
}
.contact-section tr:first-of-type {
  margin-top: 30px;
}
.contact-table {
  width: 600px;
  border-collapse: collapse;
  margin: 0 auto 30px;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .contact-table {
    width: 100%;
    margin-bottom: 20px;
  }
}
.contact-table tr {
  display: block;
}
.contact-table tr:not(:last-of-type) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .contact-table tr:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.contact-table tr th {
  display: block;
  text-align: left;
  font-weight: normal;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .contact-table tr th {
    width: 100%;
    text-align: left;
    font-size: 12px;
  }
}
.contact-table tr td {
  display: block;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .contact-table tr td {
    width: 100%;
  }
}
.contact-table tr td.harf {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.contact-table tr td p {
  width: 100%;
}
.contact-table .post-code {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.contact-table .post-code-zipicon {
  font-weight: 500;
  font-size: 18px;
}

.s-contact__text {
  width: var(--inner-w);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.s-contact__text > p:not(:last-of-type) {
  margin-bottom: var(--spc-20);
}
.s-contact__selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "qanda guide" "chat chat";
  gap: 16px;
  width: 95%;
  max-width: 600px;
  margin: 20px auto;
}
.s-contact__selector--qanda {
  grid-area: qanda;
}
.s-contact__selector--guide {
  grid-area: guide;
}
.s-contact__selector--chat {
  grid-area: chat;
}
.s-contact__selector--chat .chatBtn .s-contact__selectorLink {
  background: red;
}
.s-contact__selectorLink {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
}
.s-contact__contentBottom {
  margin-top: 30px;
}
.s-contact__contentBottom > p {
  position: relative;
  padding-left: calc(1em + 4px);
}
.s-contact__contentBottom > p::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
  display: block;
  width: 1em;
}

/* リキャプチャ - 設定 */
@media screen and (min-width: 768px){
  .grecaptcha-badge{
    bottom: 100px !important;
  }
}
@media screen and (max-width: 767px){
  .grecaptcha-badge{
    bottom: 120px !important;
  }
}

/* お問合せ種別 - 見出し */
.contact-form__lead {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}