@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&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.05em;
  /* 文章(p)の設定
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  --def-p-lh: calc(45/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--Zen-Kaku-Goth: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --fot--Josefin: "Josefin Sans", "Noto Sans JP", sans-serif;
}

/* 色の指定
////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
  --col--main-01: #000a3f;
  --col--main-02: #0c1d77;
  --col--main-03: #6a7286;
  --col--main-fil: brightness(0) saturate(100%) invert(8%) sepia(78%) saturate(6953%) hue-rotate(221deg) brightness(79%) contrast(112%);
  --col--acc-01: #ea1639;
  --col--acc-fil:brightness(0) saturate(100%) invert(21%) sepia(97%) saturate(3975%) hue-rotate(340deg) brightness(91%) contrast(103%);
  --col--base-01: #e1e3e7;
  --col--base-02: #f3f4f6;
  --col--base-03: #fff;
  --col--txt-01: #030612;
  --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 */