:root {
  --main-bg: #fff;
  --accent-bg: #f8f5f0;
  --primary: #bfa76a;
  --primary-dark: #191f27;
  --secondary: #4caf50;
  --text-main: #222;
  --text-sub: #666;
  --border: #e0e0e0;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --radius: 12px;
  --FONT_FAMILY: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  --FONT_FAMILY_ZEN: "見出ゴMB31 JIS2004", "serif";
  --g-color-0: #2b95ff;
    --g-position-0: 0%;
    --g-color-1: #0042c3;
    --g-position-1: 100%;
    --g-color-2: #0042c3;
    --g-position-2: 100%;
    --g-color-3: #0042c3;
    --g-position-3: 100%;
    --g-color-4: #0042c3;
    --g-position-4: 100%;
    --g-color-5: #0042c3;
    --g-position-5: 100%;
    --g-color-6: #0042c3;
    --g-position-6: 100%;
    --g-color-7: #0042c3;
    --g-position-7: 100%;
    --g-color-8: #0042c3;
    --g-position-8: 100%;
    --g-color-9: #0042c3;
    --g-position-9: 100%;
    --g-color-10: #0042c3;
    --g-position-10: 100%;
    --g-color-11: #0042c3;
    --g-position-11: 100%;
    --g-angle: 135deg;

}

body {
  font-family: var(--FONT_FAMILY);
  background: var(--main-bg);
  color: var(--text-main);
  margin: 0 auto;
  padding: 0;
  line-height: 1.7;
  font-size: 16px;
}



h1, h2, h3, h4, h5 {
  font-family: var(--FONT_FAMILY_ZEN);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.2em;
  line-height: 1.2;
}

h1 {
  font-size: 2.2rem;
  padding-left: 16px;
  margin-top: 0;
}

h2 {
  font-size: 1.5rem;
  border-left: 4px solid var(--g-color-0);
  padding-left: 12px;
  margin-top: 2.5em;
}

h3 {
  font-size: 1.2rem;
  border-left: 3px solid var(--g-color-0);
  padding-left: 10px;
}

a {
  /*color: var(--secondary);*/
  text-decoration: none;
  transition: color 0.2s;
}

.pet-items ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}
.pet-items ul li {
    letter-spacing: 0px;
    list-style: none;
    margin: 0px 5px;
    position: relative;
}

.pet-items ul li:after {
    content: "/";
    position: relative;
    right: -10px;
}
.col-lg-8{
  padding:20px;
}

.breadcrumb {
  color: var(--text-sub);
  font-size: 0.9em;
  margin-bottom: 1.5em;
}
.breadcrumb a {
  color: var(--g-color-1);
}
.breadcrumb a:hover {
  color: var(--g-color-0);
}

.container, .container-fullwidth {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}
.container-fullwidth {
  max-width: 100vw !important;
  width: 100vw !important;
  padding-right: 0;
  padding-left: 0;
}

.fullwidth-visual {
  width: 100%;
  position: relative;
  /*left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;*/
  overflow: hidden;
}


*, *::before, *::after {
  box-sizing: border-box;
}

.fullwidth-visual img {
  display: block;
  width: 100%;
  /*max-width: 100%;*/
  height: auto;
  margin: 0;
  padding: 0;
}

.fullwidth-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 黒40%透明 */
  z-index: 1;
}




.kv-overlay-logo {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 100%;
  pointer-events: none;
}
.kv-overlay-logo img {
  width: 300px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.18));
  pointer-events: none;
}

.kv-overlay-title {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
  /*text-shadow: 2px 2px 8px rgba(0,0,0,0.7);*/
  font-size: 1rem;
  text-align: center;
  font-family: var(--FONT_FAMILY_ZEN);
  z-index: 2;
  padding: 0 1rem;
  pointer-events: none;
}




section, .section {
  background: var(--main-bg);

  box-shadow: var(--shadow);
  margin-bottom: 2.5em;
  padding: 2.5em 1.5em;
}

