@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
}

main {
  display: block;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

code, kbd, samp {
  font-size: 1em;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: 1px solid #000;
  border-radius: 0;
  outline: none;
}

button {
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
}
button:disabled {
  cursor: default;
}

textarea {
  appearance: none;
  font-size: 16px;
  min-height: 2em;
  overflow: auto;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 3px 5px;
}
select::-ms-expand {
  display: none;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.selectWrap {
  position: relative;
  display: inline-block;
}
.selectWrap select {
  height: 27px;
  background: transparent;
  position: relative;
  z-index: 1;
  padding-right: 15px;
}
.selectWrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  background: #fff;
  height: 100%;
  width: 30px;
}
.selectWrap::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #000 transparent transparent transparent;
}

html {
  /* ルートのフォントサイズを10pxに設定しておく */
  font-size: 62.5%;
  font-weight: 400;
}

body {
  /* ルートのフォントサイズを1.6em（16pxと同等のサイズ）に設定 */
  font-size: 1.6em;
  line-height: 1.9em;
}
@media screen and (max-width: 959px) {
  body {
    font-size: 1.6em;
  }
}

p {
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (max-width: 599px) {
  p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

h1 {
  color: #333;
}

h2 {
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  h2 {
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
h2 span {
  color: #1D72C7;
}

a {
  text-decoration: none;
  color: #000;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 960px) {
  a {
    display: inline-block;
    transition: all 0.4s;
  }
}
@media screen and (min-width: 960px) {
  a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  a {
    display: block;
    line-height: 1.5;
  }
}

img {
  max-width: 100%;
  height: auto;
}

@media only screen and (min-width: 600px) and (max-width: 959px) {
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .sp_only {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .sp_only {
    display: block;
  }
}

@media only screen and (min-width: 600px) and (max-width: 959px) {
  .pc_only {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .pc_only {
    display: none;
  }
}

/**
* @fileName: header.scss
**/
.header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 100;
  background: #fff;
}
@media screen and (max-width: 599px) {
  .header {
    height: 60px;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  .header__container {
    padding-left: 5px;
  }
}
.header__logo {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 599px) {
  .header__logo {
    width: 160px;
  }
}
.header__logo img {
  display: block;
}
.header__nav {
  flex-grow: 1;
}
.header__nav .nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: flex-end;
  padding-right: 40px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .header__nav .nav-list {
    gap: 1em;
  }
}
.header__nav .nav-list__item a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 1.3rem;
  transition: color 0.3s;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .header__nav .nav-list__item a {
    font-size: 1.2rem;
  }
}
.header__nav .nav-list__item a:hover {
  color: #1D72C7;
}
.header__actions {
  display: flex;
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .header__actions {
    display: none;
  }
}

.btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  height: 100%;
}
.btn--inquiry {
  color: #1D72C7;
  border: 1px solid #1D72C7;
  padding: 10px 30px;
  font-weight: 700;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .btn--inquiry {
    font-size: 1.3rem;
    padding: 10px 1.5em;
  }
}
.btn--inquiry:hover {
  background-color: #1D72C7;
  color: #fff;
}
.btn--reservation {
  background-color: #1D72C7;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
  height: 100%;
  min-width: 160px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .btn--reservation {
    padding: 10px 1.5em;
    min-width: 120px;
  }
}
.btn--reservation .small-text {
  font-size: 1.2rem;
  line-height: 1;
}
.btn--reservation .large-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .btn--reservation .large-text {
    font-size: 1.3rem;
  }
}
.btn--reservation:hover {
  opacity: 0.9;
}

/* overlay-styles.css */
.hamburger-overlay {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .hamburger-overlay {
    top: 8px;
  }
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all 0.6s;
}

.hamburger-overlay__line:nth-of-type(1) {
  top: 14px;
}

.hamburger-overlay__line:nth-of-type(2) {
  top: 23px;
}

.hamburger-overlay__line:nth-of-type(3) {
  top: 32px;
}

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(29, 114, 199, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  width: 90%;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .nav-overlay__content {
    top: 40%;
  }
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
  border-bottom: 1px solid #7699BD;
}
.nav-overlay__item:last-child {
  border: none;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-overlay.active .nav-overlay__item:nth-child(5) {
  transition-delay: 0.5s;
}

.nav-overlay.active .nav-overlay__item:nth-child(6) {
  transition-delay: 0.6s;
}

.nav-overlay.active .nav-overlay__item:nth-child(7) {
  transition-delay: 0.7s;
}

.nav-overlay.active .nav-overlay__item:nth-child(8) {
  transition-delay: 0.8s;
}

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-overlay__link:hover {
  color: #1D72C7;
}

.spnav__button {
  border: 1px solid #fff;
  color: #1D72C7;
  background: rgba(255, 255, 255, 0.95);
  margin-top: 30px;
  padding: 15px 0;
  border-radius: 10px;
  display: block;
}

.header__actions-baseball .btn--inquiry {
  color: #F26426;
  border: 1px solid #F26426;
}
.header__actions-baseball .btn--inquiry:hover {
  background: #F26426;
  color: #fff;
}
.header__actions-baseball .btn--reservation {
  background-color: #F26426;
}

.header__baseball .header__nav .nav-list .nav-list__item a:hover {
  color: #F26426;
}

.header__actions-golf .btn--inquiry {
  color: #3EA525;
  border: 1px solid #3EA525;
}
.header__actions-golf .btn--inquiry:hover {
  background: #3EA525;
  color: #fff;
}
.header__actions-golf .btn--reservation {
  background-color: #3EA525;
}
.header__actions-golf .nav-list__item a:hover {
  color: #3EA525;
}

.header__golf .header__nav .nav-list .nav-list__item a:hover {
  color: #3EA525;
}

/**
* gnav.scss
**/
/**
* @fileName: footer.scss
**/
.footer .section-title {
  color: #fff;
}
@media screen and (max-width: 599px) {
  .footer .section-title {
    font-size: 2rem;
  }
}

.footer-top {
  background: url(../img/common/footer_bg.png) no-repeat;
  background-position: center;
  display: inline-block;
  background-size: cover;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .footer-top {
    background: url(../img/common/footer_bg-sp.png) no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.footer-top__wrap {
  max-width: 1200px;
  margin: 50px auto;
}
@media screen and (max-width: 599px) {
  .footer-top__wrap {
    margin: 30px auto;
  }
}

.footer-top__contents {
  display: flex;
  margin: 3em auto;
}
@media screen and (max-width: 599px) {
  .footer-top__contents {
    flex-direction: column;
    margin: 1em auto;
  }
}

.footer-top__item {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .footer-top__item {
    width: 100%;
    padding: 1em 0;
    width: 90%;
    margin: 0 auto;
    border: 1px solid #fff;
  }
}
.footer-top__item:first-child {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 599px) {
  .footer-top__item:first-child {
    margin-bottom: 1em;
  }
}
.footer-top__item .item-icon {
  width: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .footer-top__item .item-icon {
    width: 50px;
  }
}
.footer-top__item p.item-title {
  text-align: center;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  margin: 1em auto;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .footer-top__item p.item-title {
    font-size: 1.8rem;
    margin: 0 auto 0.5em;
  }
}
@media screen and (max-width: 599px) {
  .footer-top__item p.item-title {
    font-size: 1.6rem;
    margin: 0 auto 0.5em;
  }
}
.footer-top__item .item-button {
  color: #333;
  background: #fff;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .footer-top__item .item-button {
    width: 80%;
    font-size: 1.4rem;
  }
}
.footer-top__item .item-tel {
  font-size: 4rem;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .footer-top__item .item-tel {
    font-size: 3rem;
    line-height: 1;
  }
}
.footer-top__item span {
  display: block;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .footer-top__item span {
    font-size: 1.2rem;
  }
}

.footer-bottom {
  background: #333;
}

.footer-bottom__wrap {
  margin: 0 auto;
  padding: 50px 0 100px;
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1400px;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .footer-bottom__wrap {
    flex-direction: column;
    padding: 50px 0;
  }
}
@media screen and (max-width: 599px) {
  .footer-bottom__wrap {
    flex-direction: column;
    padding: 50px 0;
  }
}

.footer__logo {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 599px) {
  .footer__logo {
    width: 200px;
    margin: 0px auto 2em;
  }
}
.footer__logo img {
  display: block;
}
.footer__logo span {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  padding-left: 1em;
}

ul.footer-menu {
  display: flex;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  ul.footer-menu {
    flex-direction: column;
    text-align: center;
    font-size: 1.6rem;
    margin-top: 1em;
  }
}
@media screen and (max-width: 599px) {
  ul.footer-menu {
    flex-direction: column;
    text-align: center;
    font-size: 1.4rem;
    margin-top: 1em;
  }
}
ul.footer-menu li {
  margin: 0 1em;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  ul.footer-menu li {
    margin: 0.5em;
  }
}
@media screen and (max-width: 599px) {
  ul.footer-menu li {
    padding: 0.5em 0;
  }
}
ul.footer-menu a {
  color: #fff;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  ul.footer-menu a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 959px) {
  ul.footer-menu a {
    width: 100%;
    display: block;
  }
}

.link-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  margin: 0 auto;
}
.link-wrap p {
  color: #fff;
}

.privacy-policy {
  color: #fff;
  text-align: center;
  text-decoration: underline;
  margin: 0 auto;
  font-size: 1.2rem;
  display: inline-block;
}

.copyright {
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  padding-bottom: 2em;
}

.footer-lp {
  padding-bottom: 50px;
  background: #333;
}

/**
* @fileName: l-common.scss
* 全ページ共通で使用するレイアウト用のスタイル
**/
section#wrapper {
  position: relative;
}

.section-title {
  color: var(--black, #333);
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .section-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .section-title {
    font-size: 2.4rem;
  }
}

.under-title {
  color: var(--black, #333);
  text-align: left;
  font-family: "Zen Kaku Gothic New";
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .under-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .under-title {
    font-size: 2.4rem;
  }
}
.under-title::after {
  content: "";
  display: block;
  color: #1D72C7;
  font-size: 1.3rem;
}
@media screen and (max-width: 599px) {
  .under-title::after {
    background: #fff;
    padding-bottom: 15px;
  }
}

.under-title__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 400px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
}
@media screen and (max-width: 599px) {
  .under-title__container {
    height: 250px;
  }
}
.under-title__container .under-img {
  width: 65%;
  height: 400px;
}
@media screen and (max-width: 599px) {
  .under-title__container .under-img {
    width: 100%;
    height: 250px;
  }
}
.under-title__container .under-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.under-title__container .under-title-wrap {
  position: relative;
  width: 35%;
}
.under-title__container .under-title {
  position: absolute;
  width: fit-content;
  height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .under-title__container .under-title {
    background: #fff;
  }
}
@media screen and (max-width: 599px) {
  .under-title__container .under-title {
    width: 200px;
    background: #fff;
    left: 20px;
    padding: 0.5em 0;
  }
}

.section-text {
  width: 90%;
  max-width: 700px;
  margin: 1.5em auto 0;
}

.button__area {
  margin: 0 auto;
  text-align: center;
}

.button {
  width: 90%;
  display: block;
  max-width: 330px;
  background: #1D72C7;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  border-radius: 40px;
  margin: 0 auto;
}

.under {
  margin-top: 80px;
}
@media screen and (max-width: 599px) {
  .under {
    margin-top: 50px;
  }
}

.under-wrap {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.facility__contents {
  padding: 50px 0 100px;
  width: 100vw;
  margin: 100px calc(50% - 50vw) 0;
}
@media screen and (max-width: 599px) {
  .facility__contents {
    padding: 10px 0 20px;
    margin: 30px calc(50% - 50vw) 30px;
  }
}
.facility__contents h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
}
.facility__contents h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333;
  font-size: 4rem;
  font-weight: 700;
  margin: 2em auto 1em;
  text-align: center;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .facility__contents h2 {
    font-size: 3rem;
    margin: 2em auto 1em;
  }
}
@media screen and (max-width: 599px) {
  .facility__contents h2 {
    font-size: 2.4rem;
    margin: 1.5em auto 0.5em;
  }
}
.facility__contents p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin: 0 auto;
  width: 90%;
  max-width: 700px;
}

.facility__baseball {
  background: rgba(242, 100, 38, 0.1);
}
.facility__baseball h1 {
  color: #F26426;
}

.facility__golf {
  background: rgba(62, 165, 37, 0.1);
}
.facility__golf h1 {
  color: #3EA525;
}

.contents__wrap {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.facility__item {
  background: #fff;
  margin: 3em auto;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 599px) {
  .facility__item {
    margin: 1.5em auto 2em;
  }
}
.facility__item .item__img {
  width: 100%;
}
.facility__item .item__textarea {
  padding-bottom: 3em;
}
@media screen and (max-width: 599px) {
  .facility__item .item__textarea {
    padding-bottom: 2em;
  }
}
.facility__item .title {
  font-size: 2.4rem;
  margin: 1em auto 0.5em;
}
@media screen and (max-width: 599px) {
  .facility__item .title {
    margin: 0.5em auto 0.5em;
    line-height: 1.3;
    font-size: 2rem;
    font-weight: 700;
  }
}
.facility__item .title-baseball {
  color: #F26426;
}
.facility__item .title-golf {
  color: #3EA525;
}

.access {
  width: 90%;
  max-width: 1200px;
  margin: 100px auto;
}
@media screen and (max-width: 599px) {
  .access {
    margin: 50px auto;
  }
}

.access-wrap .section-text {
  text-align: center;
  line-height: 1.7;
  margin: 2em auto;
}
@media screen and (max-width: 599px) {
  .access-wrap .section-text {
    text-align: left;
    margin: 1em auto;
  }
}

.access__contents {
  display: flex;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .access__contents {
    flex-flow: column;
  }
}
@media screen and (max-width: 599px) {
  .access__contents {
    flex-flow: column;
  }
}
.access__contents .access__map {
  width: 50%;
  height: 450px;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .access__contents .access__map {
    width: 80%;
    height: 400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .access__contents .access__map {
    width: 100%;
    height: 300px;
  }
}
.access__contents .access__map iframe {
  height: 100%;
}
.access__contents .access__textblock {
  width: 50%;
  padding: 0 3em;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .access__contents .access__textblock {
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (max-width: 599px) {
  .access__contents .access__textblock {
    width: 100%;
    padding: 0;
  }
}
.access__contents .access__textblock .access__item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dashed #ADADAD;
  padding: 1.5em 0;
}
@media screen and (max-width: 599px) {
  .access__contents .access__textblock .access__item {
    padding: 1em 0;
  }
}
.access__contents .access__textblock .access__item p.access__item--title,
.access__contents .access__textblock .access__item p.access__item--detail {
  text-align: left;
}
.access__contents .access__textblock .access__item p.access__item--title {
  width: 15%;
  min-width: 80px;
  font-size: 1.8rem;
  font-weight: 700;
}
.access__contents .access__textblock .access__item p.access__item--detail {
  width: 100%;
}
@media screen and (max-width: 599px) {
  .access__contents .access__textblock .access__item p.access__item--detail {
    font-size: 1.6rem;
  }
}
.access__contents .access__textblock .access__item p.access__item--detail span {
  font-size: 1.3rem;
}

.parking {
  text-align: center;
  margin: 3em auto;
}
.parking h2.parking-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 599px) {
  .parking h2.parking-title {
    font-size: 1.8rem;
  }
}
.parking p {
  text-align: center;
  margin: 1em;
}
@media screen and (max-width: 599px) {
  .parking p {
    margin: 0.5em auto 1em;
  }
}
.parking .parking-img {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .parking .parking-img {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .parking .parking-img {
    width: 100%;
  }
}
.parking .parking-img img {
  width: 100%;
}

.price__title {
  font-size: 4rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .price__title {
    font-size: 3rem;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 599px) {
  .price__title {
    margin-bottom: 1em;
  }
}

.price__baseball {
  background: #F26426;
  padding: 100px 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .price__baseball {
    padding: 100px 0 40px;
  }
}
@media screen and (max-width: 599px) {
  .price__baseball {
    padding: 60px 0 10px;
  }
}
.price__baseball::before {
  color: rgba(255, 255, 255, 0.3);
  content: "Baseball";
  position: absolute;
  top: 40px;
  left: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(72px, 12vw, 160px);
  letter-spacing: 0.18em;
  pointer-events: none;
  white-space: nowrap;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .price__baseball::before {
    top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .price__baseball::before {
    top: 20px;
    font-size: 5.8rem;
  }
}
.price__baseball .price__title {
  position: relative;
  margin-bottom: 2em;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .price__baseball .price__title {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 599px) {
  .price__baseball .price__title {
    font-size: 2.4rem;
    margin-bottom: 1em;
  }
}

.price__golf {
  margin-top: 150px;
  background: #3EA525;
  padding: 100px 0;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .price__golf {
    padding: 100px 0 40px;
  }
}
@media screen and (max-width: 599px) {
  .price__golf {
    margin-top: 0;
    padding: 60px 0 10px;
  }
}
.price__golf::before {
  color: rgba(255, 255, 255, 0.3);
  content: "Golf";
  position: absolute;
  top: 50px;
  left: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(72px, 12vw, 160px);
  letter-spacing: 0.18em;
  pointer-events: none;
  white-space: nowrap;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .price__golf::before {
    top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .price__golf::before {
    top: 20px;
    font-size: 5.8rem;
  }
}
.price__golf .price__title {
  position: relative;
}
@media screen and (max-width: 599px) {
  .price__golf .price__title {
    font-size: 2.4rem;
    margin-bottom: 1em;
  }
}

.price__card {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 3em;
  padding: 0 24px;
  text-align: center;
  background: #fff;
}
.price__card .card-wrap {
  width: 90%;
  margin: 0 auto;
  padding: 3em 0;
}
@media screen and (max-width: 599px) {
  .price__card .card-wrap {
    width: 100%;
    padding: 2em 0;
  }
}
.price__card .card-wrap p {
  margin: 2em auto;
  text-align: center;
}
.price__card .card-wrap p a {
  color: #06C755;
  text-decoration: underline;
}
@media screen and (max-width: 599px) {
  .price__card .card-wrap p a {
    display: inline-block;
  }
}
.price__card .card-wrap img {
  width: 100%;
}

.heading {
  font-size: 2.2rem;
  letter-spacing: 0.25em;
  color: #F26426;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 599px) {
  .heading {
    margin-bottom: 0.5em;
  }
}

.price__baseball .heading p {
  color: #F26426;
  margin: 0;
}

.price__golf .heading {
  color: #3EA525;
}
.price__golf p span {
  color: #3EA525;
  font-size: 2rem;
}
.price__golf .button {
  color: #3EA525;
  border: 1px solid #3EA525;
  background: #fff;
  font-weight: 700;
}
.price__golf .button span {
  font-size: 1.8rem;
}

@media only screen and (min-width: 600px) and (max-width: 959px) {
  .price__img {
    width: 80%;
    margin: 0 auto;
  }
}

.swiper-gallery .swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
}
.swiper-gallery .swiper-slide {
  width: 25%;
  padding: 0 1em;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .swiper-gallery .swiper-slide {
    width: 33.3333333333%;
  }
}
.swiper-gallery .swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .swiper-gallery .swiper-slide img {
    height: 260px;
  }
}
@media screen and (max-width: 599px) {
  .swiper-gallery .swiper-slide img {
    height: 200px;
  }
}

.shared-facilities {
  padding: clamp(32px, 4vw, 56px) 0;
}

.shared-facilities__inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  background: #EDEDED;
  border-radius: 6px;
  padding: clamp(26px, 3.2vw, 44px) clamp(18px, 3vw, 48px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.shared-facilities__title {
  margin: 0 0 28px;
  text-align: center;
  letter-spacing: 0.22em;
  color: #F26426;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .shared-facilities__title {
    margin: 0 0 10px;
  }
}

/* 4カラム */
.shared-facilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1px, 0.1vw, 36px);
  align-items: start;
  width: 90%;
  margin: 30px auto 0;
}
@media screen and (max-width: 599px) {
  .shared-facilities__grid {
    width: 100%;
    margin: 15px auto 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .shared-facilities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
}
@media screen and (max-width: 599px) {
  .shared-facilities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 10px;
  }
}

/* 各カード */
.shared-facilitiesCard {
  text-align: center;
}
@media screen and (max-width: 959px) {
  .shared-facilitiesCard {
    margin: 1em 0;
  }
}
@media screen and (max-width: 599px) {
  .shared-facilitiesCard {
    margin: 0.5em 0;
  }
}

.shared-facilitiesCard__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 599px) {
  .shared-facilitiesCard__icon {
    width: 86px;
    height: 86px;
  }
}

.shared-facilitiesCard__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.shared-facilitiesCard__text {
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .shared-facilitiesCard__text {
    font-size: 1.2rem;
  }
}
.shared-facilitiesCard__text span {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
}

/**
* @fileName: l-lp.scss
* LP用のレイアウト
**/
h1,
h2,
a {
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 599px) {
  p {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

.section-title {
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 599px) {
  .section-title {
    font-size: 2.4rem;
  }
}

/* ========== HERO ========== */
.hero {
  overflow: hidden;
  margin-top: 80px;
}
@media screen and (max-width: 599px) {
  .hero {
    margin-top: 60px;
    height: clamp(560px, 70vh, 800px);
  }
}

/* 背景 */
.hero__bg {
  position: relative;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero__bgImg,
.hero__bgVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

/* 右上ボタン */
.hero__nav {
  position: fixed;
  top: 110px;
  right: 0;
  z-index: 100;
  display: grid;
  gap: 10px;
  justify-items: baseline;
}
@media screen and (max-width: 599px) {
  .hero__nav {
    top: auto;
    bottom: 10px;
    right: 0;
    left: 0;
    gap: 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}

.heroBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 40px 0 18px;
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid transparent;
  color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.15s ease, opacity 0.15s ease;
  transform: translateX(30px);
}
@media screen and (max-width: 599px) {
  .heroBtn {
    padding: 0 18px;
    transform: translateX(0);
  }
}
.heroBtn span {
  font-size: 1rem;
}

.heroBtn--baseball {
  border-color: #F26426;
  color: #F26426;
}

.heroBtn--golf {
  border-color: #3EA525;
  color: #3EA525;
}

/* 中身 */
.hero__inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero_contents {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .hero_contents {
    width: 95%;
  }
}
@media screen and (max-width: 599px) {
  .hero_contents {
    flex-wrap: wrap;
    margin: 5% auto;
  }
}

/* 左テキスト */
.hero__copy {
  color: #fff;
  max-width: 550px;
  width: 40%;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.35));
}
@media screen and (max-width: 599px) {
  .hero__copy {
    width: 100%;
  }
}

.hero__title {
  color: #fff;
  margin: 0 0 35px;
  font-size: clamp(2.4rem, 2.6vw, 3.4rem);
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 599px) {
  .hero__title {
    font-size: 2.2rem;
    margin: 0 0 15px;
    font-weight: 700;
  }
}

.hero__lead {
  margin: 0 0 18px;
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}
@media screen and (max-width: 599px) {
  .hero__lead {
    margin: 0;
  }
}

.hero__visual {
  width: 60%;
  height: fit-content;
}
@media screen and (max-width: 599px) {
  .hero__visual {
    width: 100%;
  }
}

.hero__visualImg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.35));
}

/* 動画を止めたいユーザーへの配慮 */
@media (prefers-reduced-motion: reduce) {
  .hero__bgVideo {
    display: none;
  }
}
.area-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
}
@media screen and (max-width: 599px) {
  .area-buttons {
    width: 90%;
    margin: 0 auto;
    flex-direction: column;
    gap: 16px;
  }
}

