@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
/* 初期設定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  /* デフォルトフォント設定
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-font-size: var(--font-size-16);
  --def-font-family: var(--fot--Noto-Sans);
  --def-font-color: var(--col--txt-01);
  --def-font-weight: 400;
  --def-font-lh: 1;
  --def-font-ls: 0.1em;
  /* 文章(p)の設定
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-p-lh: calc(40/16);
  --def-p-margin: var(--margin-25);
  /* 各セクションinnerのデフォルトpadding
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-inner: 100px 0;
}

body {
  font-size: var(--def-font-size);
  font-family: var(--def-font-family);
  color: var(--def-font-color);
  font-weight: var(--def-font-weight);
  line-height: var(--def-font-lh);
  letter-spacing: var(--def-font-ls);
}

.inner {
  width: 1080px;
  margin: 0 auto;
  padding: var(--def-inner);
}
@media screen and (max-width: 767px) {
  .inner {
    width: 90%;
    padding: 15vw 0;
  }
}

.com--text-01 p {
  line-height: var(--def-p-lh);
  margin-bottom: var(--def-p-margin);
}
.com--text-01 p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .com--text-01 p {
    line-height: 2;
    margin-bottom: 3.6vw;
  }
}

/* フォントの指定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  --fot--Noto-Serif: "Noto Serif JP", serif;
  --fot--Noto-Sans: "Noto Sans JP", sans-serif;
  --fot--Meiryo: "メイリオ", "Meiryo", "Noto Sans JP", sans-serif;
  --fot--M_PLUS: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
}

/* 色の指定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  --col--main-01: #1e90d1;
  --col--main-02: #cbe5f3;
  --col--acc-g-01: #2c9b58;
  --col--acc-g-02: #dcf0e8;
  --col--acc-y-01: #f4c91e;
  --col--acc-y-02: #fbf0c0;
  --col--acc-y-fil: brightness(0) saturate(100%) invert(77%) sepia(86%) saturate(505%) hue-rotate(343deg) brightness(102%) contrast(91%);
  --col--acc-r-01: #dc212f;
  --col--acc-r-fil: brightness(0) saturate(100%) invert(17%) sepia(97%) saturate(2843%) hue-rotate(346deg) brightness(105%) contrast(85%);
  --col--base-01: #fff;
  --col--base-02: #f9f0e4;
  --col--txt-01: #382d23;
  --col--txt-02: #4f3621;
  --col--line: #06c755;
  --col--fil-white: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(12%) hue-rotate(237deg) brightness(103%) contrast(103%);
  --col--fil-black: brightness(0) saturate(100%) invert(0%) sepia(2%) saturate(26%) hue-rotate(301deg) brightness(93%) contrast(100%);
}/*# sourceMappingURL=setting.css.map */