/* ======================================== *
 * Common style
/* ======================================== */

html {
  font-size: 62.5%; /* 基準 1rem=10px */
  font-family: 'Sawarabi Gothic', sans-serif;
  color: #412a1c;
  scroll-behavior: smooth; /* memo:JSが効かなくなった場合は削除する */
}

body:not(.en) main {
  letter-spacing: 0.1rem;
}


/* ---------- リンク設定 ---------- */
main a {
  color: #0f5fc3;
  transition : all 0.3s;
  word-wrap: break-word;
}
main a:hover {
  color: #6ba4c2;
}

/* ---------- リンク無効設定 ---------- */
/* カミングスーン項目 */
.comingsoon a {
  pointer-events: none;
  color: #8b8b8b;
}
/* 現在選択中の項目 */
.current a {
  pointer-events: none;
  color: #412a1c;
}


/* ---------- 背景色 ---------- */
.bg_light_beige {
  background: #fcfaf7;
}
.bg_beige {
  background: #f2e5d2;
}
.bg_light_blue {
  background: #e8f1fa;
}
.bg_light_pink {
  background: #fff0f6;
}


/* ---------- 明朝体にする部分 ---------- */
h1, h2, h3,
.head_nav,
.tel,
.fixed_btn,
.copyright {
  font-family: 'Shippori Mincho B1', serif;
  text-align: center;
}


/* ---------- テキスト制御 ---------- */
strong {
  font-weight: normal;
  background: #f5d4a4;
}
em {
  font-style: normal;
  font-weight: bold;
}
.center {
  text-align: center;
}
.font_small {
  font-size: 75%;
  line-height: 1.8rem;
}
.en .font_small {
  line-height: 1.5rem;
}
.align_top {
  vertical-align: top;
}
.green {
  color: #306f31;
}
.red {
  color: #bf6565;
}