@charset "UTF-8";
/* ========== base ========== */
/* ========== base ========== */
/* ==========================================================================
   1. Variables
   ========================================================================== */
:root {
  --font-base: 'ten-mincho-text', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Noto Serif JP', serif;
  --c-gold: #a98f54;
  --c-dark: #2c2c2e;
}

/* ==========================================================================
   2. Base Styles
   ========================================================================== */
/* box-sizing とフォントレンダリング設定 */
*, *::before, *::after {
  box-sizing: border-box;
  /* reset.cssの font: inherit（多くのタグに一括指定、詳細度0,0,1）が *（詳細度0,0,0）より勝ってしまい
     font-feature-settingsを初期値に戻してしまうため、!importantで確実に効かせる */
  font-feature-settings: "palt" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

html {
  font-family: 'ten-mincho-text', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'Noto Serif JP', serif;
  font-size: 62.5%;
  font-weight: 400;
  background-color: var(--color-bg);
}

body {
  position: relative;
  color: var(--color-text);
  -webkit-text-size-adjust: 100%;
}

body.is-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: calc(var(--scroll-pos, 0px) * -1);
  overflow: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.05em;
}

p {
  overflow-wrap: anywhere;
}

span {
  font: inherit;
  color: inherit;
}

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

a[href^="tel:"] {
  text-decoration: none;
}

/* --- Elements --- */
img,
video {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- Forms & Buttons --- */
button, input, select, textarea {
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: unset;
  outline: none;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  vertical-align: middle;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* --- Table --- */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  text-align: left;
}
