@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400&display=swap');

:root{
  --content-w: min(1000px, 86.6667vw);
  --font-cjk: 'Noto Sans JP', sans-serif;
}

/* ============ PC: 基準 1400 ============ */
/* ヘッダー */
.header_bg{
  position: relative;
  height: min(81px, 6.78571429vw);
  background: #FFFFFF;
  border-bottom: 1px solid #D0DDE2;
}
.header_inner{
  width: var(--content-w);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo{
  flex: 0 0 auto;
  width: clamp(100px, 9.142857vw, 128px);
  aspect-ratio: 64 / 15;
  background-image: url(/hc/theming_assets/01K362H811G5CCPN1ZW6ZZ83QA);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  display: inline-block;
  padding: 0;
  text-align: initial;
  vertical-align: middle;
}

.dropdown-toggle > * {
  display: inline-block;
}
.dropdown-toggle[aria-expanded=true] + .dropdown-menu {
  display: block;
}

.dropdown-menu {
  background: #fff;
  border: 1px solid #d8dcde;
  border-radius: 3px;
  box-shadow: 0px 20px 30px 0px rgba(23, 73, 77, 0.15);
  display: none;
  font-size: 14px;
  left: 0;
  margin-top: 3px;
  min-width: 170px;
  padding: 10px 0;
  position: absolute;
  text-align: left;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
  color: #3C4447;
}

[dir=rtl] .dropdown-menu {
  text-align: right;
}
.dropdown-menu [role=separator] {
  border-bottom: 1px solid #e9ebed;
  margin: 4px 0;
}
.dropdown-menu [role=menuitem],
.dropdown-menu [role=menuitemradio] {
  color: #2f3941;
  cursor: pointer;
  display: block;
  padding: 7px 40px 7px 20px;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  text-align: start;
  line-height: inherit;
  /*width: 100%;*/
}
[dir=rtl] .dropdown-menu [role=menuitem],
[dir=rtl] .dropdown-menu [role=menuitemradio] {
  padding: 7px 20px 7px 40px;
}

.dropdown-menu [role=menuitem][aria-selected=true], .dropdown-menu [role=menuitem][aria-checked=true],
.dropdown-menu [role=menuitemradio][aria-selected=true],
.dropdown-menu [role=menuitemradio][aria-checked=true] {
  cursor: default;
}
.dropdown-menu [role=menuitem][aria-selected=true]::after, .dropdown-menu [role=menuitem][aria-checked=true]::after,
.dropdown-menu [role=menuitemradio][aria-selected=true]::after,
.dropdown-menu [role=menuitemradio][aria-checked=true]::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 7l3 3 7-7'%3E%3C/path%3E%3C/svg%3E");
  display: inline-block;
  height: 12px;
  margin-left: 10px;
  width: 12px;
}
[dir=rtl] .dropdown-menu [role=menuitem][aria-selected=true]::after, [dir=rtl] .dropdown-menu [role=menuitem][aria-checked=true]::after,
[dir=rtl] .dropdown-menu [role=menuitemradio][aria-selected=true]::after,
[dir=rtl] .dropdown-menu [role=menuitemradio][aria-checked=true]::after {
  margin-left: 0;
  margin-right: 10px;
  float: left;
}
.dropdown-menu [role=menuitem][hidden], .dropdown-menu [role=menuitem][aria-hidden=true],
.dropdown-menu [role=menuitemradio][hidden],
.dropdown-menu [role=menuitemradio][aria-hidden=true] {
  display: none !important;
}

.dropdown-menu-end {
  left: auto;
  right: 0;
}

.dropdown-menu-top {
  bottom: 100%;
  margin-bottom: 1px;
}

[dir=rtl] .dropdown-menu {
  left: auto;
  right: 0;
  text-align: right;
}
[dir=rtl] .dropdown-menu-end {
  left: 0;
  right: auto;
}

.dropdown-chevron-icon {
  vertical-align: middle;
}

/* ===== Language dropdown ===== */
.dropdown-toggle{
  width: 130px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 10px;
  background: #E6E9ED;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  color: #3C4447;
}

.dropdown-chevron-icon{
  width: 12px;
  height: 6px;
  color: #858F9B;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-chevron-icon{
  transform: rotate(180deg);
}

#contents{
  padding: 56px 0 23px;
  width: var(--content-w);
  margin-inline: auto;
}

