/* =========================
   Seitai LP style.css
   ========================= */

:root{
  --text: #2f2b27;
  --muted: #7d746a;
  --line: #e8e1d8;
  --accent: #a59682;
  --bg-muted: #f8f4ee;
  --header-h: 84px;
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

html{
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body{
  margin: 0;
  padding-top: var(--header-h);
  font-family: 'Zen Old Mincho', serif;
  color: var(--text);
  line-height: 1.8;
  background: #fcfbf8;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

button,
input,
textarea,
select,
.gnav,
.access-btn,
.floating-reserve{
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ===== Header ===== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(252,250,247,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(0,0,0,0.03);
  z-index: 1000;
}

.header-inner{
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo{
  text-decoration: none;
  color: #342f29;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .03em;
}

.gnav-list{
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gnav-link{
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #3a342e;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 2px;
}

.gnav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #a59682, #c2b6a7);
  opacity: 0;
  transition: opacity .2s ease;
}

.gnav-link:hover::after{
  opacity: 1;
}

/* ===== Hamburger ===== */
.nav-toggle{
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1101;
}

.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #2f3134;
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.is-open span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2){
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero{
  position: relative;
  overflow: hidden;
}

.hero-slides{
  position: relative;
  height: 680px;
}

.hero-slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(38,30,22,0.28),
    rgba(38,30,22,0.16)
  );
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy{
  max-width: 700px;
  color: #fff;
}

.hero-label{
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.hero-catch{
  margin: 0;
  color: #fff;
  line-height: 1.28;
  letter-spacing: .05em;
  font-weight: 700;
  font-size: clamp(34px, 4vw, 62px);
  text-shadow:
    0 2px 8px rgba(28,22,18,.52),
    0 10px 24px rgba(28,22,18,.42),
    0 22px 52px rgba(28,22,18,.30);
}

.hero-sub{
  margin: 18px 0 0;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.9;
  color: rgba(255,255,255,.96);
}

.hero-points{
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li{
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions{
  margin-top: 28px;
}

/* ===== Sections ===== */
.section{
  padding: 100px 0;
}

.section--muted{
  background: var(--bg-muted);
  border-top: 1px solid #eee6dc;
  border-bottom: 1px solid #eee6dc;
}

/* ===== Headings ===== */
.section-heading{
  width: min(860px, 92%);
  margin: 0 auto 42px;
  text-align: center;
  position: relative;
}

.section-heading::before{
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, transparent, rgba(165,150,130,.95), transparent);
}

.section-heading::after{
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, rgba(165,150,130,0), rgba(165,150,130,.95), rgba(165,150,130,0));
}

.title{
  margin: 0;
  color: #7a6f63;
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 700;
  letter-spacing: .10em;
  line-height: 1.45;
}

.title::before{
  content: attr(data-en);
  display: block;
  margin-bottom: 10px;
  font-family: "Times New Roman", "Georgia", serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
  color: #b7a999;
  opacity: .95;
  transform: rotate(-4deg);
}

.lead{
  margin: 10px 0 0;
  color: #95897d;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: .03em;
}

/* ===== Split ===== */
.split{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 68px;
  align-items: center;
}

.split-text{
  max-width: 560px;
}

.dot-list{
  margin: 0;
  padding-left: 1.2em;
  color: #655c53;
  font-size: 18px;
  font-weight: 600;
}

.dot-list li{
  margin: 16px 0;
}

.section-note{
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.9;
  color: #7d746a;
}

.section-note--center{
  text-align: center;
}

.split-media{
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.split-media::before,
.split-media::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
}

.split-media::before{
  background: #efe7dd;
  transform: translate(28px, 28px);
  z-index: 0;
}

.split-media::after{
  background: #e7ddd1;
  transform: translate(14px, 14px);
  z-index: 1;
}

.split-media__img{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.split-media img{
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 22px;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.06),
    0 4px 10px rgba(0,0,0,0.03);
}

/* ===== Concern section strengthen ===== */
#concern .section-heading{
  margin-bottom: 28px;
}

#concern .split{
  gap: 44px;
  align-items: start;
}

#concern .split-text{
  max-width: 620px;
  padding-top: 6px;
}

#concern .dot-list{
  margin: 0;
  padding-left: 1.15em;
  color: #544c44;
  font-size: 19px;
  font-weight: 700;
  line-height: 2;
}

#concern .dot-list li{
  margin: 10px 0;
}

