body {
  font-family: Arial, Roboto,'Droid Sans','游ゴシック Medium', Yu Gothic Medium, IPAGothic,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic ProN', Meiryo, メイリオ,'ＭＳ Ｐゴシック', Arial,sans-serif
}

.inner {
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
img {
  width: 100%;
}
#fv{
  background-image: url(../img/fv.webp);
  background-size: cover;
  height: 724px;
  width: 100%;
}
.button {
  padding: 30px 0;
  text-align: center;
}

.shine-button {
  display: inline-block;
  position: relative;
  padding: 15px 60px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(to right, #d4b06a, #c67c00);
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 0 #a3751a;
  transition: transform 0.2s ease;
}

/* ホバー時の浮き上がり */
.shine-button:hover {
  transform: translateY(-2px);
}

/* キラッと光るアニメーション効果 */
.shine-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
  from {
    left: -75%;
  }
  to {
    left: 125%;
  }
}

.btn_att {
  width: 40%;
  display: block;
  margin: 0 auto;
}
.flex {
  display: flex;
  gap: 10px;
}
.curve-wrapper {
  padding: 20px;
}
.curve-wrapper img {
  width: 30%;
}
.curve-wrapper .flex {
  justify-content: space-between;
}
/* 初期状態：非表示＋左にずらす */
.fadein-item {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s ease-out;
}

/* アクティブになったらふわっと表示 */
.fadein-item.active {
  opacity: 1;
  transform: translateX(0);
}

.fadein-up {
  opacity: 0;
  transform: translateY(50px); /* 下から上へ */
  transition: all 1s ease-out;
}

.fadein-up.active {
  opacity: 1;
  transform: translateY(0);
}
.sec4 {
  background-color: #f1f1f1;
  padding: 20px 10px;
}
.case {
  margin:10px 0 40px 0;
}
.case_head {
  width: 60%;
  display: block;
  margin: 0 auto 20px auto;
}
.flow{
  padding:40px 20px ;
}
.flow_head{
  margin: 20px 0;
}
.flow-item{
  margin: 20px 0;
}
.sec5 {
  padding: 10px;
}

.pad {
  padding: 10px;
}
.sec6_img {
  margin: 20px 0;
}
.sec7,
.sec8 {
  padding: 20px;
}
.sec7 img {
  margin: 10px 0;
}
.sec8 p {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.kuchikomi{
  background-image: url(../img/kuchikomibg.svg);
  background-position: center;
  background-size: cover;
  padding: 20px;
}
.kuchikomi-item{
  margin: 10px 0;
}

:root {
  --bg: #f6f7f8;
  --panel: #A0A8B0;
  --text: #222;
  --muted: #6b7280;
  --brand: #3b82f6;
  --radius: 12px;
    --cta-bg: #CF9090;         /* ボタン色（画像に近いピンク） */
    --cta-text: #fff;
    --cta-shadow: 0 10px 24px rgba(0,0,0,.25);
    --rail-bg: #2b2b2b;    
}

.container {
  max-width: 720px;
  margin-inline: auto;
}
.faq {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.faq-item {
  background: var(--panel);
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
}
.faq-btn {
  all: unset;
  display: grid;
  grid-template-columns: 40px 1fr 28px;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 16px 16px;
  cursor: pointer;
}
.faq-btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 8px;
}
.q-badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}
.faq-title {
  font-weight: 700;
}

/* 文字ベースの＋/−アイコンで確実表示 */
.icon {
  font-size: 20px;
  line-height: 1;
  color: var(--muted);
  justify-self: end;
}
.faq-item[aria-expanded="false"] .icon::before {
  content: "+";
}
.faq-item[aria-expanded="true"] .icon::before {
  content: "−";
} /* 全角マイナス */

