@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap");
@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-17);
  --def-font-family: var(--fot--Noto-Sans);
  --def-font-color: var(--col--txt-01);
  --def-font-weight: 500;
  --def-font-lh: 1;
  --def-font-ls: 0.05em;
  /* 文章(p)の設定
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-p-lh: calc(28/17);
  --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--Yu-Go: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  --fot--Yu-Min: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  --fot--Zen-Maru-Goth: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --fot--homemade_apple:"Homemade Apple", cursive;
  --fot--Kiwi-Maru: "Kiwi Maru","Noto Serif JP", serif;
  --fot--M_PLUS_R_1c: "M PLUS Rounded 1c", sans-serif;
}

/* 色の指定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  --col--main-01: #438907;
  --col--main-02: #76cc2c;
  --col--acc-01: #ffc426;
  --col--acc-02: #fff39b;
  --col--acc-03: #ffebb5;
  --col--base-01: #f2f5e9;
  --col--base-02: #f9f9f5;
  --col--base-03: #ffffff;
  --col--txt-01: #383e32;
  --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 */