@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,200,300,400,500,600,700,800,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:100,200,300,400,500,600,700,800,900&display=swap");

:root {
  --blue: #008cd6;
  --water: #c9e4f2;
  --text: #222;
  --orange: #f64812;
}

* {
  border: medium none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8em;
  font-weight: normal;
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: #222;
  box-sizing: border-box;
  letter-spacing: 0.05em;
}

@media (width < 750px) {
  * {
    font-size: 14px;
  }
}

@media print {
  html {
    display: none !important;
  }
}

strong {
  font-weight: bold;
}

img {
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
}

/*a:hover img, input[type="image"]:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
    border: none;
}*/
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

/* iOSでのデフォルトスタイルをリセット */
body {
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s opacity ease-out, 1s transform ease-out;
}
.fade.scrollin {
  opacity: 1;
  transform: translateY(0px);
}

body.nav_open {
  overflow: hidden;
}

.gnav_btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 12;
  border-radius: 50%;
  background-color: var(--blue);
  cursor: pointer;
}

.gnav_btn span {
  width: 26px;
  height: 3px;
  background-color: #fff;
  position: absolute;
}

.gnav_btn span:nth-of-type(1) {
  top: 16px;
  left: 17px;
  transition: 0.2s all ease-out;
}
.gnav_btn span:nth-of-type(2) {
  top: 24px;
  left: 17px;
  transition: 0.2s all ease-out;
}
.gnav_btn span:nth-of-type(3) {
  top: 32px;
  left: 17px;
  transition: 0.2s all ease-out;
}

body.nav_open .gnav_btn span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 24px;
}
body.nav_open .gnav_btn span:nth-of-type(2) {
  opacity: 0;
}
body.nav_open .gnav_btn span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 24px;
}

.gnav_btn p {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 10px;
  left: 0px;
  color: #fff;
  font-size: 12px;
  line-height: 1em;
}