h2 {
  font-family: var(--font-cjk);
  font-size: 1.625rem;
  line-height: 1.2;
  color: #3C4447;
  padding-bottom: 24px;
  display: flex;
  align-items: flex-start;
  font-style: normal;
  font-weight: 700;
}

h3 {
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #3C4447;
  width: 100%;
  max-width: 1000px;
  padding-bottom: 15px;
  border-bottom: 3px solid #D0DDE2;
}

.section-description {
  font-family: var(--font-cjk);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  color: #3C4447;
}

.section-description a,
.section-description a:visited {
  color: #3C4447;
}

.feedback-block { 
  margin-top: 16px;
  color: #CC3333;
  font-family: var(--font-cjk);
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem; /* 14px */
  line-height: 1.7;
}
/* トップ ぶら下げインデント */
.feedback-description{ padding:0; margin:0; }
.feedback-description.hang{
  padding-left: 1em;
  text-indent: -1em;
}
/* 確認画面 ぶら下げインデント */
.confirm-description{ padding:0; margin:0; }
.confirm-description.hang{
  padding-left: 1em;
  text-indent: -1em;
}

.confirm-block { 
  padding:24px 0 60px;
  margin:0;
  color: #CC3333;
  font-family: var(--font-cjk);
  font-weight: 400;
  font-style: normal;
  font-size: 0.875rem; /* 14px */
  line-height: 1.7;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 0 0;
}

h2, .section-description, .form-wrapper, h3 {
  width: 100%;
  margin: 0;
}


/* ========= 入力内容の確認 ========= */
.form-wrapper .btnTo.jsBtnPreview {
  padding: 44px 0 0;
  margin: 0 auto;
}

/* 入力内容の確認ボタン */
#btn-confirm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 325px;
  height: 60px;
  background: #1A81A8;
  border-radius: 5px;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  transition: background 0.2s ease;
}

/* 矢印アイコン */
#btn-confirm::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url(/hc/theming_assets/01KRG8YZCMRT036RYNHEMBK2G4);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ========= footer ========= */
.site-footer {
  padding: 40px 0 0;
}

.footer-bg {
  width: 100%;
  background: #363C43;
  height: 115px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.link-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 10px;
  padding: 0;
}

.link-frame .item {
  display: inline-flex;
  align-items: center;
}

.link-frame .item + .item::before {
  content: "｜";
  display: inline-block;
  margin: 0 8px;
  color: #FFFFFF;
  pointer-events: none;
}

.link-frame a {
  color: #FFFFFF;
  text-decoration: none;
}

/* Privacy Choices アイコン（英語のみ） */
.privacy-choices-link::after {
  content: '';
  display: inline-block;
  width: 1.93em;
  height: 0.9em;
  background: url(/hc/theming_assets/01KRG8YZENXGY35WK24N4NCC6K) no-repeat center/contain;
  vertical-align: middle;
  margin-left: 0.3em;
}

.footer-bg .copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1;
  color: #FFFFFF;
  text-align: center;
}

/* ===== 入力エラー表示（#error-area） ===== */
/* エラーボックス全体 */
#error-area {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  gap: 8px;
  border: 2px solid #CC3333;
  margin: 60px auto 0;
}

/* 見出し行 */
#error-area::before {
  content: "入力エラーがあります。";
  display: flex;
  align-items: center;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: #CC3333;

  /* cautionアイコン */
  background-image: url(/hc/theming_assets/01KRG8YZBZ1SY5GGBF0BDDQKGW);
  background-repeat: no-repeat;
  background-size: 24px 20px;
  background-position: left 0px center;
  padding-left: 32px;
}

#error-area ul {
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
  -webkit-padding-start: 0;
}

/* リスト（エラーメッセージ） */
#error-area li {
  font-family: var(--font-cjk);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: #CC3333;
  margin-left: 24px;
}

/* ===== 各フィールド直下のエラー表示 ===== */
.field-error {
  font-family: var(--font-cjk);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #CC3333;
  margin: 0;
}

/* ヒント文（*_hint の p / Garden forms.input_hint） */
#new-request-form [data-garden-id="forms.field"] p[id$="_hint"],
#new-request-form [data-garden-id="forms.input_hint"] {
  display: block;
  margin: 6px 0 0;
  font-family: var(--font-cjk);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #3C4447;
  padding-left: 14px;
  text-indent: -14px;
}

