@charset "UTF-8";
/*下から出現*/
.fadeup {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -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;
}

.fadeup.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*アイテムのアニメーション*/
/*── 汎用アニメーション定義 ──*/
.items-animate > * {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, -webkit-transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

/* visible がついたらスライド＆フェードイン */
.items-animate.visible > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*── 遅延：横並び / PC ──*/
@media (min-width: 769px) {
  .items-animate.visible > *:nth-child(1) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .items-animate.visible > *:nth-child(2) {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .items-animate.visible > *:nth-child(3) {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .items-animate.visible > *:nth-child(4) {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .items-animate.visible > *:nth-child(5) {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
}
/*── 遅延：縦並び / SP ──*/
@media (max-width: 768px) {
  .items-animate.visible > *:nth-child(1) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .items-animate.visible > *:nth-child(2) {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .items-animate.visible > *:nth-child(3) {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .items-animate.visible > *:nth-child(4) {
    -webkit-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .items-animate.visible > *:nth-child(5) {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black-bg: #1B1B1B;
  --white-text: #FDFDFD;
  --dark-text: #333333;
  --main-font: "Noto Serif JP", serif;
  --base-spacing: 20px;
}

body {
  font-family: var(--main-font);
  color: var(--dark-text);
  background: #fdfdfd;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--dark-text);
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

.dark-text {
  color: var(--dark-text);
}

/* noto-serif-jp-regular - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-serif-jp-v30-japanese-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-jp-500 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-serif-jp-v30-japanese-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-jp-600 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/noto-serif-jp-v30-japanese-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-jp-700 - japanese */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-serif-jp-v30-japanese-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.layout-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  padding: 20px 30px;
  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;
}
@media screen and (max-width: 1024px) {
  .layout-header {
    padding: 10px;
  }
}
.layout-header.is-scrolled {
  background-color: #fdfdfd;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.layout-header__logo {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .layout-header__logo {
    width: 75%;
    position: relative;
    z-index: 1001;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .layout-header__logo {
    position: relative;
    width: 50%;
    z-index: 1001;
  }
}
.layout-header__logo img {
  width: 90%;
}
.layout-header__nav .nav-menu {
  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: 20px;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .layout-header__nav .nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.layout-header__nav .nav-menu li {
  position: relative;
}
.layout-header__nav .nav-menu li a {
  text-decoration: none;
  color: var(--white-text);
  font-size: 0.95rem;
  padding: 1rem;
  display: block;
}
.layout-header__nav .nav-menu li .sub-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 180px;
  background-color: rgba(0, 0, 0, 0.95);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
}
.layout-header__nav .nav-menu li .sub-menu li a {
  color: #fdfdfd;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  display: block;
  position: relative;
  padding-left: 1.8rem;
  white-space: nowrap;
}
.layout-header__nav .nav-menu li .sub-menu li a::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #fdfdfd;
  border-right: 1px solid #fdfdfd;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.layout-header__nav .nav-menu li .sub-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.layout-header__nav .nav-menu li .sub-menu li a:hover::before {
  color: #fdfdfd;
}
.layout-header__nav .nav-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
@media screen and (min-width: 1025px) {
  .layout-header.is-scrolled .nav-menu li a {
    color: var(--dark-text);
  }
}

.layout-header-2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fdfdfd;
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  padding: 20px 30px;
  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;
}
@media screen and (max-width: 1024px) {
  .layout-header-2 {
    padding: 10px;
  }
}
.layout-header-2.is-scrolled {
  background-color: #fdfdfd;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.layout-header-2__logo {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .layout-header-2__logo {
    width: 75%;
    position: relative;
    z-index: 1001;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .layout-header-2__logo {
    position: relative;
    width: 50%;
    z-index: 1001;
  }
}
.layout-header-2__logo img {
  width: 90%;
}
.layout-header-2__nav .nav-menu {
  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: 20px;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .layout-header-2__nav .nav-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.layout-header-2__nav .nav-menu li {
  position: relative;
}
.layout-header-2__nav .nav-menu li a {
  text-decoration: none;
  color: var(--dark-text);
  font-size: 0.95rem;
  padding: 1rem;
  display: block;
}
.layout-header-2__nav .nav-menu li .sub-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 180px;
  background-color: rgba(0, 0, 0, 0.95);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
}
.layout-header-2__nav .nav-menu li .sub-menu li a {
  color: #fdfdfd;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  display: block;
  position: relative;
  padding-left: 1.8rem;
  white-space: nowrap;
}
.layout-header-2__nav .nav-menu li .sub-menu li a::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid #fdfdfd;
  border-right: 1px solid #fdfdfd;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.layout-header-2__nav .nav-menu li .sub-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.layout-header-2__nav .nav-menu li .sub-menu li a:hover::before {
  color: #fdfdfd;
}
.layout-header-2__nav .nav-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

/*--- SPメニュー ---*/
@media screen and (max-width: 1024px) {
  .layout-header__nav .nav-menu, .layout-header-2__nav .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 0;
    background-color: #1B1B1B;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index: 1000;
    -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;
    padding-top: 4rem;
    gap: 0;
  }
  .layout-header__nav .nav-menu li, .layout-header-2__nav .nav-menu li {
    width: 100%;
    border-bottom: 0.8px solid #fdfdfd;
    position: relative;
    padding: 5px 0;
  }
  .layout-header__nav .nav-menu li:first-of-type, .layout-header-2__nav .nav-menu li:first-of-type {
    border-top: 0.8px solid #fdfdfd;
  }
  .layout-header__nav .nav-menu li:last-of-type, .layout-header-2__nav .nav-menu li:last-of-type {
    border-bottom: none;
  }
  .layout-header__nav .nav-menu li a, .layout-header-2__nav .nav-menu li a {
    display: block;
    padding: 10px;
    color: #fdfdfd;
    text-decoration: none;
    position: relative;
  }
  .layout-header__nav .nav-menu li .sub-menu, .layout-header-2__nav .nav-menu li .sub-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #1b1b1b;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-out, opacity 0.2s ease-out, padding 0.2s ease-out;
    transition: max-height 0.3s ease-out, opacity 0.2s ease-out, padding 0.2s ease-out;
    opacity: 0;
    position: relative;
    padding: 0;
  }
  .layout-header__nav .nav-menu li .sub-menu li, .layout-header-2__nav .nav-menu li .sub-menu li {
    border-bottom: none;
  }
  .layout-header__nav .nav-menu li .sub-menu li:first-of-type, .layout-header-2__nav .nav-menu li .sub-menu li:first-of-type {
    border-top: none;
  }
  .layout-header__nav .nav-menu li .sub-menu li a, .layout-header-2__nav .nav-menu li .sub-menu li a {
    padding: 10px 20px;
    font-size: 0.9rem;
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: none;
    transition: none;
  }
  .layout-header__nav .nav-menu li .sub-menu li a::before, .layout-header-2__nav .nav-menu li .sub-menu li a::before {
    content: none;
  }
  .layout-header__nav .nav-menu li.submenu-open .sub-menu, .layout-header-2__nav .nav-menu li.submenu-open .sub-menu {
    display: block;
    position: static;
    max-height: 500px;
    opacity: 1;
    padding: 10px 0;
    -webkit-transition: max-height 0.8s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
    transition: max-height 0.8s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
    visibility: visible;
  }
  .layout-header__nav .nav-menu li.submenu-open .sub-menu li a, .layout-header-2__nav .nav-menu li.submenu-open .sub-menu li a {
    color: #fdfdfd;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    display: block;
    position: relative;
    padding-left: 1.8rem;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
    transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .layout-header__nav .nav-menu li.submenu-open .sub-menu li a::before, .layout-header-2__nav .nav-menu li.submenu-open .sub-menu li a::before {
    content: none;
  }
  .layout-header__nav.open .nav-menu, .layout-header-2__nav.open .nav-menu {
    opacity: 1;
    visibility: visible;
  }
  .submenu-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: none;
    border: none;
    color: #fdfdfd;
    font-size: 1.4rem;
    z-index: 1002;
    padding: 0;
    cursor: pointer;
    line-height: 1;
  }
  .sub-menu {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease, opacity 0.3s ease;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  .submenu-open .sub-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
}
/*--- ハンバーガーメニュー トップページ ---*/
.toggle-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .toggle-btn {
    display: block;
    cursor: pointer;
    position: relative;
    width: 60px;
    height: 60px;
    z-index: 1300;
    margin-left: auto;
  }
  .toggle-btn span {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 28px;
    height: 2px;
    background-color: #fdfdfd;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .toggle-btn span:nth-child(1) {
    top: 18px;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .toggle-btn span:nth-child(2) {
    top: 28px;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  .toggle-btn span:nth-child(3) {
    top: 38px;
  }
}

/*--- ハンバーガーメニュー 下層ページ ---*/
.layout-header-2__nav .toggle-btn span {
  background-color: #333 !important;
}

.layout-header__nav.open .toggle-btn span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(-135deg);
          transform: translateX(-50%) rotate(-135deg);
  top: 28px; /* バツ印の中央に揃える */
}
.layout-header__nav.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
.layout-header__nav.open .toggle-btn span:nth-child(3) {
  -webkit-transform: translateX(-50%) rotate(135deg);
          transform: translateX(-50%) rotate(135deg);
  top: 28px; /* バツ印の中央に揃える */
  left: 50%;
  width: 28px;
}

.layout-header-2__nav.open .toggle-btn span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(-135deg);
          transform: translateX(-50%) rotate(-135deg);
  top: 28px; /* バツ印の中央に揃える */
  background-color: #fdfdfd !important;
}
.layout-header-2__nav.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
.layout-header-2__nav.open .toggle-btn span:nth-child(3) {
  -webkit-transform: translateX(-50%) rotate(135deg);
          transform: translateX(-50%) rotate(135deg);
  top: 28px; /* バツ印の中央に揃える */
  left: 50%;
  width: 28px;
  background-color: #fdfdfd !important;
}

.is-scrolled .toggle-btn span {
  background-color: var(--dark-text);
}

.is-scrolled .open .toggle-btn span {
  background-color: var(--white-text);
}

.layout-footer {
  background-color: var(--black-bg);
  color: var(--white-text);
  font-size: 0.95rem;
}
.layout-footer-container {
  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;
  padding: 60px 30px;
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .layout-footer-container {
    padding: 30px 0;
    max-width: 95%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.layout-footer__left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 280px;
}
@media screen and (max-width: 1024px) {
  .layout-footer__left {
    text-align: center;
  }
}
.layout-footer__left img {
  width: 88%;
}
@media screen and (max-width: 767px) {
  .layout-footer__left img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .layout-footer__left img {
    width: 80%;
  }
}
.layout-footer__left p {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .layout-footer__left p {
    text-align: center;
  }
}
.layout-footer__right {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
  min-width: 300px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .layout-footer__right {
    margin-left: 0;
  }
}
.layout-footer__right .footer-menu {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 15px 30px;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .layout-footer__right .footer-menu {
    grid-template-columns: repeat(2, auto);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .layout-footer__right .footer-menu {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .layout-footer__right .footer-menu li {
    margin-bottom: 15px;
  }
}
.layout-footer__right .footer-menu li a {
  color: var(--white-text);
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.layout-footer__right .footer-menu li a:hover {
  opacity: 0.7;
}
.layout-footer__right .footer-menu li .footer-sub-menu {
  margin-top: 8px;
  padding-left: 0;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .layout-footer__right .footer-menu li .footer-sub-menu {
    margin-top: 3px;
  }
}
.layout-footer__right .footer-menu li .footer-sub-menu li {
  margin: 2px 0;
}
.layout-footer__right .footer-menu li .footer-sub-menu li a {
  font-weight: normal;
  font-size: 0.8rem;
  color: #fdfdfd;
}
.layout-footer__right .footer-menu li .footer-sub-menu li a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.layout-footer__bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #fdfdfd;
}

.post-section img {
  display: inline-block;
  margin: 20px 0;
}

.event-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .event-card-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}
.event-card-list .event-card {
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  background: #fff;
  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;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.event-card-list .event-card:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.event-card-list .event-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.event-card-list .event-card__img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.event-card-list .event-card__body {
  padding: 10px 15px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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;
}
.event-card-list .event-card__title {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 4px;
  color: var(--dark-text);
}
.event-card-list .event-card__date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 8px;
}
.event-card-list .event-card__excerpt {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
}

.post-tuhmbnail {
  text-align: center;
}

.post-date {
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .header-reserve {
    margin: 40px auto;
    width: 50% !important;
    text-align: center;
    display: inline-block;
  }
}

.header-btn {
  display: inline-block;
  padding: 10px 20px !important;
  border: 1px solid #fdfdfd;
  font-weight: bold;
}
.header-btn--reserve {
  color: var(--white-text);
}

@media screen and (min-width: 1025px) {
  .is-scrolled .header-btn {
    border: 1px solid var(--dark-text);
  }
}
.btn-block {
  text-align: center;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .btn-block {
    margin: 0;
  }
}

.header-btn-bk {
  display: inline-block;
  padding: 10px 20px !important;
  border: 1px solid #333;
  font-weight: bold;
}
.header-btn-bk--reserve {
  color: var(--dark-text);
}

.open .header-btn-bk {
  border: 1px solid #fdfdfd;
  font-weight: bold;
}

.btn-block-right {
  text-align: right;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  .btn-block-right {
    margin: 0;
  }
}

.btn-arrow {
  position: relative;
  color: #333;
  display: inline-block;
  font-size: 1rem;
  text-decoration: none;
  padding-right: 60px;
  margin: 20px 0;
}
.btn-arrow::before, .btn-arrow::after {
  content: "";
  position: absolute;
  bottom: 6px;
  height: 1px;
  background: #333;
}
.btn-arrow::before {
  width: 40px;
  right: 0;
}
.btn-arrow::after {
  width: 12px;
  right: -5px;
  bottom: 13px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.btn-arrow:hover {
  opacity: 0.7;
}

.btn-wh {
  color: var(--white-text);
}
.btn-wh::before, .btn-wh::after {
  content: "";
  background: #fdfdfd;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 20px;
  }
}

.section-title-wh {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
  color: var(--white-text);
}
@media screen and (max-width: 767px) {
  .section-title-wh {
    margin-bottom: 20px;
  }
}

.section-sub-title {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .section-sub-title {
    text-align: center;
  }
}

/*--- パンくずリスト ---*/
.breadcrumb-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1rem;
}
.breadcrumb-block li {
  margin-right: 30px;
  display: inline-block;
  position: relative;
  font-size: 0.8rem;
}
.breadcrumb-block li:nth-of-type(1)::after, .breadcrumb-block li:nth-last-of-type(2)::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 2px;
  right: -18px;
  bottom: 0;
  margin: auto;
}

.container {
  max-width: 1160px;
  margin: 80px auto;
}
@media screen and (max-width: 1024px) {
  .container {
    max-width: 95%;
    margin: 50px auto;
  }
}

.container-has-back {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 0;
}
@media screen and (max-width: 1024px) {
  .container-has-back {
    max-width: 95%;
    margin: 0 auto;
    padding: 20px 0;
  }
}

.padding-td {
  padding: 40px 0;
}
@media screen and (max-width: 1024px) {
  .padding-td {
    padding: 20px 0;
  }
}

.margin-td {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .margin-td {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.back-color {
  background-color: rgba(27, 27, 27, 0.4);
}

.section-top {
  position: relative;
  text-align: center;
}
.section-top .back-color-2 {
  position: relative;
}
.section-top .back-color-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-color: rgba(27, 27, 27, 0.4);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .section-top .back-color-2::before {
    height: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section-top .back-color-2::before {
    height: 350px;
  }
}
.section-top .back-color-2 img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 40%;
     object-position: 50% 40%;
}
@media screen and (max-width: 767px) {
  .section-top .back-color-2 img {
    height: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section-top .back-color-2 img {
    height: 350px;
  }
}
.section-top .section-top-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  color: var(--white-text);
  font-size: 3rem;
  font-weight: 400;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .section-top .section-top-title {
    font-size: 2rem;
    width: 95%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section-top .section-top-title {
    width: 100%;
    font-size: 2.5rem;
  }
}

.section-description .section-inner {
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .section-description .section-inner {
    max-width: 100%;
  }
}
.section-description .section-inner p {
  display: inline-block;
  text-align: left;
}

.section-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .section-hero {
    height: 75vh;
  }
}
.section-hero .slide {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 4s ease-in-out;
  transition: opacity 1s ease-in-out, -webkit-transform 4s ease-in-out;
  transition: opacity 1s ease-in-out, transform 4s ease-in-out;
  transition: opacity 1s ease-in-out, transform 4s ease-in-out, -webkit-transform 4s ease-in-out;
  z-index: 0;
}
.section-hero .slide.active {
  opacity: 1;
  z-index: 1;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.section-hero .hero-title {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .section-hero .hero-title {
    width: 90%;
  }
}
.section-hero .hero-title img {
  width: 100%;
}
.section-hero .scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 24px;
  height: 24px;
  z-index: 10;
}
.section-hero .scroll-down span {
  display: block;
  width: 24px;
  height: 24px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
  -webkit-animation: scrollBounce 2s infinite;
          animation: scrollBounce 2s infinite;
}
@-webkit-keyframes scrollBounce {
  0% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
  30% {
    -webkit-transform: translateY(0.5em) rotate(-45deg);
            transform: translateY(0.5em) rotate(-45deg);
  }
  60% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
}
@keyframes scrollBounce {
  0% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
  30% {
    -webkit-transform: translateY(0.5em) rotate(-45deg);
            transform: translateY(0.5em) rotate(-45deg);
  }
  60% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
}

.section-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.section-info .info-news,
.section-info .info-calendar {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 48%;
      -ms-flex: 1 1 48%;
          flex: 1 1 48%;
}
.section-info .info-news__title,
.section-info .info-calendar__title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--dark-text);
  font-weight: bold;
  border-left: 4px solid var(--black-bg);
  padding-left: 10px;
}
.section-info .info-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-info .info-news__list .info-news__item {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.95rem;
  color: var(--dark-text);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.section-info .info-news__list .info-news__item .date {
  color: #888;
  font-size: 0.85rem;
  margin-right: 10px;
}
.section-info .calendar-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.9rem;
}
.section-info .calendar-table th {
  background: #f3f3f3;
  color: var(--black-bg);
  padding: 8px;
}
.section-info .calendar-table td {
  padding: 10px;
  border: 1px solid #ddd;
}

.section-events .event-swiper {
  position: relative;
  padding: 0 20px;
}
.section-events .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.section-events .event-card {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 260px;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}
.section-events .event-card .event-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  height: 100%;
}
.section-events .event-card .event-card__link:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.section-events .event-card__img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-events .event-card__body {
  padding: 10px 15px;
}
.section-events .event-card__title {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 4px;
  color: var(--dark-text);
}
.section-events .event-card__date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 8px;
}
.section-events .event-card__excerpt {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
}
.section-events .swiper-button-prev,
.section-events .swiper-button-next {
  color: #666;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 10;
  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;
  outline: none;
}
.section-events .swiper-button-prev::after,
.section-events .swiper-button-next::after {
  font-size: 16px;
  font-weight: normal;
  color: #666;
}
.section-events .swiper-button-prev:hover,
.section-events .swiper-button-next:hover {
  background-color: #f0f0f0;
}
.section-events .swiper-button-prev:hover::after,
.section-events .swiper-button-next:hover::after {
  color: #333;
}

.section-about {
  background: url("../images/top-about.jpg") center center/cover no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
}
.section-about .about-cotaniner {
  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: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  overflow: hidden;
  color: var(--white-text);
}
@media screen and (max-width: 1024px) {
  .section-about .about-cotaniner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-about .about-cotaniner .about-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 45%;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .section-about .about-cotaniner .about-text {
    width: 100%;
    padding: 0 0 20px 0;
  }
}
.section-about .about-cotaniner .about-text__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.section-about .about-cotaniner .about-text__desc {
  font-size: 1rem;
  line-height: 1.8;
}
.section-about .about-cotaniner .about-image {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 45%;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  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;
}
@media screen and (max-width: 1024px) {
  .section-about .about-cotaniner .about-image {
    width: 100%;
  }
}
.section-about .about-cotaniner .about-image img {
  width: 500px;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .section-about .about-cotaniner .about-image img {
    width: 100%;
    height: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section-about .about-cotaniner .about-image img {
    width: 100%;
    height: 450px;
    -o-object-position: center 15%;
       object-position: center 15%;
  }
}

.section-collection {
  background-color: var(--black-bg);
}
.section-collection .collection-items {
  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;
  gap: 30px;
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .section-collection .collection-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 95%;
    gap: 20px;
  }
}
.section-collection .collection-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 calc(20% - 20px);
      -ms-flex: 0 1 calc(20% - 20px);
          flex: 0 1 calc(20% - 20px);
  overflow: hidden;
  text-align: center;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .section-collection .collection-item {
    width: 100%;
  }
}
.section-collection .collection-item a {
  display: block;
  text-decoration: none;
  color: var(--white-text);
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .section-collection .collection-item 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: 12px;
  }
}
.section-collection .collection-item a img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .section-collection .collection-item a img {
    width: 48%;
  }
}
.section-collection .collection-item a p {
  margin: 12px 0;
}
@media screen and (max-width: 767px) {
  .section-collection .collection-item a p {
    width: 40%;
    text-align: left;
  }
}