.area-card, .station-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 12px;
  text-align: center;
  background: #fff;
  margin-bottom: 1.5em;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.area-card:hover, .station-card:hover {
  border-color: var(--g-color-1);
  box-shadow: 0 4px 24px rgba(191,167,106,0.13);
}

.area-card h4, .station-card h4 {
  margin: 0 0 10px 0;
  color: var(--primary-dark);
  font-size: 1.1em;
}

.area-card a, .station-card a {
  color: var(--g-color-1);
  font-weight: bold;
  display: inline-block;
  margin-top: 5px;
  border-radius: 4px;
  padding: 4px 12px;
  transition: background 0.2s, color 0.2s;
}
.area-card a:hover, .station-card a:hover {
  background: var(--g-color-1);
  color: #fff;
  text-decoration: none;
}

.badge {
  background: var(--secondary);
  color: white;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.8em;
  margin-left: 5px;
}

.towns-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1%;
  padding: 1rem 0;
}
.towns-list li {
  width: calc(100% / 6 - 2%);
  margin: 0.6rem 1%;
  background: #fff;
  list-style: none;
  padding: 0.4rem 0;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.accordion-item {
          border:none;
        }
.step {
  border: 1.5px solid var(--g-color-0);
  
  background: #fff;
  color: #222;
  margin-bottom: 1.5em;
  box-shadow: 0 2px 12px rgba(43,149,255,0.10);
}
.step-header {
  background: linear-gradient(var(--g-angle), var(--g-color-1) 0%, var(--g-color-0) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.8em 1em;
  font-weight: bold;
  border-bottom: 1.5px solid #fff2;
}
 .step .card-header {
  
  color: #fff !important;
}

.kouken {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  width: 100%;
  height: auto;
}

.me {
  background-color: #fff7e6 !important;
}
.me th {
  background-color: #ffecc4 !important;
}

.form-control, .form-select {
  height: 45px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0 1em;
  font-size: 1em;
}

.btn, .btn-success {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
  margin: 20px 10px 0 0;
}
.btn:hover, .btn-success:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 4px 24px rgba(191,167,106,0.13);
}

.btn-full {
  display: block;
  width: 100%;
  padding: 16px 0;
  background: linear-gradient(var(--g-angle), var(--g-color-0) 0%, var(--g-color-1) 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.15rem;
  border: none;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(43,149,255,0.13);
  margin: 24px 0 0 0;
  text-align: center;
  letter-spacing: 0.04em;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.12s;
}
.btn-full:hover, .btn-full:focus {
  background: linear-gradient(var(--g-angle), var(--g-color-1) 0%, var(--g-color-0) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(43,149,255,0.18);
  transform: translateY(-2px) scale(1.03);
}

.cta {
  padding-top: 30px;
  padding-bottom: 30px;
}

.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17,17,17,0.85);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  transition: background 0.3s;
  box-sizing: border-box;
}

body {
  padding-top: 110px;
}






.cta-header-btn {
  display: block;
  align-items: center;
  text-align: center;
  background: linear-gradient(var(--g-angle), var(--g-color-0) var(--g-position-0), var(--g-color-1) var(--g-position-1));
  border-bottom: 0px solid rgba(0, 253, 255, 0.4);
    border-left: 0px solid rgba(0, 253, 255, 0.4);
    border-radius: 4px;
    border-right: 0px solid rgba(0, 253, 255, 0.4);
    border-top: 0px solid rgba(0, 253, 255, 0.4);
color:#fff!important;
  font-size: 11px;
  width:150px;
  padding: 14px 10px 14px 10px;
}

.cta-header-btn:hover, .cta-header-btn:focus {
    background: #FFFFFF;    
    transition-duration: 800ms;
    color:#000!important;
  }

.cta-header-btn a{
  
  text-decoration: none!important;
}

.cta-header-btn a:hover{
  
  text-decoration: none!important;
}


.white-nowrap {
  white-space: nowrap;
}
.underline_text {
  background: linear-gradient(transparent 70%, #FFFF00 0%)!important;
  font-weight: 900!important;
}

.station-count {
  color: var(--text-sub);
  font-size: 0.9em;
}

 .price-list {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .price-item {
      background-color: #f8f9fa;
      border-radius: 8px;
      padding: 20px 30px;
      margin-bottom: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s;
    }
    
    .price-item:hover {
      background-color: #e9ecef;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .price-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #333;
    }
    
    .price-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: #0d6efd;
    }
    
    .price-value small {
      font-size: 1rem;
      font-weight: 400;
    }


/* 小型モバイル: ~480px */
@media (max-width: 480px) {
  h1, h2 { 
    font-size: 1.1rem; 
  }
  
  .towns-list li { 
    width: calc(100% - 2%); 
  }
  
  .btn, 
  .btn-success, 
  .btn-full { 
    font-size: 1em; 
    padding: 10px 16px; 
  }
}


/* タブレット縦・モバイル横: ~768px */
@media (max-width: 768px) {
  h1 { 
    font-size: 1.5rem; 
  }
  
  h2 { 
    font-size: 1.2rem; 
  }
  
  .towns-list li { 
    width: calc(100% / 3 - 2%); 
  }

  body {
    padding-top: 90px;
  }

  .breadcrumb{
    margin-bottom: 0px;
  }
  
  section, 
  .section { 
    padding: 1.5em 0.5em; 
  }
}

/* タブレット: 768px~991px */
@media (min-width: 768px) and (max-width: 991px) {
  .area-card, 
  .station-card, 
  .towns-list li { 
    font-size: 0.95em; 
  }
  
  .container, 
  .container-fullwidth { 
    padding: 0 8px; 
  }
}

/* タブレット以上: 768px~ */
@media (min-width: 768px) {
  body {
    padding-top: 100px;
  }
  
  .breadcrumb {
    margin-bottom: 10px;
  }
  
  .kv-overlay-logo img {
    width: 500px;
  }
  
  .kv-overlay-title {
    font-size: 2em;
  }
}

/* デスクトップ: 992px~ */
@media (min-width: 992px) {
  body {
    padding-top: 65px;
  }
}

/* 大型デスクトップ: ~1100px */
@media (max-width: 1100px) {
  .container, 
  .container-fullwidth { 
    max-width: 100%;
  }
}




/*
@media (max-width: 1100px) {
  .container, .container-fullwidth { max-width: 100vw; }
}
@media (max-width: 900px) {
  .area-card, .station-card, .towns-list li { font-size: 0.95em; }
  .container, .container-fullwidth { padding: 0 8px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .towns-list li { width: calc(100% / 3 - 2%); }
  section, .section { padding: 1.5em 0.5em; }
}
@media (max-width: 480px) {
  h1, h2 { font-size: 1.1rem; }
  .towns-list li { width: calc(100% / 3 - 2%); }
  .btn, .btn-success, .btn-full { font-size: 1em; padding: 10px 16px; }
}

@media (min-width: 768px) {
  body {
    padding-top: 100px;
  }
  .breadcrumb{
    margin-bottom: 10px;
  }
}

@media (min-width: 992px) {
  body {
    padding-top: 65px;
  }
}

@media (min-width: 768px) {
  .fullwidth-visual img {
    height: 800px;
  }
}

@media (min-width: 768px) {
  .kv-overlay-logo img {
    width: 500px;
  }
}
@media (min-width: 768px) {
  .kv-overlay-title {
    font-size:2em;
  }
}

@media (max-width: 768px) {
  .towns-list li {
    width: calc(100% / 3 - 2%);
  }
}
@media (max-width: 480px) {
  .towns-list li {
    width: calc(100% - 2%);
  }
}*/