:root {
  --main-color: #fcc800;
  --accent-color: #00a0e2;
  --font-color: #334149;
  --white-color: #ffffff;
  --gray-color: #f9f9f9;
  --gradation-color: linear-gradient(90deg, #fcc800 60%, #00a0e2 100%);

  --font-family: "Noto Sans JP", sans-serif;
  --font-family-en: "Montserrat", sans-serif;

  --object-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);

  --border-radius: 4px;
}


/* ----------------------------------------------------
   font setting:
------------------------------------------------------- */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-500.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-700.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/NotoSansJP-900.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Montserrat-500.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Montserrat-700.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Montserrat-900.woff2") format("woff2");
  font-display: swap;
}

/* ----------------------------------------------------
   Basic setting:
------------------------------------------------------- */

html {
  scroll-behavior: smooth;
  font-size: 14px; /* モバイルファースト: 基本は14px */
  box-sizing: border-box;
}
/* tablet */
@media (min-width: 768px) {
  html {
    font-size: 15px;
  }
}
/* pc */
@media (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: var(--font-family), -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  background: var(--white-color);
  color: var(--font-color);
}

img {
  display: inline-block;
  max-width: 100%;
}

strong {
  color: var(--main-color);
  font-weight: bold;
}

.inner_box {
  margin: 0 auto;
  position: relative;
  max-width: 1200px;
  padding: 0 1rem; /* モバイルファースト: 基本は1rem */
}
/* tablet */
@media (min-width: 768px) {
  .inner_box {
    padding: 0 1.5rem;
  }
}
/* pc */
@media (min-width: 1024px) {
  .inner_box {
    padding: 0 2rem;
  }
}

.center {
  text-align: center;
}
.small {
  font-size: 0.875rem;
}

/* モバイルファースト: スマホ向けクラスはデフォルトで表示 */
.Forsp {
  display: block;
}
.Forpc {
  display: none;
}
/* tablet */
@media (min-width: 768px) {
  .Forsp {
    display: none;
  }
  .Forpc {
    display: block;
  }
}


/* ----------------------------------------------------
   header setting:
------------------------------------------------------- */

/* ----------------------------------------------------
   footer setting:
------------------------------------------------------- */

/* ----------------------------------------------------
   cookie setting:
------------------------------------------------------- */
#cookie-banner {
  display: none;
  font-size: 14px;
  position: fixed;
  background: #fff;
  padding: 1.5rem;
  text-align: center;
  z-index: 1000;
  box-sizing: border-box;
  /* モバイルファースト: 基本は全幅 */
  width: calc(100% - 2rem);
  left: 0;
  margin: 0 1rem;
  border-radius: 5px;
  bottom: 1rem;
  border: solid 2px #36318f;
}

#cookie-banner p {
  margin-bottom: 1rem;
  text-align: left;
}

#cookie-banner button {
  padding: 1rem;
  border-radius: 2px;
  background: #fff;
  margin-right: 1rem;
  border-radius: 4px;
  border: solid 2px #36318f;
  color: #36318f;
  font-weight: bold;
}

#cookie-banner #acceptBtn {
  background-color: #36318f;
  color: #fff;
  margin-left: 1rem;
}

/* tablet */
@media (min-width: 768px) {
  #cookie-banner {
    width: 25rem;
    left: 1rem;
    margin: 0;
  }
}
