@charset "UTF-8";
/* =========================
   Base
========================= */
html {
  scroll-behavior: smooth;
}

body {
  color: #111;
  margin: 0 !important;
  padding: 0;
}
body.is-nav-open {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,
a:visited,
a:active,
a:focus {
  color: inherit;
  outline: none;
}

.site {
  overflow-x: clip;
}

.page-template-default main {
  margin-top: 70px;
}

/* =========================
   Header
========================= */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header_inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* 左：ナビ */
.main-navigation {
  display: flex;
  align-items: center;
}

/* WPの menu-toggle は使わず、見た目だけ上書きして使う */
.menu-toggle {
  display: none;
}

/* PCナビ */
.main-navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation .nav-menu a {
  color: initial;
  display: inline-block;
  padding: 10px 4px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

/* アクティブ下線（WPが付けるclassを利用） */
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: #111;
}

.main-navigation .nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: #111;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* hover / focus で出す */
.main-navigation .nav-menu a:hover::after,
.main-navigation .nav-menu a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

/* アクティブは常に出す（WPの class 利用） */
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
  transform: scaleX(1);
  opacity: 1;
}

/* 右：Anan-smile ボタン */
.contact_btn {
  flex: 0 0 auto;
}

.contact_btn__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  background: #000;
  color: #fff !important;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.contact_btn__link:hover {
  background: #333;
  color: #fff;
  /* #333 にしたければここだけ */
}

/* =========================
   Mobile Nav (<=767)
========================= */
@media (max-width: 767px) {
  /* ナビはボタン化（ハンバーガー） */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
  }
  /* ハンバーガー3本線（擬似要素） */
  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle span {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #111;
    transition: transform 0.35s ease, top 0.35s ease, opacity 0.25s ease;
  }
  .menu-toggle::before {
    top: 14px;
  }
  .menu-toggle span {
    top: 21px;
  }
  .menu-toggle::after {
    top: 28px;
  }
  /* PCナビは隠す */
  .main-navigation .menu-main-menu-container {
    position: fixed;
    inset: 72px 0 0 0;
    /* ヘッダー下から */
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    padding: 24px 0;
    height: 100vh;
  }
  .main-navigation .nav-menu {
    width: min(1100px, 92vw);
    margin: 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .main-navigation .nav-menu a {
    width: 100%;
    padding: 14px 0;
    font-size: 18px;
  }
  /* 開いた状態 */
  body.is-nav-open .main-navigation .menu-main-menu-container {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  /* くるっと回ってバツ */
  body.is-nav-open .menu-toggle::before {
    top: 21px;
    transform: rotate(45deg);
  }
  body.is-nav-open .menu-toggle span {
    opacity: 0;
  }
  body.is-nav-open .menu-toggle::after {
    top: 21px;
    transform: rotate(-45deg);
  }
}
/* =========================
   Key Visual
========================= */
.key_v {
  position: relative;
  min-height: 100svh;
  /* iPhoneの高さ問題対策 */
  overflow: hidden;
}

.key_v .post-thumbnail,
.key_v .post-thumbnail img {
  width: 100%;
  height: 100%;
}

.key_v .post-thumbnail {
  position: absolute;
  inset: 0;
}

.key_v .post-thumbnail img {
  object-fit: cover;
  object-position: center;
}

/* 白透過オーバーレイ */
.key_v::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
}

/* 中央配置 */
.key_v .info__box {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 16px;
  padding: 0 16px;
}

.key_v .info__box .entry-title {
  margin: 0;
  font-size: clamp(34px, 5.5vw, 70px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.7);
}

.key_v .info__box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px;
  background: #000;
  color: #fff;
  font-weight: 900;
  width: 200px;
  margin: 80px auto 0;
  text-decoration: none;
  font-size: 23px;
}

.key_v .info__box a:hover {
  background: #222;
}

/* 下矢印（スクロール促す） */
.key_v .scroll-down {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.65);
}

.key_v .scroll-down::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  animation: kfArrow 1.5s ease-in-out infinite;
}

@keyframes kfArrow {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(45deg);
  }
}
/* =========================
   Footer
========================= */
.site-footer {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer_inner {
  width: min(1100px, 92vw);
  padding: 80px 0;
  margin: 0 auto;
  text-align: center;
}

.footer_nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 80px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer_nav a {
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 2px;
  position: relative;
}

.footer_nav a:hover {
  opacity: 0.75;
}

.copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
}

