@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, main,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
  scroll-behavior: auto;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

html {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

pre {
  white-space: pre-wrap;
}

body {
  line-height: 1.6;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  color: #232323;
  background: #e7ebe1;
}
body.fixed {
  overflow-y: hidden;
}
body.fixed #menubar span {
  background: white;
}
body.fixed #menubar span::before {
  top: 0;
  transform: rotate(45deg);
}
body.fixed #menubar span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
body.fixed #gnav {
  transform: translateX(0);
}
body.fixed #overlay {
  display: block;
}

a {
  transition: all 0.2s ease-in-out;
}

p {
  padding: 16px 0;
}

@media (max-width: 768px) {
  header {
    background: white;
    height: 64px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 11;
  }
}

#logo {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #logo {
    margin: 0;
    width: 240px;
  }
}
#logo a {
  display: block;
  width: 320px;
  max-width: 46%;
  padding: 8px;
}
@media (max-width: 768px) {
  #logo a {
    width: 100%;
    max-width: unset;
  }
}
#logo img {
  height: 100%;
}

#gnav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
}
@media (max-width: 768px) {
  #gnav {
    position: fixed;
    right: 0;
    top: 64px;
    background: #009943;
    width: 80%;
    max-width: 540px;
    height: 100vh;
    padding: 16px 32px;
    transform: translateX(100%);
    transition: all 0.2s ease-in-out;
  }
}
#gnav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (max-width: 768px) {
  #gnav ul {
    display: block;
  }
}
#gnav li {
  width: calc(25% - 6px);
}
@media (max-width: 768px) {
  #gnav li {
    width: auto;
    padding: 8px 0;
  }
}
#gnav a {
  display: block;
  text-decoration: none;
  background: white;
  border-radius: 8px;
  text-align: center;
  padding: 8px;
  color: #232323;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
}
#gnav a:hover {
  background: #009943;
  color: white;
}

#menubar {
  display: none;
}
@media (max-width: 768px) {
  #menubar {
    width: 64px;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  #menubar span {
    display: block;
    width: 64%;
    height: 2px;
    background: #009943;
    position: relative;
    transition: all 0.2s ease-in-out;
  }
  #menubar span::before, #menubar span::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #009943;
    position: absolute;
    left: 0;
    transition: all 0.2s ease-in-out;
  }
  #menubar span::before {
    top: -8px;
  }
  #menubar span::after {
    bottom: -8px;
  }
}

footer {
  margin-top: 128px;
  background: white;
  padding: 32px 8px 8px;
}
footer .logo {
  width: 240px;
  max-width: 46%;
}
footer .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
footer a {
  display: block;
  text-decoration: none;
  border-bottom: 2px solid #009943;
  color: #009943;
}

.inner {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
}

#copy {
  margin-top: 64px;
  padding: 0;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}

#overlay {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(35, 35, 35, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
}

.arrow {
  text-align: right;
  margin-top: 32px;
}
.arrow a {
  text-decoration: none;
  color: #009943;
  font-weight: bold;
}
.arrow a:hover {
  color: #ff9936;
}
.arrow a::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  font-weight: 700;
  margin-left: 8px;
}

.table {
  width: 100%;
}
.table thead th {
  background: #157487;
  color: white;
}
.table th, .table td {
  padding: 8px;
}
.table th {
  background: #6db2bf;
  color: white;
  width: 24%;
}
.table td {
  background: #e2f0f3;
}

.stage {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin: 64px auto;
  background: white;
  border-radius: 16px;
  padding: 32px;
}
@media (max-width: 768px) {
  .stage {
    padding: 32px 16px;
  }
}

.pager {
  text-align: center;
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  margin: 64px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.pager > a, .pager > span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 4px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border: 2px solid #009943;
  text-decoration: none;
  font-weight: 800;
}
@media (max-width: 768px) {
  .pager > a:not(.prev):not(.next), .pager > span:not(.prev):not(.next) {
    display: none;
  }
}
.pager > a {
  background: white;
  color: #009943;
}
.pager > a:hover {
  background: #009943;
  color: white;
}
.pager > span {
  background: #009943;
  color: white;
}

