/* ===== ローディング画面 (index.html専用) ===== */
.page-index #loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  opacity: 1;
  visibility: visible;
}

.page-index .loading-spinner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px;
  height: 330px;
}

.page-index .loading-spinner img {
  width: 250px;
  height: auto;
  position: relative;
  z-index: 1;
}

.page-index .loading-spinner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid #e60012; /* リングの色 */
  border-top-color: transparent; /* 上部分だけ透明にする */
  animation: spin 1s linear infinite;
  box-sizing: border-box;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 読み込み完了後のスタイル (index.html専用) */
.page-index.loaded #loading-screen {
  opacity: 0;
  visibility: hidden;
}

/* サイト本体を最初は非表示にする (index.html専用) */
.page-index:not(.loaded) > *:not(#loading-screen) {
  visibility: hidden;
  opacity: 0;
}

/* 読み込み完了後にサイト本体をフェードインさせる (index.html専用) */
.page-index.loaded > *:not(#loading-screen) {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s ease-in;
}


/* Base */
html{scroll-behavior:smooth}
body{
  margin:0;
  padding:0;
  font-family: "Noto Sans JP", sans-serif;
  background-color:#fffcf7;
  color:#333;
  overflow-x:hidden;
}

main {
  padding: 0;
  margin-bottom: 100px; /* フッターの分の余白を確保 */
}