#concern .section-note{
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.9;
  color: #71675d;
  font-weight: 600;
}

@media (max-width: 860px){
  #concern .split{
    gap: 26px;
  }

  #concern .split-text{
    padding-top: 0;
  }
}

@media (max-width: 600px){
  #concern .section-heading{
    margin-bottom: 20px;
  }

  #concern .dot-list{
    font-size: 16px;
    line-height: 1.9;
  }

  #concern .dot-list li{
    margin: 8px 0;
  }

  #concern .section-note{
    font-size: 14px;
    line-height: 1.9;
    margin-top: 14px;
  }
}

/* ===== Reason ===== */
.reason-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.reason-card{
  background: linear-gradient(180deg, rgba(255,252,248,0.98), rgba(255,249,243,0.92));
  border: 1px solid rgba(126,110,90,0.10);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow:
    0 16px 36px rgba(70,52,35,0.04),
    0 4px 10px rgba(70,52,35,0.02);
}

.reason-num{
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #ab9f91;
}

.reason-card h3{
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.5;
  color: #39322b;
}

.reason-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: #73695f;
}

/* ===== Benefit ===== */
.benefit-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 860px){
  .benefit-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px){
  .benefit-grid{
    grid-template-columns: 1fr;
  }
}

.benefit-card{
  background: #fffdfa;
  border: 1px solid rgba(126,110,90,0.10);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 10px 22px rgba(70,52,35,0.04);
}

.benefit-card p{
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #5f564e;
}

/* ===== Flow ===== */
.flow-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.flow-card{
  background: #fffdfa;
  border: 1px solid rgba(126,110,90,0.10);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 10px 22px rgba(70,52,35,0.04);
}

.flow-num{
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #ab9f91;
}

.flow-card h3{
  margin: 0 0 12px;
  font-size: 18px;
  color: #39322b;
}

.flow-card p{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #73695f;
}

/* ===== Price ===== */
.price-simple{
  display: flex;
  justify-content: center;
}

.price-simple-card{
  width: min(480px, 100%);
  background: linear-gradient(180deg, rgba(255,252,248,0.98), rgba(255,249,243,0.92));
  border: 1px solid rgba(126,110,90,0.10);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow:
    0 16px 36px rgba(70,52,35,0.04),
    0 4px 10px rgba(70,52,35,0.02);
}

.price-simple-card h3{
  margin: 0 0 14px;
  font-size: 26px;
  color: #39322b;
}

.price-main{
  margin: 0 0 10px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #2f3134;
}

.price-main span{
  font-size: 15px;
  color: #7a7168;
}

.price-sub,
.price-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #73695f;
}

.price-sub{ margin-bottom: 6px; }

.cta-box{
  margin-top: 28px;
  text-align: center;
}

.cta-box__text{
  margin: 0 0 18px;
  font-size: 15px;
  color: #6f665d;
}

/* ===== Support ===== */
.support-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-item{
  padding: 22px 20px;
  background: #fffdfa;
  border: 1px solid rgba(126,110,90,0.10);
  border-radius: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #5f564e;
  box-shadow: 0 10px 22px rgba(70,52,35,0.04);
}

/* ===== Access ===== */
.access-wrap{
  display: grid;
  gap: 32px;
  place-items: center;
  text-align: center;
}

#access img{
  width: min(1100px, 100%);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(120,90,60,0.12);
}

.access-info p{
  margin: 0 0 12px;
  color: #5f564e;
  line-height: 1.9;
}

.access-note{
  font-size: 13px;
  color: #a09284;
}

/* ===== Contact CTA ===== */
.contact-cta-section{
  background: #fcfbf8;
  border-top: 1px solid #ece5dc;
  border-bottom: 1px solid #ece5dc;
}

.contact-cta-body{
  text-align: center;
}

.contact-cta-copy{
  max-width: 36em;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  color: #6f665d;
}