/* 共通コンテナ */
.section_inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0;
}

/* ===== contents1 ===== */
.contents1 {
  scroll-margin-top: 73px;
  background: #fff;
}

.messages {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.messages h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.messages p {
  margin: 0;
  text-align: left;
  line-height: 1.9;
  font-size: 16px;
}

.messages p + p {
  margin-top: 40px;
}

/* 3ポイントをカード化 */
.points {
  max-width: 900px;
  margin: 0 auto 80px;
}
.points .point h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
}
.points .point p {
  margin: 0;
  line-height: 1.85;
  font-size: 15px;
}
.points .point ul {
  margin: 10px 0 0;
  padding-left: 1.2em;
  line-height: 1.8;
  font-size: 15px;
}
.points .point ul li + li {
  margin-top: 6px;
}

/* ===== contents2 (FAQ) ===== */
.faq {
  max-width: 900px;
  margin: 0 auto 80px;
}
.faq h2 {
  text-align: center;
  margin: 0 0 14px;
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.faq h3 {
  margin: 18px 0 8px;
  padding-top: 30px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.faq p {
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
}
.faq h3 + p {
  padding-bottom: 16px;
}
.faq strong {
  font-weight: 900;
}

/* ===== contents3 事業所概要 ===== */
.contents3 {
  background-color: rgb(228, 228, 234);
}
.contents3 .site-info {
  /* =========================
     Mobile Nav (<=767)
  ========================= */
}
.contents3 .site-info .gmap {
  width: 100%;
  aspect-ratio: 5/2;
  margin: 60px 0;
}
.contents3 .site-info .gmap iframe {
  width: 100%;
  height: 100%;
}
.contents3 .site-info__box {
  display: flex;
  flex-wrap: wrap;
}
.contents3 .site-info__card {
  flex: 1;
  line-height: 1.6;
}
.contents3 .site-info__card h3 a {
  color: #434343;
}
.contents3 .site-info__text {
  margin-bottom: 0;
}
.contents3 .site-info__row {
  display: flex;
  gap: 0 40px;
}
.contents3 .site-info__row dt {
  font-weight: 500;
}
.contents3 .site-info__row dd {
  margin: 0;
}
@media (max-width: 767px) {
  .contents3 .site-info__card {
    flex: auto;
    width: 100%;
    line-height: 1.6;
  }
  .contents3 .site-info__card:not(:last-child) {
    margin-bottom: 30px;
  }
}

.entry-header {
  margin-bottom: 30px;
}

/* ===== support1 ===== */
.support1 {
  /* ===== graph（表の横スクロール） ===== */
  /* ===== SP：タイトルセンター、テキスト左寄せ ===== */
}
.support1 .section_head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}
.support1 .section_head h1 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.support1 .section_head h2 {
  margin: 0 auto 18px;
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 900;
  line-height: 1.6;
}
.support1 .section_head p {
  margin: 0 auto;
  text-align: left;
  /* 長文は左の方が読みやすい */
  line-height: 1.95;
  font-size: 18px;
  text-align: center;
}
.support1 .section_head p strong {
  font-weight: 700;
}
.support1 .img_wrap {
  max-width: 600px;
  margin: 0 auto 70px;
  text-align: center;
}
.support1 .img_wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.support1 .section_body {
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}
.support1 .section_body .section_body_item {
  text-align: center;
  /* PC/タブレット：本文は読みやすさ優先で中央ブロック＋左寄せ */
}
.support1 .section_body .section_body_item:not(:last-child) {
  margin-bottom: 80px;
}
.support1 .section_body .section_body_item h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}
.support1 .section_body .section_body_item p {
  margin: 0 auto;
  max-width: 760px;
  line-height: 1.95;
  font-size: 15px;
}
.support1 .section_body .section_body_item p + p {
  margin-top: 14px;
}
.support1 .section_body .section_body_item p strong {
  font-weight: 900;
}
.support1 .graph {
  margin-top: 18px;
  /* 横スクロール領域 */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* iOSでスクロールしやすくする余白 */
  padding-bottom: 6px;
  /* 角を少し丸く見せたいなら（任意） */
}
.support1 .graph .schedule-table {
  /* はみ出したら横スクロールにするため、最小幅を持たせる */
  min-width: 1000px;
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}
.support1 .graph .schedule-table th,
.support1 .graph .schedule-table td {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 14px 16px;
  vertical-align: top;
  vertical-align: middle;
}
.support1 .graph .schedule-table th {
  background: #f6f7f9;
  text-align: center;
  font-weight: 900;
}
.support1 .graph .schedule-table td:first-child {
  white-space: nowrap;
  text-align: center;
  font-weight: 800;
  vertical-align: middle;
}
.support1 .graph .schedule-table td:nth-of-type(3) {
  text-align: left;
}
.support1 .graph .schedule-table strong {
  font-weight: 900;
}
.support1 .on1000 {
  display: none;
}
@media (max-width: 1000px) {
  .support1 .on1000 {
    display: block;
    text-align: left;
    margin: 0 0 -10px 0 !important;
  }
}
@media (max-width: 767px) {
  .support1 {
    /* SPでは表の最小幅を少し大きめにして横スクロールを確実に */
  }
  .support1 .section_head h1,
  .support1 .section_head h2 {
    text-align: center;
  }
  .support1 .section_head p {
    text-align: left;
  }
  .support1 .section_body .section_body_item h3 {
    text-align: center;
  }
  .support1 .section_body .section_body_item p {
    text-align: left;
  }
  .support1 .graph .schedule-table {
    min-width: 900px;
  }
}