/* Header */
.site-header{background-color:rgba(255,255,255,.95);backdrop-filter:blur(8px);padding:10px 20px;box-shadow:0 2px 5px rgba(0,0,0,.08);position:sticky;top:0;z-index:1000;display:flex;align-items:center;justify-content:center;transition:transform .4s ease-in-out}
.site-header.is-hidden{transform:translateY(-110%)}
.logo-container{position:absolute;left:50%;transform:translateX(-50%)}
.logo-container img{height:40px;display:block}
.hamburger-menu{margin-left:auto;width:40px;height:40px;border:none;background:transparent;cursor:pointer;padding:0;display:flex;flex-direction:column;justify-content:space-around}
.hamburger-menu span{display:block;width:30px;height:3px;background-color:#333;border-radius:2px;transition:all .3s ease-in-out}

/* New Nav Menu Styles */
.nav-menu{display:none;position:fixed;top:60px;left:0;width:100%;background-color:rgba(255,255,255,.98);box-shadow:0 4px 6px rgba(0,0,0,.1)}
.nav-menu.is-active{display:block}
.nav-menu ul{list-style:none;margin:0;padding:20px}
.nav-menu li{text-align:center;}
.nav-menu a{text-decoration:none;color:#333;font-weight:bold;display:block;padding:18px 10px;border-bottom:1px solid #eee}
.nav-menu li:last-child a {border-bottom:none;}
.nav-menu li.menu-cta a {
  background-color: #e60012;
  color: #fff;
  font-size: 1.2em;
  border-radius: 8px;
  margin-bottom: 15px;
  border-bottom: none;
}
.nav-menu li.menu-cta a:hover {
  background-color: #c00;
}

/* Main content wrapper */
main > section, main > div {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
.first-view {
  position: relative;
}
.first-view .appeal-bg-image {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.first-view .appeal-cta-button {
  bottom: 1%;
}

/* 料金プラン画像のセクション */
.car-pricing-section {
  padding: 0;
  margin-bottom: 0;
  margin-top: 0;
}
.car-pricing-section img {
  display: block;
  width: 100%;
  height: auto;
}

/* Intro */
.recommend-intro{padding:20px 15px}
.recommend-intro img{display:block;margin:0 auto;max-width:100%;height:auto}

.benefit-appeal-section {
  padding: 0;
  text-align: center;
  position: relative;
}
.anxiety-appeal-section {
  padding: 0 0 30px;
  text-align: center;
  position: relative;
}

.anxiety-appeal-section .appeal-bg-image,
.benefit-appeal-section .appeal-bg-image,
.first-view .appeal-bg-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.appeal-cta-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 90%;
  max-width: 500px;
}
.appeal-cta-button img {
  width: 100%;
  height: auto;
  animation: purupuru-interval 1.5s ease-in-out infinite;
}

.anxiety-appeal-section .appeal-cta-button {
  bottom: 10%;
}
.benefit-appeal-section .appeal-cta-button {
  bottom: 2%;
}

/* Grid buttons */
.grid-buttons{padding:0px 15px 30px}
.grid-buttons-container{display:flex;flex-wrap:wrap;justify-content:center;gap:20px}
.grid-buttons-container a{width:calc(50% - 12px);display:block;border-radius:12px;box-shadow:0 4px 15px rgba(0,0,0,.08)}
.grid-buttons-container img{
  width:100%;
  border-radius:12px;
}

/* What is lease (Full-width section) */
.what-is-lease-section{
  max-width: 600px;
  margin: 0 auto 0;
  padding: 5px 0 40px;
  box-sizing: border-box;
  background-color:#FFDE59;
  background-image:repeating-linear-gradient(45deg,#FFF3B0 0 10px,#FFDE59 10px 20px);
  border-radius: 0;
  overflow: hidden;
}
.what-is-lease-section .section-title,
.what-is-lease-section .lease-options {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}
.section-title{
  text-align:center;
  margin-bottom: 20px;
}
.section-title img{
  max-width:100%;
  height:auto;
}
.what-is-lease-section .section-title img {
  transform: scale(1.1);
}
.lease-description img{display:block;width:100%;height:auto;margin:0 auto}
.lease-options{padding-top: 15px; padding-bottom: 0; margin:0;text-align:center}
.lease-options img{display:block;width:100%;max-width:100%;height:auto;margin:0 auto}

.loan-comparison-block {
  margin: 25px auto 0;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  box-sizing: border-box;
  width: calc(100% - 30px);
  padding: 0 20px 1px;
}
.loan-difference,
.loan-figure {
  margin-left: -18px;
  margin-right: -18px;
}
.loan-difference .loan-intro-text,
.loan-scenario,
.lease-scenario {
  padding-left: 0;
  padding-right: 0;
}
.loan-difference img{max-width:100%;height:auto;display:block;margin:0 auto}
.loan-difference-text{max-width:700px;margin:20px auto 0;text-align:left;line-height:1.8}
.loan-difference .loan-difference-text {
  font-size: 1.2em;
  font-weight: 700;
}
.loan-scenario, .lease-scenario {
  max-width: 900px;
  margin-top: 24px;
  margin-bottom: 0;
}
.scenario-title{margin:0 0 12px;font-weight:700;font-size:1.2em;text-align:left; padding: 0;}
.loan-scenario .loan-difference-text, .lease-scenario .loan-difference-text {margin:0 0 14px;padding:0;}
.point{font-weight:600}

@media (max-width:767.98px){
  .loan-figure {
    overflow: hidden;
  }
  .loan-figure img {
    width: 100%;
    height: auto;
  }
}
@media (min-width:768px){
  .scenario-title { padding: 0; }
  .loan-scenario .loan-difference-text, .lease-scenario .loan-difference-text { padding: 0; }
  .loan-figure{overflow:visible;padding:0}
  .loan-figure img{display:block;width:100%;max-width:900px;height:auto;margin:0 auto}
}

/* CTA */
.cta-button-container{text-align:center;margin:15px auto 60px;padding:0 10px}
.cta-button img{
  width: 90%; 
  max-width: 500px; 
  height: auto;
  animation: purupuru-interval 1.5s ease-in-out infinite;
}
.what-is-lease-section .cta-button-container {
    margin-top: 5px;
    margin-bottom: 5px;
}

/* ボタンホバー時のアニメーション停止 */
.appeal-cta-button:hover img,
.grid-buttons-container a:hover img,
.cta-button-container a:hover img {
  animation-play-state: paused;
}

/* Recommend block (Full-width section) */
.recommend-block{
  max-width: 600px;
  margin: 0 auto 0;
  padding:20px 15px 1px;
  box-sizing:border-box;
  background-color: #ffffff;
  background-image:
      linear-gradient(335deg, #fb923c 23px, transparent 23px),
      linear-gradient(155deg, #fb923c 23px, transparent 23px),
      linear-gradient(335deg, #fb923c 23px, transparent 23px),
      linear-gradient(155deg, #fb923c 23px, transparent 23px);
  background-size: 58px 58px;
  background-position: 0px 2px, 4px 35px, 29px 31px, 34px 6px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.recommend-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: -1;
}

.recommend-block > * {
  max-width: 100%;
  position: relative;
}
.recommend-section{padding:0;box-sizing:border-box}

.image-container{
  width:100%;
  margin:0 auto 40px;
  box-sizing:border-box;
  box-shadow:0 15px 35px -5px rgba(204,0,0,.4);
  border:none;
  overflow: visible;
}
.title-bar{
  background:linear-gradient(120deg,#CC0000,#E63946,#FF4500);
  background-size:200% 200%;
  animation:animated-gradient 4s ease infinite;
  color:#fff;
  padding:20px 15px;
  text-align:center;
  border-radius: 16px 16px 0 0;
}
@keyframes animated-gradient{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
.main-title{margin:0;font-size:1.6em;font-weight:700;text-shadow:1px 1px 3px rgba(0,0,0,.2)}
.image-wrapper{background-color:#fff;padding:0}
.image-wrapper img{display:block;width:100%;height:auto}

.grid-buttons-container a{ box-shadow: none !important; }

/* ===== 折りたたみ画像カード v3 （最終完成版）===== */
.c-imgfold {
  position: relative;
  --collapsed: 320px;
  --expanded: 9999px;
}
.c-imgfold__viewport {
  overflow:hidden;
  max-height:var(--collapsed);
  transition:max-height .8s cubic-bezier(.22,.61,.36,1);
  position:relative;
  background-color: #fff;
  border-radius: 0 0 16px 16px;
}
.c-imgfold__viewport img {
  display:block;
  width:100%;
  height:auto;
  will-change:transform;
  transform:translateY(var(--shift,0px));
  transition:transform .8s cubic-bezier(.22,.61,.36,1);
}
.c-imgfold.is-open .c-imgfold__viewport {
  max-height:var(--expanded);
}
.c-imgfold.is-open .c-imgfold__viewport img {
  transform:translateY(0);
}
.c-imgfold__toggle {
  position:absolute;
  left:50%;
  top: calc(var(--collapsed) - 20px); 
  transform:translateX(-50%);
  width:52px;
  height:52px;
  border-radius:9999px;
  background:#ffcc4d;
  border:4px solid #fff;
  font-size:28px;
  line-height:1;
  display:grid;
  place-items:center;
  box-shadow:0 10px 18px rgba(0,0,0,.12);
  z-index: 2;
  transition: top 0.8s cubic-bezier(.22,.61,.36,1);
}
.c-imgfold.is-open .c-imgfold__toggle {
  top: calc(var(--expanded) - 20px);
}
.c-imgfold__toggle:focus-visible {
  outline:3px solid #333;
  outline-offset:2px;
}
.sr-only {
  position:absolute!important;
  width:1px;
  height:1px;
  margin:-1px;
  padding:0;
  border:0;
  clip:rect(0 0 0 0);
  overflow:hidden;
  white-space:nowrap;
}

/* ===== 車種一覧セクション ===== */
.car-lineup-section {
  padding: 40px 0;
  background-color: #ffde59;
  background-image: linear-gradient(135deg, #fff3b0 25%, transparent 25%),
                    linear-gradient(225deg, #fff3b0 25%, transparent 25%),
                    linear-gradient(45deg, #fff3b0 25%, transparent 25%),
                    linear-gradient(315deg, #fff3b0 25%, #ffde59 25%);
  background-size: 40px 40px;
  background-position: 0 0, 0 0, 20px 20px, 20px 20px;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}
.car-lineup-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.car-lineup-title {
  background-color: transparent;
  text-align: center;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0 auto 15px;
  border: none;
}
.car-lineup-title img {
  max-width: 100%;
  height: auto;
}
.car-lineup-subtitle {
  text-align: center;
  font-weight: 900;
  font-size: 1.5em;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgb(0, 0, 0);
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}
.price-group {
  margin-bottom: 40px;
}
.price-banner {
  background-color: #e60012;
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  margin: 0 0 20px 0;
}
.price-banner h3 {
  margin: 0;
  padding: 0;
  font-size: 1.4em;
}
.price-banner span {
  font-size: 2em;
  font-weight: 900;
  margin: 0 5px;
}
.car-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.car-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.car-item img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.car-details {
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.car-maker {
  font-size: 0.9em;
  font-weight: bold;
  color: #555;
  margin: 0;
  padding: 0;
}
.car-name {
  font-weight: bold;
  margin: 0;
  padding: 0;
  font-size: 1.1em;
}
.car-grade {
  font-size: 0.9em;
  color: #333;
  margin: 0;
  padding: 0;
}
.car-cta-button {
  display: block;
  background-color: #0056b3;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 12px 5px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}
.car-cta-button:hover {
  background-color: #004494;
}
.see-more-btn {
  display: block;
  width: 100%;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  font-size: 1.1em;
  padding: 15px;
  border: 2px solid #333;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.see-more-btn::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-color: #333;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.price-group .car-grid .car-item:nth-child(n + 5) {
  display: none;
}
.price-group.is-open .car-grid .car-item {
  display: flex;
}
.price-group.is-open .see-more-btn::after {
  transform: translateY(2px) rotate(-135deg);
}


.reasons-section {
  padding: 0;
  margin: 0 auto 60px;
}
.reasons-section img {
  display: block;
  width: 100%;
  height: auto;
}

.plan-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0 15px;
}
.plan-title img {
  max-width: 100%;
}
.plan-details {
  padding: 0 15px 20px;
}
.plan-details img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.loan-intro-text {
  text-align: center;
  padding: 25px 0 5px;
  line-height: 1.7;
}
.loan-intro-text p {
  font-weight: bold;
  color: #333;
  margin: 0 0 15px;
}
.loan-intro-text p:first-of-type {
  font-size: 2em;
}
.loan-types {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}
.loan-type-btn {
  padding: 15px 30px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 1.6em;
  color: white;
  min-width: 210px;
  text-align: center;
  box-sizing: border-box;
}
.loan-type-btn--zanka {
  background-color: #229d00;
  box-shadow: 0 0 0 4px white, 5px 5px 10px rgba(0,0,0,0.15);
}
.loan-type-btn--lease {
  background-color: #ff8000;
  box-shadow: 0 0 0 4px white, 5px 5px 10px rgba(0,0,0,0.15);
}
.arrow-down {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
  color: #333;
}
p.loan-intro-subtext {
  font-size: 2em;
  font-weight: bold;
  color: #333;
}
.loan-intro-subtext .highlight {
  font-size: 1.2em;
  color: #E53935;
}

.styled-checklist {
  list-style: none;
  padding: 0;
  margin: 20px auto;
}
.styled-checklist li {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  margin-bottom: 12px;
  position: relative;
  font-weight: bold;
  text-align: left;
  color: #333;
}
.styled-checklist li::before {
  content: '✔';
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.styled-checklist--loan li,
.styled-checklist--lease li {
  background-color: #fce87b;
  border: 1px solid #fadf52;
}
.styled-checklist--loan li::before,
.styled-checklist--lease li::before {
  color: #e53935;
}
.loan-summary-text {
  text-align: center;
  margin: 30px auto 15px;
  padding: 0 1px;
}
.loan-summary-text p {
  font-weight: bold;
  font-size: 1.4em;
  line-height: 1.6;
  color: #333;
  transform: rotate(-3deg);
  display: inline-block;
  padding-bottom: 5px;
}
.summary-decoration {
  display: block;
  margin: -50px auto 0;
  width: 100%;
  max-width: 500px;
  position: relative;
}

.contact-form-section {
  background-color: #fff;
  padding: 60px 0;
  margin: 0;
  max-width: 100%;
}
.contact-form-section h2 {
  text-align: center;
  font-size: 1.8em;
  margin: 0 auto 30px;
  color: #fff;
  background-color: #CC0000;
  padding: 15px;
  max-width: 600px;
  box-sizing: border-box;
}
.contact-form-section p {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.7;
  padding: 0 15px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}
.form-group .required {
  background-color: #E53935;
  color: #fff;
  font-size: 0.8em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
}
.form-group .optional {
  background-color: #757575;
  color: #fff;
  font-size: 0.8em;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ffa632;
  box-shadow: 0 0 5px rgba(255, 166, 50, 0.5);
}
.form-submit {
  text-align: center;
  margin-top: 30px;
}
.form-submit button {
  background-color: #229d00;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.form-submit button:hover {
  background-color: #1a7e00;
}
.form-submit button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
}
.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: normal;
}
.radio-label input[type="radio"] {
  width: auto;
  margin-right: 8px;
}
.datetime-group {
  display: flex;
  gap: 10px;
}
.datetime-input {
  flex: 1;
}

.store-info-section {
  background-color: #fff;
  padding: 60px 0;
  max-width: 100%;
}
.store-info-section h2 {
  text-align: center;
  font-size: 1.8em;
  margin: 0 auto 40px;
  color: #fff;
  background-color: #CC0000;
  padding: 15px;
  max-width: 600px;
  box-sizing: border-box;
}
.store-info-section h2::after {
  display: none; 
}
.store-info-content {
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 0 15px;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.info-row {
  display: flex;
  border-bottom: 1px solid #eee;
}
.info-row:first-child {
  border-top: 1px solid #eee;
}
.info-label {
  background-color: #CC0000;
  color: #fff;
  font-weight: bold;
  padding: 15px;
  width: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-data {
  padding: 15px;
  line-height: 1.6;
  flex-grow: 1;
  border-bottom: none;
}
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin: 40px auto 0;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  .loan-intro-text p:first-of-type {
    font-size: 6.5vw;
    line-height: 1.4;
  }
  .loan-types {
    gap: 10px;
  }
  .loan-type-btn {
    flex: 1;
    min-width: 0;
    font-size: 4.5vw;
    padding: 12px 5px;
  }
  p.loan-intro-subtext {
    font-size: 6vw;
  }
  .loan-summary-text {
    padding-left: 0;
    padding-right: 0;
  }
  .summary-decoration {
    width: 100%;
    max-width: 400px;
    margin-top: -50px;
  }
  .c-imgfold__toggle {
    width: 44px;
    height: 44px;
    font-size: 24px;
    border-width: 3px;
    top: calc(var(--collapsed) - 15px);
  }
  .c-imgfold.is-open .c-imgfold__toggle {
    top: calc(var(--expanded) - 15px);
  }
  .map-container {
    padding-bottom: 75%;
  }
}

@keyframes purupuru-interval {
  0%, 67%, 100% {
    transform: translateX(0);
  }
  11% { transform: translateX(-3px); }
  22% { transform: translateX(3px); }
  33% { transform: translateX(-3px); }
  44% { transform: translateX(3px); }
  55% { transform: translateX(-3px); }
}

.floating-contact-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  pointer-events: none;
}
.floating-bar-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  padding: 0 10px 10px;
  box-sizing: border-box;
  pointer-events: auto;
}
.contact-btn {
  flex: 1;
  display: flex;
  align-items: stretch;
  text-decoration: none;
  height: 65px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.contact-btn .icon-wrapper {
  padding: 0 25px; 
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-sizing: border-box;
}
.contact-btn .text-wrapper {
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-grow: 1;
  line-height: 1.4;
  text-align: center;
}
.contact-btn .text-wrapper small {
  font-size: 0.7em;
  font-weight: normal;
  margin-top: 2px;
  opacity: 0.9;
}

.phone-btn {
  border: 1px solid #c62828;
  border-radius: 5px 5px 5px 5px;
}
.phone-btn .icon-wrapper {
  color: #c62828;
}
.phone-btn .text-wrapper {
  background: linear-gradient(135deg, #e53935, #c62828);
  clip-path: polygon(15px 0, 100% 0, 100% 100%, 15px 100%, 0 50%);
  padding: 0 15px 0 35px;
  margin-left: -15px;
  font-size: 1em;
}

.email-btn {
  border: 1px solid #1565c0;
  border-radius: 5px 5px 5px 5px;
}
.email-btn .icon-wrapper {
  color: #1565c0;
}
.email-btn .text-wrapper {
  background: linear-gradient(135deg, #1976d2, #1565c0);
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
  padding: 0 35px 0 15px;
  margin-right: -15px;
  font-size: 1.1em;
}

@media (max-width: 480px) {
  .floating-bar-inner {
    padding: 0 5px 5px;
  }
  .contact-btn {
    height: 60px;
  }
  .contact-btn .icon-wrapper {
    font-size: 20px;
    padding: 0 20px;
    min-width: unset;
  }
  .phone-btn .text-wrapper {
    font-size: 0.8em;
    padding: 0 10px 0 25px; 
    margin-left: -15px;
  }
  .email-btn .text-wrapper {
    font-size: 0.9em;
    padding: 0 25px 0 10px;
    margin-right: -15px;
  }
}

.site-footer-final {
  background-color: #CC0000;
  color: #fff;
  padding: 20px 10px;
  text-align: center;
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}
.footer-links {
  margin-bottom: 15px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}
.footer-links a:hover {
  text-decoration: underline;
}
.recaptcha-notice {
  font-size: 0.7em;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 15px;
}
.recaptcha-notice p {
  margin: 0;
}
.recaptcha-notice .en {
  margin-top: 5px;
}
.recaptcha-notice a {
  color: #fff;
  text-decoration: underline;
}
.copyright {
  font-size: 0.8em;
  font-weight: bold;
}

/* 月額料金の注釈 */
.price-annotation {
  text-align: center;
  font-size: 0.9em;
  font-weight: bold;
  color: #fff;
  margin: 5px 0 0 0;
}

/* 簡単審査への案内ボタン */
.form-submit .sub-button {
  display: block;
  width: 90%;
  max-width: 400px;
  margin: 25px auto 0;
  padding: 15px 20px;
  background-color: #ff8c00;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}
.form-submit .sub-button:hover {
  background-color: #e67e00;
}

/* 店舗写真 */
.store-images-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}
.store-image-item {
  flex: 1;
  min-width: 0;
}
.store-image-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* reCAPTCHA同意 */
.recaptcha-agreement {
  margin: 20px 0;
  text-align: center;
  font-size: 0.9em;
}
.recaptcha-agreement label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.recaptcha-agreement input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
}
.recaptcha-agreement a {
  text-decoration: underline;
  color: #0056b3;
  margin: 0 3px;
}

/* reCAPTCHAバッジを非表示にする */
.grecaptcha-badge {
  display: none !important;
}