@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

:root {
  --width-container: 1290px;
  --width-container-small: 850px;
  --width-container-midium: 1000px;
  --width-container-midium2: 1139px;
  --padding-section: 60px;
  --gap: 18px;
  --black: #57565a;
  --white: #fff;
  --skyblue: #5fb0e4;
  --lSkyblue: #e2f0ff;
  --gray: #727174;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

body {
  font-size: 1.8rem;
  line-height: 1.5;
  /*  font-family: "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3",
      "Hiragino Kaku Gothic ProN", sans-serif;*/
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
}
@media screen and (max-width: 991.98px) {
  body {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
  }
}

h1,
h2,
h3,
h4,
h5,
p,
button,
table,
th,
td,
a,
address {
  line-height: 1.25;
}

@media screen and (min-width: 992px) {
  .sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 991.98px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none !important;
  }
}
a {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  text-decoration: none;
}
@media (hover: hover) {
  a {
    cursor: pointer;
  }
  a:hover {
    opacity: 0.8;
  }
}

@media (hover: hover) {
  button {
    cursor: pointer;
  }
}

textarea {
  resize: vertical;
}

img,
video {
  vertical-align: bottom;
  line-height: 0;
}

th {
  font-weight: normal;
  vertical-align: text-top;
}

.txt_blue {
  color: var(--skyblue);
}

@media screen and (max-width: 991.98px) {
  .sp-txt_blue {
    color: var(--skyblue) !important;
  }
}

.txt_red {
  color: #ea5514;
}

.txt_underline {
  text-decoration: underline;
}

.txt_black {
  color: var(--black);
}

.txt_center {
  text-align: center;
}

.lower-contents .mini {
  font-size: 13px;
}

.gap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.wrapper-v {
  padding-block: var(--padding-section);
}

.wrapper {
  width: min(100% - 40px, (var(--width-container)));
  margin-inline: auto;
}

.sp-wrapper-0 {
  width: min(100% - 40px, (var(--width-container)));
  margin-inline: auto;
}
@media screen and (max-width: 991.98px) {
  .sp-wrapper-0 {
    width: 100%;
  }
}

.wrapper-midium {
  width: min(100% - 40px, (var(--width-container-midium)));
  margin-inline: auto;
}

.wrapper-midium2 {
  width: min(100% - 40px, (var(--width-container-midium2)));
  margin-inline: auto;
}

.wrapper-midium3 {
  width: min(100% - 40px, (var(--width-container-midium2)));
  margin-inline: auto;
}

.wrapper-small {
  width: min(100% - 40px, (var(--width-container-small)));
  margin-inline: auto;
}

.wrapper-wide {
  width: min(100% - 40px, (var(--width-container-wide)));
  margin-inline: auto;
}

@media screen and (max-width: 991.98px) {
  .sp-wide, .wrapper-midium, .wrapper-midium2, .wrapper-wide, .wrapper-small {
    width: 100%;
  }
}
.grid-4 {
  -ms-grid-columns: 1fr var(--gap) 1fr var(--gap) 1fr var(--gap) 1fr;
  grid-template-columns: repeat(4, 1fr);
  display: -ms-grid;
  display: grid;
  gap: var(--gap);
}

.grid-3 {
  -ms-grid-columns: 1fr var(--gap) 1fr var(--gap) 1fr;
  grid-template-columns: repeat(3, 1fr);
  display: -ms-grid;
  display: grid;
  gap: var(--gap);
}

.grid-2 {
  -ms-grid-columns: 1fr var(--gap) 1fr;
  grid-template-columns: repeat(2, 1fr);
  display: -ms-grid;
  display: grid;
  gap: var(--gap);
}