.area-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 64px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 14px;
  background: #fff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
@media screen and (max-width: 599px) {
  .area-btn {
    min-width: 100%;
    height: 54px;
  }
}

.area-btn--baseball {
  color: #F26426;
  border: 2px solid #F26426;
}

.area-btn--golf {
  color: #3EA525;
  border: 2px solid #3EA525;
}

.area-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.area-btn--baseball:hover {
  background: rgba(255, 106, 42, 0.06);
}

.area-btn--golf:hover {
  background: rgba(58, 163, 58, 0.06);
}

/* ========== Training Section ========== */
.intro {
  position: relative;
  padding: clamp(48px, 6vw, 96px) 0;
  overflow: hidden;
  background: #f7f7f7;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .intro {
    padding: 70px 0;
  }
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/lp/bg_intro.png) center/cover no-repeat;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.intro__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

.intro__title {
  margin: 0 0 clamp(22px, 3vw, 34px);
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: #333;
  font-weight: 700;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .intro__grid {
    grid-template-columns: 1fr;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .intro__grid {
    grid-template-columns: 1fr;
  }
}

.intro__media {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 599px) {
  .intro__media {
    order: 1;
  }
}

.intro__media img {
  width: 100%;
  height: auto;
  display: block;
}

.intro__body {
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 2.1;
  color: #333;
}
@media screen and (max-width: 599px) {
  .intro__body {
    order: 2;
  }
}

.intro__body p {
  margin: 0;
}

.intro__body p + p {
  margin-top: 28px;
}

.swiper-gallery {
  margin: 100px auto;
}
@media screen and (max-width: 599px) {
  .swiper-gallery {
    margin: 40px auto 10px;
  }
}

/* ========== Baseball Section ========== */
.sec-baseball {
  position: relative;
  padding: clamp(72px, 8vw, 140px) 0;
  background: rgba(242, 100, 38, 0.1);
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .sec-baseball {
    padding: clamp(72px, 8vw, 140px) 0 30px;
  }
}

/* 擬似要素の「Baseball」 */
.sec-baseball::before,
.sec-golf::before {
  content: "Baseball";
  position: absolute;
  top: 40px;
  left: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(72px, 12vw, 160px);
  letter-spacing: 0.18em;
  color: rgba(242, 100, 38, 0.3);
  pointer-events: none;
  white-space: nowrap;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .sec-baseball::before,
  .sec-golf::before {
    top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .sec-baseball::before,
  .sec-golf::before {
    top: 20px;
    font-size: 5.8rem;
  }
}

.sec__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

/* 上部テキスト */
.sec__header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .sec__header {
    margin: 0 auto 30px;
  }
}

.sec__title {
  margin: 0 0 28px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 599px) {
  .sec__title {
    margin: 0 0 0.5em;
  }
}

.sec__lead {
  margin: 0;
}

/* 区切り線＋見出し */
.sec__divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 64px 0 40px;
  color: #333;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 599px) {
  .sec__divider {
    margin: 18px 0 10px;
  }
}

