@charset "UTF-8";
/**
 * 変数定義 (wpkahoku2026)
 * ブレークポイント・カラー・フォントの単一ソース
 *
 * このファイルはパーシャル（_variables.scss）のため単体では CSS を出力しません。
 * 変更後は「Compile All」するか、wdk-main.scss 等のエントリを保存して再コンパイルしてください。
 *
 * 【推奨】各ファイルの先頭（@charset の次）に次を書く:
 *   @use "パス/utils/variables" as *;
 *   @use "パス/utils/mixins" as *;
 * メディアクエリは _mixins.scss の @include mobile / tablet / desktop / from-tablet を使う。
 */
/* モバイル上限 */
/* パソコン以上 */
/* ワイド（フッター等で 1 行レイアウトを維持する幅） */
/* 後方互換（既存の @include mobile 等で参照されている場合） */
/* トピックス .l-container--topics-layout：狭い画面でブラウザ端に密着しないよう幅を抑える */
/* ヘッダー・ナビ背景（薄い青） */
/* 短いラベルでも潰れない目安（必要なら 12em〜14em） */
/* 右列の余白を確保する上限 */
/* ブレークポイント変数は _variables.scss。全エントリで @use して使う。 */
/* モバイル 480px 以下 */
/* タブレット 481～767px */
/* パソコン 769px 以上 */
/* 481px 以上（タブレット・PC共通。「帯」ではなく min-width のみ） */
.p-sitemap {
  margin: 0;
  padding: 0;
}
.p-sitemap__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  box-sizing: border-box;
  width: 100%;
}
.p-sitemap__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.p-sitemap__main {
  min-width: 0;
}
.p-sitemap__block {
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid #aaaaaa !important;
  border-radius: 8px;
  background-color: #ffffff !important;
  box-sizing: border-box;
}
.p-sitemap__block--pages {
  padding: 1.1rem 1.25rem;
}
.p-sitemap__heading {
  margin: 0 0 0.75rem 0;
  padding: 0 0 0 0.5em;
  border-left: 4px solid #0071bc;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
}
.p-sitemap__list {
  margin: 0 !important;
  padding: 0 0 0 1.25rem !important;
  list-style: disc !important;
}
.p-sitemap__list ul {
  margin: 0.35em 0 0 0 !important;
  padding-left: 1.25rem !important;
  list-style: circle !important;
}
.p-sitemap__list a {
  color: #0071bc;
  text-decoration: none;
}
.p-sitemap__list a:hover, .p-sitemap__list a:focus-visible {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   お問い合わせ（固定ページテンプレート：フォーム）
   項目ブロックは .form-data（入力・確認で共通）
   -------------------------------------------------------------------------- */
/* 本文幅は .l-main（デスクトップ 880px）に合わせる。別途 max-width で狭めない。 */
.p-contact-form {
  margin: 2rem auto 0 auto !important;
  padding: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.p-contact-form .form-data > p {
  margin: 0 0 1.35rem 0 !important;
  padding: 0 !important;
}
.p-contact-form .p-contact-form__privacy {
  margin: 0 0 1.35rem 0 !important;
  padding: 0 !important;
  text-align: center !important;
  font-size: 0.875rem !important;
  line-height: 1.65 !important;
  color: #666666 !important;
}
.p-contact-form .p-contact-form__submit {
  margin: 1.75rem 0 0 0 !important;
  padding: 0.25rem 0 0 0 !important;
  text-align: center !important;
}
.p-contact-form label {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.5rem !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  color: #333333 !important;
  box-sizing: border-box !important;
}
.p-contact-form input[type=text],
.p-contact-form input[type=email],
.p-contact-form textarea {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0.75rem 1rem !important;
  border: 1px solid #aaaaaa !important;
  border-radius: 4px !important;
  font-size: 1rem !important;
  font-family: inherit !important;
  line-height: 1.55 !important;
  color: #333333 !important;
  background-color: #ffffff !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  transition: border-color 0.22s ease, box-shadow 0.22s ease !important;
}
.p-contact-form input[type=text]::-moz-placeholder, .p-contact-form input[type=email]::-moz-placeholder, .p-contact-form textarea::-moz-placeholder {
  color: #666666 !important;
  opacity: 1 !important;
}
.p-contact-form input[type=text]::placeholder,
.p-contact-form input[type=email]::placeholder,
.p-contact-form textarea::placeholder {
  color: #666666 !important;
  opacity: 1 !important;
}
.p-contact-form input[type=text]:hover,
.p-contact-form input[type=email]:hover,
.p-contact-form textarea:hover {
  border-color: #bbbbbb !important;
}
.p-contact-form input[type=text]:focus, .p-contact-form input[type=text]:focus-visible,
.p-contact-form input[type=email]:focus,
.p-contact-form input[type=email]:focus-visible,
.p-contact-form textarea:focus,
.p-contact-form textarea:focus-visible {
  outline: none !important;
  border-color: #a2d5ef !important;
  box-shadow: 0 0 0 1px rgba(162, 213, 239, 0.95), 0 4px 14px rgba(0, 113, 188, 0.12) !important;
}
.p-contact-form input[type=text],
.p-contact-form input[type=email] {
  min-height: 2.875rem !important;
}
.p-contact-form textarea {
  min-height: 11em !important;
  resize: vertical !important;
}
.p-contact-form input[type=submit] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 3rem !important;
  min-width: 12em !important;
  margin: 0 !important;
  padding: 0.65rem 2rem !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  line-height: 1.4 !important;
  color: #ffffff !important;
  background-color: #0071bc !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  -moz-appearance: none !important;
       appearance: none !important;
  -webkit-appearance: none !important;
  transition: background-color 0.22s ease, box-shadow 0.22s ease !important;
}
.p-contact-form input[type=submit]:hover {
  color: #ffffff !important;
  background-color: #29abe2 !important;
}
.p-contact-form input[type=submit]:focus, .p-contact-form input[type=submit]:focus-visible {
  outline: none !important;
  background-color: #29abe2 !important;
  box-shadow: 0 0 0 1px rgba(162, 213, 239, 0.95), 0 4px 14px rgba(0, 113, 188, 0.2) !important;
}

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */
body.error404 {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}
body.error404 .l-main {
  flex: 1 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 0 !important;
  /* flex の子で高さ計算がおかしい場合の保険 */
}
body.error404 .p-page-title {
  text-align: center !important;
}
body.error404 .p-404-body {
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 36rem !important;
  box-sizing: border-box !important;
  text-align: left !important;
}
body.error404 .p-404-lead,
body.error404 .p-404-note {
  margin: 0 auto !important;
  padding: 0 0 3rem !important;
  /* 下だけ 3rem など */
  font-size: 1rem !important;
  line-height: 1.75 !important;
  color: #333333 !important;
  box-sizing: border-box !important;
}
body.error404 .p-404-note {
  margin-bottom: 2rem !important;
}
body.error404 .p-404-search {
  margin: 0 auto 2.5rem !important;
  padding: 2rem 1rem !important;
  /* 上下 2rem ・ 左右は必要なら */
  max-width: 28rem !important;
  box-sizing: border-box !important;
  text-align: center !important;
}
body.error404 .p-404-search__label {
  margin: 0 0 0.85rem 0 !important;
  padding: 0 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #333333 !important;
  box-sizing: border-box !important;
  text-align: center !important;
}
body.error404 .p-404-search .search-form {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  justify-content: center !important;
  gap: 0.65rem 0.75rem !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}
body.error404 .p-404-search .search-field {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  flex: 1 1 100% !important;
  min-height: 3.25rem !important;
  padding: 0.85rem 1rem !important;
  border: 1px solid #aaaaaa !important;
  border-radius: 8px !important;
  font-size: 1.125rem !important;
  font-family: inherit !important;
  box-sizing: border-box !important;
}
body.error404 .p-404-search .search-submit {
  min-height: 3.25rem !important;
  padding: 0.75rem 1.75rem !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.0625rem !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  color: #ffffff !important;
  background-color: #0071bc !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}
body.error404 .p-404-search .search-submit:hover, body.error404 .p-404-search .search-submit:focus-visible {
  background-color: #29abe2 !important;
}
body.error404 .p-404-home {
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  font-size: 1rem !important;
  box-sizing: border-box !important;
}
body.error404 .p-404-home a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 3rem !important;
  padding: 0.65rem 2rem !important;
  color: #ffffff !important;
  background-color: #0071bc !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  transition: background-color 0.2s ease !important;
}
body.error404 .p-404-home a:hover, body.error404 .p-404-home a:focus-visible {
  color: #ffffff !important;
  background-color: #29abe2 !important;
  text-decoration: none !important;
}
body.error404 .p-404-home a:focus-visible {
  outline: 2px solid #0071bc !important;
  outline-offset: 2px !important;
}

/* --------------------------------------------------------------------------
   mpmail 静的ページ：ラッパークラスのみ（.l-container 直下などに配置）
   .check ＝確認 / .error ＝エラー / .complete ＝送信完了
   -------------------------------------------------------------------------- */
.check {
  width: 100% !important;
}
.check .p-contact-form {
  margin-top: 1.5rem !important;
  padding: 0 !important;
  border-top: 1px dashed rgba(170, 170, 170, 0.45) !important;
  box-sizing: border-box !important;
}
.check .p-contact-form .form-data > p + p {
  border-top: 1px dashed rgba(170, 170, 170, 0.45) !important;
}
.check .p-contact-form .form-data > p {
  margin: 0 !important;
  padding: 0.85rem 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}
.check .p-contact-form .form-data > p:last-child {
  border-bottom: 1px dashed rgba(170, 170, 170, 0.45) !important;
}
.check .p-contact-form .form-data > p label {
  gap: 0 !important;
  padding: 0 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #333333 !important;
  letter-spacing: normal !important;
}
.check .p-contact-form .form-data label > span {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  color: #888 !important;
  background-color: transparent !important;
  box-sizing: border-box !important;
  word-break: break-word !important;
}
.check .p-contact-form .form-data > p:nth-child(4) label > span {
  white-space: pre-wrap !important;
}
.check .p-contact-form__privacy {
  margin-top: 1.25rem !important;
  padding-top: 0.75rem !important;
}
.check .p-contact-form__privacy span {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  text-align: center;
  margin: 0 0 1em 0;
}
.check .p-contact-form > form {
  margin: 1.25rem 0 0 0 !important;
  padding: 0 !important;
  text-align: center !important;
}
.check .p-contact-form .p-contact-form__submit {
  margin-top: 0.75rem !important;
}
.check .check-submi p {
  margin: 2em 0;
}
.check .p-contact-form input[type=submit] {
  min-width: 14em !important;
}

.error > h2 {
  margin: 1.75rem 0 0.65rem 0 !important;
  padding: 0 0 0 0.5em !important;
  border-left: 4px solid #0071bc !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  color: #333333 !important;
  box-sizing: border-box !important;
}
.error .p-contact-form ul,
.error .p-contact-form ol {
  margin: 0 0 1rem 0 !important;
  padding: 0 0 0 1.5rem !important;
  font-size: 0.9375rem !important;
  line-height: 1.65 !important;
  color: #b42318 !important;
  box-sizing: border-box !important;
}
.error .p-contact-form ul:last-child,
.error .p-contact-form ol:last-child {
  margin-bottom: 0 !important;
}
.error .p-contact-form ul li,
.error .p-contact-form ol li {
  margin: 0 0 0.35em 0 !important;
}
.error .p-contact-form ul li:last-child,
.error .p-contact-form ol li:last-child {
  margin-bottom: 0 !important;
}
.error .p-contact-form > p:not(:has(label)) {
  margin: 0 0 1rem 0 !important;
  padding: 0.75rem 1rem !important;
  border: 1px solid #f5a4a4 !important;
  border-radius: 4px !important;
  font-size: 0.9375rem !important;
  line-height: 1.65 !important;
  color: #b42318 !important;
  background-color: #fff5f5 !important;
  box-sizing: border-box !important;
}
.error .p-contact-form > p:not(:has(label)):last-child {
  margin-bottom: 0 !important;
}
.error .p-contact-form div:not(:last-child) {
  margin-bottom: 0.75rem !important;
}

.complete > p {
  margin: 0 0 1.25rem 0 !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  color: #333333 !important;
  box-sizing: border-box !important;
}
.complete > p:last-of-type {
  margin-bottom: 0 !important;
}
.complete > p:last-child a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 3rem !important;
  margin: 0.5rem 0 0 0 !important;
  padding: 0.65rem 2rem !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  color: #ffffff !important;
  background-color: #0071bc !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  transition: background-color 0.22s ease, box-shadow 0.22s ease !important;
}
.complete > p:last-child a:hover, .complete > p:last-child a:focus-visible {
  color: #ffffff !important;
  background-color: #29abe2 !important;
  text-decoration: none !important;
}
.complete > p:last-child a:focus-visible {
  outline: 2px solid #0071bc !important;
  outline-offset: 2px !important;
}

