@charset "UTF-8";
/* ========== base ========== */
/* ========== base ========== */
/* ==========================================================================
   1. Variables
   ========================================================================== */
/* ==========================================================================
   2. Base Styles
   ========================================================================== */
/* box-sizing とフォントレンダリング設定 */
*, *::before, *::after {
  box-sizing: border-box;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  background-color: #f1efed;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  position: relative;
  color: #222;
  -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 {
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6, p, span, a, button,
th, td, input, textarea {
  letter-spacing: 0;
}

span {
  font: inherit;
  color: inherit;
}

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

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

/* --- 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;
}

input, textarea {
  background-image: none;
}

::placeholder {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 400;
  opacity: 0.6;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #eceeea inset !important;
  -webkit-text-fill-color: #222 !important;
  background-color: transparent;
}

input:-internal-autofill-selected {
  background-color: unset !important;
}

input::-webkit-search-cancel-button,
input::-webkit-search-decoration,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

button {
  all: unset;
  cursor: pointer;
  box-sizing: border-box;
}

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

th, td {
  text-align: left;
  vertical-align: middle;
}