.box-green {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  margin: 32px auto;
  border: 3px solid #009943;
  background: white;
  border-radius: 8px;
  padding: 16px;
}

.title-h2 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  position: relative;
  padding-left: 16px;
}
.title-h2::before {
  content: "";
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #009943;
  border-radius: 8px;
}

.title-h1 {
  text-align: center;
  background: white;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
  padding: 32px 16px;
}

.mainvisual {
  text-align: center;
}

[class^=chap_] h2, [class*=" chap_"] h2 {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
}
[class^=chap_] h2::before, [class*=" chap_"] h2::before {
  font-family: "Font Awesome 5 Free";
  line-height: 1;
  font-weight: 700;
  font-size: 32px;
  font-size: 2rem;
  color: #009943;
  margin-right: 8px;
}

.chap_area {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin: 64px auto;
  background: #009943;
  padding: 16px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .chap_area {
    padding: 16px 8px;
  }
}
.chap_area h2 {
  color: white;
}
.chap_area h2::before {
  color: white;
  content: "\f276";
}
.chap_area .box_area {
  background: white;
  padding: 16px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .chap_area .box_area {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 16px 8px;
  }
}

.chap_ranking h2::before {
  content: "\f521";
}

.chap_column h2::before {
  content: "\f02d";
}

.chap_differ h2::before {
  content: "\f24e";
}

.chap_site h2::before {
  content: "\f0e8";
}