/* ===== guide1（ご利用案内） ===== */
.guide1 {
  /* セクション内アイテム */
  /* 表：横幅超えたら横スクロール */
  /* SP：タイトルはセンター、テキストは左寄せ（読みやすさ優先） */
}
.guide1 .section_head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}
.guide1 .section_head h1 {
  margin: 0;
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.guide1 .guide_item {
  max-width: 900px;
  margin: 0 auto 80px;
  background: #fff;
  /* OL：流れを読みやすく */
  /* UL：いまのHTMLは「ul が複数」なので整える */
}
.guide1 .guide_item h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}
.guide1 .guide_item p {
  margin: 0;
  font-size: 15px;
}
.guide1 .guide_item p + p {
  margin-top: 10px;
}
.guide1 .guide_item p strong {
  font-weight: 900;
}
.guide1 .guide_item ol {
  margin: 0;
  padding-left: 1.2em;
  font-size: 15px;
}
.guide1 .guide_item ol li + li {
  margin-top: 10px;
}
.guide1 .guide_item ol strong {
  font-weight: 900;
}
.guide1 .guide_item ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.guide1 .guide_item ul li {
  padding: 14px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.guide1 .guide_item ul li:first-child {
  border-top: 0;
  padding-left: 20px;
}
.guide1 .guide_item ul li strong {
  display: inline-block;
  font-weight: 900;
  margin-bottom: 8px;
  position: relative;
}
.guide1 .guide_item ul li strong::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  background: #111;
  border-radius: 100%;
  top: 0;
  left: -15px;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.guide1 .guide_item ul li p {
  margin: 0;
}
.guide1 .guide_item ul li p + p {
  margin-top: 6px;
}
.guide1 .guide_graph {
  margin-top: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}
.guide1 .guide_graph .guide-table {
  width: 100%;
  max-width: 640px;
  /* ここで“縮まず横スクロール”にする */
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}
.guide1 .guide_graph .guide-table th,
.guide1 .guide_graph .guide-table td {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 14px 16px;
  vertical-align: top;
}
.guide1 .guide_graph .guide-table th {
  background: #f6f7f9;
  text-align: center;
  font-weight: 900;
}
.guide1 .guide_graph .guide-table td:last-child {
  white-space: nowrap;
  text-align: center;
  font-weight: 900;
}
@media (max-width: 767px) {
  .guide1 .guide_item {
    /* ulのstrongだけは見出しっぽく */
  }
  .guide1 .guide_item h3 {
    text-align: center;
  }
  .guide1 .guide_item p,
  .guide1 .guide_item ol,
  .guide1 .guide_item ul li {
    text-align: left;
  }
  .guide1 .guide_item ul li strong {
    text-align: left;
  }
  .guide1 .guide_graph .guide-table {
    min-width: 500px;
    /* スマホは横スクロール確実に */
  }
}
.guide1 .on570 {
  display: none;
}
@media (max-width: 570px) {
  .guide1 .on570 {
    display: block;
    text-align: left;
    margin: 10px 0 -10px 0 !important;
  }
}

/* ===== guidelines ===== */
.guidelines {
  /* 各ガイドラインブロック */
  /* 個別項目 */
  /* SP 調整 */
}
.guidelines .section_head {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}
.guidelines .section_head h1 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
}
.guidelines .section_head p {
  margin: 0 auto;
  max-width: 760px;
  text-align: left;
  font-size: 15px;
}
.guidelines .guideline {
  max-width: 900px;
  margin: 0 auto 96px;
}
.guidelines .guideline h2 {
  margin: 0 0 28px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.guidelines .guideline_item {
  margin-bottom: 40px;
}
.guidelines .guideline_item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
}
.guidelines .guideline_item p {
  margin: 0;
  max-width: 760px;
  line-height: 1.95;
  font-size: 15px;
}
.guidelines .guideline_item p + p {
  margin-top: 12px;
}
.guidelines .guideline_item ul,
.guidelines .guideline_item ol {
  margin: 12px 0 0;
  padding-left: 1.4em;
  max-width: 760px;
  font-size: 15px;
}
.guidelines .guideline_item ul li + li,
.guidelines .guideline_item ol li + li {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .guidelines .section_head {
    margin-bottom: 56px;
  }
  .guidelines .section_head h1 {
    text-align: center;
  }
  .guidelines .section_head p {
    text-align: left;
  }
  .guidelines .guideline {
    margin-bottom: 72px;
  }
  .guidelines .guideline h2 {
    text-align: center;
  }
  .guidelines .guideline_item h3 {
    text-align: left;
  }
  .guidelines .guideline_item p,
  .guidelines .guideline_item ul,
  .guidelines .guideline_item ol {
    max-width: none;
  }
}