/* ヒントがある場合 ヒントの直後 */
.form-field p[id$="_hint"] + .field-error {
  margin-top: -4px;
}

.check-agree .agree-line + .field-error {
    margin-top: 8px;
}

/* ヒントが無い場合 既存ヒントと同じ位置 */
.form-field > .field-error {
  margin-top: 12px;
}

/* ====== 確認画面（#confirm） ====== */
#confirm {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* 最初のセクションの前は余白なし */
#confirm > section:first-child {
  margin-top: 0;
}

#confirm .form_list{
  margin: 0 0 60px;
}

#confirm .form_list dt,
#confirm .form_list dd{
  margin: 0;
}

/* === 各フィールドの余白 下線 === */
#confirm .form_list dt{
  padding: 32px 20px 0;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
  color: #3C4447;
}

#confirm .form_list dd{
  padding: 16px 20px 32px;
  font-family: var(--font-cjk);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #3C4447;
  border-bottom: 1px solid #D0DDE2;
  overflow-wrap: break-word;
}

#confirm .form_list dd.contact-detail{
  white-space: pre-wrap;
  line-height: 1.5;
}

#confirm .btn-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

#confirm #btn-back {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 245px;
  height: 60px;
  background: #464F58;
  border-radius: 5px;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

#confirm #btn-back::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 12px;
  height: 12px;
  background-image: url(/hc/theming_assets/01KRG8YZCMRT036RYNHEMBK2G4);
  background-repeat: no-repeat;
  background-size: contain;
}

#confirm #btn-finish {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 245px;
  height: 60px;
  background: #1A81A8;
  border-radius: 5px;
  border: none;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
}

/* 右向き矢印 */
#confirm #btn-finish::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url(/hc/theming_assets/01KRG8YZCMRT036RYNHEMBK2G4);
  background-repeat: no-repeat;
  background-size: contain;
}

.is-hidden { display: none !important; }

#general-error{
  width: 100%;
  height: 140px;
  margin-top: 48px;
  background: #E6E9ED;
  border-radius: 5px;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#general-error p{
  margin: 0;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #3C4447;
}

/* ===== 404 Not Found ページ ===== */
.not-found-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  text-align: center;
}

.error-code-404 {
  font-family: var(--font-cjk);
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: #3C4447;
}

.error-not-found-label {
  font-family: var(--font-cjk);
  font-size: 35px;
  font-weight: 700;
  margin: 16px 0 18px;
  color: #3C4447;
}

.error-actions{
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.error-actions .btn-back,
.error-actions a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 245px;
  height: 60px;
  background: #464F58;
  border-radius: 5px;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.error-actions .btn-back::before,
.error-actions a::before{
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 12px;
  height: 12px;
  background-image: url(/hc/theming_assets/01KRG8YZCMRT036RYNHEMBK2G4);
  background-repeat: no-repeat;
  background-size: contain;
}

html { height: 100%; }
body {
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
}
.site-footer {
  margin-top: auto;
}

.sp-br { display: inline; }

.success-description {
  font-family: var(--font-cjk);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  color: #3C4447;
  margin: 0;
  margin-top: 35px;
}
.corp-button {
  margin: 0 auto;
  margin-top: 60px;
}


/* ============================================================
   Garden フォーム (renderNewRequestForm) - PC
   ============================================================ */

/* コンテナ */
#new-request-form {
  width: 100%;
  margin-top: 32px;
  margin-bottom: 64px;
}

/* フォーム本体 */
#new-request-form form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
}

/* 「*付きは必須」説明文を非表示 */
#new-request-form > p[aria-hidden="true"] {
  display: none;
}

/* 各フィールド共通レイアウト */
#new-request-form [data-garden-id="forms.field"],
#new-request-form [data-garden-id="dropdowns.combobox.field"] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 40px 0 20px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}

/* ラベル行 */
#new-request-form [data-garden-id="forms.field"] > label,
#new-request-form [data-garden-id="dropdowns.combobox.field"] > label {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: var(--font-cjk);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
  color: #3C4447;
  margin-bottom: 16px;
  margin-top: 0;
  padding: 0;
}

/* 必須マーク（* → 「必須」バッジ） */
#new-request-form label span[aria-hidden="true"] {
  font-size: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 6px;
  background: #CC3333;
  color: #FFFFFF;
  border-radius: 2px;
  padding: 0 10px;
  height: 20px;
  vertical-align: middle;
}

