.header2 {
  background-color: #8cb739;
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 0;
  line-height: 1;
  z-index: 200;
}
.header2-inner {
  display: grid;
  grid-template-columns: auto 1fr 40px;
  grid-template-rows: auto auto;
  grid-template-areas: "logo text toggle" "logo name toggle";
  gap: 0 10px;
  text-align: left;
}
.header2-logo {
  display: flex;
  align-items: center;
  grid-area: logo;
}
@media (min-width: 768px) {
  .header2-logo img {
    width: 200px;
  }
}
.header2-text {
  grid-area: text;
  margin-right: 0;
  margin-left: 0;
}
.header2-text img {
  width: 185px;
}
@media (min-width: 768px) {
  .header2-text img {
    width: 260px;
  }
}
.header2-name {
  grid-area: name;
  margin-right: 0;
  margin-left: 0;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .header2-name {
    font-size: 2.2rem;
  }
}
.header2-toggle {
  background: url(../img/header2-toggle.svg) 50% 50%/contain no-repeat;
  grid-area: toggle;
  border: 0;
  cursor: pointer;
}
.header2-toggle.-active {
  background-image: url(../img/header2-toggle-active.svg);
}
.header2-nav {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100svw;
  height: 100svh;
  background-color: #8cb739;
  z-index: 100;
}
.header2-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
.header2-nav-lists {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.kv-cpbanner img {
  width: 100%;
}

.facilities-container {
  position: relative;
  background: url(../img/facilities-container-bg.png) 50% 50%/cover no-repeat;
  padding-top: clamp(30px, 10vw, 80px);
  padding-bottom: clamp(30px, 10vw, 80px);
}
.facilities-container::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: clamp(300px, 80%, 1000px);
  aspect-ratio: 302/65;
  background: url(../img/facilities-container-before.svg) 50% 50%/contain no-repeat;
  opacity: 10%;
}
.facilities-list {
  padding: 0 clamp(8px, 2vw, 20px);
  height: auto;
}

.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .section-cta {
    gap: 6px;
  }
}
.section-cta-text01 strong {
  color: #fce704;
  font-size: 1.5em;
}
.section-cta-btn:first-child {
  margin-bottom: 1rem;
}
.section-cta-btn:last-child {
  margin-bottom: 1rem;
}
.section-cta-btn img {
  transition: 0.2s;
}
@media (max-width: 767px) {
  .section-cta-btn img {
    width: 296px;
  }
}
.section-cta-btn a:hover {
  opacity: 1;
}
.section-cta-btn a:hover img {
  transform: scale(1.05);
}

.fixed-cta {
  position: fixed;
  bottom: 10px;
  width: 360px;
  z-index: 60;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .fixed-cta {
    width: 540px;
    right: 50%;
    transform: translateX(50%);
  }
  .fixed-cta.fixed {
    width: 360px;
    right: 10px;
    transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .fixed-cta {
    right: 0;
    bottom: 0;
    width: 100%;
  }
}
.fixed-cta img {
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
.fixed-cta a:hover {
  opacity: 1;
}
.fixed-cta a:hover img {
  transform: scale(1.05);
}

#content .sec-header {
  max-width: none;
  width: 100vw;
  margin-right: -2rem;
  margin-left: -2rem;
}
#content .sec-header-cover {
  max-width: none !important;
  width: 100vw;
}
#content .sec-header-cover img {
  width: 100%;
}
#content .sec-header-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  #content .sec-header-heading {
    grid-template-columns: 1fr;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
#content .sec-header-heading-num, #content .sec-header-heading-title {
  display: flex;
  width: 100%;
  padding: 3vw 4vw;
  max-width: none !important;
}
@media (max-width: 767px) {
  #content .sec-header-heading-num, #content .sec-header-heading-title {
    padding: 20px;
  }
}
#content .sec-header-heading-num img, #content .sec-header-heading-title img {
  width: 25vw;
  min-width: 333px;
  max-width: 100%;
}
@media (max-width: 767px) {
  #content .sec-header-heading-num img, #content .sec-header-heading-title img {
    width: 333px;
    min-width: auto !important;
    max-width: 90% !important;
  }
}
#content .sec-header-heading-num {
  justify-content: flex-end;
  background-color: #9dc839;
}
@media (max-width: 767px) {
  #content .sec-header-heading-num {
    justify-content: center;
  }
}
#content .sec-header-heading-title {
  justify-content: flex-start;
  background-color: #000;
}
@media (max-width: 767px) {
  #content .sec-header-heading-title {
    justify-content: center;
  }
}