.panel {
  padding: 0 16px; /* ← 初期は上下0にしてチラ見え防止 */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
  background: var(--panel);
}
.faq-item[aria-expanded="true"] .panel {
      background: #F4F4F4;
      color: #000;
  padding:16px 16px 16px 72px; /* ← 開いたときだけ下パディング付与 */
}
.panel > p {
  margin: 8px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
/* 開状態 */
.faq-item[aria-expanded="true"] .panel {
  max-height: 420px;
} /* 内容が長い場合は調整 */
.faq-item[aria-expanded="true"] .icon::after {
  transform: scaleY(0);
} /* ＋ → － */

/* 先頭のリード文ボックス風（任意） */
.lead {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 12px 14px;
  margin-bottom: 12px;
}

.shop-info {
  width: 100%;
  border: 1px solid var(--border);
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  margin: 30px 0;
}
.shop-info tr {
  display: flex;
}
.shop-info tr:not(:last-child) td{
  border-bottom: 1px solid var(--border);
}
.shop-info th,
.shop-info td {
  padding: 20px 24px;
  vertical-align: middle;
  width: 62%;
  display: flex;
  align-items: center;
}
.shop-info th {
  width: 160px;
  width: 30%;
  background: #ececec;
  border-top: 1px solid #777;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.shop-info th.last{
  border-bottom: 1px solid #777;
}
.shop-info td {
  font-size: 16px;
  display: block;
  border-top: 1px solid #777;
  border-bottom: 1px solid #777;
}
/* 見た目の詰め方（本文2行想定の住所など） */
.shop-info .multiline {
  display: block;
}
.note {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  color: var(--sub);
}
/* 支払いブランドのスラッシュ表現が複数行になっても綺麗に折り返す */
.cards {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
  .site-footer{
    padding:24px 16px 110px 16px;
    text-align: center;
    background-color: #505050;
    color: #fff;        /* お好みで */
    font-size: 0.79rem;
  }

    /* 追従コンテナ（画面下に常駐、最初は非表示） */
  .footer-cta{
    position:fixed;
    inset:auto 0 calc(env(safe-area-inset-bottom,0) + 0px) 0;
    display:flex;
    justify-content:center;
    z-index:9999;
    pointer-events:none; /* show状態で子要素のみクリック可 */
    opacity:0;
    transform:translateY(16px);
    transition:opacity .36s ease, transform .36s ease;
  }
  .footer-cta.show{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }


  /* 実ボタン */
  .cta-button{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.5em;
    min-width:min(640px, 92%);
    padding:26px 24px;
    background: linear-gradient(to right, #d4b06a, #c67c00);
    color:var(--cta-text);
    font-weight:800;
    font-size:clamp(16px, 4.3vw, 22px);
    letter-spacing:.02em;
    text-decoration:none;
    border:none;
    outline:0;
    -webkit-tap-highlight-color:transparent;
  }
  .cta-button:active{transform:translateY(1px)}
  .cta-button .chev{
  width: 0;
  height: 0;
border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 14px solid var(--cta-text);
  transform: translateY(1px);
  }
  .sec10{
    background: linear-gradient(
    to right,
    #72B9E9 0%,
    #C3E7FF 53%,
    #72B9E9 100%
  );
  padding:50px 20px;
  }
  .sec10 img{
    margin-bottom: 30px;
  }



  /* 低モーション環境 */
  @media (prefers-reduced-motion: reduce){
    .footer-cta{transition:none}
  }
/* スマホレイアウト：ラベル上 / 内容下 */
@media (max-width: 640px) {
  .shop-info th {
    padding: 14px 16px;
  }
  #fv{
    height:472px;
  }
}
/* 印刷時の余白最適化 */
@media print {
  .wrap {
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .shop-info th,
  .shop-info td {
    padding: 10px 14px;
  }
}

@media (min-width: 560px) {
  .panel {
    padding-left: 68px;
  }
  .faq-btn {
    padding: 16px 18px;
    grid-template-columns: 40px 1fr 28px;
  }
  .q-badge {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}