.grid-w300 {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap);
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap);
}
@media screen and (max-width: 991.98px) {
  .flex .sp-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.flex-x-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-xy-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-y-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-x-space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-has-image .image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flex-y-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-y-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-half > div {
  width: 50%;
}

.flex3 > div {
  width: 33.3333333333%;
}

:root {
  --button_size: 51px;
  --header_height: 250px;
  --header_contents_gap: 40px;
}
@media screen and (max-width: 991.98px) {
  :root {
    --header_height: 70px;
    --header_contents_gap: 16px;
    --button_size: 35px;
  }
}
@media screen and (min-width: 992px) {
  :root .lower {
    --header_height: 120px;
    --header_contents_gap: 30px;
  }
}

body.lower {
  padding-top: var(--header_height);
}

.header {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.65)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(255, 255, 255, 0));
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  height: var(--header_height);
  padding: 38px 34px 0;
}
@media screen and (max-width: 991.98px) {
  .header {
    background: var(--gray);
    padding: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: var(--header_contents_gap);
  }
  .header .logo img {
    height: 46px;
  }
}
@media screen and (min-width: 992px) {
  .header .logo img {
    height: 111px;
  }
}

.header-modal-overlay {
  position: fixed;
  z-index: 9;
  inset: 0;
  display: none;
}

.menu-open .header-modal-overlay {
  display: block;
}

@media screen and (max-width: 991.98px) {
  body {
    padding-top: var(--header_height);
  }
}
@media screen and (max-width: 991.98px) {
  .mobile-search-area {
    background: var(--white);
    padding: 19px 0;
  }
  .mobile-search-area h2 {
    font-weight: bold;
    color: var(--gray);
  }
}
@media screen and (min-width: 992px) {
  .lower .header {
    padding: 22px 30px 0 30px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(61, 59, 64, 0.9)), color-stop(rgba(134, 133, 136, 0.6)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, rgba(61, 59, 64, 0.9), rgba(134, 133, 136, 0.6), rgba(255, 255, 255, 0));
  }
  .lower .header .logo img {
    height: 71px;
  }
}

.menu {
  clip-path: inset(0 0 0 100%);
  position: fixed;
  z-index: 10;
  inset: calc(var(--header_contents_gap) + var(--button_size)) var(--header_contents_gap) auto var(--header_contents_gap);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--skyblue);
}

.menu-open .menu {
  clip-path: inset(0 0 0 0%);
  display: block;
  background-color: #fff;
}

.header-buttons {
  position: fixed;
  z-index: 13;
  inset: var(--header_contents_gap) var(--header_contents_gap) auto auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-buttons .lang img {
  width: var(--button_size);
  height: var(--button_size);
}
@media screen and (max-width: 991.98px) {
  .header-buttons {
    gap: 10px;
  }
}

.btn-menu {
  width: var(--button_size);
  height: var(--button_size);
  background: var(--black);
  border: 1px solid var(--white);
}
.btn-menu .bars {
  position: relative;
}
.btn-menu .bar {
  width: 32px;
  height: 2px;
  background: var(--white);
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 991.98px) {
  .btn-menu .bar {
    width: 18px;
    height: 1px;
  }
}
.btn-menu .bar:nth-child(1) {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}
.btn-menu .bar:nth-child(2) {
  opacity: 1;
}
.btn-menu .bar:nth-child(3) {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

.menu-open .btn-menu {
  background: var(--skyblue);
}

.grid-menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  font-size: 1.6rem;
  padding: 30px 38px;
}
.grid-menu .grid {
  border: 2px solid var(--skyblue);
  border-width: 0 2px 0 0;
  padding-inline: 15px;
}
.grid-menu .grid:first-of-type {
  border-left: 2px solid var(--skyblue);
}
.grid-menu .title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--skyblue);
}
.grid-menu .list-nav {
  font-weight: 500;
}
.grid-menu .list-nav li {
  margin-top: 7px;
}
.grid-menu .list-nav li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3em;
  min-height: 26px;
  padding-inline: 10px;
}
.grid-menu .list-nav li > a::before {
  content: "●";
  color: skyblue;
}
.grid-menu .list-nav li > a:hover {
  background: var(--lSkyblue);
}
.grid-menu .list-nav + .title {
  margin-top: 20px;
}
.grid-menu .list-child li > a::before {
  content: "・";
  color: inherit;
}