.sec__divider::before,
.sec__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #999;
}

.sec__divider span {
  white-space: nowrap;
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 959px) {
  .sec__divider span {
    font-size: 1.8rem;
  }
}

.sec__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}
@media screen and (max-width: 599px) {
  .sec__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.facility {
  margin: 0;
  text-align: center;
}

.facility img {
  width: 100%;
  height: auto;
  display: block;
}

.facility figcaption {
  margin-top: 14px;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  color: #333;
}
@media screen and (max-width: 599px) {
  .facility figcaption {
    font-size: 1.6rem;
    margin-top: 6px;
  }
}

/* ========== 利用シーン例 ========== */
.scene {
  padding: clamp(32px, 4vw, 56px) 0;
}

.scene__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  background: #fff;
  border-radius: 6px;
  padding: clamp(26px, 3.2vw, 44px) clamp(18px, 3vw, 48px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.scene__title {
  margin: 0 0 28px;
  text-align: center;
  letter-spacing: 0.22em;
  color: #F26426;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .scene__title {
    margin: 0 0 10px;
  }
}

/* 4カラム */
.scene__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1px, 0.1vw, 36px);
  align-items: start;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .scene__grid {
    width: 100%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .scene__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
  }
}
@media screen and (max-width: 599px) {
  .scene__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 10px;
  }
}

