  :root {
    --dodger-blue: #0098fe;
    --white: #ffffff;
    --alice-blue: #e6f7ff;
    --white-smoke: #f5f5f5;
    --platinum: #d9d9d9;
    --black: #000000;
    --jet: #333333;
    --maya-blue: #66bfff;
    --polynesian-blue: #00509e;
    --orange-pantone: #ff6200;
    --yamato-yellow: #fccf00;
    --line-forest-green: #06C755;
  }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  line-height: 1.8;
  color: #333;
  background: #fff;
}

/* ========================================
           ヘッダー（明るい青に変更）
        ======================================== */
.header {
/*  background: linear-gradient(135deg, #42a5f5 0%, #64b5f6 50%, #90caf9 100%);*/
  color: white;
  padding: 15px 0;
/*  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
  position: relative;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
/*  font-size: 22px;*/
  font-weight: bold;
/*  display: flex;*/
  align-items: center;
  gap: 8px;
}

.header-tel {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-tel a {
  color: white;
  text-decoration: none;
}

/* ========================================
           ヒーローセクション（オーバーレイを薄く）
        ======================================== */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjEwIiBoZWlnaHQ9IjEwIiBmaWxsPSIjMWUzYzcyIi8+PC9zdmc+');
  z-index: 1;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(30, 60, 114, 0.2) 0%,
      rgba(42, 82, 152, 0.15) 50%,
      rgba(30, 60, 114, 0.25) 100%);
  z-index: 2;
}

/* 📸 ヒーロー画像URL設定箇所 */
.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 0 20px;
  margin-top: 55px;
}

.badge {
  display: inline-block;
  background: orangered;
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 25px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.4;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 35px;
  line-height: 1.8;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: orangered;
  color: white;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s;
}

