@charset "UTF-8";
:root {
  --white: #ffffff;
  --white-eb: #ebebeb;
  --white-4e: #e4e4e4;
  --black: #000000;
  --gray-dark: #1d1d1d;
  --gray: #212121;
  --gray-light: #323232;
  --lightgray-dark: #4f4f4f;
  --lightgray: #787878;
  --lightgray-light: #919191;
  --main-color: #1964fb;
  --main-color-light: #75c3ff;
  --ac-color: #fff34a;
  --ff-default: "Avenir", "Helvetica Neue", "Helvetica", "Arial",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
    "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック";
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック";
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: gray;
  font-size: 16px;
  font-family: var(--ff-default, "Avenir", "Helvetica Neue", "Helvetica", "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック");
  letter-spacing: 0.2em;
  background-size: cover;
  /* overflow: hidden; ← 一旦外す！ */
}

ul {
  list-style: none;
  margin-inline: 0;
  padding-inline: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

a {
  list-style: none;
}

.head_wrap {
  text-align: center;
  padding: 30px 0;
  background: var(--white, #fff);
}
.head_wrap h2 {
  color: var(--main-color);
  font-size: 64px;
}
.head_wrap span {
  color: var(--black);
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .head_wrap {
    padding: 15px 0;
  }
  .head_wrap h2 {
    font-size: 32px;
  }
  .head_wrap span {
    font-size: 14px;
  }
}
.eighth-section {
  padding: 3%;
  background: var(--white, #fff);
  position: relative;
}
.eighth-section .border-wrapper {
  border: 10px solid var(--main-color);
  padding: 3%;
}
.eighth-section .border-wrapper .content-wrap {
  margin: 5%;
}
.eighth-section .border-wrapper .content-wrap h5 {
  font-size: 32px;
  letter-spacing: 0.2em;
  color: var(--gray-light);
  margin-bottom: 10px;
}
.eighth-section .border-wrapper .content-wrap p {
  font-size: 20px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper {
  display: grid;
  gap: 15px;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item {
  background-color: var(--white-4e);
  padding: 2%;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item h6 {
  font-size: 24px;
  letter-spacing: 0.2em;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item h6 span {
  color: var(--main-color);
  font-family: "Alexandria", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item h5 {
  display: none;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item p {
  font-size: 20px;
  letter-spacing: 0.2em;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item ul {
  display: grid;
  gap: 10px;
  align-items: center;
  justify-content: start;
  margin-top: 30px;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item ul li {
  background-color: var(--white);
  padding: 5px;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container {
  display: grid;
  grid-template-columns: 2fr 0.5fr 2fr;
  grid-template-rows: auto;
  gap: 10px 10px;
  padding: 5%;
  grid-auto-flow: row;
  align-items: center;
  grid-template-areas: "a b c" "d i m" "e j n" "f k o" "g l p" "h s q";
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .a {
  grid-area: a;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .b {
  grid-area: b;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .c {
  grid-area: c;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .d {
  grid-area: d;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .e {
  grid-area: e;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .f {
  grid-area: f;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .g {
  grid-area: g;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .h {
  grid-area: h;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .i {
  grid-area: i;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .j {
  grid-area: j;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .k {
  grid-area: k;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .l {
  grid-area: l;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .s {
  grid-area: s;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .m {
  grid-area: m;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .n {
  grid-area: n;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .o {
  grid-area: o;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .p {
  grid-area: p;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .q {
  grid-area: q;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container div {
  background: var(--white);
  padding: 5px;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container div.arrow {
  background: transparent;
  width: 15px;
  text-align: center;
  margin: auto;
  padding: 0px;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container div.arrow svg {
  color: rgb(145, 145, 145);
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .container div.hed {
  background: transparent;
  font-size: 20px;
  letter-spacing: 0.2em;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .img-wrapper {
  display: grid;
  gap: 50px;
  justify-content: center;
  margin: 10px auto;
  max-width: 1280px;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .img-wrapper .card-training {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 337px;
  width: 100%;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .img-wrapper .card-training img {
  width: 100%;
}
.eighth-section .border-wrapper .content-wrap .table-wrapper .item .img-wrapper .card-training span {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .eighth-section {
    padding: 2%;
    top: 0;
  }
  .eighth-section .border-wrapper {
    border: 3px solid var(--main-color);
    padding: 1%;
  }
  .eighth-section .border-wrapper .content-wrap {
    margin: 1%;
  }
  .eighth-section .border-wrapper .content-wrap h5 {
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .eighth-section .border-wrapper .content-wrap p {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper {
    display: grid;
    gap: 15px;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item {
    padding: 2%;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item h6 {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item h5 {
    font-size: 20px;
    display: block;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item p {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item ul {
    gap: 10px;
    margin-top: 10px;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item ul li {
    padding: 5px;
    font-size: 12px;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0;
    grid-auto-flow: row;
    align-items: center;
    gap: 0;
    grid-template-areas: "a" "b" "b" "c" "d" "e" "f" "g" "h" "i" "j";
    font-size: 14px;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .d {
    grid-area: a;
    background: transparent !important;
    font-weight: 700;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .e {
    grid-area: c;
    background: transparent !important;
    font-weight: 700;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .f {
    grid-area: e;
    background: transparent !important;
    font-weight: 700;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .g {
    grid-area: g;
    background: transparent !important;
    font-weight: 700;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .h {
    grid-area: i;
    background: transparent !important;
    font-weight: 700;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .m {
    grid-area: b;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .n {
    grid-area: d;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .o {
    grid-area: f;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .p {
    grid-area: h;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container .q {
    grid-area: j;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container div {
    padding: 5px;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container div.arrow {
    display: none;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .container div.hed {
    display: none;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .img-wrapper {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    padding: 0 25px;
    gap: 15px;
    align-items: center;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .img-wrapper .card-training {
    max-width: 250px;
    font-size: 12px;
    letter-spacing: normal;
  }
  .eighth-section .border-wrapper .content-wrap .table-wrapper .item .img-wrapper .card-training span {
    font-size: 12px;
  }
}/*# sourceMappingURL=index.css.map */