/*
Theme Name: Ludopauke
Version: 3.5
*/
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&family=Lora:wght@500;600&display=swap');

:root {
  --font-sans: "Nunito Sans", sans-serif;
  --font-serif: "Lora", serif;

  /* Amber Color Theme */
  --amber-primary: #C58A4A;
  --amber-dark: #A06D3A;

  --bg: #ffffff; /* 全体背景を完全な白に */
  --text: #4a4a4a;
  --text-light: #6b6b6b;
  --heading: #332c22;
  --muted: #999;
  --accent: var(--amber-primary);
  --border-color: #e0e0e0;

  --radius-s: 5px;
  --radius-m: 8px;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 8px 20px rgba(74, 58, 40, 0.1);

  --gap-xs: 0.5rem;
  --gap-s: 1rem;
  --gap-m: 2rem;
  --gap-l: 4rem;
  --gap-xl: 6rem;
  --gap-xxl: 8rem;

  --max-width-content: 1140px;
  --max-width-text: 720px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-m);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}
a:hover {
  color: var(--amber-dark);
  opacity: 0.9;
}

/* Layout */
.container {
  max-width: var(--max-width-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gap-m);
  padding-right: var(--gap-m);
}

.text-container {
  max-width: var(--max-width-text);
  margin-left: auto;
  margin-right: auto;
}

section {
  padding: var(--gap-l) 0;
  background-color: var(--bg); /* 全てのセクションの背景を白に */
}


/* Hero Section */
.hero {
  text-align: center;
  padding: var(--gap-xxl) 0 var(--gap-xxl);
}

.logo {
  /* 「大きくなりすぎた」ため、推奨値と最大値を調整 */
  width: clamp(min(280px, 100vw - 40px), 65vw, 700px); /* 推奨65vw、最大700px に調整 */
  height: auto;
  display: block;
  margin: var(--gap-xl) auto var(--gap-xxl); /* 上マージンを少し戻し、下マージンは大きく取る */
}

.site-tagline {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  margin: 0 auto var(--gap-xl);
  max-width: var(--max-width-text);
}

.hero .hero-cta {
  margin-top: var(--gap-xl);
}

/* Buttons (省略：変更なし) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius-m);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  text-align: center;
}

.btn-line {
  background: var(--amber-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(197, 138, 74, 0.3);
}
.btn-line:hover {
  background: var(--amber-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(160, 109, 58, 0.4);
}
.btn-line::before {
  display: none;
}

/* Headings (省略：変更なし) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--heading);
  line-height: 1.3;
  margin-bottom: var(--gap-m);
  font-weight: 600;
}

h2 {
  font-size: 2.6rem;
  text-align: center;
  position: relative;
  padding-bottom: var(--gap-m);
}
h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--accent);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 3px;
}
.h2-left {
  text-align: left;
}
.h2-left::after {
  left: 0;
  transform: translateX(0);
}

/* Products Section (省略：変更なし) */
.products-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap-l);
  margin-top: var(--gap-l);
}

.product-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-m) var(--radius-m) 0 0;
  border-bottom: 1px solid #eee;
}
.product-info {
  padding: var(--gap-m);
  flex-grow: 1;
  text-align: left;
}
.product-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: var(--gap-s);
}
.product-flag {
  font-size: 1.2rem;
  margin-right: var(--gap-xs);
  vertical-align: middle;
}
.product-specs {
  list-style: none;
  padding-left: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}
.product-specs li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.6rem;
}
.product-specs li::before {
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}
.products-note {
  text-align: center;
  margin-top: var(--gap-l);
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Simple Lists (Service, Booking sections) (省略：変更なし) */
.simple-list {
  list-style: none;
  padding-left: 0;
  color: var(--text);
  max-width: var(--max-width-text);
  margin-left: auto;
  margin-right: auto;
}
.simple-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: var(--gap-s);
  font-size: 1.1rem;
}
.simple-list li::before {
  content: "\f058";
  font-family: 'Font Awesome 6 Free';
  font-weight: 400;
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.4rem;
  top: 1px;
}
.simple-list li strong {
  color: var(--heading);
  font-weight: 700;
}
.simple-list a {
  font-weight: 600;
}

/* Calendar Section (省略：変更なし) */
iframe.calendar {
  width: 100%;
  height: 600px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-soft);
}

/* Booking Section Call to Action (省略：変更なし) */
.booking-cta {
  text-align: center;
  margin-top: var(--gap-l);
}

/* Footer (省略：変更なし) */
.footer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  padding: var(--gap-l) 0 var(--gap-m);
  border-top: 1px solid var(--border-color);
  margin-top: var(--gap-l);
}
.footer p {
  margin-bottom: var(--gap-xs);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .logo {
    width: clamp(min(260px, 100vw - 40px), 60vw, 600px); /* タブレットでの最大値を調整 */
    margin-bottom: var(--gap-xl);
  }
}

@media (max-width: 768px) {
  h2 {
    font-size: 2.2rem;
  }
  .site-tagline {
    font-size: 1.1rem;
    margin-bottom: var(--gap-l);
  }
  .logo {
    width: clamp(min(200px, 100vw - 30px), 75vw, 450px); /* スマホでの推奨値と最大値を調整 */
    margin-bottom: var(--gap-xl);
  }
  .hero {
    padding: var(--gap-xl) 0 var(--gap-xl);
  }
  .hero .hero-cta {
    margin-top: var(--gap-l);
  }
  /* ... (スマホでの他のスタイルは省略：変更なし) ... */
  .products-list {
    grid-template-columns: 1fr;
    gap: var(--gap-m);
  }
  .product-card img {
    height: 240px;
  }
  section {
    padding: var(--gap-m) 0;
  }
   .container {
    padding-left: var(--gap-s);
    padding-right: var(--gap-s);
  }
  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
  .simple-list li {
    font-size: 1rem;
    padding-left: 1.8rem;
  }
  .simple-list li::before {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .logo {
    width: clamp(min(150px, 100vw - 20px), 80vw, 300px); /* さらに小さい画面での最大値を調整 */
    margin-bottom: var(--gap-l);
  }
  .site-tagline {
    font-size: 0.95rem;
  }
  h2 {
    font-size: 1.8rem;
  }
}