/* 各カード */
.sceneCard {
  text-align: center;
}
@media screen and (max-width: 959px) {
  .sceneCard {
    margin: 1em 0;
  }
}
@media screen and (max-width: 599px) {
  .sceneCard {
    margin: 0.5em 0;
  }
}

.sceneCard__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 599px) {
  .sceneCard__icon {
    width: 86px;
    height: 86px;
  }
}

.sceneCard__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sceneCard__text {
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #333;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .sceneCard__text {
    font-size: 1.2rem;
  }
}

/* ========== Flow ========== */
.flow {
  padding: clamp(56px, 7vw, 96px) 0;
  background: #fff;
}
@media screen and (max-width: 599px) {
  .flow {
    padding: 2em 0 3em;
  }
}

.flow__inner {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  text-align: center;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .flow__inner {
    width: 70%;
  }
}
@media screen and (max-width: 599px) {
  .flow__inner {
    padding: 0;
  }
}

.flow__eyebrow {
  margin: 0 0 10px;
  font-size: 2rem;
  letter-spacing: 0.14em;
  color: #F26426;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 599px) {
  .flow__eyebrow {
    font-size: 1.8rem;
    margin: 0;
  }
}

.flow__title {
  margin: 0 0 34px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .flow__title {
    margin: 0 0 20px;
  }
}

