@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP:wght@400..900&display=swap");
:root {
  --red: #E62727;
  --blue: #1E93AB;
  --gray1: #F3F2EC;
  --gray2: #DCDCDC;
  --gray3: #333;
  --fontSans: "Noto Sans JP", sans-serif;
  --fontSerif: "Noto Serif JP", serif;
}

html,
body {
  color: var(--gray3);
  font-family: "Noto Sans JP", sans-serif;
}

/* ハンバーガーメニュー */
/* ボタンのスタイル（右上に固定） */
.menu-trigger {
  position: fixed;
  top: 2vw;
  right: 2vw;
  width: 40px;
  height: 40px;
  z-index: 100;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  margin-bottom: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* メニュー開閉時のボタンアニメーション (×印) */
.is-active.menu-trigger span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
          transform: translateY(10px) rotate(45deg);
}

.is-active.menu-trigger span:nth-child(2) {
  opacity: 0;
}

.is-active.menu-trigger span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
          transform: translateY(-10px) rotate(-45deg);
}

/* メニュー本体（右側に隠しておく） */
.navigation {
  position: fixed;
  top: 0;
  right: -300px;
  /* メニューの幅分だけ外に出す */
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 90;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-top: 80px;
}

.navigation.is-active {
  right: 0;
  /* 画面内にスライドイン */
}

/* 背景の薄い黒 */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 80;
}

.menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* ヘッダー */
header {
  padding: 3vw;
}

.logo {
  font-weight: 900;
}

/* フッター */
footer {
  margin-top: 13vw;
}
footer small {
  display: block;
  text-align: right;
  padding: 3vw;
  background-color: var(--gray1);
}

/* デフォルト */
h1 {
  font-size: 6vw;
  margin: 0 3vw 5px;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 18px;
    margin: 0 10px 5px;
  }
}

h2 {
  color: #fff;
  font-size: 5.866666667vw;
  line-height: 1.3;
  margin: 10vw 0 10px;
  padding: 1vw 2vw;
  background-color: var(--blue);
  position: relative;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 22px;
    margin: 50px 0 10px;
    padding: 5px 10px;
  }
}
h2::before {
  content: attr(data-number);
  display: block;
  color: #1E93AB;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
h2 span {
  position: relative;
  z-index: 2;
}

h3 {
  font-size: 5vw;
  margin: 7vw 3vw 5px 1.5vw;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 18px;
    margin: 35px 0 5px;
  }
}

h4 {
  font-size: 4.166666667vw;
  margin: 4vw 3vw 5px 2vw;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 15px;
    margin: 25px 0 5px;
  }
}

p {
  font-size: 4.166666667vw;
  line-height: 1.5;
  margin: 0 3vw 5px;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 15px;
    margin: 0 10px 5px;
  }
}
p:where(.box *) {
  margin: 0 0 5px;
}
p:where(table td *) {
  font-size: 3.611111111vw;
}
@media screen and (min-width: 768px) {
  p:where(table td *) {
    font-size: 14px;
    margin: 0 0 15px;
  }
}

table {
  margin: 0 3vw 0;
  border-collapse: collapse;
}
@media screen and (min-width: 768px) {
  table {
    margin: 0 15px 0;
  }
}
table caption {
  font-size: 3.611111111vw;
  font-weight: 600;
  text-align: left;
}
@media screen and (min-width: 768px) {
  table caption {
    font-size: 14px;
  }
}
table tr {
  border-top: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray2);
}
table th,
table td {
  font-size: 3.611111111vw;
  text-align: left;
  vertical-align: top;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  table th,
  table td {
    font-size: 14px;
  }
}
table th:not(:last-child),
table td:not(:last-child) {
  border-right: 1px solid var(--gray2);
}
table th *:first-child,
table td *:first-child {
  margin-top: 0;
}
table th *:last-child,
table td *:last-child {
  margin-bottom: 0;
}
table thead th {
  -webkit-columns: #fff;
     -moz-columns: #fff;
          columns: #fff;
  background-color: #fdcd0c;
}
table tbody th {
  background-color: #f1efe7;
}

ul {
  margin: 4.166666667vw 3vw;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  ul {
    margin: 25px 15px;
  }
}
ul:where(.box *), ul:where(table td *) {
  margin: 4.166666667vw 0;
}
@media screen and (min-width: 768px) {
  ul:where(.box *), ul:where(table td *) {
    margin: 25px 0;
  }
}
ul li {
  font-size: 4.166666667vw;
  text-indent: -1em;
  line-height: 1.4;
  margin-bottom: 5px;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  ul li {
    font-size: 15px;
  }
}
ul li:where(table td *) {
  font-size: 3.611111111vw;
}
@media screen and (min-width: 768px) {
  ul li:where(table td *) {
    font-size: 14px;
  }
}
ul li::before {
  content: "・";
  display: inline-block;
  text-align: right;
  width: 1em;
}

ol {
  margin: 4.166666667vw 3vw;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  ol {
    margin: 25px 15px;
  }
}
ol:where(.box *), ol:where(table td *) {
  margin: 4.166666667vw 0;
}
@media screen and (min-width: 768px) {
  ol:where(.box *), ol:where(table td *) {
    margin: 25px 0;
  }
}
ol li {
  font-size: 4.166666667vw;
  text-indent: -2em;
  line-height: 1.4;
  margin-bottom: 5px;
  padding-left: 2em;
  counter-increment: cnt;
}
@media screen and (min-width: 768px) {
  ol li {
    font-size: 15px;
  }
}
ol li:where(table td *) {
  font-size: 3.611111111vw;
}
@media screen and (min-width: 768px) {
  ol li:where(table td *) {
    font-size: 14px;
  }
}
ol li::before {
  content: counter(cnt) "・";
  display: inline-block;
  text-align: right;
  width: 2em;
}

/* 共通class */
.txtL {
  text-align: left;
}

.txtC {
  text-align: center;
}

.txtR {
  text-align: right;
}

.txtI05 {
  text-indent: -0.5em;
}

/* class */
.block_h3 {
  padding-left: 1em;
}

.box {
  margin: 4.166666667vw 3vw;
  padding: 2.777777778vw;
  border: 1px solid var(--blue);
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .box {
    margin: 25px 15px;
    padding: 15px;
  }
}
.box:where(.box_caption + *) {
  margin-top: 0;
}
.box *:first-child {
  margin-top: 0;
}
.box *:last-child {
  margin-bottom: 0;
}

.box_caption {
  font-weight: 700;
}
.box_caption:has(+ .box) {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .box_caption:has(+ .box) {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.note_small {
  font-size: 80%;
}/*# sourceMappingURL=common.css.map */