@charset "utf-8";
/* 共通項 */
/*
  @import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP|Inter:400,700&display=swap);
*/ :root {
  --color-theme: #3E7E73;
  --fg-color: #222;
  --light-color: #f2fbfc;
  --font-gothic: 'Inter', 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
* {
  box-sizing: border-box;
}
img {
  display: block;
  margin: 0 auto;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--fg-color);
  text-decoration: none;
  transition: 0.5s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}
ul, p {
  margin: 1.5em 0;
  line-height: 1.5;
}
.pc {
  display: none;
}
.sp {
  display: block;
}
@media (min-width: 860px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* スクロールアニメーション */
.ws-scroll-fadeIn {
  opacity: 0.0;
  transition: 1.0s;
}
.ws-scroll-fadeIn.ws-scroll-show {
  opacity: 1.0;
}
.ws-scroll-fadeIn-l {
  opacity: 0.0;
  transform: translateX(-100px);
  transition: 1.0s;
}
.ws-scroll-fadeIn-r {
  opacity: 0.0;
  transform: translateX(100px);
  transition: 1.0s;
}
.ws-scroll-fadeIn-l.ws-scroll-show, .ws-scroll-fadeIn-r.ws-scroll-show {
  opacity: 1.0;
  transform: translateX(0);
}
.ws-scroll-fadeIn-u {
  opacity: 0.0;
  transform: translateY(-100px);
  transition: 1.0s;
}
.ws-scroll-fadeIn-d {
  opacity: 0.0;
  transform: translateY(100px);
  transition: 1.0s;
}
.ws-scroll-fadeIn-u.ws-scroll-show, .ws-scroll-fadeIn-d.ws-scroll-show {
  opacity: 1.0;
  transform: translateY(0);
}
.ws-goto-top {
  position: fixed;
  z-index: 20;
  margin: 0;
  padding: 0 0 2px;
  top: auto;
  bottom: 10px;
  left: auto;
  right: 10px;
  width: clamp(30px, 5.0vw, 60px);
  height: clamp(30px, 5.0vw, 60px);
  background: var(--color-theme);
  font-size: clamp(15px, 2.5vw, 30px);
  ;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: clamp(15px, 2.5vw, 30px);
  ;
  ;
  opacity: 0.0;
  transform-origin: right bottom;
  transform: scale(0.01, 0.01);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1.0s;
}
.ws-goto-top.ws-scroll-show {
  transform: scale(1.0, 1.0);
  opacity: 0.9;
}
@media (hover: hover) {
  .ws-goto-top:hover {
    opacity: 0.5;
  }
}
html {
  margin: 0;
  padding: 0;
  width: 100%;
  scroll-behavior: smooth;
  scroll-margin-top: 100px;
  font-size: clamp(16px, 1.0vw, 20px);
  line-height: 1.5;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  color: var(--fg-color);
}
body.font-load {
  font-family: var(--font-gothic);
}
.gnavi {
  position: fixed;
  margin: 0;
  padding: 10px 5%;
  top: 0;
  left: 0;
  width: 100%;
  height: 59px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gnavi .gnavi-logo {
  margin: 0;
  width: auto;
  height: 100%;
}
.gnavi .gnavi-menu {
  margin: 0;
  padding: 0;
  display: none;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(10px, 1.6vw, 40px);
}
.gnavi .gnavi-menu a {
  color: var(--fg-color);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}
.gnavi .gnavi-sp {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  ;
  border-radius: 4px;
  cursor: pointer;
}
.gnavi .gnavi-sp .sp-icon {
  position: absolute;
  margin: 0;
  padding: 0;
  top: 20px;
  left: 10px;
  width: 20px;
  height: 0;
  border-top: 2px solid var(--color-theme);
  background: var(--color-theme);
  transition: 0.5s;
  box-sizing: border-box;
}
.gnavi .gnavi-sp .sp-icon::before {
  position: absolute;
  content: "";
  display: block;
  margin: 0;
  padding: 0;
  top: -8px;
  left: 0;
  width: 20px;
  height: 0;
  border-top: 2px solid var(--color-theme);
  background: var(--color-theme);
  transition: 0.5s;
  box-sizing: border-box;
}
.gnavi .gnavi-sp .sp-icon::after {
  position: absolute;
  content: "";
  display: block;
  margin: 0;
  padding: 0;
  top: 5px;
  left: 0;
  width: 20px;
  height: 0;
  border-top: 2px solid var(--color-theme);
  background: var(--color-theme);
  transition: 0.5s;
  box-sizing: border-box;
}
.gnavi .gnavi-sp.open .sp-icon {
  border-top: 0;
  background: rgb(255 255 255 / 0.0);
}
.gnavi .gnavi-sp.open .sp-icon::before {
  transform: translateY(8px) rotate(-45deg);
}
.gnavi .gnavi-sp.open .sp-icon::after {
  transform: translateY(-5px) rotate(45deg);
}
@media (min-width: 860px) {
  .gnavi {
    padding: 10px 20px;
  }
}
nav.sp-menu {
  position: fixed;
  margin: 0;
  padding: 0;
  top: 60px;
  left: 0;
  width: 100%;
  background: var(--color-theme);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
nav.sp-menu a {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: 0;
  line-height: 0;
  overflow: hidden;
  transition: 0.5s;
}
nav.sp-menu.open {
  margin: 0;
  padding: 0;
  top: 60px;
  left: 0;
  width: 100%;
}
nav.sp-menu.open a {
  height: 60px;
  line-height: 3.0;
  border-top: 1px solid #fff3;
  border-bottom: 1px solid #fff3;
  text-decoration: none;
}
@media (min-width: 860px) {
  nav.top-menu {
    height: 100px;
  }
  nav.top-menu .menu-wrap {
    padding: 12px;
    max-width: var(--max-width);
  }
  nav.top-menu .menu-wrap .nav-logo {
    width: 76px;
    height: 76px;
  }
  nav.top-menu .menu-wrap .nav-menu-pc {
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: end;
    display: flex;
    gap: min(40px, 2.0vw);
    height: 56px;
  }
  nav.top-menu .menu-wrap .nav-menu-pc a {
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
  }
  nav.top-menu .menu-wrap .nav-menu-pc a img {
    margin: 0;
    padding: 0;
    width: auto;
    height: 100%;
  }
  .gnavi .gnavi-sp {
    display: none;
  }
}
main {
  margin: 0;
  padding: 0;
  width: 100%;
}
.fnavi {
  margin: 0;
  padding: 35px;
  width: 100%;
  background: #fafafa;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fnavi .fnavi-logo {
  margin: 0;
  width: 80%;
  height: auto;
}
.fnavi .fnavi-menu {
  margin: 4.0rem 0 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(10px, 1.6vw, 40px);
}
.fnavi .fnavi-menu a {
  margin: 0;
  padding: 2.0rem 0;
  color: var(--fg-color);
  font-size: 1.5rem;
  font-weight: 700;
  width: 48%;
  text-align: center;
  text-decoration: none;
}
footer {
  margin: 0;
  padding: 4.0rem 0;
  width: 100%;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  background: var(--color-theme);
}
@media (min-width: 860px) {
  .gnavi .gnavi-menu {
    display: flex;
  }
  .fnavi {
    aspect-ratio: 1920 / 131;
    min-height: 131px;
    flex-direction: row;
    justify-content: space-between;
  }
  .fnavi .fnavi-logo {
    width: auto;
    height: 70%;
  }
  .fnavi .fnavi-menu {
    margin: 0;
    width: auto;
  }
  .fnavi .fnavi-menu a {
    width: auto;
  }
}
/* おしらせページ */
body.single-120th .contents-120th {
  margin: 0;
  padding: 8.0rem 0 8.0rem;
  width: 100%;
  background-image: url(../images/icon-bus-l.svg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: 150% 4.0rem;
}
@media (min-width: 860px) {
  body.single-120th .contents-120th {
    padding: 24.0rem 0 8.0rem;
  }
}
body.single-120th .contents-wrap {
  margin: 0 auto;
  padding: 0 0 8.0rem;
  width: 96%;
  max-width: 1080px;
}
body.single-120th .contents-120th .post-category-en {
  margin: 0;
  padding: 0;
  font-size: 6.0rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.0;
  color: #3aa188; /* var(--color-theme); */
}
body.single-120th .contents-120th .post-category-jp {
  margin: 0;
  padding: 0;
  font-size: 2.0rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.0;
  color: var(--fg-color);
}
body.single-120th .contents-120th h1 {
  margin: 12.0rem 0 2.0rem;
  padding: 2.0rem 0;
  font-size: 4.0rem;
  font-weight: 700;
  color: var(--fg-color);
  border-bottom: 3px solid var(--color-theme);
}
body.single-120th .contents-120th h2 {
  margin: 10.0rem 0 4.0rem;
  padding: 1.6rem 0;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--fg-color);
  border-bottom: 2px solid var(--color-theme);
}
body.single-120th .contents-120th h3 {
  margin: 8.0rem 0 4.0rem;
  padding: 1.6rem 0;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fg-color);
  border-bottom: 1px solid var(--color-theme);
}
body.single-120th .contents-120th h4 {
  margin: 8.0rem 0 4.0rem;
  padding: 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg-color);
}
body.single-120th .contents-120th h5 {
  margin: 8.0rem 0 4.0rem;
  padding: 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg-color);
}
body.single-120th .contents-120th ul {
  margin: 6.0rem 0;
  padding: 0 0 0 8.0rem;
  list-style: none !important;
}
body.single-120th .contents-120th ul li {
  position: relative;
  margin: 1.0rem 0;
  font-size: 2.0rem;
  font-weight: 700;
  list-style: none !important;
}
body.single-120th .contents-120th ul li::marker {
  content: "";
}
body.single-120th .contents-120th ul li::before {
  position: absolute;
  content: "";
  margin: 0;
  padding: 0;
  top: 0.3rem;
  right: calc(100% + 1.0rem);
  width: 2.0rem;
  height: 1.0rem;
  border-left: 4px solid var(--fg-color);
  border-bottom: 4px solid var(--fg-color);
  transform: rotate(-45deg);
}
body.single-120th .contents-120th .table {
  margin: 6.0rem 0;
  width: 100%;
}
body.single-120th .contents-120th .table .table-row {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body.single-120th .contents-120th .table .table-head {
  margin: 2.0rem 0 0;
  padding: 2.0rem 0;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: left;
  border-bottom: 2px solid var(--color-theme);
  width: 100%;
}
body.single-120th .contents-120th .table .table-body {
  margin: 0;
  padding: 2.0rem 0;
  font-size: 2.0rem;
  font-weight: 400;
  text-align: left;
  border-bottom: 2px solid #ccc;
  width: 100%;
}
@media (min-width: 860px) {
  body.single-120th .contents-120th .table .table-head {
    margin: 0;
    width: 30%;
  }
  body.single-120th .contents-120th .table .table-body {
    margin: 0 0 0 4.0rem;
    width: calc(70% - 4.0rem);
  }
}
body.single-120th .contents-120th .post-date {
  margin: 2.0rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg-color);
}
body.single-120th .contents-120th .post-eyecatch {
  margin: 2.0rem 0;
  width: 100%;
  height: auto;
}
body.single-120th .contents-120th .post-eyecatch img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}
body.single-120th .contents-120th .post-date {
  margin: 2.0rem 0;
  font-size: 2.0rem;
  font-weight: 400;
  color: var(--fg-color);
}
body.single-120th .contents-120th .post-date {
  margin: 2.0rem 0;
  font-size: 2.0rem;
  font-weight: 400;
  color: var(--fg-color);
  line-height: 1.8;
}
body.single-120th .contents-120th p {
  margin: 1.0rem 0;
  font-size: 2.0rem;
  font-weight: 400;
  color: var(--fg-color);
  line-height: 1.8;
}
.event-area {
  position: relative;
  margin: 0;
  padding: 4.0rem 0;
  width: 100%;
  background-image: url(../images/icon-bus-r.svg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: -50% 2.0rem;
}
.event-area h2 {
  margin: 0;
  padding: 0;
  font-size: 3.0rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.0;
  color: #3aa188; /* var(--color-theme); */
}
.event-area h3 {
  margin: 0;
  padding: 0;
  font-size: 1.0rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.0;
  color: var(--fg-color);
}
.event-box {
  margin: 2.0rem auto 2.0rem;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.event-box .event-item {
  margin: 2.0rem 0 0;
  padding: 1.0rem;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-shadow: 0 0 4px #ccc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}
.event-box .event-item .event-img {
  margin: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ccc;
}
.event-box .event-item .event-img img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-box .event-item .event-date {
  margin: 0.75rem 0 0.2rem;
  padding: 0;
  color: var(--color-theme);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
}
.event-box .event-item .event-title {
  margin: 0.2rem 0;
  padding: 0;
  color: var(--fg-color);
  font-size: 1.7rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.44;
}
.event-box .event-item .event-desc {
  margin: 0.2rem 0;
  padding: 0;
  color: var(--fg-color);
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  line-height: 1.75;
}
.news-box {
  margin: 2.0rem auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}
.news-box .news-item {
  display: block;
  margin: 0;
  padding: 1.0rem 0.5rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
}
.news-box .news-item .news-date {
  margin: 0;
  padding: 0;
  color: var(--color-theme);
  font-size: 1.6rem;
  font-weight: 400;
  width: 7.0rem;
}
.news-box .news-item .news-title {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--fg-color);
  font-size: 1.6rem;
  font-weight: 400;
  width: calc(100% - 7.0rem);
}
@media (min-width: 860px) {
  .event-box .event-item {
    width: calc(100% * 280 / 1200);
    margin-bottom: 2.0rem;
  }
  .news-box .news-item .news-date {
    width: 9.0rem;
  }
  .news-box .news-item .news-title {
    width: calc(100% - 9.0rem);
  }
}