@media screen and (max-width: 991.98px) {
  .menu {
    inset: var(--header_height) 0 0 0;
    width: 100%;
    border: none;
    background: unset;
  }
  .menu .list-nav li {
    margin-top: 0.25em;
  }
  .menu .list-nav li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.3em;
  }
  .menu .list-nav li > a::before {
    content: "●";
    color: skyblue;
  }
  .menu .list-nav + .title {
    margin-top: 1em;
  }
  .menu .list-child li > a::before {
    content: "・";
    color: inherit;
  }
  .list-nav {
    padding-block: 0.5em;
    display: none;
    background: var(--white);
    overflow-y: scroll;
  }
  .list-nav.current {
    display: block;
  }
  .list-nav a {
    font-size: 2rem;
    padding: 0.3em 10%;
  }
  .list-nav a:hover {
    background: var(--lSkyblue);
  }
  .tabs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 1fr 0 1fr 0 1fr 0 1fr 0 1fr;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
  .tabs .tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 1.3rem;
    background: var(--lSkyblue);
    padding-block: 8px;
    border-bottom: 1px solid var(--black);
  }
  .tabs .tab.current {
    background: var(--white);
    border: 1px solid var(--black);
    border-width: 0 1px 0 1px;
  }
  .tabs .tab.current:first-child {
    border-left: none;
  }
  .tabs .tab.current:last-child {
    border-radius: none;
  }
  .grid-menu-sp {
    height: 100%;
  }
  .mobile-modal-overlay {
    height: 100%;
    background: rgba(0, 0, 0, 0.32);
  }
}
.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding: 0.5em 1.25em;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn.__white {
  color: var(--black);
  background: var(--white);
}

.btn.__center {
  margin-inline: auto;
}

.hl-underline {
  font-size: 2.8rem;
  font-weight: bold;
  border-bottom: 1px solid var(--skyblue);
  color: var(--skyblue);
  width: 100px;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 6px;
}
@media screen and (max-width: 991.98px) {
  .hl-underline {
    width: 174px;
    text-align: left;
    margin-inline: unset;
    font-size: 1.8rem;
    padding-bottom: 2px;
  }
}

.lower-contents h2 {
  font-size: 3rem;
  color: var(--skyblue);
  border-bottom: 1px solid #868588;
  padding-bottom: 0.25em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 991.98px) {
  .lower-contents h2 {
    font-size: 2rem;
    margin-bottom: 0.25em;
  }
  .lower-contents h2.sp-border-delete {
    border-bottom: unset;
    padding-bottom: 0;
  }
}
.lower-contents h2 .border-delete {
  border-bottom: unset;
  padding-bottom: 0;
}
@media screen and (max-width: 991.98px) {
  .lower-contents h2 {
    font-size: 2rem;
    color: var(--black);
  }
}
@media screen and (max-width: 991.98px) {
  .lower-contents .sp-txt-blue {
    color: var(--skyblue);
  }
}
.lower-contents h3 {
  font-size: 2.2rem;
  color: var(--skyblue);
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 991.98px) {
  .lower-contents h3 {
    font-size: 2rem;
    color: var(--black);
  }
}
.lower-contents p {
  font-size: 2.2rem;
  line-height: 1.86;
  font-weight: 500;
  margin-block: 1em;
  white-space: pre-line;
}
@media screen and (max-width: 991.98px) {
  .lower-contents p {
    font-size: 1.4rem;
  }
}
.lower-contents > * + * {
  margin-top: 1em;
}

.swiper {
  max-width: 100%;
}

.normal-slider .picture {
  position: relative;
  display: block;
}
.normal-slider .picture::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #8badd4;
  mix-blend-mode: multiply;
}
.normal-slider .picture .title {
  position: absolute;
  inset: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--white);
}
.normal-slider .list-nav {
  margin-top: 20px;
  font-weight: 500;
  border-bottom: 1px solid var(--skyblue);
}
.normal-slider .list-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25em;
  min-height: 48px;
  padding-inline: 15% 0;
  border-top: 1px solid var(--skyblue);
  margin-top: -1px;
}
.normal-slider .list-nav a:hover {
  background: #dee6fa;
}
.normal-slider .list-nav > li > a::before {
  content: "●";
  color: var(--skyblue);
}
.normal-slider .list-child > li > a::before {
  content: "　";
}
.normal-slider .swiper-button-next,
.normal-slider .swiper-button-prev {
  height: 50%;
  width: 5%;
  top: 0;
  bottom: auto;
}
.normal-slider .swiper-button-next::before, .normal-slider .swiper-button-next::after,
.normal-slider .swiper-button-prev::before,
.normal-slider .swiper-button-prev::after {
  display: none;
}