@media (min-width: 481px) {
  body.error404 .p-404-search .search-form {
    flex-wrap: nowrap !important;
  }
  body.error404 .p-404-search .search-field {
    flex: 1 1 auto !important;
    width: auto !important;
  }
  .p-sitemap__grid {
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  }
}
@media (min-width: 1025px) {
  .p-sitemap__grid {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: 1.75rem 2.5rem;
  }
  .p-contact-form .form-data > p {
    display: grid !important;
    grid-template-columns: minmax(0, 11rem) minmax(0, 1fr) !important;
    gap: 0.75rem 1.25rem !important;
    align-items: center !important;
  }
  .p-contact-form .form-data > p label {
    display: contents !important;
  }
  .p-contact-form .form-data > p input,
  .p-contact-form .form-data > p textarea {
    min-width: 0 !important;
  }
}
@media (max-width: 480px) {
  .p-contact-form .form-data > p label {
    flex-direction: column !important;
    /* 既存の縦並びを維持 */
  }
  .p-contact-form .form-data > p:nth-child(4) label > span {
    min-height: 10em !important;
  }
  body#complete .l-main .l-container > p:last-child a {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .p-sitemap__grid {
    grid-template-columns: 1fr;
  }
  .p-sitemap__main {
    order: 1;
  }
  .p-sitemap__aside {
    order: 2;
  }
  body#mpmail-confirm .check .p-contact-form .form-data > p:nth-child(4) label > span {
    min-height: 10em !important;
  }
  body#complete .l-main .l-container > p:last-child a {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}