/* ===========================
   style.css（丸ごと置き換えOK）
   スポサポレンタカー：fullPage.js削除版
=========================== */

/* ===========================
  Base
=========================== */
:root{
  --brand: #ed942e;
  --text: #0f172a;
  --muted: #475569;
  --cardShadow: 0 10px 28px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
  /* padding-top: 110px; 固定ヘッダー分のオフセット */
}

h2, h3, p {
  margin: 0;
}

a { color: inherit; }

/* 共通セクション */
.section {
  padding: 88px 16px;
}

@media (max-width: 768px) {
  .section { padding: 56px 16px; }
}

.section--top {
  padding: 0;
}

/* ===========================
  Header
=========================== */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 90px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-button {
  color: #333;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .logo img { height: 50px; }
}

/* ===========================
  共通見出し（既存HTML互換）
=========================== */
.header-title{
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
  text-align: center;
}

.header-description{
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #64748b;
  text-align: center;
}

.header-underline {
  display: inline-block;
  width: 84px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 14px;
}

@media (max-width: 768px){
  .header-title{ font-size: 20px; margin-bottom: 12px; }
  .header-description{ font-size: 14px; }
}

/* ===========================
  共通CTAボタン（既存HTML互換）
=========================== */
.see-more{
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.see-more-button{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
  height: 56px;
  border-radius: 9999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 30px rgba(237, 148, 46, 0.22);
  transition: transform .15s ease, opacity .15s ease;
  padding: 0 18px;
  font-size: 14px;
}

.see-more-button:hover{
  transform: translateY(-1px);
  opacity: 0.95;
}

@media (max-width: 640px){
  .see-more-button{
    width: 100%;
    min-width: 0;
  }
}

/* ===========================
  TOP
=========================== */

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #061a3a, #0b3a6a);
  color: #fff;
  /* padding: 140px 16px 0; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-sub {
  font-size: 14px;
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title span {
  font-size: 0.6em;
  font-weight: 500;
  opacity: 0.9;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-btn.primary {
  background: #ed942e;
  color: #fff;
  box-shadow: 0 16px 40px rgba(1,161,188,0.4);
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
}

.hero-btn.ghost {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}

.hero-btn.ghost:hover {
  background: rgba(255,255,255,0.1);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 120%;
  max-width: none;
  transform: translateX(40px);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.4));
}

/* モバイル対応 */
@media (max-width: 768px) {
  .hero {
    /* padding: 120px 16px 80px; */
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    transform: none;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* ===========================
  サービスの特徴
=========================== */
.section.features {
  padding: 120px 16px;
  background: #fff;
}

.features-content {
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 56px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.feature-card {
  background: #fff;
  border-radius: 22px;
  padding: 34px 28px 30px;
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--cardShadow);
}

.feature-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 18px;
}

.feature-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
}

.feature-card-text {
  font-size: 14px;
  line-height: 1.9;
  color: #334155;
  margin: 0;
  font-weight: 500;
}

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

@media (max-width: 640px) {
  .section.features { padding: 56px 16px; }
  .features-header { margin-bottom: 36px; }
  .feature-cards { grid-template-columns: 1fr; gap: 18px; }
  .feature-card { padding: 26px 20px 22px; border-radius: 18px; }
}

/* ===========================
  ラッピング車両
=========================== */
.rappings-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.rappings-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 768px) {
  .rappings-cards { grid-template-columns: 1fr; }
}

.rappings-card {
  display: flex;
  justify-content: center;
}

.rappings-card img {
  width: 100%;
  height: auto;
  max-width: 400px;
  max-height: 400px;
  object-fit: contain;
  border-radius: 25px;
}

/* ===========================
  料金プラン
=========================== */
.section.price {
  padding: 120px 16px;
  background: #fff;
}

.price-content {
  max-width: 1200px;
  margin: 0 auto;
}

.price-header {
  text-align: center;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-bottom: 80px;
}

.price-card {
  position: relative;
  padding-top: 56px;
}