/* リスト全体 */
.flow__list {
  display: grid;
  gap: 22px;
  text-align: left;
}

/* 1ステップの箱 */
.flowStep {
  position: relative;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  padding: 28px 28px 28px 110px;
  /* 左にSTEPラベル分の余白 */
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .flowStep {
    padding: 22px 18px 22px 84px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .flowStep {
    padding: 90px 50px 50px;
  }
}
@media screen and (max-width: 599px) {
  .flowStep {
    padding: 30px 20px 30px 70px;
  }
}

/* STEPラベル */
.flowStep__label {
  position: absolute;
  left: 28px;
  top: 28px;
  margin: 0;
  color: #F26426;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}
@media screen and (max-width: 959px) {
  .flowStep__label {
    left: 50px;
    top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .flowStep__label {
    left: 20px;
    top: 20px;
  }
}

.flowStep__label span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 4px;
}

.flowStep__media {
  background: #d9d9d9;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .flowStep__media {
    max-width: 520px;
  }
}

.flowStep__media img {
  width: 100%;
  height: auto;
  display: block;
}

.flowStep__heading {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.flowStep__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
}

/* 矢印（下向き三角） */
.flow__arrow {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #F26426;
  opacity: 0.95;
}

/* ========== RESERVE ========== */
.reserve {
  position: relative;
  padding: clamp(54px, 6vw, 92px) 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: url(../img/lp/bg_cta.svg) center/cover no-repeat;
}
@media screen and (max-width: 599px) {
  .reserve {
    padding: 2em 0 3em;
  }
}

.reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reserve__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 28px);
}

