@charset "UTF-8";
/* ================================================

- Base

================================================ */
[v-cloak] {
  display: none;
}

_:-ms-lang(x)::-ms-backdrop, [v-cloak] {
  display: block;
}

body {
  overflow-x: clip;
  -ms-scroll-chaining: chained;
      overscroll-behavior: auto;
  background-color: #FFFFFF;
}

body.-bodyScrollStop {
  overflow: hidden;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

:root {
  --cc-green: #366528;
  --cc-lgreen: #bdd1ad;
  --w1160: 1160px;
  --w1080: 1080px;
  --w1280: 1280px;
  --w1140: 1140px;
  --w1070: 1070px;
  --space: 30px;
}

/* ================================================

- 表示アニメーション

================================================ */
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ================================================

- フォント

================================================ */
/* ================================================

- フォントサイズ

================================================ */
/* ================================================

- RWD表示切り替え

================================================ */
@media all and (min-width: 569px) {
  .nopc {
    display: none !important;
  }
}
@media all and (max-width: 568px) {
  .nosp {
    display: none !important;
  }
}
/* ================================================

- flex

================================================ */
/* ================================================

- margin

================================================ */
/* magrin-topを5px刻みで50pxまで */
.m-top--0 {
  margin-top: 0px;
}

.m-top--5 {
  margin-top: 5px;
}

.m-top--10 {
  margin-top: 10px;
}

.m-top--15 {
  margin-top: 15px;
}

.m-top--20 {
  margin-top: 20px;
}

.m-top--25 {
  margin-top: 25px;
}

.m-top--30 {
  margin-top: 30px;
}

.m-top--35 {
  margin-top: 35px;
}

.m-top--40 {
  margin-top: 40px;
}

.m-top--45 {
  margin-top: 45px;
}

.m-top--50 {
  margin-top: 50px;
}

/* magrin-bottomを5px刻みで50pxまで */
.m-btm--0 {
  margin-bottom: 0px;
}

.m-btm--5 {
  margin-bottom: 5px;
}

.m-btm--10 {
  margin-bottom: 10px;
}

.m-btm--15 {
  margin-bottom: 15px;
}

.m-btm--20 {
  margin-bottom: 20px;
}

.m-btm--25 {
  margin-bottom: 25px;
}

.m-btm--30 {
  margin-bottom: 30px;
}

.m-btm--35 {
  margin-bottom: 35px;
}

.m-btm--40 {
  margin-bottom: 40px;
}

.m-btm--45 {
  margin-bottom: 45px;
}

.m-btm--50 {
  margin-bottom: 50px;
}

/* ================================================

- z-index

================================================ */
/* ================================================

-

================================================ */
.lozad {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.lozad[data-loaded=true] {
  opacity: 1;
}

/* ================================================

- イージング

================================================ */
/* ================================================

- MV

================================================ */
.facility-mv {
  padding-top: 70px;
  position: relative;
  z-index: 1;
}
.facility-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 120px;
  background-color: #ebf0e6;
  z-index: -1;
}

.facility-mv__layout {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 60px;
  width: calc(100% + (100vw - 100%) / 2);
}

.facility-mv__summary {
  max-width: 420px;
  width: 100%;
  padding-top: 113px;
}

.facility-mv__ttl {
  padding-left: 26px;
  font-size: 2rem;
  line-height: 1.375;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
}
.facility-mv__ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 6px;
  height: 100%;
  background-color: #8eb382;
}