.price-card-inner {
  height: 100%;
  background: #fff;
  border-radius: 22px;
  padding: 30px 26px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--cardShadow);
  display: flex;
  flex-direction: column;
}

.price-card.is-featured .price-card-inner {
  background: #0b1320;
  color: #fff;
  border: none;
  box-shadow: 0 18px 45px rgba(2, 8, 23, 0.28);
}

.price-card.is-featured .plan-sub,
.price-card.is-featured .plan-points li {
  color: rgba(255, 255, 255, 0.85);
}

.price-card.is-featured .plan-name,
.price-card.is-featured .plan-price {
  color: #fff;
}

.badge {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(1, 161, 188, 0.25);
}

.price-top { text-align: left; margin-bottom: 16px; }

.plan-name {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 10px;
  color: var(--text);
}

.plan-sub {
  margin: 0 0 10px;
  color: #64748b;
  font-weight: 700;
  font-size: 14px;
}

.plan-price {
  margin: 0;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan-price .num { font-size: 44px; letter-spacing: 0.02em; }
.plan-price .yen { font-size: 18px; font-weight: 900; }

.plan-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
  flex: 1;
}

.plan-points li {
  position: relative;
  padding-left: 28px;
  color: #334155;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
}

.plan-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

.plan-btn {
  margin-top: 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 54px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
}

.plan-btn:hover { transform: translateY(-1px); opacity: 0.95; }

.plan-btn--primary { background: var(--brand); color: #fff; }
.plan-btn--ghost { background: #f1f5f9; color: var(--text); }

.price-card.is-featured .plan-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.price-note {
  text-align: center;
  color: #64748b;
  font-size: 13px;
  margin: 26px 0 0;
}

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

@media (max-width: 640px) {
  .section.price { padding: 56px 16px; }
  .price-header { margin-bottom: 36px; }
  .price-cards { grid-template-columns: 1fr; gap: 18px; }
  .price-card-inner { padding: 26px 20px; border-radius: 18px; }
  .plan-price .num { font-size: 40px; }
}

/* ===========================
  利用方法（4STEP）※添付画像寄せ
=========================== */
.steps {
  padding: 56px 16px;
}

.step-content{
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.steps-header{
  text-align: center;
  margin-bottom: 56px;
}

.steps-title{
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 900;
  color: var(--text);
  margin: 0;
}

@media (max-width: 768px) {
  .steps-title { font-size: 20px; }
}

.steps-underline{
  display: inline-block;
  width: 96px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand);
  margin-top: 14px;
}

.steps-subtitle{
  margin-top: 26px;
  font-size: 16px;
  font-weight: 700;
  color: #64748b;
}

.steps-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 36px;
}

.steps-card{
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 36px 26px 28px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--cardShadow);
  text-align: center;
}

.steps-badge{
  position: absolute;
  top: -18px;
  left: -18px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #0b1320;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 22px rgba(2, 8, 23, 0.18);
}

.steps-badge::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 4px;
  background: var(--brand);
  border-radius: 999px;
}

.steps-icon{
  width: 82px;
  height: 82px;
  border-radius: 22px;
  background: #f8fafc;
  display: grid;
  place-items: center;
  margin: 12px auto 18px;
}

