/* =============================================
   MENPEN - メインスタイルシート
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Cormorant+Garamond:wght@400;500&display=swap');

:root {
  --color-dark: #1a1a1a;
  --color-dark2: #252525;
  --color-green: #2d6a4f;
  --color-green-light: #e8f4ee;
  --color-green-hover: #235c43;
  --color-gold: #c9a227;
  --color-bg: #f8f6f0;
  --color-white: #ffffff;
  --color-border: #e8e4d8;
  --color-text: #1a1a1a;
  --color-text-muted: #888888;
  --color-text-light: #aaaaaa;
  --font-main: 'Noto Sans JP', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* =============================================
   UTILITIES
   ============================================= */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }
.section-bg { background: var(--color-bg); }
.section-dark { background: var(--color-dark); }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.section-title { font-size: 16px; font-weight: 500; color: var(--color-text); }
.section-label { font-size: 10px; color: var(--color-green); letter-spacing: 3px; display: block; margin-bottom: 4px; font-family: var(--font-display); }
.see-all { font-size: 12px; color: var(--color-green); transition: opacity .2s; }
.see-all:hover { opacity: .7; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all .2s;
  letter-spacing: .5px;
}
.btn-primary { background: var(--color-green); color: #fff; }
.btn-primary:hover { background: var(--color-green-hover); }
.btn-line { background: #06c755; color: #fff; }
.btn-line:hover { background: #05b34b; }
.btn-outline { background: transparent; color: #fff; border: 1px solid #555; }
.btn-outline:hover { border-color: #fff; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  height: 60px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.navbar-logo { display: flex; flex-direction: column; line-height: 1; }
.navbar-logo-main { font-size: 18px; font-weight: 500; letter-spacing: 3px; color: var(--color-dark); }
.navbar-logo-sub { font-size: 9px; color: var(--color-text-muted); letter-spacing: 2px; margin-top: 2px; }
.navbar-links { display: flex; gap: 28px; }
.navbar-links a { font-size: 13px; color: #666; transition: color .2s; }
.navbar-links a:hover { color: var(--color-green); }
.navbar-cta { background: var(--color-green); color: #fff; padding: 9px 20px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 500; letter-spacing: .5px; transition: background .2s; }
.navbar-cta:hover { background: var(--color-green-hover); }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}
.trust-bar .container { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #666; }
.trust-item strong { font-size: 14px; font-weight: 500; color: var(--color-dark); }
.trust-divider { width: 1px; height: 16px; background: #ddd; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--color-dark);
  padding: 64px 0 56px;
  text-align: center;
}
.hero-label {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  font-size: 10px;
  letter-spacing: 4px;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.hero h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.hero-sub { color: #888; font-size: 13px; margin-bottom: 32px; line-height: 2; }

.search-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  max-width: 600px;
  margin: 0 auto 20px;
  text-align: left;
}
.search-row { display: flex; gap: 10px; margin-bottom: 14px; }
.search-row select {
  flex: 1;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #333;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-main);
  cursor: pointer;
}
.search-row select:focus { outline: none; border-color: var(--color-green); }
.search-btn {
  background: var(--color-green);
  color: #fff;
  border: none;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-main);
  transition: background .2s;
  white-space: nowrap;
}
.search-btn:hover { background: var(--color-green-hover); }

.filter-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tag {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: #666;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  cursor: pointer;
  transition: all .2s;
}
.filter-tag:hover, .filter-tag.active { background: var(--color-green-light); border-color: var(--color-green); color: var(--color-green); }

.hero-reassure {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-reassure-item { display: flex; align-items: center; gap: 6px; color: #888; font-size: 11px; }
.hero-reassure-item::before { content: '✓'; color: var(--color-green); font-size: 12px; }

/* =============================================
   PROOF NUMBERS
   ============================================= */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.proof-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
}
.proof-num { font-size: 20px; font-weight: 500; color: var(--color-dark); font-family: var(--font-display); }
.proof-label { font-size: 11px; color: var(--color-text-muted); margin-top: 4px; }

/* =============================================
   SHOP CARDS
   ============================================= */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }

.shop-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .2s;
  cursor: pointer;
}
.shop-card:hover { border-color: var(--color-green); box-shadow: var(--shadow); transform: translateY(-2px); }
.shop-card-img { height: 120px; background: #f0ede6; position: relative; overflow: hidden; }
.shop-card-img img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e8e4dc, #d5d0c8); display: flex; align-items: center; justify-content: center; }
.shop-card-img-placeholder span { font-size: 28px; opacity: .3; }

.shop-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 500;
}
.badge-new { background: var(--color-green); color: #fff; }
.badge-coupon { background: #c0392b; color: #fff; }
.badge-night { background: #1a1a2e; color: #fff; }
.badge-pick { background: var(--color-gold); color: #fff; }

.shop-card-body { padding: 14px; }
.shop-card-name { font-size: 13px; font-weight: 500; color: var(--color-text); margin-bottom: 4px; }
.shop-card-area { font-size: 11px; color: var(--color-text-muted); margin-bottom: 8px; }
.shop-card-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 10px; }
.shop-card-tag { background: #f5f5f5; color: #777; font-size: 10px; padding: 2px 8px; border-radius: 2px; }
.shop-card-bottom { display: flex; justify-content: space-between; align-items: center; }
.shop-card-price { font-size: 13px; color: var(--color-green); font-weight: 500; }
.shop-card-price span { font-size: 10px; color: var(--color-text-light); font-weight: 400; }
.shop-card-stars { font-size: 11px; color: #e0a000; }

/* =============================================
   AREA GRID
   ============================================= */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 12px; }
.area-btn {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 16px 8px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  display: block;
}
.area-btn:hover { border-color: var(--color-green); background: var(--color-green-light); }
.area-name { font-size: 13px; font-weight: 500; color: var(--color-text); }
.area-count { font-size: 11px; color: var(--color-text-muted); margin-top: 3px; }

/* =============================================
   RANKING
   ============================================= */
.ranking-list { display: flex; flex-direction: column; gap: 12px; }
.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: all .2s;
  cursor: pointer;
}
.rank-item:hover { border-color: var(--color-green); box-shadow: var(--shadow); }
.rank-num { font-size: 24px; font-weight: 500; min-width: 32px; font-family: var(--font-display); color: #ccc; }
.rank-num.r1 { color: var(--color-gold); }
.rank-num.r2 { color: #9e9e9e; }
.rank-num.r3 { color: #a0735a; }
.rank-img { width: 52px; height: 52px; background: #f0ede6; border-radius: 6px; flex-shrink: 0; overflow: hidden; }
.rank-img img { width: 100%; height: 100%; object-fit: cover; }
.rank-info { flex: 1; }
.rank-name { font-size: 13px; font-weight: 500; color: var(--color-text); }
.rank-meta { font-size: 11px; color: var(--color-text-muted); margin-top: 3px; }
.rank-right { text-align: right; }
.rank-price { font-size: 13px; color: var(--color-green); font-weight: 500; }
.rank-stars { font-size: 11px; color: #e0a000; margin-top: 3px; }

/* =============================================
   LISTING CTA
   ============================================= */
.listing-cta { padding: 56px 0; }
.listing-cta-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.listing-label {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  font-size: 10px;
  letter-spacing: 3px;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.listing-cta h2 { color: #fff; font-size: 20px; font-weight: 400; line-height: 1.7; margin-bottom: 10px; }
.listing-cta p { color: #888; font-size: 13px; margin-bottom: 28px; line-height: 2; }
.listing-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 28px; }
.listing-step { background: var(--color-dark2); border-radius: var(--radius); padding: 18px 12px; text-align: center; }
.listing-step-num { font-size: 10px; color: var(--color-green); font-weight: 500; letter-spacing: 2px; margin-bottom: 8px; font-family: var(--font-display); }
.listing-step-txt { font-size: 12px; color: #888; line-height: 1.7; }
.listing-btns { display: flex; gap: 12px; justify-content: center; margin-bottom: 14px; }
.listing-note { font-size: 11px; color: #555; }

/* =============================================
   REASSURANCE
   ============================================= */
.reassure-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.reassure-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.reassure-icon { font-size: 22px; margin-bottom: 10px; }
.reassure-title { font-size: 12px; font-weight: 500; color: var(--color-text); margin-bottom: 6px; }
.reassure-txt { font-size: 11px; color: var(--color-text-muted); line-height: 1.7; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #111; padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-logo-main { font-size: 18px; font-weight: 500; letter-spacing: 3px; color: #fff; margin-bottom: 6px; }
.footer-logo-sub { font-size: 9px; color: #555; letter-spacing: 2px; margin-bottom: 14px; }
.footer-desc { font-size: 12px; color: #444; line-height: 1.9; }
.footer-col-title { font-size: 10px; color: #555; letter-spacing: 2px; margin-bottom: 14px; font-family: var(--font-display); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 12px; color: #444; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #222;
  padding: 18px 0;
  text-align: center;
  font-size: 11px;
  color: #333;
}

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
  background: var(--color-dark);
  padding: 48px 0 40px;
}
.page-header-label { font-size: 10px; color: var(--color-green); letter-spacing: 3px; margin-bottom: 10px; font-family: var(--font-display); }
.page-header h1 { color: #fff; font-size: 24px; font-weight: 400; }

/* =============================================
   SHOP DETAIL
   ============================================= */
.shop-detail-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding: 48px 0; }
.shop-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 28px; }
.shop-gallery-main { grid-column: 1 / -1; height: 220px; background: #f0ede6; border-radius: var(--radius); overflow: hidden; }
.shop-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.shop-gallery-thumb { height: 90px; background: #e8e4dc; border-radius: var(--radius-sm); overflow: hidden; }
.shop-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-info-section { margin-bottom: 32px; }
.shop-info-title { font-size: 14px; font-weight: 500; border-bottom: 2px solid var(--color-green); padding-bottom: 8px; margin-bottom: 16px; }
.shop-info-table { width: 100%; border-collapse: collapse; }
.shop-info-table th { background: var(--color-bg); width: 120px; padding: 10px 14px; font-size: 12px; font-weight: 500; color: #555; border: 1px solid var(--color-border); text-align: left; }
.shop-info-table td { padding: 10px 14px; font-size: 13px; border: 1px solid var(--color-border); }

.shop-sidebar-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 80px;
}
.shop-sidebar-name { font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.shop-sidebar-area { font-size: 12px; color: var(--color-text-muted); margin-bottom: 12px; }
.shop-sidebar-price { font-size: 20px; color: var(--color-green); font-weight: 500; margin-bottom: 4px; }
.shop-sidebar-price span { font-size: 12px; color: var(--color-text-muted); font-weight: 400; }
.shop-sidebar-stars { font-size: 13px; color: #e0a000; margin-bottom: 16px; }
.shop-sidebar-btn { display: block; width: 100%; text-align: center; padding: 13px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; margin-bottom: 10px; transition: all .2s; }

/* =============================================
   COURSE TABLE
   ============================================= */
.course-table { width: 100%; border-collapse: collapse; }
.course-table thead th { background: var(--color-dark); color: #fff; padding: 12px 16px; font-size: 12px; font-weight: 500; text-align: left; }
.course-table tbody tr:nth-child(even) td { background: var(--color-bg); }
.course-table td { padding: 12px 16px; font-size: 13px; border-bottom: 1px solid var(--color-border); }
.course-price { color: var(--color-green); font-weight: 500; }

/* =============================================
   STATIC PAGES
   ============================================= */
.static-content { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.static-content h2 { font-size: 20px; font-weight: 500; border-bottom: 2px solid var(--color-green); padding-bottom: 10px; margin: 36px 0 16px; color: var(--color-dark); }
.static-content h3 { font-size: 15px; font-weight: 500; margin: 24px 0 10px; color: var(--color-dark); }
.static-content p { font-size: 14px; line-height: 2; color: #444; margin-bottom: 14px; }
.static-content ul, .static-content ol { padding-left: 20px; margin-bottom: 14px; }
.static-content ul li { list-style: disc; font-size: 14px; line-height: 2; color: #444; }
.static-content ol li { list-style: decimal; font-size: 14px; line-height: 2; color: #444; }
.static-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.static-content table th { background: var(--color-bg); padding: 10px 16px; font-size: 13px; font-weight: 500; border: 1px solid var(--color-border); text-align: left; }
.static-content table td { padding: 10px 16px; font-size: 13px; border: 1px solid var(--color-border); }
.static-content .date { text-align: right; font-size: 12px; color: var(--color-text-muted); margin-top: 32px; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 56px 0; }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--color-text); margin-bottom: 6px; display: block; }
.form-label .required { background: var(--color-green); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 2px; margin-left: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13px;
  font-family: var(--font-main);
  color: var(--color-text);
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-green);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-submit { background: var(--color-green); color: #fff; border: none; padding: 14px 40px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; cursor: pointer; font-family: var(--font-main); transition: background .2s; }
.form-submit:hover { background: var(--color-green-hover); }

.contact-sidebar { }
.contact-info-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.contact-info-title { font-size: 13px; font-weight: 500; margin-bottom: 12px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #555; margin-bottom: 10px; }
.line-btn {
  display: block;
  background: #06c755;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
}
.line-btn:hover { background: #05b34b; }
.flow-list { counter-reset: flow; }
.flow-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border); }
.flow-item:last-child { border-bottom: none; margin-bottom: 0; }
.flow-num { background: var(--color-green); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; flex-shrink: 0; margin-top: 2px; }
.flow-text { font-size: 13px; color: #555; line-height: 1.8; }
.flow-text strong { color: var(--color-text); font-weight: 500; display: block; margin-bottom: 2px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hero h1 { font-size: 20px; }
  .search-row { flex-wrap: wrap; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-detail-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .listing-steps { grid-template-columns: 1fr; }
}

/* カスタムロゴ */
.navbar-logo .custom-logo-link { display: flex; align-items: center; }
.navbar-logo .custom-logo { max-height: 40px; width: auto; display: block; }
