/* ============================================================
   お問い合わせページ（新規ページ）
   コンテナ幅：750px
   カラー：common__2026_09.css / top__2026_09.css 準拠
   ※ 既存の register_2026_09.css と共通する見出し・ボタンの
     デザインルールを踏襲しています。
   ============================================================ */

.contactPage {
  width: calc(690 / 750 * 100vw);
  max-width: 750px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  color: #363636;
}

/* ------------------------------------------------------------
   ページ見出し（CONTACT / お問い合わせ）
   ------------------------------------------------------------ */
.contactPage__head {
  margin-bottom: 32px;
  padding-top: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #a09a89;
  text-align: center;
}
.contactPage__eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: calc(140 / 1000 * 1em);
  color: #7f7a6a;
}
.contactPage__title {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: calc(140 / 1000 * 1em);
  color: #363636;
}

@media screen and (min-width: 768px) {
  .contactPage__head {
    margin-bottom: 64px;
    padding-top: 72px;
    padding-bottom: 64px;
  }
  .contactPage__eyebrow {
    font-size: 20px;
  }
  .contactPage__title {
    font-size: 36px;
  }
}

/* ------------------------------------------------------------
   リード文・営業時間・Q&A案内
   ------------------------------------------------------------ */
.contactPage__lead {
  margin-bottom: 32px;
}
.contactPage__lead p {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: calc(36 / 24);
  letter-spacing: calc(140 / 1000 * 1em);
  color: #54534f;
}
.contactPage__lead p:last-child {
  margin-bottom: 0;
}
.contactPage__hours {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .contactPage__lead {
    margin-bottom: 64px;
  }
  .contactPage__lead p {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

/* ------------------------------------------------------------
   共通ボタン（塗り／アウトライン）
   ------------------------------------------------------------ */
.btn-primary,
.btn-outline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(650 / 690 * 100%);
  max-width: 455px;
  height: 43px;
  margin: 0 auto;
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: calc(140 / 1000 * 1em);
  text-align: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.btn-primary {
  background-color: #645e59;
  border: 1px solid #645e59;
  color: #fff;
}
.btn-primary:hover {
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
}
.btn-primary:visited {
  color: #fff;
}
.btn-primary:not(.btn-mail)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.btn-outline {
  background-color: #fff;
  border: 1px solid #a09a89;
  color: #363636;
}
.btn-outline:visited {
  color: #363636;
}
.btn-outline.btn-mail {
  width: 100%;
}
.btn-outline:hover {
  opacity: 0.7;
  text-decoration: none;
}

.btn-mail svg {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .btn-primary,
  .btn-outline {
    font-size: 16px;
    height: 60px;
  }
  .btn-mail svg {
    width: 24px;
    height: 24px;
  }
}

/* ------------------------------------------------------------
   各お問い合わせ区分（ご注文前／ご注文後／返品交換／その他）
   ------------------------------------------------------------ */
.contactSection {
  padding-top: 52px;
}
.contactSection:last-child {
  margin-bottom: 0;
}
.contactSection__title {
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #a09a89;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: calc(50 / 1000 * 1em);
  color: #363636;
  text-align: center;
}
.contactSection__desc {
  margin-bottom: 32px;
  font-size: 12px;
  line-height: calc(36 / 24);
  letter-spacing: calc(140 / 1000 * 1em);
  color: #54534f;
}

@media screen and (min-width: 768px) {
  .contactSection {
    padding-top: 104px;
  }
  .contactSection__title {
    padding-bottom: 32px;
    margin-bottom: 40px;
    font-size: 32px;
  }
  .contactSection__desc {
    font-size: 16px;
    margin-bottom: 64px;
  }
}

/* ------------------------------------------------------------
   注意事項ボックス（返品・交換の確認事項／メール案内）
   ------------------------------------------------------------ */
.noticeBox {
  margin: 32px 0;
  padding: 20px 10px 16px;
  background-color: #faf8f4;
  box-sizing: border-box;
}
.noticeBox__title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #363636;
  letter-spacing: calc(50 / 1000 * 1em);
}
.noticeBox__icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  border: 1px solid #363636;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
}
.noticeBox__subhead {
  margin-bottom: 1em;
  font-size: 14px;
  font-weight: 400;
  color: #54534f;
  letter-spacing: calc(140 / 1000 * 1em);
}
ul.noticeBox__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  letter-spacing: calc(140 / 1000 * 1em);
}
li.noticeBox__item {
  position: relative;
  padding-left: 0.75em;
  font-size: 12px;
  line-height: calc(36 / 24);
  letter-spacing: calc(140 / 1000 * 1em);
  color: #54534f;
}
li.noticeBox__item::before {
  content: "・";
  position: absolute;
  left: 0;
}
.noticeBox__caution {
  margin: 0;
  font-size: 10px;
  line-height: calc(36 / 20);
  letter-spacing: calc(140 / 1000 * 1em);
}
.noticeBox__caution strong {
  font-weight: 400;
  font-size: 12px;
  color: #c02222;
}

.noticeBox__heading {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 400;
  color: #54534f;
}
div.noticeBox__list {
  margin-bottom: 32px;
}
div.noticeBox__item {
  margin-bottom: 20px;
}
div.noticeBox__item:last-of-type {
  margin-bottom: 24px;
}
.noticeBox__itemTitle {
  font-size: 12px;
  font-weight: 400;
  color: #54534f;
}
.noticeBox__item p {
  line-height: calc(36 / 24);
  letter-spacing: calc(140 / 1000 * 1em);
}
.noticeBox__item p:not(.noticeBox__itemTitle) {
  margin: 0;
  font-size: 12px;
  color: #54534f;
}
.noticeBox__note {
  margin-top: 20px;
  font-size: 10px;
  line-height: calc(36 / 20);
  letter-spacing: calc(140 / 1000 * 1em);
  color: #54534f;
}
.noticeBox__note a {
  color: #4b8dc5;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .noticeBox {
    padding: 40px 30px 42px;
    margin: 64px 0;
  }
  .noticeBox__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .noticeBox__icon {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }
  .noticeBox__subhead {
    font-size: 20px;
  }
  li.noticeBox__item {
    font-size: 16px;
  }
  .noticeBox__caution {
    font-size: 16px;
  }
  .noticeBox__caution strong {
    font-size: 16px;
  }
  .noticeBox__heading {
    font-size: 20px;
  }
  div.noticeBox__list {
    margin-bottom: 40px;
  }
  div.noticeBox__item {
    line-height: 2;
    margin-bottom: 2em;
  }
  .noticeBox__itemTitle {
    font-size: 16px;
  }
  .noticeBox__item p:not(.noticeBox__itemTitle) {
    font-size: 16px;
  }
  .noticeBox__note {
    font-size: 16px;
    margin-top: 40px;
  }
}