/* 見出し（英字） */
.reserve__en {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 3.4rem;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .reserve__en {
    font-size: 2.4rem;
  }
}

/* 見出し（日） */
.reserve__jp {
  margin: 6px 0 20px;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  opacity: 0.9;
}
@media screen and (max-width: 599px) {
  .reserve__jp {
    font-size: 1.2rem;
    margin: 0px 0 20px;
  }
}

.reserve__text {
  margin: 0 auto 26px;
  max-width: 760px;
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}
@media screen and (max-width: 599px) {
  .reserve__text {
    text-align: left;
    font-size: 1.4rem;
  }
}

/* 公式LINEリンク（緑） */
.reserve__link {
  color: #06C755;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (max-width: 599px) {
  .reserve__link {
    display: inline-block;
  }
}

.reserve__link:hover {
  opacity: 0.85;
}

/* ボタン */
.reserve__actions {
  margin-top: 6px;
}

.reserveBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(560px, 92%);
  height: 76px;
  padding: 0 24px;
  background: #F26426;
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.15s ease;
}
@media screen and (max-width: 599px) {
  .reserveBtn {
    height: 66px;
    border-radius: 14px;
    letter-spacing: 0.06em;
    font-size: 1.6rem;
  }
}
.reserveBtn span {
  font-size: 1.4rem;
}