.cta-button:hover {
  background: #ff8555;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

.cta-button.secondary {
  background: #4a90e2;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.cta-button.secondary:hover {
  background: #6aa5e8;
  box-shadow: 0 6px 25px rgba(74, 144, 226, 0.6);
}

.cta-button.tertiary {
  background: #28a745;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.cta-button.tertiary:hover {
  background: #34ce57;
  box-shadow: 0 6px 25px rgba(40, 167, 69, 0.6);
}

/* ========================================
           特徴セクション
        ======================================== */
.features {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #1e3c72;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #4a90e2;
  border-radius: 2px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.feature-card {
/*  background: white;*/
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;

  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;

  border: 1px solid rgba(0,0,0,0.15);  /* ← これで「枠」が認識される */
  box-shadow: 0 4px 16px rgba(0,0,0,0.25); /* 全体が軽く浮き出る */
}

/* 明るめのガラス層に 
.feature-inner {
  position: relative;
  z-index: 2;
  padding: 25px;
  border-radius: 12px;

  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.85);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}*/

/* フォールバック 
@supports not ((backdrop-filter: blur(10px))) {
  .feature-inner {
    background: rgba(255,255,255,0.9);
  }
}*/

/* 背景用の軽い明るめオーバーレイ
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 75%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
} */

/*
.feature-satei {
  background-image: url('https://www.omocya-kaitori.jp/yoyaku/wp-content/uploads/2025/09/%E3%82%B7%E3%83%9E%E3%83%8E-23-%E3%83%87%E3%82%A3%E3%82%A2%E3%83%AB%E3%83%BC%E3%83%8A-S100ML-%E3%83%AB%E3%82%A2%E3%83%BC%E3%83%AD%E3%83%83%E3%83%89-449x337.jpg');
}
.feature-kogaku {
  background-image: url('https://www.omocya-kaitori.jp/yoyaku/wp-content/uploads/2025/10/%E3%82%AC%E3%83%BC%E3%83%9F%E3%83%B3-%E9%AD%9A%E6%8E%A2-%E3%82%A8%E3%82%B3%E3%83%9E%E3%83%83%E3%83%97-UHD-72SVGT51M-TM-%E6%8C%AF%E5%8B%95%E5%AD%90%E4%BB%98-Garmin-ECHOMAP-449x337.jpg');
}
.feature-anshin {
  background-image: url('https://www.omocya-kaitori.jp/yoyaku/wp-content/uploads/2025/08/ABU-%E3%82%A2%E3%83%96%E3%82%AC%E3%83%AB%E3%82%B7%E3%82%A2-%E3%83%99%E3%82%A4%E3%83%88%E3%83%AA%E3%83%BC%E3%83%AB-REVO-LT-449x337.jpg');
}
 */

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  border-color: #4a90e2;
}

.feature-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

/* 見出し・本文とも黒系で高コントラストに */
.feature-card h3 {
  font-size: 22px;
  color: #0d1b2a; /* ダークネイビーっぽい黒 */
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: #1b263b; /* 少し柔らかい黒 */
  line-height: 1.8;
  font-size: 15px;
}

/* ========================================
           店舗情報セクション
        ======================================== */
.stores {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
  color: #333;
  padding: 80px 20px;
}

.stores-content {
  max-width: 1200px;
  margin: 0 auto;
}

.stores-content .section-title {
  color: #1e3c72 !important;
}

.stores-content .section-title::after {
  background: #4a90e2;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.store-card {
  background: white;
  padding: 35px;
  border-radius: 15px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.store-card h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #1e3c72;
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-info {
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
  font-size: 15px;
}

.store-info strong {
  min-width: 90px;
  color: #1e3c72;
}

.store-info a {
  color: #4a90e2;
  text-decoration: none;
}

.store-info a:hover {
  text-decoration: underline;
}

.store-map {
  width: 100%;
  height: 280px;
  border-radius: 10px;
  margin-top: 20px;
  border: 2px solid #e0e0e0;
}

.stores-cta {
  text-align: center;
  margin-top: 50px;
}

.stores-cta p {
  font-size: 17px;
  margin-bottom: 25px;
  color: #333;
}

.stores-cta .cta-buttons {
  justify-content: center;
}

.stores-note {
  margin-top: 25px;
  font-size: 14px;
  color: #555;
}

/* ========================================
           買取の流れセクション
        ======================================== */
.flow {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.flow-type {
  margin-bottom: 60px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  position: relative;
}

.flow-step {
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s;
  position: relative;
}

.flow-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: #4a90e2;
}

.flow-step::after {
  content: "→";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: #4a90e2;
  font-weight: bold;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(74, 144, 226, 0.3);
}

.flow-step:last-child::after {
  content: none;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4a90e2, #1e3c72);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.flow-step h4 {
  font-size: 20px;
  color: #1e3c72;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #e3f2fd;
}

.step-content {
  text-align: left;
}

.step-content p {
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

.step-content ul {
  margin: 15px 0;
}

.step-content ul li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.7;
}

.step-content ul li a {
  color: #4a90e2;
  text-decoration: none;
}

.step-content ul li a:hover {
  text-decoration: underline;
}

/* ========================================
           買取強化商品セクション（レイヤーをさらに薄く）
        ======================================== */
.products {
  background: linear-gradient(rgba(76, 175, 80, 0.05),
      rgba(56, 142, 60, 0.05)),
    url('https://www.turigu-kaitori.jp/cat/wp-content/uploads/2025/10/Gemini_Generated_Image_jyp9agjyp9agjyp9.png');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
}

.products-content {
  max-width: 1200px;
  margin: 0 auto;
}

.products .section-title {
  color: #1e3c72;
}

.products .section-title::after {
  background: #4a90e2;
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.category-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  color: #333;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.category-card h3 {
  color: #1e3c72;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #4a90e2;
}

.category-items {
  list-style: none;
  padding: 0;
}

.category-items li {
  padding: 10px 0;
  color: #555;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-items li:before {
  content: "🎣";
  font-size: 14px;
}

.note-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  margin-top: 40px;
  border-left: 5px solid #4a90e2;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  color: #333;
}

/* ========================================
           買取実績セクション
        ======================================== */
.purchase-examples {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.example-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid #f0f0f0;
}

.example-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: #4a90e2;
}