/* ===== about（運営者情報・型） ===== */
.about {
  /* 情報テーブル（dl） */
  /* SP */
}
.about .section_head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}
.about .section_head h1 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.about .section_head p {
  margin: 0 auto;
  max-width: 760px;
  text-align: left;
  line-height: 1.95;
  font-size: 15px;
}
.about .about_body {
  max-width: 900px;
  margin: 0 auto;
}
.about .about_table {
  margin: 0;
  border: solid 1px #ddd;
  padding: 20px;
}
.about .about_row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 14px 0;
  /* 罫線は使わず、余白だけで区切る */
}
.about .about_row + .about_row {
  margin-top: 6px;
}
.about .about_row dt {
  font-weight: 900;
  font-size: 15px;
  line-height: 1.8;
  border-right: solid #ddd;
}
.about .about_row dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}
@media (max-width: 767px) {
  .about .section_head {
    margin-bottom: 40px;
  }
  .about .section_head p {
    text-align: left;
  }
  .about .about_row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .about .about_row dt {
    font-size: 14px;
    border-right: none;
  }
  .about .about_row dd {
    font-size: 15px;
  }
}

/* ===== contact（お問い合わせ） ===== */
.contact .section_head {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}
.contact .section_head h1 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
}

/* CF7 layout */
.cf7-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 900;
  text-align: center;
}

.cf7-lead {
  margin: 0 auto 26px;
  max-width: 760px;
  text-align: center;
  line-height: 1.9;
}

.cf7-grid {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.cf7-field label {
  display: block;
  font-weight: 900;
  margin: 0 0 6px;
}

.cf7-field .req {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 900;
  color: #999;
}

.cf7-field input,
.cf7-field textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 0;
  font-size: 16px;
}

.cf7-field--full {
  grid-column: 1/-1;
}

.cf7-note {
  margin: 10px 0 0;
  font-size: 14px;
}

.cf7-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cf7-actions {
  max-width: 760px;
  margin: 24px auto 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cf7-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 18px;
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  cursor: pointer;
}

.cf7-field.cf7-field--full.acceptance .wpcf7-list-item {
  width: 100%;
}
.cf7-field.cf7-field--full.acceptance .wpcf7-list-item input {
  width: auto;
}
.cf7-field.cf7-field--full.acceptance .wpcf7-list-item span.wpcf7-list-item-label {
  margin-left: 5px;
}

input.cf7-btn--primary[type=submit] {
  background: #000;
  color: #fff;
  border-color: #000;
  width: 150px;
}