.tab-slider .swiper-slide {
  background: var(--white);
  height: 100%;
  width: 100%;
  visibility: hidden;
}
.tab-slider .swiper-slide.swiper-slide-visible {
  visibility: visible;
}
.tab-slider .swiper-pagination {
  position: relative;
  inset: 0 !important;
  --size: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-slider .swiper-pagination .swiper-pagination-bullet {
  width: var(--size);
  height: var(--size);
  margin: 0 !important;
  display: block;
  opacity: 1;
}
@media screen and (max-width: 991.98px) {
  .tab-slider .swiper-pagination {
    --size: 9px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 7px;
    margin-block: 10px;
  }
  .tab-slider .swiper-pagination .swiper-pagination-bullet {
    border: 1px solid #868588;
    background: var(--white);
  }
  .tab-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #5fb0e4;
  }
}
@media screen and (min-width: 992px) {
  .tab-slider .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 20px;
  }
  .tab-slider .swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    background: var(--white);
    color: var(--black);
    border: 1px solid #868588;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tab-slider .swiper-pagination .swiper-pagination-bullet:not(:last-of-type) {
    border-right: none;
  }
  .tab-slider .swiper-pagination .swiper-pagination-bullet-active {
    background: #5fb0e4;
    color: var(--white);
  }
  .tab-slider .swiper-pagination.has-number .swiper-pagination-bullet::before {
    content: attr(data-index);
  }
}

.box {
  background: rgba(35, 34, 39, 0.6);
}

.list-news-wrap {
  --menu_height: 52px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  width: min(1280px, 100%);
  --padding: 56px;
  padding: 29px 0;
}
@media screen and (max-width: 991.98px) {
  .list-news-wrap {
    width: 100%;
  }
}
.list-news-wrap .bottom-link {
  padding-inline: var(--padding);
  margin-top: 23px;
  font-size: 2rem;
  padding-left: 190px;
}
.list-news-wrap .bottom-link a {
  color: var(--white);
}
.list-news-wrap .bottom-link a:hover {
  text-decoration: underline;
}

