@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 18px;
  line-height: 2;
  color: #484848;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

ol li {
  text-indent: -1.5rem;
  margin-left: 1.5rem;
  margin-bottom: 5px;
}
ol.em {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
}

strong {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
}

.memo {
  font-size: 14px;
  text-align: center;
}

.common__pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .common__pc {
    display: none;
  }
}
.common__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .common__sp {
    display: block;
  }
}
.common__pc_onmini {
  display: block;
}
@media screen and (max-width: 560px) {
  .common__pc_onmini {
    display: none;
  }
}
.common__mini {
  display: none;
}
@media screen and (max-width: 560px) {
  .common__mini {
    display: block;
  }
}
.common__btn {
  margin-bottom: 10px;
}
.common__btn:last-child {
  margin-bottom: 0;
}
.common__btn a, .common__btn .link {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  position: relative;
  font-weight: 700;
  color: #fff;
  -webkit-box-shadow: 0px 3px 6px #000029;
          box-shadow: 0px 3px 6px #000029;
  width: 100%;
}
.common__col02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common__col02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
    gap: 20px;
  }
}
.common__col02 .col {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .common__col02 .col {
    width: 100%;
  }
}
.common__col03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common__col03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
    gap: 20px;
  }
}
.common__col03 li, .common__col03 .col {
  width: calc((100% - 44px) / 3);
}
@media screen and (max-width: 768px) {
  .common__col03 li, .common__col03 .col {
    width: 100%;
  }
}
.common__col04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common__col04 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
    gap: 20px;
  }
}
.common__col04 .col {
  width: calc((100% - 66px) / 4);
}
@media screen and (max-width: 768px) {
  .common__col04 .col {
    width: calc((100% - 20px) / 2);
  }
}
.common__list li a {
  display: inline-block;
  text-decoration: none;
  color: #222222;
  position: relative;
}
.common__list li a::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 3px;
  left: 40px;
  background: #222222;
  display: block;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.common__list li a span {
  position: relative;
  padding: 0 0 0 40px;
}
.common__list li a span::before, .common__list li a span::after {
  content: "";
  display: block;
  position: absolute;
}
.common__list li a span::before {
  background: url(../img/arrow-right.svg) no-repeat center center;
  width: 27px;
  height: 18px;
  left: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.common__list li a span::after {
  border-radius: 30px;
  width: 30px;
  height: 30px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #9F0F0F;
  z-index: -1;
}
.common__list li a:hover {
  opacity: 1;
}
.common__list li a:hover::before {
  width: calc(100% - 40px);
}
.common__list li a:hover span::before {
  -webkit-animation: arrowSlide2 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: arrowSlide2 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.common__pdf__list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #222222;
  text-decoration: none;
  background: url(../img/icon__pdf.svg) no-repeat left 4px;
  padding-left: 25px;
}
.common__file__list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #222222;
  text-decoration: none;
  background: url(../img/icon__file.svg) no-repeat left 4px;
  padding-left: 25px;
}
.common-txtc {
  text-align: center;
}
.common__nav__page ul {
  font-size: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.common__nav__page ul li {
  margin-right: 5px;
}
.common__nav__page ul a {
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #5A5A5A;
}
.common__nav__page ul a::after {
  content: " / ";
  margin-left: 7px;
}

.f-red {
  color: #9F0F0F;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 50px;
}

.py20 {
  padding: 20px 0;
}

.py30 {
  padding: 30px 0;
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 0;
}
.pagination span, .pagination a {
  position: relative;
  margin: 0 1rem;
  width: 3rem;
  height: 3rem;
  background: #004298;
  border-radius: 1.625rem;
  -webkit-box-shadow: 0px 0px 20px rgba(20, 52, 111, 0.3);
          box-shadow: 0px 0px 20px rgba(20, 52, 111, 0.3);
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
}
.pagination span {
  background: #ddd;
  color: #2F2F2F;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* fadeIn */
.js-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.js-fade.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

body.is-nav-open {
  overflow: hidden;
}

:root {
  --header-h: 0px; /* 最低限の初期値 */
}

/* ページ内リンクの着地点すべてに適用 */
[id] {
  scroll-margin-top: var(--header-h);
}

@-webkit-keyframes arrowSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  49% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes arrowSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  49% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes arrowSlide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  49% {
    -webkit-transform: translateX(25px);
            transform: translateX(25px);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrowSlide2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  49% {
    -webkit-transform: translateX(25px);
            transform: translateX(25px);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(-25px);
            transform: translateX(-25px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.wrapper {
  overflow: hidden;
}
.wrapper section {
  width: 100%;
  margin: 0 auto;
  margin-bottom: clamp(60px, 4vw, 90px);
}
.wrapper section .inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.wrapper section.block__slide {
  margin-bottom: clamp(50px, 5vw, 120px);
}
.wrapper section.block__event {
  margin-bottom: clamp(50px, 4vw, 90px);
}
@media screen and (max-width: 780px) {
  .wrapper section.block__event {
    border-bottom: 1px solid #222222;
    padding-bottom: 30px;
  }
}
.wrapper section.block__event .common__col03 li {
  list-style: none;
  margin-left: 0;
}
.wrapper section.block__event .common__col03 figure {
  margin-bottom: 40px;
}
.wrapper section.block__event .common__col03 figure img {
  width: 100%;
}
.wrapper section.block__event .common__col03 dl dt {
  font-size: 16px;
  font-weight: 700;
}
.wrapper section.block__event .common__col03 a {
  color: #222222;
  text-decoration: none;
}
.wrapper section.block__news .news__list {
  border-top: 1px solid #E6E6E6;
  padding-top: 27px;
}
.wrapper section.block__news .news__list li {
  list-style: none;
  margin-left: 0;
}
.wrapper section.block__news .news__list li .day {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
}
.wrapper section.block__news .news__list li .ttl {
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 0;
}
.wrapper section.block__news .news__list li a {
  color: #222222;
  text-decoration: none;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 27px;
  margin-bottom: 27px;
  display: block;
  position: relative;
}
.wrapper section.block__news .news__list li a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #9F0F0F;
  display: block;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  bottom: 0;
  position: absolute;
}
.wrapper section.block__news .news__list li a:hover {
  opacity: 1;
}
.wrapper section.block__news .news__list li a:hover::before {
  width: 100%;
}
.wrapper section .block__nav {
  margin-top: clamp(45px, 5vw, 60px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 13px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 1330px) {
  .wrapper section .block__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper section .block__nav .nav__culture {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 13px;
}
@media screen and (max-width: 1330px) {
  .wrapper section .block__nav .nav__culture {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 780px) {
  .wrapper section .block__nav .nav__culture {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper section .block__nav .nav__culture li {
  width: 238px;
  list-style: none;
  margin-left: 0;
}
@media screen and (max-width: 1330px) {
  .wrapper section .block__nav .nav__culture li {
    width: 290px;
  }
}
@media screen and (max-width: 980px) {
  .wrapper section .block__nav .nav__culture li {
    width: auto;
  }
}
@media screen and (max-width: 780px) {
  .wrapper section .block__nav .nav__culture li {
    width: 100%;
  }
}
.wrapper section .block__nav .nav__culture li a {
  background: #9F0F0F;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1607843137);
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px 10px;
}
@media screen and (max-width: 980px) {
  .wrapper section .block__nav .nav__culture li a {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 780px) {
  .wrapper section .block__nav .nav__culture li a {
    text-align: left;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.wrapper section .block__nav .nav__culture li a span {
  position: relative;
  padding: 0 0 0 30px;
}
.wrapper section .block__nav .nav__culture li a span::before, .wrapper section .block__nav .nav__culture li a span::after {
  content: "";
  display: block;
  position: absolute;
}
.wrapper section .block__nav .nav__culture li a span::before {
  background: url(../img/arrow-right-red.svg) no-repeat center center;
  width: 7px;
  height: 6px;
  left: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.wrapper section .block__nav .nav__culture li a span::after {
  border-radius: 10px;
  width: 18px;
  height: 18px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.wrapper section .block__nav .nav__culture li a:hover {
  opacity: 1;
  background: rgba(159, 15, 15, 0.85);
}
.wrapper section .block__nav .nav__culture li a:hover span::before {
  -webkit-animation: arrowSlide 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: arrowSlide 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.top #header {
  height: 100vh;
}
.top main {
  padding-top: 100px;
}
.top main section h2 {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 100;
  line-height: 1.7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.top main section h2::before {
  content: "";
  background: #9F0F0F;
  height: 3px;
  width: 20px;
  display: block;
  margin-right: 13px;
}
.top main section .wrap__h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: clamp(45px, 5vw, 60px);
}
.top main section .wrap__h2 h2 {
  margin-bottom: 0;
}
.top main section .wrap__h2 p a {
  font-size: 14px;
  font-weight: 700;
  background: #F5F5F5;
  padding: 13px 25px;
  border-radius: 999px;
  display: block;
  text-decoration: none;
  color: #222222;
}
.top main section .wrap__h2 p a:hover {
  background: #9F0F0F;
  color: #fff;
  opacity: 1;
}

.low .wrapper #header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 400px;
  background: url(../img/h_news.jpg) no-repeat center center;
  background-size: cover;
}
.low .wrapper #header .wrap__h1 {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px 0;
}
.low .wrapper #header .wrap__h1 h1, .low .wrapper #header .wrap__h1 p {
  color: #fff;
  font-size: clamp(20px, 5vw, 40px);
  font-weight: 700;
}
.low .wrapper main {
  padding-top: 30px;
  margin-bottom: 200px;
}
.low .wrapper main .breadcrumb {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto 50px;
  padding: 0 20px;
}
.low .wrapper main .breadcrumb li {
  list-style: none;
  margin-left: 0;
}
.low .wrapper main p {
  margin-bottom: 30px;
}
.low .wrapper main p:last-child {
  margin-bottom: 0;
}
.low .wrapper main .single__header h1,
.low .wrapper main h2 {
  color: #222222;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 100;
  line-height: 1.7;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: clamp(25px, 3vw, 35px);
  border-bottom: 1px solid #E6E6E6;
  position: relative;
}
.low .wrapper main .single__header h1::after,
.low .wrapper main h2::after {
  content: "";
  background: #9F0F0F;
  height: 1px;
  width: 200px;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.low .wrapper main .block__single .single__header p {
  font-size: 14px;
  margin-bottom: 5px;
}
.low .wrapper main .block__single .single__header h1 {
  color: #222222;
  display: block;
  position: static;
  font-weight: 100;
  line-height: 1.7;
  text-shadow: none;
  position: relative;
}
@media screen and (max-width: 980px) {
  .low .wrapper main .block__single .single__header h1 {
    padding: 0 0 15px;
  }
}
.low .wrapper main .block__single .single__content {
  margin-bottom: 80px;
}
.low .wrapper main .block__single .single__content figure {
  margin-bottom: 50px;
}
.low .wrapper main .block__single .single__content figure img {
  border-radius: 10px;
}
.low .wrapper main .block__single .single__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.low .wrapper main .block__single .single__list li {
  list-style: none;
  margin-left: 0;
  width: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.low .wrapper main .block__single .single__list li a {
  display: block;
  position: relative;
}
.low .wrapper main .block__single .single__list li a::before, .low .wrapper main .block__single .single__list li a::after {
  content: "";
  display: block;
  position: absolute;
}
.low .wrapper main .block__single .single__list li a::before {
  background: url(../img/arrow-right-red.svg) no-repeat center center;
  width: 27px;
  height: 18px;
  left: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.low .wrapper main .block__single .single__list li a::after {
  border-radius: 30px;
  width: 30px;
  height: 30px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #E6E6E6;
  z-index: -1;
}
.low .wrapper main .block__single .single__list li.back {
  width: auto;
}
.low .wrapper main .block__single .single__list li.back a {
  background: #F5F5F5;
  text-decoration: none;
  color: #222222;
  font-size: 14px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 30px;
}
.low .wrapper main .block__single .single__list li.back a::before, .low .wrapper main .block__single .single__list li.back a::after {
  content: none;
}
.low .wrapper main .block__single .single__list li.prev a::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.low .wrapper main h3 {
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.667;
  margin-bottom: 20px;
}
.low .wrapper main h3::before {
  content: "●";
  color: #9F0F0F;
  margin-right: 8px;
  font-size: 12px;
  display: block;
  padding-top: 9px;
}
.low .wrapper main h4 {
  font-weight: 700;
  margin-bottom: 20px;
}
.low .wrapper main table {
  width: 100%;
  margin: 0 auto 70px;
  border-collapse: collapse;
}
@media screen and (max-width: 780px) {
  .low .wrapper main table {
    width: 100%;
    margin-bottom: 30px;
  }
}
.low .wrapper main table th {
  text-align: left;
  border: 1px solid #E6E6E6;
  padding: 10px;
  font-weight: 700;
}
@media screen and (max-width: 780px) {
  .low .wrapper main table th {
    display: block;
    padding: 10px 0;
    border: none;
  }
}
.low .wrapper main table td {
  border: 1px solid #E6E6E6;
  padding: 10px;
}
@media screen and (max-width: 780px) {
  .low .wrapper main table td {
    display: block;
    padding: 0 0 5px;
    border: none;
  }
  .low .wrapper main table td:last-child {
    display: block;
    width: 100%;
    border-bottom: 1px solid #E6E6E6;
    padding-bottom: 10px;
  }
}
.low .wrapper main ul li {
  list-style: disc;
  margin-left: 1.5rem;
}
.low .wrapper main ol li {
  list-style: decimal;
  text-indent: 0.05em;
}
.low .wrapper main .culture__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 22px;
     -moz-column-gap: 22px;
          column-gap: 22px;
  row-gap: 50px;
}
@media screen and (max-width: 640px) {
  .low .wrapper main .culture__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.low .wrapper main .culture__list li {
  width: calc((100% - 44px) / 3);
  list-style: none;
  margin-left: 0;
}
@media screen and (max-width: 980px) {
  .low .wrapper main .culture__list li {
    width: calc(50% - 11px);
  }
}
@media screen and (max-width: 640px) {
  .low .wrapper main .culture__list li {
    width: 100%;
  }
}
.low .wrapper main .culture__list li a {
  display: block;
  text-decoration: none;
}
.low .wrapper main .culture__list li a .icon__link {
  display: inline-block;
  text-decoration: none;
  color: #222222;
  position: relative;
  margin-bottom: 10px;
}
.low .wrapper main .culture__list li a .icon__link span {
  position: relative;
  padding: 0 0 0 40px;
}
.low .wrapper main .culture__list li a .icon__link span::before, .low .wrapper main .culture__list li a .icon__link span::after {
  content: "";
  display: block;
  position: absolute;
}
.low .wrapper main .culture__list li a .icon__link span::before {
  background: url(../img/arrow-right.svg) no-repeat center center;
  width: 27px;
  height: 18px;
  left: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.low .wrapper main .culture__list li a .icon__link span::after {
  border-radius: 30px;
  width: 30px;
  height: 30px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #9F0F0F;
  z-index: -1;
}
.low .wrapper main .culture__list li a:hover .icon__link span::before {
  -webkit-animation: arrowSlide2 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: arrowSlide2 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.low .wrapper main .block__nav {
  padding-top: 50px;
  margin-top: clamp(45px, 10vw, 160px);
  border-top: 1px solid #E6E6E6;
}
.low .wrapper main .icon__link a {
  display: inline-block;
  text-decoration: none;
  color: #222222;
  position: relative;
}
.low .wrapper main .icon__link a::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 3px;
  left: 40px;
  background: #222222;
  display: block;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.low .wrapper main .icon__link a span {
  position: relative;
  padding: 0 0 0 40px;
}
.low .wrapper main .icon__link a span::before, .low .wrapper main .icon__link a span::after {
  content: "";
  display: block;
  position: absolute;
}
.low .wrapper main .icon__link a span::before {
  background: url(../img/arrow-right.svg) no-repeat center center;
  width: 27px;
  height: 18px;
  left: 2px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.low .wrapper main .icon__link a span::after {
  border-radius: 30px;
  width: 30px;
  height: 30px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #9F0F0F;
  z-index: -1;
}
.low .wrapper main .icon__link a:hover {
  opacity: 1;
}
.low .wrapper main .icon__link a:hover::before {
  width: calc(100% - 40px);
}
.low .wrapper main .icon__link a:hover span::before {
  -webkit-animation: arrowSlide2 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: arrowSlide2 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.low .wrapper main .common__col02 {
  margin-top: 60px;
}
.low .wrapper main .panel {
  border: 1px solid #E6E6E6;
  padding: 20px 30px;
}
.low .wrapper main .panel + .panel {
  border-top: none;
}
.low.significance #header {
  background: url(../img/h_significance.jpg) no-repeat center center;
  background-size: cover;
}
.low.culture #header, .low.page-template-page-culture #header {
  background: url(../img/h_culture.jpg) no-repeat center center;
  background-size: cover;
}
.low.news #header {
  background: url(../img/h_news.jpg) no-repeat center center;
  background-size: cover;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
  -webkit-appearance: none;
  /* Chrome 41+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none;
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

ul,
ol {
  list-style: none;
}

.wp-block-table {
  margin: 0;
  padding: 0;
}

.wp-block-table .has-fixed-layout {
  table-layout: unset;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .wp-block-table .has-fixed-layout {
    width: 100%;
  }
}
.wp-block-table > table {
  width: 90%;
}

@media screen and (max-width: 768px) {
  .wp-block-table > table {
    width: 100%;
  }
}
.wp-block-table th {
  border: none;
  border-bottom: 1px solid #EBEBEB;
}

@media screen and (max-width: 768px) {
  .wp-block-table th {
    border-bottom: none;
  }
}
.wp-block-table td {
  border: none;
  border-bottom: 1px solid #EBEBEB;
} 
/* =============================
   フォーム（input, textarea, button）
   ============================= */
form {
  max-width: 1030px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.form-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .form-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.form-item .f-ttl {
  width: 30%;
  font-weight: 700;
}
@media (max-width: 768px) {
  .form-item .f-ttl {
    width: 100%;
    margin-bottom: 10px;
  }
}
.form-item .f-cont {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .form-item .f-cont {
    width: 100%;
  }
}
.form-item input,
.form-item textarea {
  width: 100%;
  padding: 10px;
}

form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=url],
form input[type=number],
form input[type=password],
form textarea,
form select {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 12px;
  border: 1px solid #E6E6E6;
  border-radius: 8px;
  font-family: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}

form textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  text-align: center;
}
.submit-btn p {
  display: inline-block;
  position: relative;
  background-color: #9F0F0F;
  padding: 12px 24px 12px 40px;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.submit-btn p::before, .submit-btn p::after {
  content: "";
  display: block;
  position: absolute;
}
.submit-btn p::before {
  background: url(../img/arrow-right-red.svg) no-repeat center center;
  width: 27px;
  height: 18px;
  left: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.submit-btn p::after {
  border-radius: 30px;
  width: 20px;
  height: 20px;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.submit-btn p input {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border: none;
  margin-left: 10px;
}
.submit-btn p span {
  display: none;
}
.submit-btn p:hover {
  opacity: 1;
}
.submit-btn p:hover::before {
  -webkit-animation: arrowSlide 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: arrowSlide 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.required {
  color: #9F0F0F;
  border: 1px solid #9F0F0F;
  padding: 0 10px;
  margin: 0 20px 0 5px;
  border-radius: 10px;
  font-size: 14px;
  display: inline-block;
}

.wrapper #header .inner {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 33px 0 0;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.wrapper #header .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0.1)));
  background: -webkit-linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.1));
  background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.1));
  opacity: 0.79;
}
.wrapper #header .inner .line {
  border-bottom: 1px solid rgba(255, 255, 255, 0.43);
  padding-bottom: 33px;
}
.wrapper #header .inner.on-main {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.wrapper #header .inner.on-main::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), to(rgba(0, 0, 0, 0.3)));
  background: -webkit-linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.3));
  background: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.3));
}
.wrapper #header .inner .header__nav {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.wrapper #header .inner .header__nav .logo {
  max-width: 318px;
  width: 80%;
}
.wrapper #header .inner .header__nav nav .nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
@media screen and (max-width: 980px) {
  .wrapper #header .inner .header__nav nav .nav__list {
    display: none;
  }
}
.wrapper #header .inner .header__nav nav .nav__list .navi__item a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
}
.wrapper #header .inner .header__nav nav #nav__toggle {
  display: none;
}
@media screen and (max-width: 980px) {
  .wrapper #header .inner .header__nav nav #nav__toggle {
    display: block;
    width: 35px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  .wrapper #header .inner .header__nav nav #nav__toggle div {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    height: 50%;
  }
  .wrapper #header .inner .header__nav nav #nav__toggle span {
    position: absolute;
    display: block;
    height: 1px;
    border-radius: 2px;
    background: #fff;
    text-shadow: 0px 0px 13px rgba(0, 0, 0, 0.6980392157);
    width: 100%;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .wrapper #header .inner .header__nav nav #nav__toggle span:nth-child(1) {
    top: 7px;
  }
  .wrapper #header .inner .header__nav nav #nav__toggle span:nth-child(2) {
    top: 14px;
  }
  .wrapper #header .inner .header__nav nav #nav__toggle span:nth-child(3) {
    top: 21px;
  }
  .wrapper #header .inner .header__nav nav #nav__toggle span:nth-child(4) {
    top: 28px;
  }
}
.wrapper #header .slide {
  position: relative;
  height: 100%;
}
.wrapper #header .slide .home_slide,
.wrapper #header .slide .slick-list,
.wrapper #header .slide .slick-track {
  height: 100%;
}
.wrapper #header .slide li {
  height: 100%;
}
.wrapper #header .slide li img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrapper #header .slide h1 {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 35%;
  -webkit-transform: translate(-35%, -50%);
          transform: translate(-35%, -50%);
  color: #fff;
  font-size: clamp(40px, 7vw, 70px);
  font-weight: 700;
  line-height: 1.171;
  text-shadow: 0px 0px 13px rgba(0, 0, 0, 0.6980392157);
}
@media screen and (max-width: 980px) {
  .wrapper #header .slide h1 {
    top: 40%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0%, -40%);
            transform: translate(0%, -40%);
    margin: auto;
    padding: 0 20px;
  }
}
@media screen and (max-width: 780px) {
  .wrapper #header .slide h1 {
    right: auto;
    -webkit-transform: translate(0%, 30%);
            transform: translate(0%, 30%);
    top: 30%;
  }
}
.wrapper #header .slide .btn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0 20px;
}
@media screen and (max-width: 780px) {
  .wrapper #header .slide .btn {
    width: 100%;
    left: 0;
    right: 0;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    margin: auto;
  }
}
.wrapper #header .slide .btn a {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1607843137);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  padding: 25px;
  min-width: 614px;
  margin: 0 auto;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-shadow: 0px 0px 13px rgba(0, 0, 0, 0.6980392157);
  position: relative;
}
@media screen and (max-width: 780px) {
  .wrapper #header .slide .btn a {
    min-width: auto;
    width: 100%;
  }
}
.wrapper #header .slide .btn a span {
  position: relative;
  padding: 0 30px 0 0;
}
.wrapper #header .slide .btn a span::before, .wrapper #header .slide .btn a span::after {
  content: "";
  display: block;
  position: absolute;
}
.wrapper #header .slide .btn a span::before {
  background: url(../img/arrow-right.svg) no-repeat center center;
  width: 7px;
  height: 6px;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.wrapper #header .slide .btn a span::after {
  border-radius: 10px;
  width: 18px;
  height: 18px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #9F0F0F;
  z-index: -1;
}
.wrapper #header .slide .btn a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.25);
}
.wrapper #header .slide .btn a:hover span::before {
  -webkit-animation: arrowSlide 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: arrowSlide 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.wrapper #header.open {
  position: fixed;
  right: 0;
  width: 100% !important;
  height: 100vh;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  overflow-y: scroll;
}
.wrapper #header.open .inner {
  padding-left: 20px;
  padding-right: 20px;
  background: none !important;
  text-align: center;
}
.wrapper #header.open .inner .header__nav {
  width: 100%;
  display: block;
}
.wrapper #header.open .inner .header__nav nav {
  padding-top: 50px;
  display: inline-block;
  text-align: left;
}
.wrapper #header.open .inner .header__nav nav .nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wrapper #header.open .inner .header__nav nav .nav__list .navi__item a {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}
.wrapper #header.open .inner .header__nav nav #nav__toggle {
  display: block;
  z-index: 101;
  top: -10px;
  width: 35px;
  height: 40px;
  position: absolute;
  right: 0;
  cursor: pointer;
}
.wrapper #header.open .inner .header__nav nav #nav__toggle span {
  background: #fff;
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
}
.wrapper #header.open .inner .header__nav nav #nav__toggle span:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.wrapper #header.open .inner .header__nav nav #nav__toggle span:nth-child(2), .wrapper #header.open .inner .header__nav nav #nav__toggle span:nth-child(3) {
  width: 0;
  left: 50%;
}
.wrapper #header.open .inner .header__nav nav #nav__toggle span:nth-child(4) {
  top: 20px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.wrapper #header.open .slide, .wrapper #header.open .wrap__h1 {
  display: none;
}