.reserveBtn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

.sec-comfort {
  margin-top: 150px;
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0;
  background: #EDEDED;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .sec-comfort {
    margin-top: 50px;
    padding: 2em 0 3em;
  }
}

.sec-comfort::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/lp/bg_intro.png) center/cover no-repeat;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.sec-comfort__inner {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  text-align: center;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .sec-comfort__inner {
    width: 80%;
  }
}

.sec-comfort__title {
  margin: 0 0 22px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 700;
}

.sec-comfort__lead {
  max-width: 760px;
  margin: 0 auto 40px;
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: #333;
}
@media screen and (max-width: 599px) {
  .sec-comfort__lead {
    margin: 0 auto 30px;
  }
}

.sec-comfort__lead p {
  margin: 0;
}

.sec-comfort__lead p + p {
  margin-top: 14px;
}

/* 画像3枚 */
.sec-comfort__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: start;
  margin-top: 10px;
}
@media screen and (max-width: 959px) {
  .sec-comfort__cards {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.comfortCard {
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 959px) {
  .comfortCard {
    width: min(420px, 100%);
  }
}

.comfortCard__img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.14));
}

.comfortCard__cap {
  margin-top: 14px;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  color: #333;
  transform: translateX(-40px);
}
@media screen and (max-width: 599px) {
  .comfortCard__cap {
    transform: translateX(-10px);
    margin-top: 5px;
  }
}