.facility-mv__desc {
  margin-top: 42px;
}
.facility-mv__desc p {
  font-size: 1rem;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

dl.facility-mv__event {
  margin-top: 31px;
}
dl.facility-mv__event dt {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: var(--cc-green);
}
dl.facility-mv__event dd {
  margin-top: 11px;
  font-size: 1rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
dl.facility-mv__event dd span {
  display: block;
  margin-top: 8px;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.facility-mv__photo {
  width: calc(100% - 480px);
}
.facility-mv__photo img {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .facility-mv {
    padding-top: 55px;
  }
  .facility-mv::before {
    width: 100%;
    height: 120px;
  }
  .facility-mv__layout {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    width: 100%;
  }
  .facility-mv__summary {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 100%;
    padding-top: 0;
    padding: 0 5.333vw;
  }
  .facility-mv__ttl {
    padding-left: 26px;
    font-size: 7.2vw;
  }
  .facility-mv__ttl::after {
    width: 6px;
  }
  .facility-mv__desc {
    margin-top: 30px;
  }
  .facility-mv__desc p {
    font-size: 4vw;
  }
  dl.facility-mv__event {
    margin-top: 31px;
  }
  dl.facility-mv__event dt {
    font-size: 4.8vw;
  }
  dl.facility-mv__event dd {
    margin-top: 11px;
    font-size: 4.2666666667vw;
  }
  dl.facility-mv__event dd span {
    font-size: 3.7333333333vw;
  }
  .facility-mv__photo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .facility-mv__photo img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
/* ================================================

-

================================================ */
.facility-container {
  padding: 108px 0 140px;
}

.facility-sc:not(:first-of-type) {
  margin-top: 102px;
}

.facility-sc__head {
  padding-bottom: 24px;
  border-bottom: solid 1px var(--cc-lgreen);
}

.facility-sc__ttl {
  padding-left: 60px;
  font-size: 1.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
}
.facility-sc__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 44px;
  height: 44px;
}

.facility-sc__ttl.-sport::before {
  background-image: url(../images/common/icon_sport.jpg);
}

.facility-sc__ttl.-facility::before {
  background-image: url(../images/common/icon_facility.jpg);
}

.facility-sc__ttl.-time::before {
  background-image: url(../images/common/icon_time.jpg);
}

.facility-sc__ttl.-price::before {
  background-image: url(../images/common/icon_price.jpg);
}

.facility-sc__ttl.-access::before {
  background-image: url(../images/common/icon_access.jpg);
}

.facility-sc__content {
  margin-top: 33px;
}

.facility-sc__content + .facility-sc__content {
  margin-top: 50px;
}

.facility-sc__content:has(> .facility-sc__item__ttl) {
  margin-top: 40px;
}

.facility-sc__table {
  margin-top: 19px;
}
.facility-sc__table table {
  width: 100%;
  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
  border-collapse: collapse;
  border-spacing: 0;
}
.facility-sc__table table th,
.facility-sc__table table td {
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  text-align: center;
}
.facility-sc__table table th {
  padding: 7px 5px 7px;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  background-color: #ebf0e6;
}
.facility-sc__table table td {
  padding: 11px 5px 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
}
.facility-sc__table table td.-w15,
.facility-sc__table table th.-w15 {
  width: 15%;
}
.facility-sc__table table td.-w20,
.facility-sc__table table th.-w20 {
  width: 20%;
}
.facility-sc__table table td.-w23,
.facility-sc__table table th.-w23 {
  width: 23%;
}
.facility-sc__table table td.-w25,
.facility-sc__table table th.-w25 {
  width: 25%;
}
.facility-sc__table table td.-w30,
.facility-sc__table table th.-w30 {
  width: 30%;
}
.facility-sc__table table td.-w35,
.facility-sc__table table th.-w35 {
  width: 35%;
}
.facility-sc__table table .-left {
  padding-left: 25px;
  padding-right: 25px;
  text-align: left;
}

.facility-sc__table.-w50 table {
  width: 50%;
}

.facility-sc__note p:not(:first-of-type) {
  margin-top: 12px;
}

.facility-sc__item__head {
  padding-bottom: 10px;
  border-bottom: solid 1px #e4e4e4;
}

.facility-sc__item__ttl {
  padding-left: 10px;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
}
.facility-sc__item__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 4px;
  height: 100%;
  background-color: #8eb382;
}

.facility-sc__map {
  margin-top: 37px;
}
.facility-sc__map iframe {
  width: 100%;
  aspect-ratio: 1080/480;
}

.facility-sc__map__note {
  margin-top: 11px;
}

.facility-sc__photos {
  margin-top: 40px;
}

.facility-sc__photos__layout {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  gap: 20px;
}

.facility-sc__photos__item {
  width: calc(33.3333333333% - 13.3333333333px);
}
.facility-sc__photos__item figcaption {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.625;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
}

/*--- media screen ---*/
@media screen and (max-width: 568px) {
  .facility-container {
    padding: 60px 0 120px;
  }
  .facility-sc__inner {
    padding: 0 5.333vw;
  }
  .facility-sc:not(:first-of-type) {
    margin-top: 80px;
  }
  .facility-sc__head {
    padding-bottom: 24px;
  }
  .facility-sc__ttl {
    padding-left: 50px;
    font-size: 5.8666666667vw;
  }
  .facility-sc__ttl::before {
    width: 38px;
    height: 38px;
  }
  .facility-sc__content {
    margin-top: 25px;
  }
  .facility-sc__content + .facility-sc__content {
    margin-top: 50px;
  }
  .facility-sc__content:has(> .facility-sc__item__ttl) {
    margin-top: 40px;
  }
  .facility-sc__bordered {
    overflow-x: scroll;
  }
  .facility-sc__table {
    margin-top: 15px;
    position: relative;
  }
  .facility-sc__table::before {
    content: "※横にスライドして閲覧出来ます。";
    display: block;
    margin-bottom: 5px;
    font-size: 2.9333333333vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  .facility-sc__table table {
    width: 740px;
  }
  .facility-sc__table table th,
  .facility-sc__table table td {
    font-size: 0.9375rem;
  }
  .facility-sc__table table th {
    padding: 7px 5px 7px;
    font-size: 0.875rem;
  }
  .facility-sc__table table td {
    padding: 11px 5px 12px;
  }
  .facility-sc__table table td.-w15,
  .facility-sc__table table th.-w15 {
    width: 15%;
  }
  .facility-sc__table table td.-w20,
  .facility-sc__table table th.-w20 {
    width: 20%;
  }
  .facility-sc__table table td.-w23,
  .facility-sc__table table th.-w23 {
    width: 23%;
  }
  .facility-sc__table table td.-w25,
  .facility-sc__table table th.-w25 {
    width: 25%;
  }
  .facility-sc__table table td.-w30,
  .facility-sc__table table th.-w30 {
    width: 30%;
  }
  .facility-sc__table table td.-w35,
  .facility-sc__table table th.-w35 {
    width: 35%;
  }
  .facility-sc__table table .-left {
    padding-left: 15px;
    padding-right: 15px;
  }
  .facility-sc__table.-w50::before {
    display: none;
  }
  .facility-sc__table.-w50 table {
    width: 100%;
  }
  .facility-sc__note p:not(:first-of-type) {
    margin-top: 10px;
  }
  .facility-sc__item__head {
    padding-bottom: 10px;
    border-bottom: solid 1px #e4e4e4;
  }
  .facility-sc__item__ttl {
    padding-left: 10px;
    font-size: 1.25rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    position: relative;
  }
  .facility-sc__item__ttl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 4px;
    height: 100%;
    background-color: #8eb382;
  }
  .facility-sc__map {
    margin-top: 30px;
  }
  .facility-sc__map iframe {
    width: 100%;
    aspect-ratio: 3/4;
  }
  .facility-sc__map__note {
    margin-top: 11px;
  }
  .facility-sc__photos {
    margin-top: 35px;
  }
  .facility-sc__photos__layout {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .facility-sc__photos__item {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
  .facility-sc__photos__item figcaption {
    margin-top: 6px;
    font-size: 4vw;
  }
}