#new-request-form label span[aria-hidden="true"]::before {
  content: "必須";
  font-family: var(--font-cjk);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

/* ドロップダウン（combobox ラッパー） */
#new-request-form [data-garden-id="dropdowns.combobox"] {
  width: 100%;
  margin-top: 0;
}

/* ドロップダウン（combobox trigger） */
#new-request-form [data-garden-id="dropdowns.combobox.trigger"] {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  min-height: 54px;
  padding: 0 44px 0 16px;
  background: #FFFFFF;
  border: 2px solid #D0DDE2;
  border-radius: 5px;
  color: #3C4447;
  font-family: var(--font-cjk);
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  outline: none;
  box-shadow: none;
  overflow: hidden;
}

/* Garden チェブロン SVG を非表示（CSS の ▼ 三角を使用） */
#new-request-form [data-garden-id="dropdowns.combobox.input_icon"] {
  display: none;
}

/* ▼ 三角 */
#new-request-form [data-garden-id="dropdowns.combobox.trigger"]::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #858F9B;
  pointer-events: none;
}

#new-request-form [data-garden-id="dropdowns.combobox.trigger"][aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

/* エラー時 */
#new-request-form [data-garden-id="dropdowns.combobox.trigger"].error,
#new-request-form [data-garden-id="dropdowns.combobox.field"]:has(.field-error) [data-garden-id="dropdowns.combobox.trigger"] {
  border-color: #CC3333;
}

/* combobox 内部コンテナ */
#new-request-form [data-garden-id="dropdowns.combobox.container"] {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
}

#new-request-form [data-garden-id="dropdowns.combobox.input_group"] {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

#new-request-form [data-garden-id="dropdowns.combobox.value"] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-cjk);
  font-size: 16px;
  font-weight: 400;
  height: auto;
  color: #3C4447;
}

#new-request-form [data-garden-id="dropdowns.combobox.value"] span:not([hidden]),
#new-request-form [data-garden-id="dropdowns.combobox.value"] [data-garden-id="typography.font"] {
  font-family: var(--font-cjk);
  font-size: 16px;
  font-weight: 400;
  color: #3C4447;
}

/* テキスト入力 ／ テキストエリア */
#new-request-form input[type="text"]:not([aria-hidden="true"]),
#new-request-form input[type="email"]:not([aria-hidden="true"]),
#new-request-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 2px solid #D0DDE2;
  border-radius: 5px;
  font-family: var(--font-cjk);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.15;
  color: #3C4447;
  padding: 16px;
  height: 54px;
  outline: none;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

/* フォーカス時 */
#new-request-form input[type="text"]:not([aria-hidden="true"]):focus,
#new-request-form input[type="email"]:not([aria-hidden="true"]):focus,
#new-request-form textarea:focus {
  border-color: #B8C4CC;
}

/* エラー時 */
#new-request-form input[type="text"].error,
#new-request-form input[type="email"].error,
#new-request-form textarea.error {
  border-color: #CC3333;
}

/* エラー時フォーカス（詳細度を上げて赤枠を維持） */
#new-request-form input[type="text"]:not([aria-hidden="true"]).error:focus,
#new-request-form input[type="email"]:not([aria-hidden="true"]).error:focus {
  border-color: #CC3333;
}

/* プレースホルダ */
#new-request-form input::placeholder,
#new-request-form textarea::placeholder {
  color: #858F9B;
  opacity: 1;
}

/* 説明フィールドのテキストエリア */
#new-request-form textarea[name="request[description]"] {
  height: 210px;
  overflow: auto;
  resize: none;
}

/* 添付ファイルフィールド・送信ボタン非表示 */
#new-request-form [data-garden-id="forms.field"]:has([data-garden-id="forms.file_upload"]),
#new-request-form button[type="submit"][data-garden-id="buttons.button"] {
  display: none;
}

/* ===== 同意エリア（.form-wrapper 直下・Garden フォーム用） ===== */
.form-wrapper .check-agree {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.form-wrapper .check-agree .agree-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-wrapper .check-agree #agree {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-wrapper .check-agree label[for="agree"] {
  position: relative;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 2px solid #D0DDE2;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  flex: 0 0 auto;
}

