@charset "UTF-8";
/* src/assets/scss/foundation/_index.scss */
/* 記述の仕方 */
/* src/assets/scss/foundation/_index.scss */
/* ===== 使用例（このファイルを直接ビルドしない） ==================
@use "../foundation" as f;

.title {
  font-size: f.rem(20px);           // → 1.25rem（$base-font-size:16px）
  line-height: f.lh(30px, 20px);    // → 1.5
  letter-spacing: f.spacing(40);    // → 0.04em
}

.lead {
  // スマホ幅に応じて可変（14px〜18pxを rem で制限）
  font-size: f.clamp-vw(14, 18);
}

.hero-copy {
  // 375px カンプ換算：24px 相当を vw で出す
  font-size: f.get_vw(24px, 375);
}
=================================================================== */
/* src/assets/scss/foundation/_index.scss */
/* src/assets/scss/foundation/_index.scss */
/* ===============================================
foundation/_reset.scss  （プロジェクト用 最小リセット）
目的：ブラウザ差をならしつつ、UIのデフォルトを必要以上に壊さない
方針：
  - レイアウト起点だけを調整（box-sizing, margin/padding など）
  - 文字やフォームの見た目は「継承＋最低限」に留める
  - フォーカス可視性は残す（視認性・アクセシビリティ優先）
※ overflow や font-size は reset では触らない（base.scss で管理）
=============================================== */
/* 1) ボックスモデルの一貫性 */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0; /* border-color 指定時に崩れないための初期化 */
  border-style: solid;
}

/* 2) 余白の初期化（必要最低限） */
html, body,
h1, h2, h3, h4, h5, h6,
p, blockquote, figure,
dl, dd {
  margin: 0;
  padding: 0;
}

/* 3) タイポ周り（最小限）
   - 行間は base.scss で最終的に上書きするのでここでは緩く */
html {
  -webkit-text-size-adjust: 100%; /* iOSの自動拡大を抑制 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  line-height: 1.5;
}

/* 4) 画像 / メディアの収まり */
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}

img, video {
  height: auto;
}

svg {
  vertical-align: middle;
}

/* 5) リストの初期化
   - コンポーネントで独自の丸/番号を付けやすいように */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 6) アンカー（色と装飾はコンポーネントで制御） */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent; /* iOSのタップハイライト対策 */
}

/* 7) フォーム要素：見た目は壊しすぎず、フォントだけ継承 */
button,
input,
select,
textarea {
  font: inherit; /* フォント/サイズ/行間を継承 */
  color: inherit;
  margin: 0;
}

button {
  cursor: pointer; /* ボタンらしさは維持 */
  background: transparent; /* デフォ背景を消す（枠は保持） */
}

textarea {
  resize: vertical; /* 横リサイズはレイアウト崩れの元になりやすい */
}

/* 8) テーブル：基本は素朴に（罫線はコンポーネントで） */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th, td {
  text-align: left;
  vertical-align: top;
  padding: 0;
}