.select_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .select_area {
    display: block;
    width: 40%;
  }
}
.select_area li {
  padding: 0 4px;
  position: relative;
}
.select_area li.active::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #009943;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
@media (max-width: 768px) {
  .select_area li.active::after {
    content: none;
  }
}
.select_area li.active span {
  background: #009943;
  color: white;
}
.select_area li span {
  background: white;
  display: block;
  padding: 4px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.select_area li span:hover {
  background: #009943;
  color: white;
}

@media (max-width: 768px) {
  .select_pref {
    flex: 1;
  }
}
.select_pref ul {
  background: #009943;
  border-radius: 8px;
  display: none;
  padding: 8px;
}
.select_pref ul.show {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}
@media (max-width: 768px) {
  .select_pref li {
    width: calc(50% - 4px);
  }
}
.select_pref a {
  display: block;
  background: white;
  color: #232323;
  text-decoration: none;
  padding: 4px 16px;
  border-radius: 8px;
}
.select_pref a:hover {
  background: #e2f0f3;
}

.btn_select {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 16px 0;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.btn_select li {
  width: 280px;
}
@media (max-width: 768px) {
  .btn_select li {
    width: calc(50% - 4px);
  }
}
.btn_select li.active a, .btn_select li.active span {
  background: #009943;
  color: white;
}
.btn_select a, .btn_select span {
  display: block;
  background: #e7ebe1;
  border-radius: 8px;
  text-align: center;
  padding: 8px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.btn_select a:hover, .btn_select span:hover {
  background: #009943;
  color: white;
}

.btn_area {
  font-size: 16px;
  font-size: 1rem;
  display: none;
}
.btn_area.show {
  display: block;
}
.btn_area > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 4px 0;
}
.btn_area#juku dt {
  background: #e7ebe1;
}
.btn_area#juku dd {
  background: #e7ebe1;
}
.btn_area#tutor dt {
  background: #e5f1fa;
}
.btn_area#tutor dd {
  background: #e5f1fa;
}
.btn_area dt {
  width: 8em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.btn_area ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn_area li {
  padding: 4px;
}
.btn_area a {
  display: block;
  text-decoration: none;
  color: #232323;
  background: white;
  width: 5em;
  text-align: center;
  padding: 4px;
  border-radius: 4px;
}
.btn_area a:hover {
  background: #ff9936;
  color: white;
}

.box_ranking {
  display: none;
}
.box_ranking.show {
  display: block;
}

.box_juku h3, .box_tutor h3 {
  padding-left: 80px;
}
@media (max-width: 768px) {
  .box_juku h3, .box_tutor h3 {
    padding-left: 0;
  }
}
.box_juku .title, .box_tutor .title {
  position: relative;
}
@media (max-width: 768px) {
  .box_juku .title, .box_tutor .title {
    padding-left: 80px;
  }
}
.box_juku .title::before, .box_tutor .title::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.box_juku .group_summary:nth-of-type(1) .title::before, .box_tutor .group_summary:nth-of-type(1) .title::before {
  content: url(../img/ex/crown01.webp);
}
.box_juku .group_summary:nth-of-type(2) .title::before, .box_tutor .group_summary:nth-of-type(2) .title::before {
  content: url(../img/ex/crown02.webp);
}
.box_juku .group_summary:nth-of-type(3) .title::before, .box_tutor .group_summary:nth-of-type(3) .title::before {
  content: url(../img/ex/crown03.webp);
}

.group_summary .headline {
  display: grid;
  grid-template-areas: "rankingTitle rankingTitle" "rankingLogo rankingTable" "rankingText rankingText";
  grid-template-columns: 320px 1fr;
  -moz-column-gap: 16px;
       column-gap: 16px;
  text-decoration: none;
  color: #232323;
  padding: 32px 8px;
  border-bottom: 3px solid #009943;
}
@media (max-width: 768px) {
  .group_summary .headline {
    grid-template-areas: "rankingTitle" "rankingLogo" "rankingTable" "rankingText";
    grid-template-columns: 1fr;
  }
}
.group_summary a.headline:hover {
  background: rgba(255, 153, 54, 0.1);
}
.group_summary .title {
  grid-area: rankingTitle;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .group_summary .title {
    display: block;
  }
}
.group_summary .ranking_point {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
.group_summary .ranking_point span {
  display: block;
  width: 200px;
  height: 38px;
  -webkit-mask-image: url(../img/ex/star.svg);
          mask-image: url(../img/ex/star.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
@media (max-width: 768px) {
  .group_summary .ranking_point span {
    width: 160px;
    height: 30px;
  }
}
.group_summary .ranking_point span::after {
  content: "";
  display: block;
  height: 100%;
  background: #ff9936;
}
.group_summary .ranking_point span.point1::after {
  width: 1%;
}
.group_summary .ranking_point span.point2::after {
  width: 2%;
}
.group_summary .ranking_point span.point3::after {
  width: 3%;
}
.group_summary .ranking_point span.point4::after {
  width: 4%;
}
.group_summary .ranking_point span.point5::after {
  width: 5%;
}
.group_summary .ranking_point span.point6::after {
  width: 6%;
}
.group_summary .ranking_point span.point7::after {
  width: 7%;
}
.group_summary .ranking_point span.point8::after {
  width: 8%;
}
.group_summary .ranking_point span.point9::after {
  width: 9%;
}
.group_summary .ranking_point span.point10::after {
  width: 10%;
}
.group_summary .ranking_point span.point11::after {
  width: 11%;
}
.group_summary .ranking_point span.point12::after {
  width: 12%;
}
.group_summary .ranking_point span.point13::after {
  width: 13%;
}
.group_summary .ranking_point span.point14::after {
  width: 14%;
}
.group_summary .ranking_point span.point15::after {
  width: 15%;
}
.group_summary .ranking_point span.point16::after {
  width: 16%;
}
.group_summary .ranking_point span.point17::after {
  width: 17%;
}
.group_summary .ranking_point span.point18::after {
  width: 18%;
}
.group_summary .ranking_point span.point19::after {
  width: 19%;
}
.group_summary .ranking_point span.point20::after {
  width: 20%;
}
.group_summary .ranking_point span.point21::after {
  width: 21%;
}
.group_summary .ranking_point span.point22::after {
  width: 22%;
}
.group_summary .ranking_point span.point23::after {
  width: 23%;
}
.group_summary .ranking_point span.point24::after {
  width: 24%;
}
.group_summary .ranking_point span.point25::after {
  width: 25%;
}
.group_summary .ranking_point span.point26::after {
  width: 26%;
}
.group_summary .ranking_point span.point27::after {
  width: 27%;
}
.group_summary .ranking_point span.point28::after {
  width: 28%;
}
.group_summary .ranking_point span.point29::after {
  width: 29%;
}
.group_summary .ranking_point span.point30::after {
  width: 30%;
}
.group_summary .ranking_point span.point31::after {
  width: 31%;
}
.group_summary .ranking_point span.point32::after {
  width: 32%;
}
.group_summary .ranking_point span.point33::after {
  width: 33%;
}
.group_summary .ranking_point span.point34::after {
  width: 34%;
}
.group_summary .ranking_point span.point35::after {
  width: 35%;
}
.group_summary .ranking_point span.point36::after {
  width: 36%;
}
.group_summary .ranking_point span.point37::after {
  width: 37%;
}
.group_summary .ranking_point span.point38::after {
  width: 38%;
}
.group_summary .ranking_point span.point39::after {
  width: 39%;
}
.group_summary .ranking_point span.point40::after {
  width: 40%;
}
.group_summary .ranking_point span.point41::after {
  width: 41%;
}
.group_summary .ranking_point span.point42::after {
  width: 42%;
}
.group_summary .ranking_point span.point43::after {
  width: 43%;
}
.group_summary .ranking_point span.point44::after {
  width: 44%;
}
.group_summary .ranking_point span.point45::after {
  width: 45%;
}
.group_summary .ranking_point span.point46::after {
  width: 46%;
}
.group_summary .ranking_point span.point47::after {
  width: 47%;
}
.group_summary .ranking_point span.point48::after {
  width: 48%;
}
.group_summary .ranking_point span.point49::after {
  width: 49%;
}
.group_summary .ranking_point span.point50::after {
  width: 50%;
}
.group_summary .ranking_point span.point51::after {
  width: 51%;
}
.group_summary .ranking_point span.point52::after {
  width: 52%;
}
.group_summary .ranking_point span.point53::after {
  width: 53%;
}
.group_summary .ranking_point span.point54::after {
  width: 54%;
}
.group_summary .ranking_point span.point55::after {
  width: 55%;
}
.group_summary .ranking_point span.point56::after {
  width: 56%;
}
.group_summary .ranking_point span.point57::after {
  width: 57%;
}
.group_summary .ranking_point span.point58::after {
  width: 58%;
}
.group_summary .ranking_point span.point59::after {
  width: 59%;
}
.group_summary .ranking_point span.point60::after {
  width: 60%;
}
.group_summary .ranking_point span.point61::after {
  width: 61%;
}
.group_summary .ranking_point span.point62::after {
  width: 62%;
}
.group_summary .ranking_point span.point63::after {
  width: 63%;
}
.group_summary .ranking_point span.point64::after {
  width: 64%;
}
.group_summary .ranking_point span.point65::after {
  width: 65%;
}
.group_summary .ranking_point span.point66::after {
  width: 66%;
}
.group_summary .ranking_point span.point67::after {
  width: 67%;
}
.group_summary .ranking_point span.point68::after {
  width: 68%;
}
.group_summary .ranking_point span.point69::after {
  width: 69%;
}
.group_summary .ranking_point span.point70::after {
  width: 70%;
}
.group_summary .ranking_point span.point71::after {
  width: 71%;
}
.group_summary .ranking_point span.point72::after {
  width: 72%;
}
.group_summary .ranking_point span.point73::after {
  width: 73%;
}
.group_summary .ranking_point span.point74::after {
  width: 74%;
}
.group_summary .ranking_point span.point75::after {
  width: 75%;
}
.group_summary .ranking_point span.point76::after {
  width: 76%;
}
.group_summary .ranking_point span.point77::after {
  width: 77%;
}
.group_summary .ranking_point span.point78::after {
  width: 78%;
}
.group_summary .ranking_point span.point79::after {
  width: 79%;
}
.group_summary .ranking_point span.point80::after {
  width: 80%;
}
.group_summary .ranking_point span.point81::after {
  width: 81%;
}
.group_summary .ranking_point span.point82::after {
  width: 82%;
}
.group_summary .ranking_point span.point83::after {
  width: 83%;
}
.group_summary .ranking_point span.point84::after {
  width: 84%;
}
.group_summary .ranking_point span.point85::after {
  width: 85%;
}
.group_summary .ranking_point span.point86::after {
  width: 86%;
}
.group_summary .ranking_point span.point87::after {
  width: 87%;
}
.group_summary .ranking_point span.point88::after {
  width: 88%;
}
.group_summary .ranking_point span.point89::after {
  width: 89%;
}
.group_summary .ranking_point span.point90::after {
  width: 90%;
}
.group_summary .ranking_point span.point91::after {
  width: 91%;
}
.group_summary .ranking_point span.point92::after {
  width: 92%;
}
.group_summary .ranking_point span.point93::after {
  width: 93%;
}
.group_summary .ranking_point span.point94::after {
  width: 94%;
}
.group_summary .ranking_point span.point95::after {
  width: 95%;
}
.group_summary .ranking_point span.point96::after {
  width: 96%;
}
.group_summary .ranking_point span.point97::after {
  width: 97%;
}
.group_summary .ranking_point span.point98::after {
  width: 98%;
}
.group_summary .ranking_point span.point99::after {
  width: 99%;
}
.group_summary .ranking_point span.point100::after {
  width: 100%;
}
.group_summary h3, .group_summary h1 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
}
.group_summary .logo {
  grid-area: rankingLogo;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 8px;
}
@media (max-width: 768px) {
  .group_summary .logo {
    display: block;
    text-align: left;
    padding: 16px 0;
  }
}
.group_summary .logo img {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
@media (max-width: 768px) {
  .group_summary .logo img {
    max-width: 50%;
  }
}
.group_summary .table {
  grid-area: rankingTable;
  font-size: 16px;
  font-size: 1rem;
}
.group_summary .table th {
  width: 8em;
}
.group_summary .text {
  grid-area: rankingText;
}
.group_summary .detail {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.group_summary .detail .img {
  width: 32%;
  max-width: 240px;
  margin-right: 16px;
}
.group_summary .detail table {
  flex: 1;
}

.list_column {
  margin: 16px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
}
.list_column li {
  width: calc(25% - 12px);
  border-radius: 8px;
  box-shadow: 0 0 3px rgba(35, 35, 35, 0.3);
}
@media (max-width: 768px) {
  .list_column li {
    width: 100%;
  }
}
.list_column .title {
  padding: 8px 8px 16px;
}
.list_column a {
  display: block;
  text-decoration: none;
  color: #232323;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  height: 100%;
}
.list_column a:hover {
  background: rgba(255, 153, 54, 0.1);
}
.list_column .img {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  height: 200px;
}
.list_column .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.all_area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
}
.all_area li {
  width: calc(25% - 6px);
}
@media (max-width: 768px) {
  .all_area li {
    width: calc(50% - 4px);
  }
}

.area_link {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  margin: 32px auto;
  background: #009943;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 16px;
  gap: 8px;
}
.area_link li {
  flex: 1;
}
.area_link li a {
  background: white;
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 8px;
  color: #232323;
  border-radius: 8px;
}
.area_link li a:hover {
  background: #e2f0f3;
}

.content {
  padding: 32px 0;
}
.content h2 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  position: relative;
  padding-left: 16px;
  margin-top: 64px;
}
.content h2::before {
  content: "";
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #009943;
  border-radius: 8px;
}
.content h3 {
  margin-top: 32px;
  border-bottom: 2px solid #009943;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
.content h4 {
  margin-top: 16px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  color: #009943;
}
.content > ul {
  border: 2px solid #009943;
  border-radius: 8px;
  margin: 32px 0;
}
.content ul {
  list-style: disc;
  padding: 16px 16px 16px 48px;
}
.content ul li {
  padding: 8px 0;
}
.content table {
  width: 100%;
  margin: 32px 0;
}
.content table thead th {
  background: #157487;
  color: white;
}
.content table th, .content table td {
  padding: 8px;
}
.content table th {
  background: #6db2bf;
  color: white;
  width: 24%;
}
.content table td {
  background: #e2f0f3;
}

.linkbox {
  margin: 64px 0;
  background: #e2f0f3;
  padding: 32px 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.linkbox a {
  display: block;
  text-decoration: none;
  width: 40%;
  color: white;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 16px;
}
.linkbox a.document {
  background: #157487;
}
.linkbox a.site {
  background: #ff9936;
}

.thumbnail {
  text-align: center;
  padding-top: 16px;
}/*# sourceMappingURL=base.css.map */