.steps-icon img{
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.steps-card-title{
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 10px;
}

.steps-card-text{
  font-size: 14px;
  line-height: 1.9;
  color: #334155;
  margin: 0;
  font-weight: 500;
}

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

@media (max-width: 640px){
  .steps{ padding: 84px 16px; }
  .steps-header{ margin-bottom: 36px; }
  .steps-grid{ grid-template-columns: 1fr; gap: 16px; }
  .steps-card{ padding: 28px 20px 22px; border-radius: 18px; }
  .steps-badge{
    top: -14px; left: -14px;
    width: 50px; height: 50px;
    border-radius: 16px;
  }
}

/* ===========================
  よくある質問
=========================== */
.faq-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-box {
  margin-top: 56px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #eef2f7;
  padding: 0 14px;
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  padding: 22px 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ＋アイコン */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  font-size: 22px;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

/* 開いたとき */
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.faq-note {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
}

.faq-note a {
  color: #01a1bc;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 768px) {
  .faq-content { padding: 0 16px; }
  .faq-box { padding: 0 16px; }
  .faq-item summary { padding: 18px 0; }
  .faq-item summary::after { top: 18px; }
  .faq-item p { margin: 0 0 18px; }
}

/* ===========================
  拠点一覧
=========================== */
.base-modern {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.base-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* 全体レイアウト */
.base-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  margin-top: 56px;
  align-items: center;
}

/* カード */
.base-card-modern {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    0 2px 6px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.base-card-modern:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.10),
    0 6px 14px rgba(15, 23, 42, 0.06);
}

/* 画像 */
.base-image {
  background: radial-gradient(circle at center, #f8fafc 0%, #eef2f7 100%);
}

.base-image img {
  width: 100%;
  object-fit: contain;
}

/* テキスト */
.base-info {
  padding: 26px 32px;
  text-align: left;
}

.base-info h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 6px;
}

.base-info p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
}

/* Map */
.base-map-modern iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 28px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    0 2px 6px rgba(15, 23, 42, 0.04);
}

/* モバイル */
@media (max-width: 768px) {
  .base-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .base-map-modern iframe {
    height: 320px;
  }
}

/* ===========================
  ラッピング企業募集
=========================== */
.recruit-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.recruit-image {
  display: block;
  width: 40%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .recruit-image { width: 60%; }
}

/* ===========================
  Contact
=========================== */

#contact {
  background: #f9fafb;
}

.contact-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.contact-content .header-description a {
  color: #23bc20;
  font-weight: 700;
  text-decoration: none;
}

.contact-content .header-description a:hover {
  opacity: 0.7;
}

/* フォーム全体をカード化 */
.contact-form {
  background: #ffffff;
  padding: 48px;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  text-align: left;
  margin-top: 56px;
}

/* 入力グループ */
.form-group {
  margin-bottom: 28px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  display: block;
}

/* input / textarea デザイン */
.form-group input,
.form-group textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f9fafb;
  font-size: 15px;
  transition: all .2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #01a1bc;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(1,161,188,0.08);
}

/* 送信ボタン */
.contact-button {
  width: 100%;
  height: 60px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  background: linear-gradient(135deg, #01a1bc, #06b6d4);
  border: none;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(1,161,188,0.25);
  transition: all .2s ease;
}

.contact-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(1,161,188,0.35);
}

/* モバイル調整 */
@media (max-width: 768px) {
  .contact-content {
    padding: 0 16px;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

/* ===========================
  Footer
=========================== */
/* ===========================
  Footer（画像イメージ版）
=========================== */
.site-footer{
  background: #0b1320;
  color: rgba(255,255,255,0.78);
  padding: 80px 16px 0;
}

.site-footer a{ color: inherit; text-decoration: none; }

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

/* Brand */
.footer-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img{
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.footer-logo-text{
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #fff;
  font-size: 18px;
}

.footer-logo-text em{
  font-style: normal;
  color: #01a1bc;
}

.footer-desc{
  line-height: 1.9;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 22px;
}

/* Columns */
.footer-col-title{
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-link{
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}

.footer-link:hover{
  color: rgba(1,161,188,0.95);
}

/* Contact card */
.footer-contact .contact-card{
  text-align: center;   /* 文字を中央寄せ */
  display: block;       /* aタグをブロック化 */
  margin-top: 10px;
  padding: 22px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.contact-card-sub{
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-card-tel{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #23bc20;
  margin-bottom: 10px;
}

.contact-card-note{
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}

/* Bottom bar */
.footer-bottom{
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright{
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 980px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px){
  .site-footer{ padding: 56px 16px 0; }
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-bottom-inner{
    padding: 16px 0;
  }
}
