@charset "utf-8";
/* font */
/* @import url("http://fonts.googleapis.com/earlyaccess/notosansjp.css"); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url("https://use.typekit.net/mrb1dnt.css");

:root {
  /* 色 */
  --color-white: #fff;
  --color-L-gray: #f8f8f8;
  --color-gray: #ccc;
  --color-D-gray: #888;
  --color-black: #333;
  --color-green: #00a040;
  --color-L-green: #f0f6ed;
  --color-LL-green: #B5D3A5;
  --color-blue: #2679c8;
  --color-LL-blue: #B0CBED;
  --color-pink: #f01178;
  --color-orange: #ff860d;

  /* 影 */
  --shadow-inside: 0px 10px 14px -14px #ccc inset, 0px -10px 14px -14px #ccc inset;
  --shadow-inside-all: 0px 0px 8px 0px #ccc inset;
  --shadow-inside-img: 0px 0px 4px 0px #ccc inset;
  --shadow-outside: 0px 2px 10px -2px #ccc;

  /* font */
  --number: "din-2014", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  color: var(--color-black);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  line-height: 1.8;
  text-align: justify;
}
/* ----------

共通パーツ

---------- */

/* 見出し */
h1,h2,h3,h4,h5 {
  font-weight: bold;
}
h1 {
  text-align: center;
  font-size: clamp(2.4rem, 2.2rem + 1vw, 3.4rem);
  line-height: 1.2;
}
h2 {
  font-size: 2.4rem;
  font-size: clamp(2rem, 1.92rem + 0.4vw, 2.4rem);
  line-height: 1.2;
  margin: 60px 0 20px 0;
}
h3 {
  font-size: 2rem;
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  margin: 40px 0 20px 0;
  line-height: 1.4;
}
.top h3, .about h3{
  font-size: clamp(1.8rem, 1.68rem + 0.6vw, 2.4rem);
  line-height: 1.2;
}
.c-h__line {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  font-size: clamp(2.2rem, 2.04rem + 0.8vw, 3rem);
  margin: 0;
  line-height: 1.2;
}
.c-h__line h2 {
  font-size: clamp(2.2rem, 2.04rem + 0.8vw, 3rem);
  margin: 0;
  line-height: 1.2;
}
.c-h__line span {
  font-size: 90%;
}
.c-h__line::before,.c-h__line::after {
  content: "";
  border-bottom: 3px dashed var(--color-green);
  width: 2.5rem;
  margin: 0 1rem;
}
.c-h__paint {
  background: var(--color-green);
  color: var(--color-white);
  padding: 14px 0;
}
.c-h__square {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.c-h__square::before {
  content: "";
  background: var(--color-green);
  display: inline-block;
  margin-right: .2em;
  width: .5em;
  height: 1.1em;
  vertical-align: bottom;
}

/* テキスト */
p {
  text-align: justify;
}
.c-txt__center {
  text-align: center;
}
.c-txt__right {
  text-align: end;
}
.c-txt__bold {
  font-weight: bold;
}
.c-txt__highlight {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  line-height: 1.4;
  font-weight: bold;
}
.c-txt__num {
  font-family: var(--number);
  font-size: 7rem;
  font-size: clamp(4rem, 3.4rem + 3vw, 7rem);
  font-weight: bold;
  line-height: 1;
}
.c-txt__num-gray {
  color: rgba(204,204,204,.5);
  text-shadow: 0px 2px 4px #fff, 0 0 #bbb;
}
.c-txt__num-green {
  color: rgba(108,167,76,.5);
  text-shadow: 0px 2px 4px #fff, 0 0 #b5d3a5;
}
.c-txt__num-blue {
  color: rgba(98,151,219,.5);
  text-shadow: 0px 2px 4px #fff, 0 0 #b0cbed;
}
.c-txt__num-black {
  color: rgb(136,136,136,.7);
  text-shadow: 0px 2px 4px #fff, 0 0 #000;
}
.c-txt__note {
  text-indent: -1em;
  margin-left: 1em;
}

/* リンク */
a {
  color: var(--color-blue);
  word-break: break-all;
  border-bottom: solid 2px;
}
a:hover {
  opacity: .7;
}
.c-link__blank::after {
  content: "";
  background-image: url("../img/blank.svg");
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-left: 0.2em;
}
.c-link__pdf::after {
  content: "";
  background-image: url("../img/icon_pdf.svg");
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: text-bottom;
  width: 1.5em;
  height: 1.5em;
  margin-left: 0.2em;
}
.c-link__xlsx::after {
  content: "";
  background-image: url("../img/icon_xlsx.svg");
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: text-bottom;
  width: 1.5em;
  height: 1.5em;
  margin-left: 0.2em;
}

ul {
  list-style:disc;
  margin-left: 1em;
}
ol {
  list-style: decimal;
  margin-left: 1rem;
  padding-left: 1rem;
}
li::marker {
  font-size: .8em;
}
.c-li__none {
  list-style: none;
  margin-left: 0;
}
.c-li__note {
  margin-left: -2em;
  padding-left: 1em;
}
small {
  display: block;
}

/* 表示 */
.c-only__sp {
  display: none !important;
}

/* 余白 */
.c-mt0 {
  margin-top: 0;
}
.c-mt10 {
  margin-top: 10px;
}
.c-mt20 {
  margin-top: 20px;
}
.c-mt40 {
  margin-top: 40px;
}
.c-mb0 {
  margin-bottom: 0;
}
.c-mb10 {
  margin-bottom: 10px;
}
.c-mb20 {
  margin-bottom: 20px;
}
.c-mb40 {
  margin-bottom: 40px;
}
.c-mb60 {
  margin-bottom: 60px;
}
.c-mt__header {
  margin-top: 70px;
}

/* ボタン */
.c-btn {
  border-radius: 50px;
  border: solid 2px var(--color-blue);
  display: block;
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 12px 0;
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0 auto;
  transition: .3s;
}
.c-btn > svg {
  display: block;
  width: 0.8rem;
  height: 2rem;
  position: absolute;
  top: 33%;
  right: 2rem;
  fill: var(--color-blue);
}
.c-btn__back > svg {
  right: initial;
  left: 2rem;
  transform: rotate(180deg);
}
.c-btn__notice {
  border-color: var(--color-black);
  color: var(--color-black);
}
.c-btn__notice > svg {
  fill: var(--color-black);
  transform: rotate(90deg);
  top: 35%;
}
.c-btn__notice.active > svg {
  transform: rotate(-90deg);
  top: 30%;
}
.c-btn__pink,.c-btn__pink > svg {
  border-color: var(--color-pink);
  color: var(--color-pink);
  fill: var(--color-pink);
}
.c-btn__orange,.c-btn__orange > svg {
  border-color: var(--color-orange);
  color: var(--color-orange);
  fill: var(--color-orange);
}
.c-btn__pink,.c-btn__orange {
  margin: 20px auto 0 auto;
}
.c-btn__nav {
  background: var(--color-blue);
  border-radius: 50px;
  border: solid 2px var(--color-blue);
  color: var(--color-white);
  display: block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 4px;
  width: 16rem;
  transition: .3s;
}
/* ボタン ホバー */
.c-btn:hover {
  background: var(--color-blue);
  color: var(--color-white);
  opacity: 1;
}
.c-btn:hover > svg,.c-btn.black:hover > svg,.c-btn__pink:hover > svg,.c-btn__orange:hover > svg {
  fill: var(--color-white);
}
.c-btn__notice:hover {
  background: var(--color-black);
}
.c-btn__pink:hover {
  background: var(--color-pink);
}
.c-btn__orange:hover {
  background: var(--color-orange);
}
.c-btn__nav:hover {
  background: var(--color-white);
  color: var(--color-blue);
  opacity: 1;
}
/* ボタン・終 */

/* 動画 */
.c-video__box {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 854px;
  margin-right: auto;
  margin-left: auto;
}
.c-video__box iframe {
  width: 100%;
  height: 100%;
}
/* 動画・終 */

/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  background: var(--color-L-green);
  border: solid 1px var(--color-D-gray);
  text-align: center;
  padding: .5em;
  vertical-align: middle;
}
td {
  border: solid 1px var(--color-D-gray);
  padding: .5em;
}
tr:nth-child(even) td {
  background: var(--color-L-gray);
}

