/* quick-rock-321.css — 旅風トラベル main stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #08406f;
  --secondary: #1477bd;
  --accent:    #fbcc85;
  --text:      #323232;
  --gray:      #7b7b7b;
  --light:     #f3f3f3;
  --white:     #ffffff;
  --footer-bg: #08406f;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--secondary); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(24px, 4vw, 40px); font-weight: 600; line-height: 1.2; }
h3 { font-size: 18px; font-weight: 600; line-height: 1.4; }
h4 { font-size: 15px; font-weight: 600; }
p  { margin-bottom: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 { color: var(--primary); }
.section-title p   { color: var(--gray); max-width: 620px; margin: 10px auto 0; }
.section-title .line {
  display: inline-block;
  width: 60px; height: 3px;
  background: var(--accent);
  margin: 12px 0;
}

/* ===========================
   LAYOUT
=========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
[class*="col-"] { padding: 0 15px; }
.col-12 { width: 100%; }
.col-6  { width: 50%; }
.col-4  { width: 33.333%; }
.col-3  { width: 25%; }

section { padding: 70px 0; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===========================
   HEADER / NAV
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}

.header-top-bar {
  background: var(--accent);
  color: var(--primary);
  font-size: 12px;
  padding: 6px 0;
}
.header-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-bar a { color: var(--primary); font-weight: 500; }
.header-top-bar a:hover { color: var(--secondary); }

.header-main { background: var(--primary); padding: 0; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo svg { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text { color: var(--white); }
.logo-text strong { display: block; font-size: 18px; font-weight: 700; line-height: 1.1; }
.logo-text span { font-size: 11px; opacity: .75; letter-spacing: 1px; text-transform: uppercase; }

/* Nav */
.site-nav ul { display: flex; gap: 4px; }
.site-nav ul li a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.site-nav ul li a:hover,
.site-nav ul li.active a {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--white);
  font-size: 18px;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 580px;
  background: var(--primary) center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(8,64,111,.78) 0%, rgba(20,119,189,.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}
.hero-content h1 { margin-bottom: 18px; }
.hero-content p { font-size: 16px; opacity: .9; margin-bottom: 28px; max-width: 540px; }
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===========================
   FEATURES / ICONS STRIP
=========================== */
.features-strip {
  padding: 0;
  background: var(--light);
  border-bottom: 1px solid #e5e5e5;
}
.features-strip .container {
  display: flex;
  flex-wrap: wrap;
}
.feature-item {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid #e5e5e5;
}
.feature-item:last-child { border-right: none; }
.feature-item i { font-size: 28px; color: var(--secondary); flex-shrink: 0; }
.feature-item h4 { font-size: 13px; margin-bottom: 2px; color: var(--primary); }
.feature-item p  { font-size: 12px; color: var(--gray); margin: 0; }

/* ===========================
   ABOUT
=========================== */
.about-section { background: var(--white); }
.about-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-text { padding-left: 40px; display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { color: var(--primary); margin-bottom: 16px; }
.about-text .about-line { width: 50px; height: 3px; background: var(--accent); margin-bottom: 20px; }
.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 30px; font-weight: 700; color: var(--secondary); }
.stat-item span { font-size: 12px; color: var(--gray); }