input.cf7-btn--primary[type=submit]:hover {
  background: #222;
}

.wpcf7-spinner {
  position: absolute;
}

@media (max-width: 767px) {
  .cf7-lead {
    text-align: left;
  }
  .cf7-btn {
    flex: 1;
  }
}
/* =========================
   CF7 Confirm Plus 確認画面
   ========================= */
#wpcf7cpcnf {
  width: min(760px, 100%);
  margin: 22px auto 0;
  z-index: 0 !important;
  right: 0;
  max-width: 900px;
}

/* 表：読みやすく整形（罫線は最小限） */
#wpcf7cpcnf table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

#wpcf7cpcnf tr {
  /* 行の区切りは薄い線 or 影に近い表現 */
}

#wpcf7cpcnf th,
#wpcf7cpcnf td {
  width: 50%;
}

/* ラベル側 */
#wpcf7cpcnf th {
  text-align: right;
  font-weight: 900;
}

#wpcf7cpcnf th p {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
  padding-right: 20px;
  margin: 10px 0;
}

/* 値側 */
#wpcf7cpcnf td p {
  margin: 0;
  line-height: 1.85;
  font-size: 15px;
  word-break: break-word;
  padding-left: 20px;
  margin: 10px 0;
  border-left: solid 1px #ddd;
}

/* ボタンエリア */
#wpcf7cpcnf .wpcf7cp-btns {
  margin-top: 22px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ボタン共通 */
#wpcf7cpcnf .wpcf7cp-btns button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 18px;
  font-weight: 900;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.18);
  width: 150px;
  margin: 0;
}

/* 修正ボタン */
#wpcf7cpcnf .wpcf7cp-cfm-edit-btn:hover {
  opacity: 0.9;
}

/* 送信ボタン（黒背景・白文字） */
#wpcf7cpcnf .wpcf7cp-cfm-submit-btn {
  background: #000;
  color: #fff;
  border-color: #000;
}

#wpcf7cpcnf .wpcf7cp-cfm-submit-btn:hover {
  background: #222;
}

/* SP：縦積みで読みやすく */
@media (max-width: 767px) {
  #wpcf7cpcnf tr {
    border-bottom: solid 1px #ddd;
    padding: 10px 0;
    display: block;
  }
  #wpcf7cpcnf th,
  #wpcf7cpcnf td {
    display: block;
    width: 100%;
    padding: 12px 14px;
  }
  #wpcf7cpcnf th {
    background: transparent;
    padding-bottom: 6px;
    text-align: left;
  }
  #wpcf7cpcnf th p {
    margin: 0;
  }
  #wpcf7cpcnf td {
    padding-top: 0;
  }
  #wpcf7cpcnf td p {
    border-left: none;
  }
  #wpcf7cpcnf .wpcf7cp-btns {
    justify-content: stretch;
  }
  #wpcf7cpcnf .wpcf7cp-btns button {
    flex: 1;
  }
  #wpcf7cpcnf .wpcf7cp-btns {
    gap: 10px;
  }
}
/* =========================
   Contact Thanks Page
   ========================= */
.contact.thanks .section_head {
  text-align: center;
  padding: clamp(40px, 8vw, 80px) 0;
}
.contact.thanks .entry-header h1 {
  margin: 0 0 20px;
  font-size: clamp(24px, 3.6vw, 34px);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.contact.thanks .thanks-lead {
  margin: 0 auto 20px;
  max-width: 720px;
  line-height: 1.9;
  font-size: 16px;
}
.contact.thanks .thanks-text {
  margin: 0 auto 30px;
  max-width: 720px;
  line-height: 1.9;
  font-size: 15px;
  opacity: 0.9;
}
.contact.thanks .thanks-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact.thanks .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  font-weight: 900;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: background 0.2s ease;
}
.contact.thanks .btn--primary {
  background: #000;
  color: #fff;
  border-color: #000;
}
.contact.thanks .btn--primary:hover {
  background: #222;
}
.contact.thanks .btn:not(.btn--primary):hover {
  background: rgba(0, 0, 0, 0.04);
}
@media (max-width: 767px) {
  .contact.thanks .thanks-actions {
    flex-direction: column;
  }
  .contact.thanks .btn {
    width: 100%;
  }
}/*# sourceMappingURL=global.css.map */