.contact-cta-note{
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.8;
  color: #a09589;
  text-align: center;
  max-width: 24em;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Buttons ===== */
.access-btn,
.floating-reserve{
  display: inline-block;
  background: linear-gradient(180deg, #4a4036, #342c25);
  color: #fff;
  border: 1px solid #3b322b;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow:
    0 10px 24px rgba(45,35,28,0.14),
    0 3px 8px rgba(45,35,28,0.08);
  transition: .25s ease;
}

.access-btn{
  padding: 14px 34px;
  margin-top: 38px;
}

.access-btn:hover,
.floating-reserve:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.floating-reserve{
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 14px 22px;
  z-index: 9998;
}

.floating-reserve.is-hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

/* ===== Footer ===== */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: #f7f2eb;
  text-align: center;
}

.footer-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.footer-shop{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #3a332d;
}

.footer-hours,
.footer-closed{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #786f66;
}

.footer-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-iconbtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.footer-iconbtn--insta{
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color: #fff;
}

.footer-iconbtn--line{
  background: #06C755;
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 960px){
  .reason-grid{
    grid-template-columns: 1fr;
  }

  .flow-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .support-list{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px){
  .nav-toggle{
    display: inline-block;
  }

  .gnav{
    display: none;
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background: rgba(252,250,247,0.98);
    border-top: 1px solid rgba(120,100,80,0.08);
    border-bottom: 1px solid rgba(120,100,80,0.08);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    z-index: 1100;
    padding: 20px 0 24px;
  }

  .gnav.is-open{
    display: block;
  }

  .gnav-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
  }

  .gnav-item{
    width: min(420px, 88%);
    list-style: none;
    border-bottom: 1px solid rgba(120,100,80,0.08);
  }

  .gnav-item:last-child{
    border-bottom: none;
  }

  .gnav-link{
    display: block;
    width: 100%;
    padding: 16px 8px;
    text-align: center;
  }

  .gnav-link::after{
    display: none;
  }

  .hero-slides{
    height: 520px;
  }

  .hero-copy{
    max-width: 100%;
  }
}

@media (max-width: 600px){
  .logo{
    font-size: 21px;
  }

  .section{
    padding: 72px 0;
  }

  .title{
    font-size: clamp(21px, 5vw, 32px);
    letter-spacing: .06em;
  }

  .title::before{
    font-size: 18px;
    transform: rotate(-2deg);
  }

  .lead{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 24em;
    word-break: normal;
    overflow-wrap: break-word;
    line-break: strict;
  }

  .hero-slides{
    height: 460px;
  }

  .hero-catch{
    font-size: clamp(24px, 6vw, 40px);
    line-height: 1.35;
  }

  .hero-sub{
    font-size: 14px;
    line-height: 1.9;
  }

  .hero-points{
    gap: 8px;
  }

  .hero-points li{
    font-size: 12px;
  }

  .dot-list{
    font-size: 16px;
  }

  .section-note{
    font-size: 14px;
    line-height: 1.95;
  }

  .reason-card h3,
  .price-simple-card h3{
    font-size: 20px;
  }

  .price-main{
    font-size: 40px;
  }

  .flow-grid{
    grid-template-columns: 1fr;
  }

  .contact-cta-copy{
    font-size: 14px;
    text-align: left;
  }

  .contact-cta-note{
    text-align: center !important;
  }

  .floating-reserve{
    right: 14px;
    bottom: 14px;
    padding: 11px 18px;
    font-size: 12px;
  }
}

.site-footer {
  background: #f7f2eb;
  padding: 60px 0 30px;
  border-top: 1px solid #e8e1d8;
}

.footer-inner {
  text-align: center;
}

.footer-shop {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 14px;
  color: #7d746a;
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  margin-bottom: 30px;
}

.footer-nav a {
  text-decoration: none;
  font-size: 13px;
  color: #6f665d;
}

.footer-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  background: #4a4036;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 20px;
}

.copyright {
  font-size: 12px;
  color: #9a8f84;
}

.site-footer{
  background: #f7f2eb;
  padding: 54px 0 30px;
  border-top: 1px solid #e8e1d8;
}

.footer-inner{
  text-align: center;
}

.footer-shop{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #3a332d;
}

.footer-desc{
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.9;
  color: #7d746a;
}

.footer-hours,
.footer-closed{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #786f66;
}

.footer-links{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.footer-iconbtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.footer-iconbtn--insta{
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color: #fff;
}

.footer-iconbtn--line{
  background: #06C755;
  color: #fff;
}

.copyright{
  margin-top: 20px;
  font-size: 12px;
  color: #9a8f84;
}

/* =========================
   Concern section balance fix
   ========================= */

#concern .split{
  align-items: start;
  gap: 38px;
}