.wrapper footer {
  background: #222222;
  padding: 60px 0 30px;
  color: #fff;
}
.wrapper footer .inner {
  max-width: 1300px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.wrapper footer .footer__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
  position: relative;
}
@media screen and (max-width: 780px) {
  .wrapper footer .footer__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.wrapper footer .footer__link .logo {
  width: 140px;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 780px) {
  .wrapper footer .footer__link .logo {
    position: static;
    margin: 0 auto;
  }
}
.wrapper footer .footer__link nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 980px) {
  .wrapper footer .footer__link nav {
    padding-top: 100px;
  }
}
@media screen and (max-width: 780px) {
  .wrapper footer .footer__link nav {
    padding-top: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 680px) {
  .wrapper footer .footer__link nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin: 0;
  }
}
.wrapper footer .footer__link nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wrapper footer .footer__link nav > ul > li > a {
  font-size: 14px;
  color: #F6F7F7;
  text-decoration: none;
}
.wrapper footer .footer__link nav > ul > li ul {
  margin-left: 10px;
}
.wrapper footer .footer__link nav > ul > li ul li a {
  font-size: 14px;
  color: #F6F7F7;
  text-decoration: none;
}
.wrapper footer .line {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.wrapper footer .line .site__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.wrapper footer .line .site__link li a {
  font-size: 16px;
  color: #F6F7F7;
  text-decoration: none;
}
.wrapper footer p {
  text-align: center;
  font-size: 12px;
  margin-top: 20px;
  color: #F6F7F7;
}

/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
  -webkit-appearance: none;
  /* Chrome 41+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none;
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

ul,
ol {
  list-style: none;
}

.wp-block-table {
  margin: 0;
  padding: 0;
}
.wp-block-table .has-fixed-layout {
  table-layout: unset;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .wp-block-table .has-fixed-layout {
    width: 100%;
  }
}

.wp-block-table > table {
  width: 90%;
}
@media screen and (max-width: 768px) {
  .wp-block-table > table {
    width: 100%;
  }
}

.wp-block-table th {
  border: none;
  border-bottom: 1px solid #EBEBEB;
}
@media screen and (max-width: 768px) {
  .wp-block-table th {
    border-bottom: none;
  }
}

.wp-block-table td {
  border: none;
  border-bottom: 1px solid #EBEBEB;
}/*# sourceMappingURL=style.css.map */