.list-news li + li {
  margin-top: 1px;
}
@media screen and (max-width: 991.98px) {
  .list-news li + li {
    margin-top: 40px;
  }
}
.list-news a:not(.btn) {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: var(--menu_height);
  gap: 28px;
}
@media screen and (min-width: 992px) {
  .list-news a:not(.btn):hover {
    background-color: #57565a;
    background: #57565a;
    -webkit-box-shadow: 0 0 0 100vmax #57565a;
            box-shadow: 0 0 0 100vmax #57565a;
    clip-path: inset(0 -100% 0 -100%);
  }
}
@media screen and (max-width: 991.98px) {
  .list-news a:not(.btn) {
    min-height: unset;
    padding-inline: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
    padding-inline: 20px;
  }
}
.list-news .date {
  color: var(--white);
  font-weight: bold;
  font-size: 1.7rem;
}
@media screen and (max-width: 991.98px) {
  .list-news .date {
    font-size: 1.5rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.list-news .label {
  background: #666;
  font-size: 1.4rem;
  min-width: 66px;
  padding: 3px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}
.list-news .label.__yellow {
  background: #ffdc55;
}
.list-news .label.__blue {
  background: #c0f0ff;
}
.list-news .label.__pink {
  background: #ffc9ff;
}
.list-news .label.__green {
  background: #e4e844;
}
@media screen and (max-width: 991.98px) {
  .list-news .label {
    font-size: 1.3rem;
    padding: 5px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.list-news .title {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 991.98px) {
  .list-news .title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    overflow: unset;
    text-overflow: unset;
    white-space: unset;
    font-size: 2rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (min-width: 992px) {
  .list-news .title {
    margin-left: -20px;
  }
}
@media screen and (max-width: 991.98px) {
  .list-news .thumbnail-wrap {
    display: block;
    padding-inline: 0 !important;
  }
  .list-news .thumbnail {
    display: block;
    width: 100%;
    aspect-ratio: 844/390;
    margin-top: 10px;
  }
  .list-news .thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .list-news .description {
    color: var(--white);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-inline: 20px;
  }
  .list-news .btn {
    margin-top: 10px;
  }
}

@media screen and (min-width: 992px) {
  .list-news-flex {
    gap: 81px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .list-news-flex .headline {
    position: relative;
    z-index: 2;
    font-size: 1.6rem;
    color: var(--white);
    min-height: var(--menu_height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 113px;
  }
}
.list-search {
  border: 1px solid var(--black);
  margin-top: -1px;
  padding: 65px 73px;
}
@media screen and (min-width: 992px) {
  .list-search {
    padding: 37px 60px 75px;
  }
}

.list-result-wrap {
  margin-block: 19px;
}

.list-result li {
  border-top: 1px solid var(--black);
}
.list-result li:last-child {
  border-bottom: 1px solid var(--black);
}
.list-result a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 200px 1fr;
  grid-template-columns: 200px 1fr;
}
.list-result a:hover {
  background: #e8effc;
}
.list-result .area,
.list-result .title {
  padding: 20px;
}
@media screen and (min-width: 992px) {
  .list-result .area,
  .list-result .title {
    padding: 16px;
  }
}
.list-result .area {
  font-size: 1.92rem;
}
@media screen and (min-width: 992px) {
  .list-result .area {
    font-size: 1.6rem;
  }
}
.list-result .title {
  color: var(--skyblue);
  font-weight: bold;
  font-size: 2.56rem;
}
@media screen and (min-width: 992px) {
  .list-result .title {
    font-size: 2rem;
  }
}
.list-result .title span {
  display: block;
  font-weight: normal;
  color: var(--black);
  font-size: 2.24rem;
}
@media screen and (min-width: 992px) {
  .list-result .title span {
    font-size: 1.5rem;
    margin-top: 0.5em;
  }
}

.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pager .result {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .pager .result {
    font-weight: unset;
  }
}
.pager .list-pager {
  font-size: 1.84rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
@media screen and (min-width: 992px) {
  .pager .list-pager {
    font-size: 1.4rem;
    gap: 0;
  }
}
.pager .list-pager li {
  --size: 31px;
  width: var(--size);
  height: var(--size);
}
.pager .list-pager li:not(.next, .prev, .reader-li) {
  margin-left: -1px;
}
.pager a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #868588;
}
.pager .reader {
  border-color: var(--white);
}
.pager a:not(.reader):hover {
  background: var(--skyblue);
  color: var(--white);
  border-color: var(--skyblue);
}
.pager .prev a,
.pager .next a {
  background: #a6a6a0;
  border-color: #a6a6a0;
}
.pager .prev {
  margin-right: 11px;
}
.pager .next {
  margin-left: 11px;
}

.list-pdf {
  font-size: 2.6rem;
  font-weight: 500;
}
@media screen and (max-width: 991.98px) {
  .list-pdf {
    font-size: 1.8rem;
  }
}
.list-pdf li + li {
  margin-top: 26px;
}
@media screen and (max-width: 991.98px) {
  .list-pdf li + li {
    margin-top: 20px;
  }
}
.list-pdf a {
  border: 1px solid #868588;
  min-width: 700px;
  padding: 25px 62px;
  gap: 20px;
}
@media screen and (max-width: 991.98px) {
  .list-pdf a {
    min-width: 0;
    padding: 22px 20px;
  }
}

.list-pdf2 {
  font-size: 2.6rem;
  font-weight: 500;
}
@media screen and (max-width: 991.98px) {
  .list-pdf2 {
    font-size: 1.8rem;
  }
}
.list-pdf2 a {
  border: 1px solid #868588;
  padding: 25px 62px;
  gap: 20px;
}
@media screen and (max-width: 991.98px) {
  .list-pdf2 a {
    min-width: 0;
    padding: 22px 20px;
    border: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.list-pdf-bl {
  font-size: 1.8rem;
  font-weight: 500;
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 991.98px) {
  .list-pdf-bl {
    font-size: 1.2rem;
    gap: 6px;
  }
}
.list-pdf-bl a {
  border: 1px solid #868588;
  padding: 25px;
  color: var(--gray);
  min-width: auto;
  gap: 20px;
}
@media screen and (max-width: 991.98px) {
  .list-pdf-bl a {
    padding: 4px 10px;
    gap: 6px;
    height: 90px;
  }
}
@media screen and (min-width: 992px) {
  .list-pdf-bl li {
    width: 473px;
  }
}
@media screen and (max-width: 991.98px) {
  .list-pdf-bl li {
    /*width: calc(100% / 2 - 10px);*/
    width: 100%;
  }
  .list-pdf-bl li img {
    width: 18%;
  }
  .list-pdf-bl li .text {
    width: 77%;
  }
}

.search-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 120px;
  grid-template-columns: 1fr 120px;
  border: 1px solid var(--black);
}
@media screen and (min-width: 992px) {
  .search-box {
    -ms-grid-columns: 1fr 69px;
    grid-template-columns: 1fr 69px;
  }
}
@media screen and (max-width: 991.98px) {
  .search-box {
    -ms-grid-columns: 42px 1fr;
    grid-template-columns: 42px 1fr;
    margin-top: 5px;
  }
}
.search-box input[type=search] {
  font-size: 2.56rem;
  width: 100%;
  height: 117px;
  padding: 0 37px;
}
.search-box input[type=search]::-webkit-input-placeholder {
  color: #bbbdb8;
}
.search-box input[type=search]::-moz-placeholder {
  color: #bbbdb8;
}
.search-box input[type=search]:-ms-input-placeholder {
  color: #bbbdb8;
}
.search-box input[type=search]::-ms-input-placeholder {
  color: #bbbdb8;
}
.search-box input[type=search]::placeholder {
  color: #bbbdb8;
}
@media screen and (min-width: 992px) {
  .search-box input[type=search] {
    font-size: 1.8rem;
    height: 68px;
  }
}
@media screen and (max-width: 991.98px) {
  .search-box input[type=search] {
    font-size: 1.5rem;
    padding: 18px 10px 18px 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 55px;
  }
}
.search-box button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-left: 1px solid var(--black);
}
@media screen and (max-width: 991.98px) {
  .search-box button {
    border-left: none;
  }
}
.search-box button:hover {
  background: var(--skyblue);
}
.search-box button:hover .b {
  fill: var(--white);
}
.search-box button:hover .a {
  opacity: 1;
}
@media screen and (max-width: 991.98px) {
  .search-box button {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .search-box button svg {
    height: 20px;
    width: 20px;
  }
}
@media screen and (min-width: 992px) {
  .search-box button svg {
    height: 24px;
  }
}

.table {
  width: 100%;
}
.table tr {
  border-bottom: 1px solid var(--black);
}
.table th,
.table td {
  padding: 15px 0;
}
.table thead th {
  font-weight: bold;
  font-size: 3.2rem;
}
@media screen and (min-width: 992px) {
  .table thead th {
    font-size: 2rem;
  }
}
.table tbody {
  font-size: 2.4rem;
  font-weight: 500;
}
.table tbody th {
  color: var(--skyblue);
}
@media screen and (min-width: 992px) {
  .table tbody {
    font-size: 1.6rem;
  }
}

.table-border {
  font-size: 2.2rem;
  width: 100%;
  margin-bottom: 14px;
}
@media screen and (max-width: 991.98px) {
  .table-border {
    font-size: 1.4rem;
  }
}
.table-border th,
.table-border td {
  padding-block: 30px;
  line-height: 1.5;
}
.table-border th {
  font-weight: bold;
  width: 245px;
}
@media screen and (max-width: 991.98px) {
  .table-border th {
    padding-block: 10px 2px;
    color: var(--skyblue);
  }
}
.table-border td {
  font-weight: 500;
}
@media screen and (max-width: 991.98px) {
  .table-border td {
    padding-block: 2px 10px;
  }
}
.table-border tr {
  border: 1px solid #868588;
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 991.98px) {
  .table-border tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: -1px;
  }
}

.modal-overlay {
  background: rgba(35, 34, 39, 0.3);
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.modal {
  position: fixed;
  z-index: 101;
  inset: 0;
  margin: auto;
  overflow-y: auto;
  pointer-events: none;
  display: none;
}

.modal.is-visible {
  display: block;
}

.modal-inner {
  height: 100%;
  padding: 25px;
  border: 1px solid var(--black);
  background: var(--white);
  position: relative;
  pointer-events: auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: auto;
}

.modal-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 991.98px) {
  .modal-buttons {
    position: fixed;
    z-index: 102;
    inset: 25px 25px auto auto;
  }
}
.modal-buttons .modal-prev,
.modal-buttons .modal-next {
  width: 11px;
  height: 22px;
}
.modal-buttons .js-modal-close {
  width: 20px;
  height: 20px;
}
.modal-buttons button {
  --size: 35px;
  width: var(--size);
  height: var(--size);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal-buttons button:hover path {
  fill: var(--skyblue);
}

.icon-modal {
  position: relative;
  display: block;
  z-index: 1;
}
.icon-modal::before {
  content: "";
  background: url(../../dist/img/icon-modal.svg) center/contain no-repeat;
  --size: 21px;
  width: var(--size);
  height: var(--size);
  display: block;
  position: absolute;
  inset: 10px 10px auto auto;
  z-index: 2;
}
@media screen and (max-width: 991.98px) {
  .icon-modal::before {
    --size: 13px;
    inset: 5px 5px auto auto;
  }
}

.bnrs .bnr {
  position: relative;
  display: block;
}
.bnrs .bnr::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #8badd4;
  mix-blend-mode: multiply;
}
.bnrs .bnr .text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  color: var(--white);
  font-size: 2.4rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
}
.bnrs .bnr a {
  display: block;
  aspect-ratio: 390/72;
  display: block;
}
.bnrs .bnr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bnrs .bnr + .bnr {
  margin-top: 7px;
}

.lower-menu {
  margin-block: 45px;
}
@media screen and (max-width: 991.98px) {
  .lower-menu {
    margin-block: 0;
  }
}
.lower-menu .list-menu {
  gap: 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  --span: 243px;
}
@media screen and (max-width: 991.98px) {
  .lower-menu .list-menu {
    --span: 0px;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    margin-bottom: 20px;
  }
  .lower-menu .list-menu svg {
    display: none;
  }
}
.lower-menu .list-menu + .list-menu {
  margin-top: -1px;
}
.lower-menu .list-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  border: 1px solid #868588;
  min-width: var(--span);
  height: 47px;
  font-size: 1.7rem;
  font-weight: 500;
}
@media screen and (max-width: 991.98px) {
  .lower-menu .list-menu li a {
    font-size: 1.4rem;
  }
}
.lower-menu .list-menu li a .text {
  display: block;
  line-height: 1;
  margin-top: -0.1em;
}
.lower-menu .list-menu li a:hover {
  background: #868588;
  color: var(--white);
}
.lower-menu .list-menu li a:hover path {
  fill: #868588;
}
@media screen and (max-width: 991.98px) {
  .lower-menu .list-menu li a {
    background: #dee6fa;
  }
}
.lower-menu .list-menu li:not(:last-child) a {
  border-right: none;
}
.lower-menu .list-menu li.current a {
  background: #868588;
  color: var(--white);
}
.lower-menu .list-menu li.current a path {
  fill: var(--white);
}
@media screen and (max-width: 991.98px) {
  .lower-menu .list-menu li.current a {
    background: var(--white);
    color: var(--black);
    border-bottom: unset;
  }
}
.lower-menu .list-menu.span2 li a {
  min-width: calc(var(--span) * 2);
}
@media screen and (max-width: 991.98px) {
  .lower-menu .list-menu li:first-child a {
    border-left: unset;
  }
  .lower-menu .list-menu li:last-child a {
    border-radius: unset;
  }
}
@media screen and (min-width: 992px) {
  .lower-menu .double {
    --span:486px;
  }
}
@media screen and (min-width: 992px) {
  .lower-menu .triple {
    --span:303.7px;
  }
}

@media screen and (max-width: 991.98px) {
  .about-header-sp.list-menu li a {
    height: 53px;
    text-align: center;
    font-size: 1.1rem;
  }
  .about-header-sp.list-menu li a span.text {
    line-height: 1.6rem;
  }
}

.swiper-wrapper {
  z-index: 20 !important;
}