@charset "UTF-8";
/*
Theme Name: santo
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: #f2f1e9;
  --color-bg-dark: #807f7a;
  --color-bg-green: #eff2e9;
  --color-bg-blue: #e7edf1;
  --color-accent-blue: #abbfcc;
  --color-accent-green: #afccab;
  --color-white: #fefefe;
  --color-bg-alt: #e7eef1;
  --color-text: #0e1418;
  --color-text-blue: #2b2f4a;
  --color-text-light: #6b6355;
  --color-accent: #3b664c;
  --color-accent2: #3b5566;
  --color-accent-dark: #2b4a37;
  --color-gray: #757575;
  --color-border: #ccc;
  --font-serif: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  --font-sans: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  --max-width: 1200px;
}

body {
  font-family: var(--font-serif);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.8;
  font-size: 1.6rem;
  -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: 2rem;
}

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