@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Hina+Mincho&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: 500;
  --def-font-lh: 1;
  --def-font-ls: 0.08em;
  /* 文章(p)の設定
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-p-lh: calc(38/16);
  --def-p-margin: var(--margin-20);
  /* 各セクション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--Hina-Mincho: "Hina Mincho", "Noto Serif JP", "Yu Mincho", serif;
}

/* 色の指定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  --col--main-01: #714aa2;
  --col--main-02: #baa1d9;
  --col--fil-main: brightness(0) saturate(100%) invert(37%) sepia(14%) saturate(2496%) hue-rotate(224deg) brightness(86%) contrast(89%);
  --col--acc-01: #714aa2;
  --col--base-01: #e8e3ef;
  --col--base-02: #fff;
  --col--txt-01: #222;
  --col--txt-02: #333;
  --col--txt-03: #444;
  --col--line: #06c755;
  --col--fil-line: brightness(0) saturate(100%) invert(73%) sepia(40%) saturate(7342%) hue-rotate(104deg) brightness(98%) contrast(95%);
  --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 */