@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: moreButton.scss
 * MOREボタンのスタイル
 */
/**
* @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-news.scss
 * お知らせ
 **/
.news {
  background: url(../img/news/bg_news.png) no-repeat;
  background-size: contain;
}

.news-wrap {
  width: 90%;
  max-width: 1200px;
  padding: 100px 0;
}
@media screen and (max-width: 599px) {
  .news-wrap {
    padding: 50px 0;
  }
}

.under-title::after {
  content: "NEWS";
  background: none;
}

.news__contents {
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  margin: 50px auto;
  padding: 70px 0;
}
@media screen and (max-width: 599px) {
  .news__contents {
    margin: 20px auto;
    padding: 30px 0 50px;
  }
}
.news__contents-wrap {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.news__contents .news__list {
  border-bottom: 1px dashed #ADADAD;
  padding: 1.5em 0;
}
@media screen and (max-width: 599px) {
  .news__contents .news__list {
    padding: 1em;
  }
}
.news__contents .news__list:last-child {
  border: none;
}
.news__contents .news__list time, .news__contents .news__list p {
  display: inline-block;
  font-size: 1.6rem;
}
.news__contents .news__list time {
  color: #1D72C7;
  margin-right: 1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 599px) {
  .news__contents .news__list time {
    display: block;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  list-style-type: none;
  padding: 0;
  margin: 50px auto 0;
}
@media screen and (max-width: 599px) {
  .pagination {
    margin: 30px auto 0;
  }
}

.pagination a {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  color: #333;
  text-decoration: none;
}

.pagination .current a {
  border-bottom: 2px solid #2589d0;
  pointer-events: none;
}

.single {
  margin: 200px auto 100px;
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
  .single {
    margin: 150px auto 100px;
  }
}
@media screen and (max-width: 599px) {
  .single {
    margin: 120px auto 100px;
  }
}
.single .single__wrap {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.single article {
  margin: 0 auto 5em;
}
.single time {
  color: #1D72C7;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
.single h1.title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0.5em auto 1em;
}
@media screen and (max-width: 599px) {
  .single h1.title {
    font-size: 2rem;
  }
}
.single .line {
  display: block;
  width: 100px;
  height: 3px;
  background: #1D72C7;
  margin-bottom: 2em;
}
.single img {
  margin: 1em auto;
}/*# sourceMappingURL=news.css.map */