/* ===========================
   TOURS / SERVICES CARDS
=========================== */
.tours-section { background: #f8f9fc; }
.tour-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.tour-card img { width: 100%; height: 220px; object-fit: cover; }
.tour-card-body { padding: 20px; }
.tour-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tour-card-body h3 { color: var(--primary); margin-bottom: 8px; font-size: 16px; }
.tour-card-body p { color: var(--gray); font-size: 13px; margin-bottom: 14px; }
.tour-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ebebeb;
  padding-top: 14px;
  margin-top: 4px;
}
.tour-price .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
}
.tour-price .price span { font-size: 12px; font-weight: 400; color: var(--gray); }
.tour-meta { display: flex; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.tour-meta span { font-size: 12px; color: var(--gray); }
.tour-meta i { color: var(--secondary); margin-right: 4px; }

/* ===========================
   PRICE TABLE
=========================== */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.price-card {
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color .25s, box-shadow .25s;
}
.price-card:hover { border-color: var(--secondary); box-shadow: 0 6px 24px rgba(20,119,189,.12); }
.price-card.featured {
  border-color: var(--secondary);
  background: linear-gradient(160deg, #f0f7ff 0%, var(--white) 100%);
}
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.price-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 17px; }
.price-card .big-price {
  font-size: 38px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin: 16px 0 4px;
}
.price-card .big-price sup { font-size: 18px; vertical-align: super; }
.price-card .per { font-size: 12px; color: var(--gray); margin-bottom: 20px; }
.price-card ul { text-align: left; margin-bottom: 24px; }
.price-card ul li {
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card ul li i { color: var(--secondary); font-size: 12px; flex-shrink: 0; }

/* ===========================
   WHY US
=========================== */
.why-section { background: var(--primary); color: var(--white); }
.why-section .section-title h2 { color: var(--white); }
.why-section .section-title p { color: rgba(255,255,255,.7); }
.why-section .line { background: var(--accent); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.12);
  transition: background .25s;
}
.why-card:hover { background: rgba(255,255,255,.13); }
.why-card i { font-size: 36px; color: var(--accent); margin-bottom: 16px; }
.why-card h3 { color: var(--white); margin-bottom: 10px; font-size: 15px; }
.why-card p { color: rgba(255,255,255,.72); font-size: 13px; margin: 0; }

/* ===========================
   DESTINATIONS
=========================== */
.destinations-section { background: #f8f9fc; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.dest-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.dest-card img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,64,111,.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.dest-card-overlay h4 { color: var(--white); font-size: 14px; font-weight: 600; }
.dest-card-overlay span { display: block; font-size: 11px; color: rgba(255,255,255,.7); margin-top: 2px; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--light);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  border-left: 4px solid var(--secondary);
}
.testimonial-card::before {
  content: '\201C';
  font-size: 60px;
  color: var(--secondary);
  opacity: .2;
  position: absolute;
  top: 10px; left: 18px;
  line-height: 1;
}
.testimonial-card p { font-style: italic; color: var(--text); font-size: 13px; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 13px; color: var(--primary); }
.testimonial-author span { font-size: 11px; color: var(--gray); }
.stars { color: #fbcc85; font-size: 12px; margin-bottom: 8px; }

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { opacity: .85; max-width: 520px; margin: 0 auto 28px; font-size: 15px; }

/* ===========================
   CONTACT FORM
=========================== */
.contact-section { background: var(--white); }
.contact-form-wrap { background: var(--light); border-radius: 10px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
.contact-info h3 { color: var(--primary); margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-item i { font-size: 18px; color: var(--secondary); margin-top: 2px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 13px; margin-bottom: 3px; color: var(--primary); }
.contact-info-item p { font-size: 13px; color: var(--gray); margin: 0; }

/* ===========================
   FOOTER
=========================== */
.site-footer { background: var(--primary); color: var(--white); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .logo-wrap svg { width: 38px; height: 38px; }
.footer-brand .logo-wrap strong { font-size: 17px; font-weight: 700; color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: background .2s;
  border: 1px solid rgba(255,255,255,.15);
}
.footer-social a:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.foot-title { color: var(--accent); font-size: 14px; font-weight: 600; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { color: rgba(255,255,255,.72); font-size: 13px; transition: color .2s; }
.footer-links ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--accent); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,.75); font-size: 12px; line-height: 1.5; }
.footer-bottom {
  background: rgba(0,0,0,.2);
  margin-top: 50px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.55); margin: 0; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.55); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===========================
   COOKIES GDPR
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 600px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  padding: 24px 28px;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-left: 4px solid var(--secondary);
}
.cookie-banner.hidden { display: none; }
.cookie-banner i { font-size: 22px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.cookie-banner-text p { font-size: 13px; color: var(--text); margin: 0 0 12px; }
.cookie-banner-text a { color: var(--secondary); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn-accept {
  background: var(--secondary); color: var(--white);
  border: none; padding: 8px 20px; border-radius: 5px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: background .2s;
}
.cookie-btn-accept:hover { background: var(--primary); }
.cookie-btn-decline {
  background: transparent; color: var(--gray);
  border: 1px solid #ddd; padding: 8px 16px; border-radius: 5px;
  font-size: 13px; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-btn-decline:hover { border-color: var(--secondary); color: var(--secondary); }

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 60px 0 50px;
  color: var(--white);
  text-align: center;
}
.page-hero h1 { font-size: clamp(26px, 4vw, 42px); margin-bottom: 12px; }
.page-hero p { opacity: .8; max-width: 540px; margin: 0 auto; font-size: 15px; }
.breadcrumb { margin-top: 16px; display: flex; justify-content: center; gap: 6px; font-size: 12px; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: var(--white); }

/* ===========================
   INNER PAGE CONTENT
=========================== */
.page-content { padding: 60px 0; }
.page-content h2 { color: var(--primary); margin: 28px 0 12px; }
.page-content h3 { color: var(--secondary); margin: 22px 0 8px; }
.page-content p { color: var(--text); }
.page-content ul, .page-content ol { padding-left: 24px; margin-bottom: 16px; }
.page-content ul li { margin-bottom: 6px; list-style: disc; }
.page-content ol li { margin-bottom: 6px; list-style: decimal; }

/* ===========================
   CAREER PAGE
=========================== */
.career-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 20px;
  transition: border-color .2s, box-shadow .2s;
}
.career-card:hover { border-color: var(--secondary); box-shadow: 0 4px 20px rgba(20,119,189,.1); }
.career-card h3 { color: var(--primary); margin-bottom: 8px; }
.career-meta { display: flex; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.career-meta span { font-size: 12px; color: var(--gray); }
.career-meta i { color: var(--secondary); margin-right: 4px; }

/* ===========================
   SUCCESS / ERROR MESSAGES
=========================== */
.alert {
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 50px 0; }

  .header-top-bar .top-right { display: none; }

  .site-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--primary); padding: 12px 0; }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul li a { padding: 12px 20px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.08); }

  .nav-toggle { display: block; }

  .header-main { position: relative; }

  .col-6 { width: 100%; }
  .col-4 { width: 100%; }
  .col-3 { width: 50%; }

  .about-text { padding-left: 0; margin-top: 28px; }
  .form-row { flex-direction: column; gap: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .cookie-banner { left: 12px; right: 12px; bottom: 12px; flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { min-height: 420px; }
  .col-3 { width: 100%; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