#concern .split-text{
  max-width: 620px;
  padding-top: 8px;
}

#concern .dot-list{
  font-size: 21px;
  line-height: 1.95;
  font-weight: 700;
  color: #4f473f;
  margin-top: 94px;
}

#concern .dot-list li{
  margin: 10px 0;
}

#concern .section-note{
  margin-top: 44px;
  font-size: 15px;
  line-height: 1.9;
  color: #6d645b;
  font-weight: 600;
}

#concern .split-media{
  max-width: 430px;
}

#concern .split-media__img{
  border-radius: 20px;
}

#concern .split-media img{
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 860px){
  #concern .split{
    gap: 24px;
  }

  #concern .split-text{
    max-width: 100%;
    padding-top: 0;
  }

  #concern .split-media{
    max-width: 360px;
  }
}

@media (max-width: 600px){
  #concern .dot-list{
    font-size: 16px;
    line-height: 1.85;
  }

  #concern .section-note{
    font-size: 14px;
    line-height: 1.85;
  }

  #concern .split-media{
    max-width: 300px;
    margin: 0 auto;
  }

  #concern .split-media img{
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 860px){
  .gnav{
    display: none;
  }

  .gnav.is-open{
    display: block;
  }
}

/* =========================
   Contact Form Design（整体LP用）
   ========================= */

.contact-form{
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ラベル */
.contact-form label{
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #5b5248;
  margin-bottom: 6px;
}

/* 必須バッジ */
.contact-form .required{
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 999px;
  background: #e7ded4;
  color: #6d645b;
}

/* 入力欄共通 */
.contact-form input,
.contact-form textarea,
.contact-form select{
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #ddd4c8;
  background: #fbf9f6;
  color: #3a332d;
  transition: all 0.25s ease;
}

/* フォーカス時 */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline: none;
  border-color: #b9a998;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(185,169,152,0.2);
}

/* textarea */
.contact-form textarea{
  min-height: 160px;
  resize: vertical;
}

/* フォームグループ間 */
.contact-form p{
  margin-bottom: 22px;
}

/* チェックボックス */
.contact-form .wpcf7-acceptance{
  font-size: 13px;
  color: #6f665d;
}

/* 送信ボタン */
.contact-form .wpcf7-submit{
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 30px auto 0;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  background: #4a4036;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ホバー */
.contact-form .wpcf7-submit:hover{
  opacity: 0.9;
  transform: translateY(-1px);
}

/* スマホ最適化 */
@media (max-width: 600px){

  .contact-form{
    padding: 30px 16px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select{
    font-size: 13px;
    padding: 12px 14px;
  }

  .contact-form .wpcf7-submit{
    max-width: 100%;
  }
}

/* ボタン下の余白 */
.contact-form .wpcf7-submit{
  margin: 30px auto 12px; /* ←下だけ詰める */
}

/* ボタン下の補足テキスト */
.contact-form .form-note{
  text-align: center;
  font-size: 13px;
  color: #8a8178;
  margin-top: 6px;
}

/* プライバシーポリシー */
.contact-form .wpcf7-acceptance{
  margin-top: 18px;
}

.contact-form .wpcf7-list-item{
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.contact-form .wpcf7-list-item input{
  width: 16px;
  height: 16px;
}

.contact-form .wpcf7-list-item-label{
  font-size: 13px;
  color: #6f665d;
}

/* ===== 送信ボタン周りの余白削除 ===== */

/* ボタンの親pの余白を消す */
.contact-form p:has(.wpcf7-submit){
  margin-bottom: 0;
}

/* spinnerを消す（または詰める） */
.wpcf7-spinner{
  display: none !important;
}

/* 送信後メッセージの余白を調整 */
.wpcf7-response-output{
  margin: 10px 0 0 !important;
  padding: 12px !important;
}

.form-submit{
  text-align: center;
  margin-top: 20px;
}

.form-submit input{
  margin: 0;
}

/* contactページでは追従ボタン非表示 */
.page-id-9 .floating-reserve{
  display: none !important;
}
.page-contact .floating-reserve{
  display: none !important;
}