.sec-golf {
  position: relative;
  padding: clamp(72px, 8vw, 140px) 0;
  background: rgba(62, 165, 37, 0.1);
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .sec-golf {
    padding: clamp(72px, 8vw, 140px) 0 30px;
  }
}

.sec-golf::before {
  content: "Golf";
  color: rgba(62, 165, 37, 0.3);
}

/* scene（利用シーン例）をゴルフ配色に */
.scene.scene--golf {
  background: transparent;
  padding: clamp(32px, 4vw, 56px) 0;
}
.scene.scene--golf .scene__grid {
  grid-template-columns: repeat(3, 1fr);
  width: 80%;
}

.scene.scene--golf .scene__title {
  color: #3EA525;
}

.flow__eyebrow-golf {
  color: #3EA525;
}

.flowStep__label-golf {
  color: #3EA525;
}

.flow__arrow-golf {
  border-top: 18px solid #3EA525;
}

/* ゴルフCTA用（2ボタン） */
.reserve__actions--two {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 28px;
}
@media screen and (max-width: 959px) {
  .reserve__actions--two {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .reserve__actions--two {
    gap: 14px;
  }
}

/* 左：白背景・緑文字 */
.reserveBtn--ghost {
  background: #fff;
  color: #3EA525;
  border: 2px solid #fff;
}

/* 右：緑背景・白文字 */
.reserveBtn--golf {
  background: #3EA525;
  color: #fff;
  border: 2px solid #3EA525;
}

.reserveBtn--ghost:hover,
.reserveBtn--golf:hover {
  transform: translateY(-2px);
  opacity: 0.95;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

.rec {
  padding: clamp(54px, 10vw, 150px) 0 100px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .rec {
    padding: clamp(54px, 10vw, 150px) 0 150px;
  }
}
.rec::before {
  content: "";
  display: inline-block;
  width: 70%;
  height: 80%;
  background: #EDEDED;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.rec__inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 36px);
}
@media screen and (max-width: 599px) {
  .rec__inner {
    padding: 0;
  }
}

.rec__title {
  margin: 0 0 34px;
  text-align: center;
  letter-spacing: 0.18em;
  color: #333;
}

.rec__stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 40px;
}

.rec__photo {
  width: 80%;
  background: #EDEDED;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .rec__photo {
    width: 100%;
  }
}

.rec__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右：チェックリスト（写真に重ねる） */
.rec__checks {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  width: min(560px, 46vw);
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
@media screen and (max-width: 959px) {
  .rec__checks {
    transform: none;
    width: min(720px, 100%);
    margin: 22px auto 0;
    right: -30px;
    width: 70%;
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .rec__checks {
    right: -10px;
    width: 90%;
  }
}

/* 各行（薄い影＋横長） */
.rec__check {
  position: relative;
  background: #fff;
  padding: 18px 20px 18px 64px;
  border-radius: 2px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #333;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 959px) {
  .rec__check {
    font-size: 1.4rem;
    padding: 10px 0px 10px 55px;
  }
}
@media screen and (max-width: 599px) {
  .rec__check {
    font-size: 1.2rem;
    padding: 10px 0px 10px 50px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}

/* チェックボックス枠 */
.rec__check::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid #d3d3d3;
}
@media screen and (max-width: 599px) {
  .rec__check::before {
    left: 14px;
  }
}

/* チェック */
.rec__check::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 3px solid #1D72C7;
  /* 青 */
  border-bottom: 3px solid #1D72C7;
  transform: translateY(-58%) rotate(-45deg);
}
@media screen and (max-width: 599px) {
  .rec__check::after {
    left: 20px;
  }
}

#access .section-title {
  font-family: "Noto Serif JP", serif;
}

/* ========== Environment Section ========== */
.sec-env {
  position: relative;
  padding: clamp(60px, 7vw, 100px) 0;
  background: #EDEDED;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .sec-env {
    padding: 2em 0;
  }
}

.sec-env::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/lp/bg_intro.png) center/cover no-repeat;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.sec-env__inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  text-align: center;
}

.sec-env__title {
  margin: 0 0 22px;
  letter-spacing: 0.12em;
  color: #333;
  font-weight: 700;
}

.sec-env__lead {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: #333;
}
@media screen and (max-width: 599px) {
  .sec-env__lead {
    margin: 0 auto;
  }
}

.sec-env__lead p {
  margin: 0;
}

@media screen and (max-width: 599px) {
  .sec-env .swiper-gallery {
    margin: 30px auto 20px;
  }
}/*# sourceMappingURL=lp.css.map */