.example-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #f5f5f5;
}

.example-content {
  padding: 25px;
}

.example-content h3 {
  font-size: 20px;
  color: #1e3c72;
  margin-bottom: 15px;
}

.example-details {
  margin-bottom: 15px;
}

.example-detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.example-detail:last-child {
  border-bottom: none;
}

.example-detail .label {
  color: #666;
}

.example-detail .value {
  font-weight: bold;
  color: #1e3c72;
}

.example-price {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 8px;
  margin-top: 15px;
}

.example-price .price-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.example-price .price-value {
  font-size: 28px;
  font-weight: bold;
  color: orangered;
}

/* ========================================
           レビューセクション
        ======================================== */
.reviews {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.reviews > p {
  text-align: center;
}



/* ========================================
           Q&Aセクション（レイヤーをさらに薄く）
        ======================================== */
.qa-section {
  background: linear-gradient(rgba(3, 169, 244, 0.05),
      rgba(2, 136, 209, 0.05)),
    url('https://www.turigu-kaitori.jp/cat/wp-content/uploads/2025/10/turihuukei.png');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  padding: 80px 20px;
}

.qa-content {
  max-width: 1000px;
  margin: 0 auto;
}

.qa-section .section-title {
  color: white;
}

.qa-section .section-title::after {
  background: rgba(255, 255, 255, 0.8);
}

.qa-item {
  background: white;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.qa-question {
  font-weight: bold;
  color: #1e3c72;
  font-size: 17px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.qa-question:before {
  content: "Q";
  background: #4a90e2;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.qa-answer {
  color: #555;
  line-height: 1.8;
  padding-left: 44px;
  font-size: 15px;
}

.qa-answer a {
  color: #4a90e2;
  text-decoration: none;
}

.qa-answer a:hover {
  text-decoration: underline;
}

/* ========================================
           フッター（明るく）
        ======================================== */
.footer {
  background: #2c3e50;
  color: #bbb;
/*  padding: 50px 20px 30px;*/
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer p {
  margin: 10px 0;
  font-size: 14px;
}

.footer-tel {
  color: white;
  font-size: 26px;
  font-weight: bold;
  margin: 25px 0;
}

.footer-tel a {
  color: #7db9e8;
  text-decoration: none;
}


.mobile-header-menu-buttons {
  z-index: 110;
}

.footer-bottom {
  margin-bottom: 45px;
}


/* 全体レビュー領域を対象にする */
#showreviews {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  text-align: left !important;
  
}

/* カード風調整 */
#showreviews div[style*="border:1px dotted"] {
  border: none !important;
  border-radius: 8px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 投稿日・評価行の余白改善 */
#showreviews p[style*="float:left"], 
#showreviews p[style*="float:right"] {
  font-size: 14px;
  margin: 0;
}

/* ボタンのモダン化 */
#image-btn {
  background: #0078ff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
#image-btn:hover {
  background: #005fcc;
}

/* レビュー本文改善 */
#showreviews p[style*="font-size:18px"] {
  font-size: 16px !important;
  line-height: 1.6;
}

/* 返信ボックス .arrow_box 調整 */
#showreviews .arrow_box {
  background: #f9f9f9;
  border: none;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.08);
}


/* ========================================
           アニメーション
        ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
           レスポンシブ
        ======================================== */
@media (max-width: 768px) {
 /* .hero {
    height: 500px;
  }*/

  .hero {
    margin-top: 20px;
  }

  #header-container
  ,.header-content {
    display: none;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 3px 20px;
  }

  .header-content {
    justify-content: center;
    text-align: center;
    gap: 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .feature-grid,
  .product-categories,
  .flow-steps,
  .examples-grid,
  .stores-grid {
    grid-template-columns: 1fr;
  }

}