/* レイアウト */
.l-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.l-container  {
  background: var(--color-L-gray);
  box-shadow: var(--shadow-inside);
}
.l-flex {
  display: flex;
}

@media screen and (max-width: 1200px) {
  .l-wrapper {
    padding: 0 60px 100px 60px;
  }
}
@media screen and (max-width: 870px) {
  .c-mt__header {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .l-wrapper {
    padding: 0 20px 80px 20px;
  }
  .c-btn__nav {
    padding: 2px 0px;
    width: 12rem;
  }
}
@media screen and (max-width: 450px) {
  .c-h__line {
    padding-bottom: 40px;
  }
  .c-only__pc {
    display: none;
  }
  .c-only__sp {
    display: block !important;
  }
  .c-btn {
    padding: 8px 0;
  }
  .c-txt__num {
    font-size: 4rem;
  }
  .l-flex {
    flex-direction: column;
  }
}

/* ----------

header・footer

---------- */
/* header */
.l-header {
  background: var(--color-white);
  border-bottom: solid 3px var(--color-green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 0 2em;
  position: fixed;
  top: 0;
  z-index: 3;
}
.l-header > a,.l-header li a {
  border: none;
}
.l-header__logo img {
  height: 40px;
}
.l-header__nav--bg {
  width: 100%;
}
.l-header__nav {
  width: 100%;
}
.l-header__nav ul {
  display: flex;
  justify-content: space-evenly;
  color: var(--color-blue);
  font-weight: bold;
}
.l-header__nav li {
  margin: 0 1rem;
}
@media screen and (max-width: 870px) {
  .l-header {
    height: 60px;
    padding: 0 1em;
  }
  .l-header__logo {
    margin-right: auto;
  }
  .l-header__logo img {
    height: 30px;
  }
  /* ハンバーガー背景 */
  .l-header__nav--bg {
    width: initial;
  }
  .l-header__nav--bg.active {
    background: rgb(51,51,51,.7);
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 60px;
    left: 0;
  }
  /* ハンバーガーメニュー */
  .l-header__nav {
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    position: fixed;
    top: 60px;
    right: 0;
    transform: translateX(100%);
    transition: .3s;
    visibility: hidden;
    width: 40vw;
    max-width: 300px;
    height: 100vh;
    z-index: 1;
  }
  .l-header__nav ul {
    display: block;
    max-width: 700px;
    margin: 0 auto;
  }
  .l-header__nav li {
    margin-top: 30px;
  }
  /* メニュー表示 */
  .l-header__nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
  }
  /* ハンバーガーメニューボタン */
  .c-btn__hum {
    cursor: pointer;
    width: 44px;
    height: 30px;
    display: block;
    margin: auto 0 auto 1em;
    position: relative;
    order: 3;
    z-index: 1;
  }
  .c-btn__hum i {
    width: 100%;
    height: 4px;
    background: var(--color-blue);
    position: absolute;
    transition: .3s;
  }
  .c-btn__hum i:nth-child(1) {
    top: 0;
  }
  .c-btn__hum i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .c-btn__hum i:nth-child(3) {
    bottom: 0;
  }
  /* クリック後 */
  .c-btn__hum.active i:nth-child(1) {
    transform: translateY(16px) rotate(-45deg);
  }
  .c-btn__hum.active i:nth-child(2) {
    opacity: 0;
  }
  .c-btn__hum.active i:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
  }
  /* ハンバーガー終 */
}

/* footer */
.l-footer {
  background: #575757;
  color: var(--color-white);
  padding-bottom: 20px;
}
.l-footer__nav {
  justify-content: center;
  align-items: stretch;
  padding: 40px 0;
}
.l-footer__nav ul {
  border-left: solid 1px var(--color-white);
  padding-left: 12px;
  width: 240px;
}
.l-footer__nav li {
  margin-bottom: 10px;
}
.l-footer__nav a {
  border: none;
  color: var(--color-white);
  font-weight: bold;
}
@media screen and (max-width: 450px) {
  .l-footer__nav {
    padding: 40px 20px;
  }
  .l-footer__nav ul {
    border-left: none;
    padding-left: 0;
    width: 100%;
  }
  .l-footer__nav li {
    margin-bottom: 0;
  }
  .l-footer__nav li a {
    border-bottom: solid 1px var(--color-white);
    display: block;
    padding: 1em  0 1em 1em;
  }
  .l-footer__nav ul:first-child > li:first-child {
    border-top: solid 1px var(--color-white);
  }
}