/* 9) その他の素朴な初期化 */
hr {
  height: 0;
  border: 0;
  border-top: 1px solid currentColor; /* 必要なら見た目定義 */
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

small {
  font-size: 80%;
}

/* 10) フォーカス可視性の確保（アクセシビリティ） */
:focus {
  outline: 2px solid #382620;
  outline-offset: 2px;
}

/* src/assets/scss/foundation/_index.scss */
/* src/assets/scss/foundation/_base.scss
   基礎スタイル（resetの後に読み込まれる前提）
   ※ ここでは “フォルダのまとめ役” を参照せず、
      必要なモジュールだけ個別に @use するのが安全
*/
html {
  /* 横はみ出し対策。最新ブラウザなら clip が推奨（hiddenでもOK） */
  overflow-x: clip;
  /* デフォルトはSP帯（320〜767px想定） */
  font-size: clamp(0.875rem, 0.249rem + 3.132vw, 1.75rem);
  /* PC帯：1280pxを基準に 16px を上限、14pxを下限に可変
     - f.vw(16) は 1280px 基準で 1.25vw（= 1280px時に16px）
     - clamp(min, preferred, max) で読みやすく
  */
}

body {
  position: relative;
  color: #222222;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  line-height: 150%;
  background-color: #f3efeb;
  margin: 0;
  padding: 0;
  /* 100vw はスクロールバー幅ぶんはみ出しやすいので 100% 推奨 */
  width: 100%;
  overflow-x: clip;
}
body.is-footer-sns-fixed {
  padding-bottom: 4.6875rem;
}

img {
  display: block;
  /* レイアウト衝突を避けるなら max-width の方が無難 */
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: inherit;
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-single-page__head--contact {
  background: url("../img/contact/contact-img_p-firstview_contact-sp.png") no-repeat center center/cover;
}

.p-contact-page-content-wrapper {
  padding-top: 15.7333333333vw;
  padding-bottom: 44.2666666667vw;
}

.p-contact-page-form__container {
  max-width: 688px;
  margin: 0 auto;
  color: #382620;
}
.p-contact-page-form__container .p-contact-page__form {
  display: flex;
  flex-direction: column;
  gap: 16vw;
}
.p-contact-page-form__container .p-contact-page__form--head .p-contact-page-form__headding {
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 150%;
  text-align: center;
}
.p-contact-page-form__container .p-contact-page__form--head .p-contact-page-form__headding-sub {
  font-size: 3.7333333333vw;
  line-height: 200%;
  font-weight: 500;
  text-align: left;
  margin-top: 5.6vw;
}

.p-contact-page__form-group--wrapper {
  display: flex;
  flex-direction: column;
  gap: 10.6666666667vw;
}

.p-contact-page__form-label {
  font-size: 4.2666666667vw;
  line-height: 150%;
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-bottom: 20px;
  width: 100%;
}

.p-contact-page__form-label-required {
  color: #fff;
  font-size: 2.9333333333vw;
  font-weight: 700;
  line-height: 150%;
  vertical-align: inherit;
  margin-left: 2.1333333333vw;
  background-color: #f07317;
  padding: 2px 6px 2px 6px;
  border-radius: 2px;
}

.p-contact-page__form-radio-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 入力共通スタイル */
.p-contact-page__input {
  width: 100%;
  padding: 2.9333333333vw 3.2vw 2.9333333333vw 4.2666666667vw;
  color: #382620;
  font-size: 4.2666666667vw;
  line-height: 150%;
  border: 1px solid #382620;
  border-radius: 6px;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.p-contact-page__input::-moz-placeholder {
  color: #ccc;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 150%;
}
.p-contact-page__input::placeholder {
  color: #ccc;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 150%;
}
.p-contact-page__input:hover {
  border-color: #f07317;
}
.p-contact-page__input:focus {
  outline: none;
  border-color: #f07317;
  box-shadow: 0 0 0 2px rgba(240, 115, 23, 0.2);
}

.p-contact-page__input--textarea {
  max-height: 200px;
  resize: vertical;
}

/* ラジオボタン */
.p-contact-page__radio {
  position: relative;
  padding-left: 9.0666666667vw;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.p-contact-page__radio input[type=radio] {
  display: none;
}
.p-contact-page__radio .p-contact-page__radio-icon {
  position: absolute;
  left: 0;
  width: 6.4vw;
  height: 6.4vw;
  border: 1px solid #382620;
  border-radius: 50%;
  background: #fff;
  transition: border-color 0.2s ease;
}
.p-contact-page__radio .p-contact-page__radio-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.2vw;
  height: 3.2vw;
  background-color: #f07317;
  border-radius: 50%;
  background-color: transparent;
}
.p-contact-page__radio input[type=radio]:checked + .p-contact-page__radio-icon::after {
  background-color: #f07317;
}
.p-contact-page__radio:hover .p-contact-page__radio-icon {
  border-color: #f07317;
}

.p-contact-page__radio-text {
  color: #382620;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 150%;
}

.p-contact-page__note {
  margin-top: -5px;
  color: #382620;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 150%;
}

/* ボタン */
.p-contact-page__submit-button {
  text-align: center;
}

.p-contact-page__button {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #222222;
  background-image: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  min-width: 77.6vw;
  padding-top: 6.4vw;
  padding-bottom: 6.4vw;
  margin-left: -1.6vw;
  text-align: center;
  /* テキスト */
  font-weight: 700;
  color: #fff;
  font-size: 4.2666666667vw;
  text-decoration: none;
  line-height: 150%;
}
.p-contact-page__button:hover {
  transform: translate(2%, 8%); /* ボタンを右下に動かす */
}
.p-contact-page__button::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  border-right: 1px solid #222222;
  border-bottom: 1px solid #222222;
  transition: all 0.3s ease 0s;
  transform: translate(2%, 8%);
}
.p-contact-page__button::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 4.2666666667vw;
  height: 6.4vw;
  content: "";
  display: block;
  transform: translate(-137%, 95%);
  background: url("../img/common/common-c_entry-button-arrow.svg") no-repeat center center/contain;
}
.p-contact-page__button:hover::before {
  transform: translate(0px, 0px);
}

/* ← これだけで variables/functions/mixin を全部使える */
.p-single-page__head--contact {
  background: url("../img/contact/contact-img_p-firstview_contact-sp.png") no-repeat center center/cover;
}

.p-contact-submited-page-content-wrapper {
  width: 100%;
  padding-top: 15.7333333333vw;
  padding-bottom: 42.6666666667vw;
}

.p-contact-submited-page__item {
  margin: 0 auto;
  color: #382620;
  color: #382620;
}
.p-contact-submited-page__item .p-contact-page__item-title {
  text-align: center;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 150%;
}
.p-contact-submited-page__item .p-contact-page__item-text {
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 200%;
  margin-top: 5.6vw;
}
@media screen and (min-width: 768px){
  html {
    font-size: clamp(14px, 1.25vw, 16px);
  }
  .p-contact-page-content-wrapper {
    padding-top: 80px;
    padding-bottom: 167px;
  }
  .p-contact-page-form__container .p-contact-page__form {
    gap: 80px;
  }
  .p-contact-page-form__container .p-contact-page__form--head .p-contact-page-form__headding {
    font-size: 28px;
  }
  .p-contact-page-form__container .p-contact-page__form--head .p-contact-page-form__headding-sub {
    font-size: 16px;
    margin-top: 24px;
  }
  .p-contact-page__form-group--wrapper {
    gap: 40px;
  }
  .p-contact-page__form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .p-contact-page__form-group.is-align-start {
    align-items: flex-start;
  }
  .p-contact-page__form-group .wpcf7-form-control-wrap {
    width: 100%;
  }
  .p-contact-page__form-label {
    margin-bottom: 0;
    font-size: 16px;
    width: 278px;
  }
  .p-contact-page__form-label-required {
    margin-left: 8px;
    font-size: 11px;
  }
  .p-contact-page__form-radio-group {
    margin-left: 4px;
  }
  .p-contact-page__input {
    font-size: 16px;
    padding: 11px 12px 11px 16px;
  }
  .p-contact-page__input::-moz-placeholder {
    font-size: 16px;
  }
  .p-contact-page__input::placeholder {
    font-size: 16px;
  }
  .p-contact-page__input--textarea {
    min-height: 240px;
  }
  .p-contact-page__radio {
    padding-left: 34px;
    margin-left: -3px;
  }
  .p-contact-page__radio .p-contact-page__radio-icon {
    width: 24px;
    height: 24px;
  }
  .p-contact-page__radio .p-contact-page__radio-icon::after {
    width: 12px;
    height: 12px;
  }
  .p-contact-page__radio-text {
    font-size: 16px;
  }
  .p-contact-page__note {
    font-size: 14px;
    margin-top: -6px;
  }
  .p-contact-page__button {
    font-size: 16px;
  }
  .p-contact-page__button {
    font-size: 16px;
    min-width: 290px;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-left: -6px;
  }
  .p-contact-page__button::after {
    width: 16px;
    height: 24px;
  }
  .p-single-page__head--contact {
    background: url("../img/contact/contact-img_p-firstview_contact-pc.png") no-repeat center center/cover;
  }
  .p-contact-submited-page-content-wrapper {
    padding-top: 78px;
    padding-bottom: 160px;
  }
  .p-contact-submited-page__item {
    max-width: 688px;
  }
  .p-contact-submited-page__item .p-contact-page__item-title {
    font-size: 28px;
  }
  .p-contact-submited-page__item .p-contact-page__item-text {
    font-size: 16px;
    margin-top: 26px;
  }
}
@media screen and (min-width: 1280px){
  .p-single-page__head--contact {
    background: url("../img/contact/contact-img_p-firstview_contact-pc.png") no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px){
  body.is-footer-sns-fixed {
    padding-bottom: 4.1875rem;
  }
}
/*# sourceMappingURL=contact.css.map */