@charset "UTF-8";
/*
Theme Name: Resort Template
Description: A sanitized WordPress starter theme for resort / ryokan style websites. All facility-specific content has been replaced with dummy text and a single placeholder image.
Author: Sample
Version: 1.0.0
*/

/* -------------------------------------------------
   Reset (minimal)
------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, p, ul, ol, dl, dd, figure {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* -------------------------------------------------
   Design tokens
------------------------------------------------- */
:root {
  --color-bg: #faf8f4;
  --color-bg-alt: #f1ede4;
  --color-text: #2f2b24;
  --color-text-light: #6b6355;
  --color-accent: #6b7a5e;
  --color-accent-dark: #4f5c45;
  --color-border: #ddd5c4;
  --font-serif: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  --font-sans: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  --max-width: 1120px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
}

h1 { font-size: 3.4rem; }
h2 { font-size: 2.6rem; text-align: center; }
h3 { font-size: 1.9rem; }

@media (max-width: 767px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.7rem; }
}
