@charset "utf-8";

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  min-height: 100%;
  font-size: clamp(14px, 1.1vw, 15px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: #fff;
  color: #121212;
  line-height: 1.6;
  letter-spacing: 0.001em;
  font-feature-settings: "palt"1;
  font-kerning: normal;
  -webkit-font-kerning: normal;
  font-family: "linotype-sabon", 'Sabon LT Pro', "a-otf-ryumin-pr6n", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

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

::selection {
  background: #e9e9e9;
  color: #121212;
}

/* link */
a {
  color: #121212;
  text-decoration: none;
  transition: opacity 0.4s ease;
}

a:hover {
  opacity: 0.85;
}

/* text */
.spbr {
  display: none !important;
}

.pcbr {
  display: block !important;
}

.icon {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 300;
}

.ja {
  letter-spacing: 0.1em;
}

.en {
  letter-spacing: 0.01em;
}

/* sp */
@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }

  .spbr {
    display: block !important;
  }

  .pcbr {
    display: none !important;
  }
}