.menu {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: -1;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

body.nav_open .menu {
}

.menu::before {
  content: "";
  -ernkit-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  display: block;
  position: fixed;
  right: 35px;
  top: 40px;
  width: 2rem;
  height: 2rem;
  z-index: 1;
  background: #f5f5f5;
  border-radius: 50%;
  -webkit-transition: transform 0.6s ease-out, background-color 0.3s ease-out;
  transition: transform 0.6s ease-out, background-color 0.3s ease-out;
}

body.nav_open .menu::before {
  -ernkit-transform: scale(200);
  -webkit-transform: scale(200);
  transform: scale(200);
}

.menu_inner {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}

.menu_title {
  display: block;
  max-width: 390px;
  width: 40%;
  position: relative;
  z-index: 2;
  animation-delay: 0s;
  animation-duration: 0.5s;
}

body.nav_open .menu_title {
  animation-delay: 0.3s;
  animation-duration: 1s;
}

.menu_title img {
  width: 100%;
}

.gnav {
  margin-left: 140px;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.gnav ul {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}

.gnav ul li {
  width: 49%;
  display: flex;
  flex-flow: wrap;
}

.gnav ul li:nth-of-type(n + 3) {
  margin-top: 2%;
}

.gnav ul li a {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
  background-color: var(--blue);
  border-radius: 10px;
  width: 100%;
  padding: 10px 10px 0px;
  border: 5px solid var(--blue);
}

@media (any-hover: hover) {
  .gnav ul li a:hover {
    background-color: #fff !important;
  }
}

.gnav ul li a div {
  margin-bottom: 10px;
  flex-grow: 1;
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}

.gnav ul li a div p {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4em;
  text-align: center;
}

.gnav ul li a div p ruby {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

.gnav ul li a div p ruby rt {
  font-size: 10px;
  font-weight: inherit;
  color: inherit;
}

@media (any-hover: hover) {
  .gnav ul li a:hover div p {
    color: var(--blue);
  }
  .gnav ul li:nth-of-type(n + 1):nth-of-type(-n + 2) a:hover div p {
    color: var(--blue);
  }
}

.gnav ul li a div p span {
  font: inherit;
  color: inherit;
  display: inline-block;
}

.gnav ul li a img {
  max-width: 120px;
}

body.nav_open .gnav > ul > li:nth-of-type(1) {
  animation-delay: 0.1s;
  animation-duration: 1s;
}

body.nav_open .gnav > ul > li:nth-of-type(2) {
  animation-delay: 0.2s;
  animation-duration: 1s;
}

body.nav_open .gnav > ul > li:nth-of-type(3) {
  animation-delay: 0.3s;
  animation-duration: 1s;
}
body.nav_open .gnav > ul > li:nth-of-type(4) {
  animation-delay: 0.4s;
  animation-duration: 1s;
}
body.nav_open .gnav > ul > li:nth-of-type(5) {
  animation-delay: 0.5s;
  animation-duration: 1s;
}
body.nav_open .gnav > ul > li:nth-of-type(6) {
  animation-delay: 0.6s;
  animation-duration: 1s;
}
body.nav_open .gnav > ul > li:nth-of-type(7) {
  animation-delay: 0.7s;
  animation-duration: 1s;
}
body.nav_open .gnav > ul > li:nth-of-type(8) {
  animation-delay: 0.8s;
  animation-duration: 1s;
}
body.nav_open .gnav > ul > li:nth-of-type(9) {
  animation-delay: 0.9s;
  animation-duration: 1s;
}
body.nav_open .gnav > ul > li:nth-of-type(10) {
  animation-delay: 1s;
  animation-duration: 1s;
}
body.nav_open .gnav > ul > li:nth-of-type(11) {
  animation-delay: 1.1s;
  animation-duration: 1s;
}
body.nav_open .gnav > ul > li:nth-of-type(12) {
  animation-delay: 1.2s;
  animation-duration: 1s;
}

.back_8020_menu {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 50px;
  border: 2px solid var(--blue);
  color: var(--blue);
  transition: 0.2s color ease-out, 0.2s background-color ease-out;
  margin-top: 20px;
  animation-delay: 0s;
  animation-duration: 0.2s;
}

body.nav_open .back_8020_menu {
  animation-delay: 0.7s;
  animation-duration: 1s;
}

@media (any-hover: hover) {
  .back_8020_menu:hover {
    color: #fff;
    background-color: var(--blue);
  }
}

@media (width < 1400px) {
  .gnav {
    margin-left: 50px;
    max-width: 620px;
  }
}

@media (width < 1100px) {
  .menu_inner {
    flex-flow: column;
  }
  .menu_title {
    width: 80%;
  }
  .gnav {
    margin-left: 0px;
    margin-top: 30px;
  }
  .menu_inner {
    width: 90%;
  }
}

@media (width < 767px) {
  .gnav ul li a img {
    display: none;
  }
}

@media (width < 640px) {
  .gnav > ul > li dl dt p {
    font-size: 32px;
  }
}

@media (width < 380px) {
  .gnav {
    width: 100%;
  }
  .gnav ul li {
    width: 100%;
  }
  .gnav ul li:nth-of-type(n + 2) {
    margin-top: 2%;
  }
  .gnav ul li a div p {
    font-size: 14px;
  }
}

@media (width >= 1101px) and (max-height: 660px) {
  .menu {
    display: block;
    overflow-y: scroll;
    padding: 50px 0px;
  }
  .menu_inner {
    margin: 0 auto;
  }
}

@media (width < 1100px) and (max-height: 800px) {
  .menu {
    display: block;
    overflow-y: scroll;
    padding: 50px 0px;
  }
  .menu_inner {
    margin: 0 auto;
  }
}
footer {
  background: var(--water);
}
footer .foot_content {
  padding: 60px 10px 40px;
  text-align: center;
}
footer .foot_content a {
  display: inline-block;
  width: 70%;
  max-width: 300px;
  margin-bottom: 30px;
}
footer .foot_content a img {
  width: 100%;
}
footer .foot_content dl dt {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

footer .foot_content aside {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #655c4c;
}

footer .foot_content aside span {
  font: inherit;
  color: inherit;
  display: inline-block;
}

@media (width < 480px) {
  footer .foot_content dl dt {
    font-size: 16px;
  }
}
footer .foot_content dl dd {
  color: #655c4c;
}
@media (width < 480px) {
  footer .foot_content dl dd {
    font-size: 14px;
  }
}
footer .copyright {
  background-color: var(--blue);
  padding: 10px;
  text-align: center;
}
footer .copyright span {
  font-size: 13px;
  color: #fff;
  display: inline-block;
  margin: 0px 10px;
}

.pager {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin-top: 80px;
}
.pager li {
  display: flex;
  margin: 10px 20px;
  max-width: 475px;
  width: 90%;
}
.pager li a {
  display: flex;
  width: 100%;
  height: 85px;
  border-top: 1px solid #ccc;
}
@media (width < 480px) {
  .pager li a {
    height: 60px;
  }
}
.pager li a div.name {
  display: grid;
  place-content: center;
  width: calc(100% - 80px);
  padding: 0px 10px;
}
@media (width < 480px) {
  .pager li a div.name {
    width: calc(100% - 60px);
  }
}
@media (width < 380px) {
  .pager li a div.name {
    width: calc(100% - 40px);
  }
}
.pager li a div.name img {
  width: 43px;
  margin-right: 15px;
}
@media (width < 480px) {
  .pager li a div.name img {
    width: 25px;
  }
}
.pager li a div.name p {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

.pager li a div.name p ruby {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

.pager li a div.name p ruby rt {
  font-size: 11px;
  color: inherit;
}

@media (width < 480px) {
  .pager li a div.name p {
    font-size: 14px;
  }
}
@media (width < 380px) {
  .pager li a div.name p {
    font-size: 12px;
  }
}
.pager li a div.name p span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  display: inline-block;
}
.pager li a div.arrow {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 80px;
}
@media (width < 480px) {
  .pager li a div.arrow {
    width: 60px;
  }
}
@media (width < 380px) {
  .pager li a div.arrow {
    width: 40px;
  }
}

.pager li a div.arrow span {
  color: #fff;
  font-size: 14px;
  margin-bottom: 5px;
}
@media (width < 480px) {
  .pager li a div.arrow span {
    font-size: 12px;
  }
}
.pager li a div.arrow::after {
  content: "";
  display: block;
  border-bottom: 1px solid #fff;
  width: 20px;
  height: 10px;
}
@media (width < 380px) {
  .pager li a div.arrow::after {
    width: 15px;
    height: 5px;
  }
}
.pager li.next a {
  border-left: 1px solid #ccc;
  border-bottom: 2px solid var(--blue);
}

.pager li.next a.orange {
  border-bottom: 2px solid var(--blue);
}

.pager li a div.name p {
  color: var(--blue);
}
.pager li a.orange div.name p {
  color: var(--blue);
}
.pager li.next a div.arrow::after {
  border-right: 1px solid #fff;
  transform: skewX(45deg);
  margin-right: 10px;
}
.pager li.prev a {
  border-right: 1px solid #ccc;
  border-bottom: 2px solid var(--blue);
}
.pager li.prev a.orange {
  border-bottom: 2px solid var(--blue);
}
.pager li a div.arrow {
  background-color: var(--blue);
}
.pager li a.orange div.arrow {
  background-color: var(--blue);
}
.pager li.prev a div.arrow::after {
  border-left: 1px solid #fff;
  transform: skewX(-45deg);
  margin-left: 10px;
}

.content_wrap > p {
  margin-bottom: 70px;
}
@media (width < 767px) {
  .content_wrap > p {
    margin-bottom: 30px;
  }
}
.img {
  max-width: 100%;
  display: block;
  margin: 0 auto 70px;
}

.img2 {
  max-width: 80%;
  display: block;
  margin: 0 auto 70px;
}

header {
  max-width: 1200px;
  width: 94%;
  padding: 30px 0px;
  margin: 0 auto;
  display: flex;
  flex-flow: wrap;
  align-items: center;
}

header a {
  max-width: 300px;
  width: 60%;
  display: block;
}

header a img {
  width: 100%;
}

.content_wrap {
  padding-top: 30px;
  max-width: 1200px;
  width: 94%;
  margin: 0 auto 140px;
}

.content_wrap aside {
  font-size: 12px;
}

.topMain {
  height: 100dvh;
  background: url(../images/main__bg.svg) repeat-x center bottom/auto 50%,
    linear-gradient(#9ed8f6 45%, #72af2d, #72af2d);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-evenly;
  position: relative;
  padding-bottom: 12vh;
}

.topMain__logo {
  display: block;
  max-width: 670px;
  width: 70%;
  position: absolute;
  left: calc(50% - 335px);
  top: 10vh;
  z-index: 2;
  opacity: 0;
  transition: 0.3s opacity 1.6s ease-out;
}

.topMain.loaded .topMain__logo {
  opacity: 1;
}

.topMain__logo--img {
  width: 100%;
}

.topMain__kentaro {
  width: 250px;
  opacity: 0;
  translate: 5vw -4vh;
  transition: 0.3s opacity ease-out, 0.7s translate ease-out;
}

.topMain.loaded .topMain__kentaro {
  opacity: 1;
  translate: 0px 0px;
}

.topMain__erika {
  width: 280px;
  opacity: 0;
  translate: -5vw -2vw;
  transition: 0.3s opacity 0.8s ease-out, 0.7s translate 0.8s ease-out;
}

.topMain.loaded .topMain__erika {
  opacity: 1;
  translate: 0px 0px;
}

@media (max-width: 980px) {
  .topMain {
    width: 100%;
    aspect-ratio: 980 / 910;
    height: auto;
    padding-bottom: 11.14vw;
  }
  .topMain__logo {
    left: 15%;
    top: 9.28vw;
  }
  .topMain__kentaro {
    width: 25.5%;
  }
  .topMain__erika {
    width: 28.57%;
  }
}

.topLinkList {
  max-width: 1200px;
  width: 94%;
  margin: 70px auto;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.topLinkList__content {
  width: calc((100% - 20px) / 3);
}

.topLinkList__link {
  border-radius: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100px;
  background-color: #fada24;
  padding: 0 10px;
}

.topLinkList__link:hover {
  background-color: #fa9624;
}

.topLinkList__link--txt {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2em;
}

.topLinkList__link--ib {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

@media (max-width: 767px) {
  .topLinkList__content:nth-of-type(n - 4),
  .topLinkList__content:nth-of-type(n + 5) {
    width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 480px) {
  .topLinkList__content:nth-of-type(n - 4),
  .topLinkList__content:nth-of-type(n + 5) {
    width: 100%;
  }
}

.scrollDown {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 20px);
  width: 40px;
  display: flex;
  flex-flow: column;
  align-items: center;
}

.scrollDown::before {
  content: url(../images/scrolldown.svg);
  animation: scrollDown 1.5s ease-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.scrollDown__txt {
  color: #fff;
}

.h1_title {
  margin-bottom: 100px;
}

.h1_title > span {
  display: inline-flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0px 20px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-color: var(--blue);
  margin-bottom: 15px;
}

.h1_title > span.orange {
  background-color: var(--blue);
}

.h1_title p {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2em;
}

.h1_title p span {
  font: inherit;
  display: inline-block;
}

.h1_title p ruby {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1_title p ruby rt {
  font-size: 14px;
}

@media (width < 900px) {
  .h1_title {
    margin-bottom: 50px;
  }
  .h1_title > span {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .h1_title > span > span {
    font-size: 16px;
    width: 70px;
    height: 30px;
  }
  .h1_title p {
    font-size: 30px;
  }
}

@media (width < 480px) {
  .h1_title p {
    font-size: 24px;
  }
}

.h2_title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  padding: 10px;
  line-height: 1.2em;
  background-color: var(--blue);
  color: #fff;
  border-top-right-radius: 20px;
}

.h2_title:not(:first-of-type) {
  margin-top: 70px;
}

.h2_title.orange {
  background-color: var(--blue);
}

p + .h2_title {
  margin-top: 70px;
}

@media (width < 900px) {
  .h2_title {
    font-size: 24px;
  }
}
@media (width < 480px) {
  .h2_title {
    font-size: 20px;
  }
}

.h3_title {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  border-left: 5px solid var(--blue);
  padding-left: 10px;
  margin-bottom: 30px;
}

@media (width < 767px) {
  .h3_title {
    font-size: 20px;
  }
}

.h4_title {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (width < 767px) {
  .h4_title {
    font-size: 18px;
  }
}

.list01 {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  counter-reset: list01 0;
  margin-bottom: 30px;
  gap: 20px 2%;
}

.list01__content {
  width: 49%;
  border-radius: 10px;
  background-color: var(--water);
  padding: 20px;
}

.list01__title {
  display: flex;
  flex-flow: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.list01__title::before {
  content: counter(list01);
  counter-increment: list01 1;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1em;
  width: 40px;
  height: 40px;
  background-color: var(--blue);
}

.list01__title--txt {
  width: calc(100% - 50px);
  margin-top: 5px;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.4em;
}

.list01__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.list01__inner.noFlex {
  display: block;
}

.list01__inner.noFlex .list01__img {
  margin-top: 20px;
}

.list01__imgList {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 20px;
}

.list01__imgList--img {
  width: 23%;
}

.list01__list--content {
  text-indent: -1.5em;
  margin-left: 1.5em;
}

.list01__list--content::before {
  content: "●";
  color: var(--blue);
}

@media (width < 900px) {
  .list01__inner {
    flex-flow: column;
    align-items: center;
  }
  .list01__img,
  .list01__imgList {
    margin-top: 20px;
  }
}

@media (width < 640px) {
  .list01__content {
    width: 100%;
  }
}

.content01 {
  border-radius: 10px;
  background-color: var(--water);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.content01__img {
  margin-left: 20px;
}

@media (width < 640px) {
  .content01 {
    flex-flow: column;
    align-items: center;
  }
  .content01__img {
    margin-left: 0px;
    margin-top: 20px;
    width: 80%;
    max-width: 200px;
  }
}

.list02 {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  row-gap: 30px;
}

.list02__content {
  width: 48%;
  display: flex;
  justify-content: space-between;
}

.list02__title {
  color: var(--blue);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.list02__txt {
  margin-left: 20px;
}

.list02__img {
  margin-left: 20px;
}

.list02__img--09 {
  width: 94%;
  max-width: 350px;
  display: block;
  margin: 20px auto 0;
}

@media (width < 767px) {
  .list02 {
    display: block;
  }
  .list02__content {
    width: 100%;
  }
  .list02__content + .list02__content {
    margin-top: 30px;
  }
  .list02__title {
    font-size: 20px;
  }
}
@media (width < 420px) {
  .list02__content {
    flex-flow: column;
    align-items: center;
  }
  .list02__dl {
    width: 100%;
  }
}

.aside {
  margin-bottom: 70px;
}

.illustList {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin-bottom: 70px;
  gap: 30px 5%;
}

.illustList__content {
  width: 30%;
  max-width: 280px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.illustList__img {
  width: 100%;
}

.illustList__txt {
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  border: 1px solid #222;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  height: 40px;
}

@media (max-width: 580px) {
  .illustList__content {
    width: 46%;
  }
}

.yellowBnr {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5cc00;
  font-size: 26px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .yellowBnr {
    font-size: 20px;
  }
}

.imgList2 {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin-bottom: 70px;
  gap: 30px;
}

.imgList2__content {
  width: calc(50% - 15px);
  max-width: 280px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}

.imgList2__img {
  width: 100%;
}

.list03 {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  row-gap: 30px;
}

.list03__content {
  width: 48%;
  display: flex;
  justify-content: space-between;
}

.list03__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.list03__title--orange {
  color: var(--orange);
  font-size: inherit;
  font-weight: inherit;
}

.list03__txt {
  margin-left: 20px;
}

.list03__img {
  margin-left: 20px;
}

@media (width < 767px) {
  .list03__content {
    width: 100%;
  }
  .list03__content + .list03__content {
    margin-top: 30px;
  }
}
@media (width < 420px) {
  .list03__content {
    flex-flow: column;
    align-items: center;
  }
  .list03__dl {
    width: 100%;
  }
}

.txtList {
  margin-bottom: 30px;
}

.txtList__content {
  text-indent: -1em;
  margin-left: 1em;
}

.img_62 {
  display: block;
  max-width: 80%;
  margin-inline: auto;
}

.content02 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 70px;
}

.content02__txt {
  max-width: 50%;
}

.content02__img {
  margin-left: 30px;
  max-width: 45%;
}

@media (width < 640px) {
  .content02 {
    flex-flow: column;
    align-items: center;
  }
  .content02__txt {
    max-width: none;
  }
  .content02__img {
    margin-left: 0px;
    margin-top: 20px;
    max-width: 80%;
  }
}

.sportsAttend {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
}

.sportsAttend__img {
  width: 150px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .sportsAttend {
    flex-flow: column;
    align-items: center;
  }
}

.img_01-1 {
  max-width: 800px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.taisetsu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
}

.taisetsu__inner {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 30px;
}

.taisetsu__img {
  max-width: 300px;
  width: 80%;
}

.taisetsu__graph {
  width: 48%;
  max-width: 400px;
}

@media (max-width: 580px) {
  .taisetsu {
    flex-flow: column;
    align-items: center;
  }
  .taisetsu__graph {
    width: 70%;
  }
}

.kegayobou {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
}

.kegayobou__inner {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  gap: 30px;
}

.kegayobou__fukidashi {
  max-width: 300px;
  width: 80%;
}

.kegayobou__img--wrap {
  max-width: 432px;
  width: 48%;
  flex-shrink: 0;
}

.kegayobou__img {
  width: 100%;
}

.kegayobou__img--aside {
  text-align: right;
  margin-top: 5px;
}

@media (max-width: 580px) {
  .kegayobou {
    flex-flow: wrap;
    align-items: center;
  }
  .kegayobou__img--wrap {
    max-width: none;
    width: 80%;
    margin-inline: auto;
  }
}

.highrisk__img {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  margin-bottom: 50px;
}

.highrisk__img--img {
  width: 17%;
}
.highrisk__img--img2 {
  width: 22%;
}

@media (max-width: 580px) {
  .highrisk__img {
    flex-wrap: wrap;
    gap: 8vw 0;
  }
  .highrisk__img--img,
  .highrisk__img--img2 {
    width: 40%;
  }
}

.img_08-2 {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto 30px;
}

.img_08-2--aside {
  text-align: right;
}

.yakuwari {
  display: flex;
  margin-bottom: 70px;
  gap: 30px;
}

.yakuwariList__content {
  color: var(--blue);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  text-indent: -1.5em;
  margin-left: 1.5em;
}

.yakuwariList__img {
  width: 100%;
  max-width: 300px;
}

@media (max-width: 767px) {
  .yakuwari {
    flex-flow: column;
    align-items: center;
  }
  .yakuwariList__content {
    font-size: 20px;
  }
}

.customList {
  display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
  margin-bottom: 30px;
  row-gap: 30px;
}

.customList__content {
  width: 48%;
  max-width: 500px;
}

.customList__img {
  width: 100%;
}

.customList__txt {
  margin-top: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.customList__txt--small {
  font-size: 14px;
  text-align: center;
}

.customList__aside {
  text-align: right;
  font-size: 14px;
  margin-top: 10px;
}

@media (max-width: 580px) {
  .customList__content {
    width: 100%;
  }
}

.koukaList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 4%;
}

.koukaList__content.half {
  width: 48%;
}

.koukaList__txt {
  font-size: 26px;
  font-weight: 700;
  text-indent: -1.5em;
  margin-left: 1.5em;
}

.koukaList__txt--orange {
  color: var(--orange);
  font-size: inherit;
  font-weight: inherit;
}

.koukaList__img {
  display: block;
  margin: 30px auto 0;
}

@media (max-width: 767px) {
  .koukaList__txt {
    font-size: 20px;
  }
  .koukaList__content.half {
    width: 100%;
  }
}

.img_21 {
  width: 80%;
  max-width: 600px;
}

.img_22 {
  width: 80%;
  max-width: 200px;
}

.img_23 {
  width: 80%;
  max-width: 200px;
}

.featureTable__wrap {
  margin-bottom: 30px;
}

.featureTable {
  min-width: 700px;
}

.featureTable tr:first-child {
  border-bottom: 1px solid #aaa;
}

.featureTable tr:first-child th:not(:first-child),
.featureTable tr:not(:first-child) td {
  border-left: 1px solid #aaa;
}

.featureTable tr:not(:first-child) {
  border-bottom: 1px dashed #aaa;
}

.featureTable tr:last-child {
  border-bottom: none;
}

.featureTable tr:first-child th:first-child {
  background-color: #eee;
}

.featureTable tr:not(:first-child) th:first-child {
  background-color: #5283c3;
  color: #fff;
}
.featureTable th:nth-of-type(2) {
  background-color: #fff2b8;
}
.featureTable th:last-child {
  background-color: #d3ddf1;
}

.featureTable td:first-child {
  background-color: #dff2fc;
}
.featureTable td:nth-of-type(2) {
  background-color: #fffde4;
}

.featureTable th,
.featureTable td {
  padding: 15px;
}

.featureTable__th {
  color: var(--blue);
  font-weight: 700;
}

.img_24 {
  width: 80%;
  max-width: 600px;
  display: block;
  margin: 50px auto 10px;
}

.img_29 {
  width: 80%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
}

.img_24__aside {
  text-align: center;
  font-size: 14px;
}

.kindsTable__wrap {
  margin-bottom: 30px;
}

.kindsTable {
  min-width: 700px;
}

.kindsTable tr:first-child {
  border-bottom: 1px solid #aaa;
}

.kindsTable tr:first-child th:not(:first-child),
.kindsTable tr td:not(:first-child),
.kindsTable tr:last-child td {
  border-left: 1px solid #aaa;
}

.kindsTable tr:not(:first-child) {
  border-bottom: 1px dashed #aaa;
}

.kindsTable tr:last-child {
  border-bottom: 1px solid #aaa;
}

.kindsTable th,
.kindsTable td {
  padding: 15px;
}

.kindsTable td:first-child {
  text-align: center;
}

.kindsTable__th {
  color: var(--blue);
  font-weight: 700;
}

.kindsTable__txt--bold {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.kindsTable__img {
  width: 60px;
  margin-top: 10px;
}

.kindsTable th:first-child {
  background-color: #5283c3;
  color: #fff;
}
.kindsTable th:nth-of-type(2) {
  background-color: #fff2b8;
}
.kindsTable th:last-child {
  background-color: #d3ddf1;
}

.kindsTable td:first-child {
  background-color: #dff2fc;
}
.kindsTable td:nth-of-type(2),
.kindsTable td:first-child.bg__yellow {
  background-color: #fffde4;
}

.kindsList {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 30px;
  gap: 20px 5%;
  margin-top: 30px;
}

.kindsList__content {
  width: 30%;
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
}

.kindsList__img {
  width: 100%;
}

.kindsList__img--aside {
  position: absolute;
  top: 2%;
  right: -25%;
  width: 30%;
}

.kindsList__txt {
  font-size: 14px;
  margin-top: 10px;
}

@media (width < 767px) {
  .kindsList {
    gap: 20px 6%;
  }
  .kindsList__content {
    width: 47%;
  }
}

.gimuTable__wrap {
  margin-bottom: 30px;
}

.gimuTable {
  min-width: 700px;
  width: 100%;
}

.gimuTable tr:first-child {
  border-bottom: 1px solid #aaa;
}

.gimuTable tr:first-child th:not(:first-child),
.gimuTable tr td:not(:first-child) {
  border-left: 1px solid #aaa;
}

.gimuTable tr:not(:first-child) {
  border-bottom: 1px dashed #aaa;
}

.gimuTable tr:last-child {
  border-bottom: 1px solid #aaa;
}

.gimuTable th,
.gimuTable td {
  padding: 15px;
}

.gimuTable th:first-child {
  background-color: #5283c3;
  color: #fff;
}
.gimuTable th:nth-of-type(2) {
  background-color: #fff2b8;
}
.gimuTable th:last-child {
  background-color: #d3ddf1;
}

.gimuTable td:first-child {
  background-color: #dff2fc;
}
.gimuTable td:nth-of-type(2) {
  background-color: #fffde4;
}

.suisyoTable__wrap {
  margin-bottom: 30px;
}

.suisyoTable {
  min-width: 250px;
  width: 100%;
}

.suisyoTable tr:first-child {
  border-bottom: 1px solid #aaa;
}

.suisyoTable tr:first-child th:not(:first-child) {
  border-left: 1px solid #aaa;
}

.suisyoTable tr:not(:first-child) {
  border-bottom: 1px dashed #aaa;
}

.suisyoTable tr:last-child {
  border-bottom: 1px solid #aaa;
}

.suisyoTable th,
.suisyoTable td {
  padding: 15px;
}

.suisyoTable th:first-child {
  background-color: #fac559;
}

.suisyoTable th:last-child {
  background-color: #5283c3;
  color: #fff;
}

.suisyoTable tr td.border {
  border-right: 1px solid #aaa;
  text-align: center;
  color: #ea5405;
  font-weight: 700;
}
.suisyoTable td:last-child {
  background-color: #d3ddf1;
}
.kyokaTable__wrap {
  margin-bottom: 30px;
}

.kyokaTable {
  min-width: 700px;
  width: 100%;
}

.kyokaTable tr:first-child {
  border-bottom: 1px solid #aaa;
}

.kyokaTable tr:first-child th:not(:first-child),
.kyokaTable tr td:not(:first-child) {
  border-left: 1px solid #aaa;
}

.kyokaTable tr td.border {
  border-right: 1px solid #aaa;
  text-align: center;
}

.kyokaTable tr:not(:first-child) {
  border-bottom: 1px dashed #aaa;
}

.kyokaTable tr:last-child {
  border-bottom: 1px solid #aaa;
}

.kyokaTable th,
.kyokaTable td {
  padding: 15px;
}

.kyokaTable th:first-child {
  background-color: #5283c3;
  color: #fff;
}
.kyokaTable th:nth-of-type(2) {
  background-color: #fff2b8;
}
.kyokaTable th:last-child {
  background-color: #d3ddf1;
}

.kyokaTable td:first-child {
  background-color: #dff2fc;
}
.kyokaTable td:nth-of-type(2) {
  background-color: #fffde4;
}

.otherSportsList {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 30px;
  gap: 20px 10px;
}

.otherSportsList__content {
  width: calc((100% - 20px) / 3);
  display: flex;
  flex-flow: column;
  align-items: center;
  border: 1px solid #aaa;
  padding: 10px;
  border-radius: 10px;
  background-color: #dff2fc;
}

@media (width < 900px) {
  .otherSportsList__content {
    width: calc((100% - 10px) / 2);
  }
}
@media (width < 420px) {
  .otherSportsList__content {
    width: 100%;
  }
}

.seigenTable {
  width: 100%;
  margin-bottom: 30px;
}

.seigenTable tr:first-child {
  border-bottom: 1px solid #aaa;
}

.seigenTable tr:first-child th:not(:first-child),
.seigenTable tr td:not(:first-child) {
  border-left: 1px solid #aaa;
}

.seigenTable tr td.border {
  border-right: 1px solid #aaa;
  text-align: center;
}

.seigenTable tr:not(:first-child) {
  border-bottom: 1px dashed #aaa;
}

.seigenTable tr:last-child {
  border-bottom: 1px solid #aaa;
}

.seigenTable th,
.seigenTable td {
  padding: 15px;
}

.seigenTable th:first-child {
  min-width: 100px;
  background-color: #5283c3;
  color: #fff;
}

.seigenTable th:last-child {
  background-color: #d3ddf1;
}

.seigenTable td:first-child {
  background-color: #dff2fc;
}

.flowList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}

.flowList__title {
  color: var(--blue);
  font-size: 26px;
  font-weight: 700;
  width: 270px;
}

.flowList__content {
  width: calc(100% - 270px);
}

@media (max-width: 580px) {
  .flowList {
    display: block;
  }
  .flowList__title {
    font-size: 20px;
  }
  .flowList__title,
  .flowList__content {
    width: 100%;
  }
}

.img_35 {
  max-width: 800px;
  width: 94%;
  display: block;
  margin: 40px auto 0;
}

.maintenanceList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 4%;
}

.maintenanceList__content {
  width: 48%;
}

.maintenanceList__content.wide {
  width: 100%;
}

.maintenanceList__title {
  font-size: 26px;
  font-weight: 700;
  text-indent: -1.3em;
  margin-left: 1.3em;
  line-height: 1.4em;
}

.maintenanceList__item {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.maintenanceList__txt--red {
  color: #f64812;
}

@media (max-width: 767px) {
  .maintenanceList__title {
    font-size: 20px;
  }
  .maintenanceList__content {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .maintenanceList__item {
    flex-flow: column;
    align-items: center;
    row-gap: 20px;
  }
}
.txtBox {
  background-color: #f5cc00;
  padding: 20px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4em;
}

@media (width < 768px) {
  .txtBox {
    font-size: 20px;
  }
}

.img_54 {
  max-width: 800px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.flowchart {
  display: block;
  width: 100%;
}