.section-ads {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.section-ads a {
  display: block;
  width: 180px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .section-ads a {
    width: 45%;
  }
}
.section-ads a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.section-ads a img {
  width: 100%;
  height: auto;
}

.section-facility .section-description {
  line-height: 1.8;
  max-width: 800px;
  margin: 80px auto;
}
@media screen and (max-width: 1024px) {
  .section-facility .section-description {
    max-width: 100%;
    margin: 50px auto;
  }
}

.facility-gallery .facility-item-left {
  max-width: 90%;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .facility-gallery .facility-item-left {
    max-width: 95%;
    margin: 50px auto;
  }
}
.facility-gallery .facility-item-left .flex {
  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;
}
@media screen and (max-width: 1024px) {
  .facility-gallery .facility-item-left .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.facility-gallery .facility-item-left .flex img {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .facility-gallery .facility-item-left .flex img {
    width: 100%;
  }
}
.facility-gallery .facility-item-left .flex .facility-item-text {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .facility-gallery .facility-item-left .flex .facility-item-text {
    margin-top: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .facility-gallery .facility-item-left .flex .slide-space {
    margin-top: 280px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .facility-gallery .facility-item-left .flex .slide-space {
    margin-top: 520px;
  }
}
.facility-gallery .facility-item-left .flex .slideshow {
  position: relative;
  width: 55%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .facility-gallery .facility-item-left .flex .slideshow {
    width: 100%;
  }
}
.facility-gallery .facility-item-left .flex .slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  -webkit-animation: fadeSlide 8s infinite;
          animation: fadeSlide 8s infinite;
}
.facility-gallery .facility-item-left .flex .slideshow img:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.facility-gallery .facility-item-left .flex .slideshow img:nth-child(2) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.facility-gallery .facility-item-right {
  max-width: 90%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .facility-gallery .facility-item-right {
    max-width: 95%;
    margin: 50px auto;
  }
}
.facility-gallery .facility-item-right .flex {
  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;
}
@media screen and (max-width: 1024px) {
  .facility-gallery .facility-item-right .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.facility-gallery .facility-item-right .flex .facility-item-text {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .facility-gallery .facility-item-right .flex .facility-item-text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 20px;
  }
}
.facility-gallery .facility-item-right .flex img {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .facility-gallery .facility-item-right .flex img {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

@-webkit-keyframes fadeSlide {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.whole-view {
  margin-top: 160px;
}
@media screen and (max-width: 1024px) {
  .whole-view {
    margin-top: 0;
  }
}
.whole-view img {
  width: 100%;
}
.whole-view .vr-container {
  text-align: center;
}
.whole-view .vr-container .wpvr-cardboard {
  margin: 0 auto;
  max-width: 800px !important;
  height: 450px !important;
}
@media screen and (max-width: 767px) {
  .whole-view .vr-container .wpvr-cardboard {
    max-width: 100% !important;
    height: 350px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .whole-view .vr-container .wpvr-cardboard {
    max-width: 100% !important;
    height: 400px !important;
  }
}

.about-section .about-left {
  max-width: 90%;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .about-section .about-left {
    max-width: 95%;
    margin: 0 auto;
  }
}
.about-section .about-left .flex {
  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;
}
@media screen and (max-width: 1024px) {
  .about-section .about-left .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.about-section .about-left .flex .about-image {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .about-section .about-left .flex .about-image {
    width: 100%;
  }
}
.about-section .about-left .flex .about-image img {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 15%;
     object-position: center 15%;
}
@media screen and (max-width: 767px) {
  .about-section .about-left .flex .about-image img {
    height: 350px;
  }
}
.about-section .about-left .flex .about-image p {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}
.about-section .about-left .flex .about-text {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .about-section .about-left .flex .about-text {
    margin-top: 20px;
    width: 100%;
  }
}
.about-section .about-left .flex .about-text p {
  line-height: 1.8rem;
}

.profile__table {
  width: 100%;
  border-collapse: collapse;
}
.profile__table tr:first-child {
  border-top: 1px solid #E4E4E4;
}
.profile__table td {
  padding: 1rem;
  border-bottom: 1px solid #E4E4E4;
  vertical-align: top;
}
.profile__table td:first-child {
  width: 20%;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .profile .profile__table,
  .profile .profile__table tbody,
  .profile .profile__table tr,
  .profile .profile__table td {
    display: block;
    width: 100%;
  }
  .profile .profile__table tr {
    border-top: 1px solid #E4E4E4;
  }
  .profile .profile__table tr:last-child {
    border-bottom: 1px solid #E4E4E4;
  }
  .profile .profile__table td {
    padding: 0.5rem 0 0.8rem 0;
    border-bottom: none;
  }
  .profile .profile__table td:first-child {
    font-weight: bold;
    color: var(--dark-text);
    margin-bottom: 0.2rem;
    width: auto;
    white-space: normal;
  }
}

.message-section-inner .director-name {
  text-align: right;
}

.items-section-description .items-section-inner {
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .items-section-description .items-section-inner {
    max-width: 100%;
    margin: 50px auto;
  }
}

.items-section .items-contents {
  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;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .items-section .items-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
  }
}
.items-section .items-contents .item-content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 calc(20% - 20px);
      -ms-flex: 0 1 calc(20% - 20px);
          flex: 0 1 calc(20% - 20px);
  overflow: hidden;
  text-align: center;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
}
.items-section .items-contents .item-content a {
  display: block;
}
.items-section .items-contents .item-content a img {
  width: 100%;
}
.items-section .items-contents .item-content a h3 {
  font-weight: 400;
  padding: 0 10px;
  margin-bottom: 15px;
}
.items-section .items-contents .item-content a p {
  padding: 0 10px;
  text-align: left;
}

.kinkara-section .kinkara-left {
  max-width: 90%;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .kinkara-section .kinkara-left {
    max-width: 95%;
    margin: 50px auto;
  }
}
.kinkara-section .kinkara-left .flex {
  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;
}
@media screen and (max-width: 1024px) {
  .kinkara-section .kinkara-left .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.kinkara-section .kinkara-left .flex .kinkara-image {
  width: 50%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .kinkara-section .kinkara-left .flex .kinkara-image {
    width: 100%;
  }
}
.kinkara-section .kinkara-left .flex .kinkara-image img {
  width: 100%;
  height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .kinkara-section .kinkara-left .flex .kinkara-image img {
    height: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .kinkara-section .kinkara-left .flex .kinkara-image img {
    height: 450px;
  }
}
.kinkara-section .kinkara-left .flex .kinkara-text {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .kinkara-section .kinkara-left .flex .kinkara-text {
    width: 100%;
  }
}
.kinkara-section .kinkara-left .flex .kinkara-text p {
  line-height: 1.8rem;
}
.kinkara-section .kinkara-right {
  max-width: 90%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .kinkara-section .kinkara-right {
    max-width: 95%;
    margin: 50px auto;
  }
}
.kinkara-section .kinkara-right .flex {
  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;
}
@media screen and (max-width: 1024px) {
  .kinkara-section .kinkara-right .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.kinkara-section .kinkara-right .flex .kinkara-image {
  width: 50%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .kinkara-section .kinkara-right .flex .kinkara-image {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.kinkara-section .kinkara-right .flex .kinkara-image img {
  width: 100%;
  height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .kinkara-section .kinkara-right .flex .kinkara-image img {
    height: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .kinkara-section .kinkara-right .flex .kinkara-image img {
    height: 450px;
  }
}
.kinkara-section .kinkara-right .flex .kinkara-text {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .kinkara-section .kinkara-right .flex .kinkara-text {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
.kinkara-section .kinkara-right .flex .kinkara-text p {
  line-height: 1.8rem;
}

.berian-section .berian-left {
  max-width: 90%;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .berian-section .berian-left {
    max-width: 95%;
    margin: 50px auto;
  }
}
.berian-section .berian-left .flex {
  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;
}
@media screen and (max-width: 1024px) {
  .berian-section .berian-left .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.berian-section .berian-left .flex .berian-image {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .berian-section .berian-left .flex .berian-image {
    width: 100%;
    margin-bottom: 20px;
  }
}
.berian-section .berian-left .flex .berian-image img {
  width: 100%;
}
.berian-section .berian-left .flex .berian-text {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .berian-section .berian-left .flex .berian-text {
    width: 100%;
  }
}
.berian-section .berian-left .flex .berian-text p {
  line-height: 1.8rem;
}
.berian-section .berian-right {
  max-width: 90%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .berian-section .berian-right {
    max-width: 95%;
    margin: 50px auto;
  }
}
.berian-section .berian-right .flex {
  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;
}
@media screen and (max-width: 1024px) {
  .berian-section .berian-right .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.berian-section .berian-right .flex .berian-image {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .berian-section .berian-right .flex .berian-image {
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.berian-section .berian-right .flex .berian-image img {
  width: 100%;
}
.berian-section .berian-right .flex .berian-text {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .berian-section .berian-right .flex .berian-text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.berian-section .berian-right .flex .berian-text p {
  line-height: 1.8rem;
}

.fusuma-section-inner .fusuma-description {
  text-align: center;
}
.fusuma-section-inner .flex {
  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;
  margin: 40px auto;
}
@media screen and (max-width: 1024px) {
  .fusuma-section-inner .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fusuma-section-inner .fusuma-image {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .fusuma-section-inner .fusuma-image {
    width: 100%;
  }
}
.fusuma-section-inner .fusuma-image img {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .fusuma-section-inner .fusuma-image img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fusuma-section-inner .fusuma-image img {
    width: 70%;
    display: block;
    margin: 0 auto;
  }
}
.fusuma-section-inner .fusuma-text {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .fusuma-section-inner .fusuma-text {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fusuma-section-inner .fusuma-text {
    width: 70%;
  }
}
.fusuma-section-inner .fusuma-text p {
  font-size: 1.2rem;
  line-height: 3rem;
}

.new-testament-contents {
  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;
}
@media screen and (max-width: 767px) {
  .new-testament-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .new-testament-contents {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.new-testament-contents .new-testament-content {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .new-testament-contents .new-testament-content {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .new-testament-contents .new-testament-content {
    width: 48%;
    margin-bottom: 20px;
  }
}
.new-testament-contents .new-testament-content img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .new-testament-contents .new-testament-content img {
    width: 100%;
    height: 250px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .new-testament-contents .new-testament-content img {
    width: 100%;
    height: 250px;
  }
}
.new-testament-contents .new-testament-content .hymn {
  -o-object-position: 10% center;
     object-position: 10% center;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
}
.info-table th, .info-table td {
  padding: 1em;
  vertical-align: top;
}
.info-table th {
  width: 25%;
  background-color: #f8f8f8;
  color: #222;
  font-weight: bold;
  border: 1px solid #ddd;
}
.info-table td {
  border: 1px solid #eee;
  line-height: 1.8;
  color: #444;
}
.info-table td ul {
  margin: 0;
  padding-left: 1.5em;
}
.info-table td ul li {
  list-style-type: disc;
}
.info-table td p {
  margin-top: 0;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td {
    display: block;
    width: 100%;
  }
  .info-table tr {
    margin: 0;
    border: 1px solid #eee;
    border-top: none;
  }
  .info-table tr:first-child {
    border-top: 1px solid #eee;
    border-bottom: none;
  }
  .info-table th {
    border: none;
    background-color: #f8f8f8;
    padding: 0.8em 1em 0.3em;
  }
  .info-table td {
    border: none;
    padding: 0.3em 1em 1em;
  }
  .info-table .info-table + .info-table {
    margin-top: 0;
  }
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #444;
  margin: 2em 0 1em;
  border-left: 5px solid #aaa;
  padding-left: 0.5em;
}

.calendar-reserve iframe {
  border: 1px solid #ccc;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1em;
}
.calendar-reserve .note-red {
  color: #d80000;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 0.5em;
  text-align: center;
}

.access .access-map {
  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;
}
@media screen and (max-width: 1024px) {
  .access .access-map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.access .access-map iframe {
  width: 50%;
  height: 400px;
}
@media screen and (max-width: 1024px) {
  .access .access-map iframe {
    width: 100%;
    margin-bottom: 20px;
  }
}
.access .access-map .access-text {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .access .access-map .access-text {
    width: 100%;
  }
}
.access .access-map .access-text p {
  margin-bottom: 1.5em;
}

.parking .parking-map {
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
}
@media screen and (max-width: 1024px) {
  .parking .parking-map {
    max-width: 100%;
  }
}
.parking .parking-map img {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .parking .parking-map img {
    width: 100%;
  }
}
.parking .parking-steps {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .parking .parking-steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.parking .parking-steps .step {
  width: 48%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .parking .parking-steps .step {
    width: 100%;
    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;
    margin-bottom: 20px;
  }
}
.parking .parking-steps .step img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .parking .parking-steps .step img {
    -o-object-fit: contain;
       object-fit: contain;
    height: auto;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.parking .parking-steps .step p {
  font-weight: 500;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1024px) {
  .parking .parking-steps .step p {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 10px;
  }
}

.news .news-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 3rem;
}
.news .news-list li {
  border-bottom: 1px solid #eee;
}
.news .news-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;
  padding: 1rem;
  color: #333;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.news .news-list li a:hover {
  background-color: #f9f9f9;
}
.news .news-list li a .date {
  width: 100px;
  font-weight: bold;
  margin-right: 1rem;
  color: #555;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news .news-list li a {
    -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;
  }
  .news .news-list li a .date {
    margin-right: 0;
    margin-bottom: 0.5rem;
    width: auto;
  }
}
.news .pagination {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 3rem;
}
.news .pagination a {
  display: inline-block;
  margin: 0 6px;
  padding: 5px 10px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
}
.news .pagination a:hover {
  background-color: #f5f5f5;
}

.single p {
  line-height: 1.6rem;
  margin-bottom: 15px;
}

.contact {
  max-width: 800px;
}
@media screen and (max-width: 1024px) {
  .contact {
    max-width: 95%;
    margin: 50px auto;
  }
}
.contact .contact-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 3rem;
}
.contact .contact-description a {
  color: #0044cc;
  text-decoration: underline;
}
.contact .contact-form .form-group {
  margin-bottom: 2rem;
}
.contact .contact-form .form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #333;
}
.contact .contact-form .form-group label .required {
  color: #c00;
  font-size: 0.9em;
  margin-left: 0.3em;
  padding: 2px 5px;
  border: 1px solid #c00;
}
.contact .contact-form .form-group input,
.contact .contact-form .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}
.contact .contact-form .form-group textarea {
  resize: vertical;
}
.contact .contact-form .form-submit {
  text-align: center;
  margin-top: 2rem;
}
.contact .contact-form .form-submit input {
  background: #111;
  color: #fff;
  font-size: 1rem;
  padding: 0.8rem 2.5rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}
.contact .contact-form .form-submit input:hover {
  background: #333;
}

.wpcf7-spinner {
  display: none !important;
}

.contact-form br {
  display: none;
}/*# sourceMappingURL=style.css.map */