#content .accordion-header {
  display: grid;
  grid-template-columns: 1fr auto;
  background-color: #000;
  max-width: 100rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 20px !important;
  text-align: left;
  margin-bottom: 2rem !important;
  cursor: pointer;
}
#content .accordion-header:hover {
  opacity: 0.8;
}
#content .accordion-header div {
  display: flex;
  align-items: center;
  width: 100%;
}
#content .accordion-header div img {
  width: auto;
  height: 7rem !important;
}
@media (max-width: 767px) {
  #content .accordion-header div img {
    height: 6rem !important;
  }
}
#content .accordion-header:after {
  flex: 1 0 0%;
  content: "";
  display: block;
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  #content .accordion-header:after {
    width: 68px;
    height: 68px;
    background-size: 32px;
  }
}
#content .accordion-header:not(.-no-accordion):after {
  background: #9dc839 url(../img/accordion-header-toggle.png) 50% 50%/53px no-repeat;
}
#content .accordion-header.-active::after {
  background-image: url(../img/accordion-header-toggle-active.png);
}

#content .accordion-body {
  display: none;
}

#sec01 ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 12px;
}
#sec01 ul li {
  position: relative;
}
#sec01 ul.grid-2 li {
  width: 40%;
}
@media (max-width: 767px) {
  #sec01 ul.grid-2 li {
    width: 48%;
  }
}
#sec01 ul.grid-3 li {
  width: 32%;
}
@media (max-width: 767px) {
  #sec01 ul.grid-3 li {
    width: 48%;
  }
}

#sec06 > div {
  margin-top: 0;
  font-weight: inherit;
  font-size: inherit;
}
#sec06 p {
  margin-bottom: 0;
}
#sec06 .fitgolf-heading {
  margin-top: clamp(-86px, -10%, -50px);
}
#sec06 .fitgolf-heading img {
  width: clamp(320px, 60%, 640px);
}
#sec06 .fitgolf-img01 {
  margin-top: clamp(20px, 5%, 60px);
}
#sec06 .fitgolf-description {
  margin-top: clamp(20px, 5%, 60px);
}
#sec06 .fitgolf-movie {
  position: relative;
  margin-top: clamp(20px, 5%, 60px);
  border: 1px solid #ccc;
}
#sec06 .fitgolf-movie video {
  width: 100%;
  vertical-align: bottom;
}
#sec06 .fitgolf-movie img {
  position: absolute;
  right: 0;
  top: 0;
  width: 15%;
  transform: translate(20%, -50%);
}
#sec06 .fitgolf-game {
  background: #000 url(../img/fitgolf-game-header-bg.png) 50% 0/contain no-repeat;
  margin-top: clamp(20px, 5%, 60px);
  padding: 0 clamp(10px, 5%, 40px) 50px;
}
#sec06 .fitgolf-game-header {
  padding-top: 20%;
}
#sec06 .fitgolf-game-header img {
  width: clamp(280px, 70%, 730px);
}
#sec06 .fitgolf-game-lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 10%, 20px);
  margin-top: clamp(10px, 5%, 20px);
}
@media (max-width: 767px) {
  #sec06 .fitgolf-game-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
#sec06 .fitgolf-game-lists li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
#sec06 .fitgolf-game-lists li span {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
#sec06 .fitgolf-img02 {
  margin-top: clamp(20px, 5%, 60px);
}
#sec06 .fitgolf-img02 img {
  width: clamp(320px, 60%, 640px);
}
#sec06 .fitgolf-grids {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 10%, 20px);
  margin-top: clamp(20px, 5%, 60px);
}
@media (max-width: 767px) {
  #sec06 .fitgolf-grids {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #sec15 {
    padding-bottom: 4rem;
  }
}

#sec17 {
  padding-bottom: 1rem;
}

#sec18 {
  background: none !important;
  padding-bottom: 1rem;
}

footer {
  margin-bottom: 18rem;
}
/*# sourceMappingURL=style2.css.map */