.form-wrapper .check-agree #agree:checked + label[for="agree"]::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 4px;
  width: 12px;
  height: 9px;
  background-image: url(/hc/theming_assets/01KRG8YZJC20GQK7VMZ7JAZ8K1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.form-wrapper .check-agree .agree-text {
  font-family: var(--font-cjk);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  color: #3C4447;
  display: inline;
  padding-bottom: 3px;
}

.form-wrapper .check-agree .agree-text a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: from-font;
  text-underline-offset: 2px;
  color: #3C4447;
}

.form-wrapper .check-agree .privacy-text {
  font-family: var(--font-cjk);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #3C4447;
  padding-left: 14px;
  text-indent: -14px;
}

/* ドロップダウン メニュー（listbox / option） */
#new-request-form [data-garden-id="dropdowns.combobox.listbox"] [role="option"] {
  font-family: var(--font-cjk);
  font-size: 16px;
  font-weight: 400;
  color: #3C4447;
}

/* フィールドエラー（Garden フォーム内） */
#new-request-form [data-garden-id$=".field"] > .field-error,
#new-request-form [data-garden-id="dropdowns.combobox"] > .field-error {
  margin-top: 12px;
}

/* =========================================
   SP（~767px）
========================================= */
@media only screen and (max-width: 767px) {
 .header_bg{
    height: 17.33333333vw;
    border-bottom: 0.26666667vw solid #EEEEEE;
  }

  .logo{
    width: 26.66666667vw;
    height: 6.13333333vw;
    background-image: url(/hc/theming_assets/01KRG8YZ9CKBK6A50ZA2KM8H8Y);
  }
  
  /* ===== Language dropdown ===== */
  .dropdown-menu {
    border: 0.2667vw solid #d8dcde;
    border-radius: 0.8vw;
    box-shadow: 0 2.6667vw 4vw 0 rgba(23, 73, 77, 0.15);
    font-size: 3.2vw;
    margin-top: 0.4vw;
    min-width: 24vw;
    padding: 2.6667vw 0;
  }

  .dropdown-toggle {
    width: 26vw;
    height: 8vw;
    gap: 1.0667vw;
    padding: 0 1.3333vw;
    font-size: 3.2vw;
  }

  /* ▼アイコン */
  .dropdown-chevron-icon {
    width: 2.6667vw;
    height: 1.3333vw;
  }

   /* 見出し */
  h2 {
    font-size: 5.06666667vw;
    line-height: 1.2;
    padding-bottom: 7.33333333vw;
    max-width: none;
  }
  #contents h2{ display: block; }

  h3 {
    font-size: 4.26666667vw;
    line-height: 1.2;
    padding-bottom: 4vw;
    border-bottom: solid #D0DDE2;
    border-bottom-width: 0.8vw;
  }

  .section-description {
    font-size: 3.2vw;
    line-height: 1.7;
  }
  
  .feedback-block { 
    margin-top: 4.2667vw;
    font-size: 3.2vw;
  }
  /* トップ画面 ぶら下げインデント */
  .feedback-description{ padding:0; margin:0; }
  .feedback-description.hang{
    padding-left: 3.2vw;
    text-indent: -3.2vw;
  }
    /* 確認画面 ぶら下げインデント */
  .confirm-description{ padding:0; margin:0; }
  .confirm-description.hang{
    padding-left: 3.2vw;
    text-indent: -3.2vw;
  }

  .confirm-block { 
    font-size: 3.2vw;
    padding: 12vw 0 12vw;
  }

  .form-wrapper {
    padding: 12vw 0 0;
  }

  #contents {
    padding: 13.33333333vw 0 0;
  }

  /* ========= 入力内容の確認 ========= */
  .form-wrapper .btnTo.jsBtnPreview {
    padding: 9.8667vw 0 0;
  }

  /* 入力内容の確認ボタン */
  #btn-confirm {
    width: 86.6667vw;
    height: 17.6vw;
    border-radius: 1.3333vw;
    font-size: 3.7333vw;
    line-height: 1.5;
  }
  
  /* 確認ボタン 矢印 */
  #btn-confirm::after {
      right: 4vw;
      width: 2.4vw;
      height: 3.7333vw;
  }
  
  /* ========= footer ========= */
  .site-footer {
    padding: 13.3333vw 0 0;
  }

  .footer-bg {
    height: 40.2667vw;
  }

  .link-frame {
    font-size: 3.2vw;
    margin-bottom: 5.3333vw;
  }

  .footer-bg .copyright {
    font-size: 2.6667vw;
  }
  
  /* ===== 入力エラー表示（#error-area） ===== */
  /* エラーボックス全体 */
  #error-area {
    padding: 8vw 5.3333vw;
    gap: 5.3333vw;
    border-radius: 1.3333vw;
    margin: 12vw auto 0;
  }

  /* 見出し行 */
  #error-area::before {
    font-size: 4vw;
    line-height: 1.25;
    background-size: 5.3333vw 4.2667vw;
    padding-left: 7.4667vw;
  }

  /* リスト（エラーメッセージ） */
  #error-area li {
    font-size: 3.7333vw;
    line-height: 1.5;
    margin-bottom: 1.8667vw;
    margin-left: 5.0667vw;
  }

  /* ===== 各フィールド直下のエラー表示 ===== */
  .field-error {
    font-size: 3.2vw;
  }

  /* ヒント文（*_hint の p / Garden forms.input_hint） */
  #new-request-form [data-garden-id="forms.field"] p[id$="_hint"],
  #new-request-form [data-garden-id="forms.input_hint"] {
    margin: 1.0667vw 0 0;
    font-size: 3.2vw;
    padding-left: 3.2vw;
    text-indent: -3.2vw;
  }

  /* ヒントがある場合ヒントの直後 */
  .form-field p[id$="_hint"] + .field-error {
    margin-top: -1.4667vw;
  }
  .check-agree .agree-line + .field-error {
    margin-top: 1.0667vw;
  }
  /* ヒントが無い場合 既存ヒントと同じ位置 */
  .form-field > .field-error {
    margin-top: 1.0667vw;
  }

  #confirm .form_list{
    margin-bottom: 12vw;
  }

  /* === 各フィールド余白 下線 ===*/
  #confirm .form_list dt{
    padding: 6vw 0 0;
    font-size: 3.7333vw;
    line-height: 1.3;
  }

  #confirm .form_list dd{
    padding: 2.6667vw 0 6vw;
    font-size: 3.4667vw;
    line-height: 1.3;
  }

  /* ボタン行 */
  #confirm .btn-wrap{
    gap: 0;
    justify-content: space-between;
  }

  #confirm #btn-back,
  #confirm #btn-finish {
    width: 41.3333vw;
    height: 16vw;
    border-radius: 1.3333vw;
    font-size: 3.7333vw;
    line-height: 1.5;
  }

  /* 戻るボタン 矢印 */
  #confirm #btn-back::before {
    left: 4vw;
    width: 2.4vw;
    height: 3.828vw;
  }

  /* 送信ボタン 矢印 */
  #confirm #btn-finish::after {
    right: 4vw;
    width: 2.4vw;
    height: 3.828vw;
  }
  
  #general-error{
    height: 30.6666vw;
    margin-top: 7.4666vw;
    border-radius: 1.3333vw;
  }

  #general-error p{
    font-size: 3.7333vw;
  }
  
  .error-actions {
    margin-top: 12vw;
  }
  .error-actions .btn-back,
  .error-actions a{
    width: 41.3333vw;
    height: 16vw;
    border-radius: 1.3333vw;
    font-size: 3.7333vw;
  }
  .error-actions .btn-back::before,
  .error-actions a::before{
    left: 4vw;
    width: 2.4vw;
    height: 3.828vw;
  }

  /* ===== 404 Not Found ページ（SP） ===== */
  .error-code-404 {
    font-size: 15.3333vw;
  }
  .error-not-found-label {
    font-size: 5.6667vw;
    margin: 2.1333vw 0 1.4vw;
  }
  
  /* spの場合のみ改行 */
  .sp-br { display: block; }
  
  .success-description {
    font-size: 3.2vw;
    margin: 0;
    margin-top: 5.8666vw;
  }
  .corp-button {
    margin: 0 auto;
    margin-top: 12vw;
  }

  /* ===== Garden フォーム SP ===== */
  #new-request-form {
    margin-top: 6vw;
    margin-bottom: 12vw;
  }

  #new-request-form form {
    gap: 6vw;
  }

  #new-request-form [data-garden-id="forms.field"],
  #new-request-form [data-garden-id="dropdowns.combobox.field"] {
    padding: 0;
  }

  #new-request-form [data-garden-id="forms.field"] > label,
  #new-request-form [data-garden-id="dropdowns.combobox.field"] > label {
    font-size: 3.7333vw;
    line-height: 1.5;
    margin-bottom: 1.6vw;
  }

  #new-request-form label span[aria-hidden="true"] {
    margin-left: 2.4vw;
    height: 4vw;
    border-radius: 0.6667vw;
    padding: 0 2.1333vw;
  }

  #new-request-form label span[aria-hidden="true"]::before {
    font-size: 2.6667vw;
    line-height: 4vw;
  }

  #new-request-form [data-garden-id="dropdowns.combobox.trigger"] {
    min-height: 10.6667vw;
    border-radius: 1.3333vw;
    font-size: 3.5333vw;
    padding: 2.2667vw 8.5333vw 2.2667vw 2.2667vw;
  }

  #new-request-form [data-garden-id="dropdowns.combobox.trigger"]::after {
    right: 2.2667vw;
    border-left: 1.3667vw solid transparent;
    border-right: 1.3667vw solid transparent;
    border-top: 1.3667vw solid #858F9B;
  }

  #new-request-form [data-garden-id="dropdowns.combobox.value"],
  #new-request-form [data-garden-id="dropdowns.combobox.value"] span:not([hidden]),
  #new-request-form [data-garden-id="dropdowns.combobox.value"] [data-garden-id="typography.font"] {
    font-size: 3.4vw;
  }

  #new-request-form input[type="text"]:not([aria-hidden="true"]),
  #new-request-form input[type="email"]:not([aria-hidden="true"]),
  #new-request-form textarea {
    font-size: 3.7333vw;
    border-radius: 1.3333vw;
    height: 11.7333vw;
    padding: 2.2667vw;
  }

  #new-request-form textarea[name="request[description]"] {
    height: 53.3333vw;
  }

  /* 同意エリア SP */
  .form-wrapper .check-agree .agree-line {
    gap: 1.4667vw;
  }

  .form-wrapper .check-agree label[for="agree"] {
    width: 5.3333vw;
    height: 5.3333vw;
    border: 0.5333vw solid #D0DDE2;
    border-radius: 1.3333vw;
  }

  .form-wrapper .check-agree #agree:checked + label[for="agree"]::after {
    left: 0.6vw;
    top: 1vw;
    width: 3.2vw;
    height: 2.4vw;
  }

  .form-wrapper .check-agree .agree-text {
    font-size: 3.7333vw;
    padding-bottom: 0.4vw;
    line-height: 1.4;
  }

  .form-wrapper .check-agree .agree-text a {
    text-underline-offset: 0.6667vw;
  }

  .form-wrapper .check-agree .privacy-text {
    font-size: 3.2vw;
    line-height: 1.5;
    padding-left: 3.2vw;
    text-indent: -3.2vw;
  }

  /* ドロップダウン メニュー SP */
  #new-request-form [data-garden-id="dropdowns.combobox.listbox"] [role="option"] {
    font-size: 3.5333vw;
    line-height: 1.4;
    padding-top: 2.1333vw;
    padding-bottom: 2.1333vw;
  }

  /* フィールドエラー SP */
  .form-wrapper .check-agree .agree-line + .field-error {
    margin-top: 1.0667vw;
  }
  #new-request-form [data-garden-id$=".field"] > .field-error,
  #new-request-form [data-garden-id="dropdowns.combobox"] > .field-error {
    margin-top: 1.0667vw;
  }

}

@media (hover: hover) {
  .logo:hover,
  .logo:focus-visible { opacity: .7; }

  .dropdown-toggle:hover {
    text-decoration: none;
    background: #dfe3e8;
  }

  .dropdown-menu [role=menuitem]:hover, .dropdown-menu [role=menuitem]:focus,
  .dropdown-menu [role=menuitemradio]:hover,
  .dropdown-menu [role=menuitemradio]:focus {
    background: rgba(31, 115, 183, 0.08);
    text-decoration: none;
    color: #2f3941;
  }

  #btn-confirm:hover {
    background: #166a89;
  }

  .link-frame a:hover {
    text-decoration: underline;
  }

  .form-wrapper .check-agree .agree-text a:hover,
  .section-description a:hover {
    color: #1a81a8;
  }

  #confirm #btn-back:hover, 
  .error-actions .btn-back:hover {
    background: #2c3640;
  }

  #confirm #btn-finish:hover {
    background: #06698e;
  }
  .error-actions .btn-back:hover{ background: #2c3640; }

}