@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　カスタム設定(style.css)ver.1 2022.10.05
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*■■■■■■ loading ■■■■■■■*/
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  top: 0;
  left: 0;
  z-index: 10003;
}
#loading img {
  margin: auto;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-box {
  margin: auto;
  width: 200px;
  text-align: center;
}

.flashing {
  padding: 15px;
}
.flashing img {
  width: 64px;
  height: auto;
}

.animation-box {
  width: 100%;
  height: 1px;
  background: #CCC;
  -webkit-animation-name: loadbar-animation;
          animation-name: loadbar-animation;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/*■■■■■■ fadein ■■■■■■■*/
.fade-in {
  opacity: 0;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}

.fade-in-up {
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
}

.fade-in-down {
  -webkit-transform: translate(0, -60px);
          transform: translate(0, -60px);
}

.fade-in-left {
  -webkit-transform: translate(-60px, 0);
          transform: translate(-60px, 0);
}

.fade-in-right {
  -webkit-transform: translate(60px, 0);
          transform: translate(60px, 0);
}

.scroll-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*■■■■■■ 主要タグ設定 ■■■■■■■*/
a:link {
  color: #800000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:visited {
  color: #800000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover, a:active {
  color: #a51c1c;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*■■■■■■ 汎用設定 ■■■■■■■*/
.bg-main {
  background-color: #B8B8B2;
}

.bg-sub {
  background-color: #a51c1c;
}

.bg-dark {
  margin: auto auto 60px;
  background: rgba(0, 0, 0, 0.6);
}

.head-contents-block {
  padding-top: 120px;
}

/*■■■■■■ TOP ■■■■■■■*/
.main-img-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100vh;
  position: relative;
}

.main-img-box {
  margin: 126px 0 0 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: url(../images/main-img.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.main-title {
  font-size: 5.6rem;
  letter-spacing: 2px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  position: absolute;
  z-index: 10001; /* 黒背景の10000より上 */
  left: 30px;
  bottom: 10%;
}
.main-title span {
  margin: auto 10px 0 auto;
  padding: 2px 10px 4px;
  font-size: 1.4rem;
  font-weight: 500;
  display: inline-block;
  border: 1px solid #fff;
}
.main-title small {
  margin: 0 0 0 10px;
  font-size: 1.6rem;
  font-weight: 400;
}

.main-read-block {
  -ms-flex-negative: 0;
      flex-shrink: 0; /* 縮小せずそのままの高さを確保 */
  padding: 40px;
  background-color: #FFF;
  color: #222;
  text-align: center;
}

.main-read-title {
  font-size: 3.4rem;
}

.main-read-text {
  margin: 20px 0 0;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
}

/*swiper*/
.swiper-container {
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/*■TOPアニメーション用■*/
/* 黒のオーバーレイ */
.black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 全画面を覆う */
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000; /* ヘッダーより下に */
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

/* アニメーション後に上へスライドして消える */
.black-overlay.slide-up {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

/* ヘッダーの背景を消す */
.header.bg-clear {
  background-color: transparent;
  background-color: #B8B8B2;
}

/* 初期状態で main-title を左にオフセット */
.main-title {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.main-title.animate-in {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

/* 初期状態で head-title を左にオフセット */
.head-title {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.head-title.animate-in {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

/*■ Top Contents menu ■*/
.contents-title {
  margin: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.2rem;
  letter-spacing: 2px;
  font-family: "Noto Serif JP", serif;
}
.contents-title small {
  margin-top: 1rem;
  margin-left: 1rem;
  font-size: 1.6rem;
}

.contents-title:before {
  margin-top: 1rem;
  border-top: 1px solid;
  content: "";
  color: #707070;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 1rem;
}

.contents-title:after {
  margin-top: 1rem;
  border-top: 1px solid;
  content: "";
  color: #707070;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 1rem;
}

.top-flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 0;
}

.menu-in-box a {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #666;
  gap: 10px;
}
.menu-in-box a img {
  width: 120px;
  height: auto;
}
.menu-in-box a:link, .menu-in-box a:visited {
  color: #222;
}
.menu-in-box a:hover, .menu-in-box a:active {
  color: #800000;
  border: 1px solid #800000;
  background-color: rgba(255, 0, 0, 0.05);
}
.menu-in-box a > .menu-title {
  font-size: 2.2rem;
  font-weight: 800;
  display: inline-block;
}
.menu-in-box a > .menu-read {
  font-size: 1.6rem;
  font-weight: 400;
  display: inline-block;
}

/*■■■■■■ CONTENTS 共有 ■■■■■■■*/
.contents-block {
  padding: 60px 0 30px;
}

.text-title {
  margin: 0 0 20px;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.text-read {
  margin: 0 0 30px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}

.contents-in-block {
  padding: 60px 0 30px;
}

.contents-flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 0;
}

.image-block {
  margin: 0 0 30px;
  position: relative;
}
.image-block P {
  padding: 5px 15px;
  display: block;
  width: 100%;
  font-size: 1.3rem;
  letter-spacing: 1px;
  line-height: 1.2;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 10px;
  left: 0;
  text-align: center;
}

.sub-title {
  margin: 0 0 10px;
  padding: 4px 10px;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
  border: 1px solid #666;
  display: inline-block;
}

.sub-title-guid {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: #222;
  border-left: 6px solid #800000;
  padding-left: 0.8rem;
  margin: 1.5rem 0 1rem;
}

.list-disc {
  margin: 10px 0;
  padding: 0 0 0 2rem;
  list-style-type: disc;
}
.list-disc li {
  padding: 2px 0;
  line-height: 1.4;
}

.attent-box {
  margin: 15px 0;
  padding: 4px 16px;
  display: inline-block;
  border: 4px solid #CCC;
  border-radius: 4px;
}

/*■■■■■■ ABOUT ■■■■■■■*/
.head-img-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100vh;
  position: relative;
}

.head-img-box {
  margin-top: 126px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  height: 100%;
  position: relative;
  color: #FFF;
  gap: 40px 0;
}

.head-title {
  margin: auto auto 5%;
  padding: 0 10px;
  color: #FFF;
  font-size: 3.6rem;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  display: inline-block;
  border-bottom: 1px solid #FFF;
  position: absolute;
  z-index: 10001; /* 黒背景の10000より上 */
  left: 30px;
  bottom: 10%;
}
.head-title small {
  margin: 0 0 0 6px;
  font-size: 80%;
}

.head-inblock {
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
}

.bg-about {
  background: url(../images/bg-about-kunindo.jpg) center center;
  background-size: cover;
}

.overview-table {
  margin: 0;
  display: inline-block;
  border-collapse: collapse;
}
.overview-table th, .overview-table td {
  padding: 5px 3px;
}
.overview-table th {
  text-align: right;
}
.overview-table td {
  text-align: left;
}

.media-list {
  margin: 0 auto;
  text-align: left;
  display: inline-block;
}
.media-list dt {
  padding: 2px 15px 3px;
  margin: 20px 0 10px;
  font-size: 1.8rem;
  line-height: 1.2;
  border: 1px solid #666;
  display: inline-block;
}
.media-list dd {
  margin: 0 0 20px;
  font-size: 1.6rem;
  line-height: 1.8;
}
.media-list dd ul {
  padding: 0 0 0 2rem;
  list-style-type: disc;
}

/*コンセプト　2025/09/04*/
.concept {
  margin: 0 auto 40px;
  display: inline-block;
  text-align: left;
  list-style-type: disc;
}
.concept li {
  margin: 10px auto;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  padding: 5px 0;
}
.concept li span {
  border-bottom: 2px solid #800000;
}

/*■■■■■■ 各ページ背景設定 ■■■■■■■*/
.bg-facility {
  background: url(../images/bg-facility.jpg) center center;
  background-size: cover;
}

.bg-usage {
  background: url(../images/bg-usage.jpg) center center;
  background-size: cover;
}

.bg-access {
  background: url(../images/bg-access.jpg) center center;
  background-size: cover;
}

/*■■■■■■ youtube 埋め込み ■■■■■■■*/
.iframe-box {
  margin: 0;
  padding: 65.25% 0 0 0;
  width: 100%;
  height: 0;
  position: relative;
}
.iframe-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*■■■■■■ Jo Gruop ■■■■■■■*/
.link-flex-box {
  margin: 0 auto 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

.link-jo-box {
  margin: auto;
  text-align: center;
  position: relative;
}
.link-jo-box .icon-jo-s {
  position: absolute;
  z-index: 100;
  top: -10px;
  left: -10px;
}
.link-jo-box .icon-jo-s img {
  width: 30px;
  height: auto;
}
.link-jo-box img {
  width: 260px;
  height: auto;
}
.link-jo-box span {
  margin: 10px 0;
  display: block;
  font-size: 2rem;
  letter-spacing: 1px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.link-jo-box span small {
  font-size: 1.2rem;
  font-weight: 400;
}
.link-jo-box span small.text-line-box {
  margin: 0 10px 0 0;
  padding: 4px 6px;
  line-height: 1;
  color: #222;
  border: 1px solid #222;
  display: inline-block;
  virtical-align: baseline;
}
.link-jo-box a:link, .link-jo-box a:visited {
  color: #222;
}
.link-jo-box a:hover, .link-jo-box a:active {
  color: #800000;
}

/*■Joグループボタン画像拡大アニメーション■*/
.link-jo-box .img-wrap {
  overflow: hidden;
  display: inline-block;
  width: 260px;
  height: auto;
}
.link-jo-box .img-wrap img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  display: block;
}
.link-jo-box a:hover .img-wrap img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*■■■■■■ FOOTER Facillit■■■■■■■*/
.bg-concrete {
  margin: 0;
  background: url("../images/bg-concrete.jpg") center center no-repeat;
  background-size: cover;
}

.footer-facility-info {
  margin: 10px 0 30px;
  text-align: center;
}

.facility-purpose {
  padding: 2px 10px;
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: 2px;
  border: 1px solid #222;
}

.facility-name {
  font-family: "Inter", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
}
.facility-name small {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.4rem;
}

.facility-address {
  margin: 0 0 20px;
  font-size: 1.6rem;
}
.facility-address span {
  margin: 0 10px 0 0;
  display: inline-block;
}

.contact-button {
  padding: 6px 30px 10px;
  display: inline-block;
  background-color: #800000;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.2;
  border-radius: 12px;
}

a.contact-button:link, a.contact-button:visited {
  color: #FFF;
}

a.contact-button:hover, a.contact-button:active {
  color: #FFF;
  background-color: #a51c1c;
}

.footer-title {
  font-size: 2.6rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.footer-menu {
  margin: 10px 0 30px;
  display: inline-block;
  padding-left: 2rem;
  list-style-type: disc;
}
.footer-menu li {
  padding: 3px 0;
  text-align: left;
}
.footer-menu li a {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
}
.footer-menu li a:link, .footer-menu li a:visited {
  color: #222;
}
.footer-menu li a:hover, .footer-menu li a:active {
  color: #800000;
}

.footer-sns-link {
  margin: 10px auto 30px;
  display: inline-block;
}
.footer-sns-link li {
  padding: 0 4px;
  display: inline-block;
}
.footer-sns-link li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 36px;
}
.footer-sns-link li a img {
  width: 22px;
  height: auto;
}
.footer-sns-link li a:link, .footer-sns-link li a:visited {
  background-color: #222;
}
.footer-sns-link li a:hover, .footer-sns-link li a:active {
  background-color: #800000;
}

/*■■■■■■ Price ■■■■■■■*/
.bg-usage {
  background: url("../images/bg-kunindo.jpg") center center no-repeat;
  background-size: cover;
}

.text-title {
  padding: 10px;
  font-size: 2.4rem;
  font-weight: 600;
  border-bottom: 6px solid #ccc;
  display: inline-block;
}
.text-title small {
  margin: 0 0 0 10px;
  font-size: 1.4rem;
  font-weight: 400;
}

.price-table {
  margin: 10px auto 30px;
  display: table;
  width: 100%;
  border-spacing: 6px;
}
.price-table th, .price-table td {
  padding: 15px 30px;
  font-size: 1.8rem;
}
.price-table thead th {
  background-color: #666;
  color: #FFF;
}
.price-table thead td {
  background-color: #999;
  color: #FFF;
  font-weight: 600;
}
.price-table tbody th {
  background-color: #CCC;
}
.price-table th {
  vertical-align: middle;
  text-align: center;
}
.price-table td {
  text-align: center;
  font-weight: 400;
  background-color: #DFDFDF;
}

.usage-dl dt {
  margin: 10px 0 5px;
  padding: 5px 15px;
  border: 1px solid #666;
  font-size: 1.7rem;
  line-height: 1.2;
  display: inline-block;
}

.usage-list-no {
  margin: 20px 0;
  list-style: decimal;
  padding-left: 1.5em;
  font-weight: 400; /* 本文は通常の太さに */
}

.usage-list-no li::marker {
  font-weight: 700; /* 数字だけ太字に */
}

.usage-list {
  margin: 10px 0 30px;
  display: inline-block;
  padding-left: 2rem;
  font-weight: 500;
  list-style-type: disc;
}
.usage-list li {
  padding: 3px 0;
  text-align: left;
}
.usage-list li a {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
}
.usage-list li a:link, .usage-list li a:visited {
  color: #222;
}
.usage-list li a:hover, .usage-list li a:active {
  color: #800000;
}

.cercle-img-box {
  margin: 0 auto 20px;
  display: inline-block;
  width: 160px;
  height: 160px;
  min-width: 160px;
  min-height: 160px;
  border-radius: 80px;
}

.bg-cat {
  background: url(../images/img-cat.jpg) center center no-repeat;
  background-size: cover;
}

/*■■■■■■ スマートキー/チェックイン ■■■■■■■*/
.text-description {
  margin: 10px 0;
  font-size: 1.6rem;
  text-align: left;
}

.text-red {
  color: #800000;
}

.anchor-target::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}

/*■■■■■■ ACCESS アクセス ■■■■■■■*/
.access-table {
  margin: 10px 0;
  border-collapse: collapse;
}
.access-table th, .access-table td {
  padding: 10px 15px;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
.access-table th {
  vertical-align: middle;
  text-align: center;
  font-size: 1.6rem;
}
.access-table tr:nth-child(1) th {
  font-size: 2rem;
}
.access-table td {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
}

.access-dl dt {
  margin-bottom: 5px;
}

.border-block {
  padding: 20px;
  border: 1px solid #666;
}
.border-block p {
  font-weight: 500;
}
.border-block hr {
  margin: 20px 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #666;
}

.pickup-place .pickup-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pickup-place .pickup-row dt {
  margin: 0 10px 0 0;
  padding: 5px 15px;
  font-size: 1.6rem;
  line-height: 1.2;
  border: 1px solid #666;
  width: 30%;
  text-align: center;
}
.pickup-place .pickup-row dt small {
  font-size: 1.6rem;
  font-weight: 400;
}
.pickup-place .pickup-row dd {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}

.golf-place {
  counter-reset: golf-counter;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.golf-place li {
  padding: 0 0 0 25px;
  display: block;
  margin-bottom: 2rem;
  counter-increment: golf-counter;
  font-weight: 400;
  position: relative;
}

.golf-place li::before {
  content: counter(golf-counter);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #800000;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  font-family: "Arial";
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 4px;
  left: 0;
}

/* strong 部分をタイトルとして太く */
.golf-place li strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.golf-recommend {
  margin: 10px 0;
  border-spacing: 5px;
}
.golf-recommend thead th, .golf-recommend thead td {
  background-color: #CCCCFF;
}
.golf-recommend tbody th, .golf-recommend tbody td {
  background-color: #EEEEFF;
}
.golf-recommend th, .golf-recommend td {
  padding: 10px 20px;
}
.golf-recommend th {
  text-align: center;
  white-space: nowrap;
}
.golf-recommend td {
  text-align: left;
}

.text-red {
  color: #800000;
}

/*駐車場の案内（2025/9/5）*/
.parking-img-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.parking-img-box {
  width: 100%;
  height: auto;
  max-width: 420px;
}

/*■■■■■■ CONTACT ページ ■■■■■■■*/
.head-img-block_s {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 460px;
  position: relative;
}

.bg-contact {
  background: url(../images/bg-img-contact.jpg) center center no-repeat;
  background-size: cover;
}

.contact-block {
  margin: 40px 0 40px;
  padding: 0;
}

/*■■■■■■ プライバシーポリシー ■■■■■■■*/
.head-spacer {
  width: 100%;
  height: 80px;
}

.pp-box {
  margin: 20px 0;
}
.pp-box dt {
  margin: 10px 0 5px;
  font-size: 1.8rem;
  display: inline-block;
}
.pp-box dd {
  padding: 0 0 15px;
  margin: 0 0 15px 0;
  border-bottom: 1px solid #800000;
}
.pp-box dd ul {
  margin: 10px 0 0 2rem;
  list-style-type: disc;
}

.btn-normal {
  margin: 10px auto;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5rem;
  background-color: #CCC;
  font-weight: 600;
}

.btn-normal:hover {
  background-color: #800000;
  color: #FFF;
}

/*■■■■■■ メールフォーム ■■■■■■■*/
.mfp_rows {
  clear: both;
}

.mfp_rows:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

.mfp_rows input[type=text],
.mfp_rows input[type=email],
.mfp_rows input[type=tel],
.mfp_rows input[type=number],
.mfp_rows input[type=date],
.mfp_rows input[type=file],
.mfp_rows select,
.mfp_rows button,
form#mailformpro .mfp_rows label {
  width: 100%;
  min-width: 100%;
  word-break: break-all;
  white-space: normal;
}

.mfp_rows textarea {
  width: 100%;
  min-width: 100%;
}

.mfp_rows .mfp_col1, .mfp_rows .mfp_col2, .mfp_rows .mfp_col3, .mfp_rows .mfp_col4, .mfp_rows .mfp_col5, .mfp_rows .mfp_col6, .mfp_rows .mfp_col7, .mfp_rows .mfp_col8, .mfp_rows .mfp_col9, .mfp_rows .mfp_col10, .mfp_rows .mfp_col25 {
  float: left;
  padding: 0 1.5%;
}

.mfp_rows .mfp_col1 {
  width: 10%;
}

.mfp_rows .mfp_col2 {
  width: 20%;
}

.mfp_rows .mfp_col3 {
  width: 30%;
}

.mfp_rows .mfp_col4 {
  width: 40%;
}

.mfp_rows .mfp_col5 {
  width: 50%;
}

.mfp_rows .mfp_col6 {
  width: 60%;
}

.mfp_rows .mfp_col7 {
  width: 70%;
}

.mfp_rows .mfp_col8 {
  width: 80%;
}

.mfp_rows .mfp_col9 {
  width: 90%;
}

.mfp_rows .mfp_col10 {
  width: 100%;
}

.mfp_rows .mfp_col25 {
  width: 25%;
}

/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 319px) and (max-width: 566px) {
  /*■■■■■■ TOP(XS) ■■■■■■■*/
  .main-img-block {
    height: auto;
  }
  .main-img-box {
    margin: 165px 0 0 0;
    min-height: 340px;
  }
  .main-title {
    font-size: 4.2rem;
  }
  .main-read-title {
    font-size: 2.8rem;
  }
  .head-title {
    font-size: 2.8rem;
    text-shadow: 1px 1px 6px #666;
  }
  .contents-title {
    margin: 24px 0;
    display: block;
    font-size: 2.4rem;
    letter-spacing: 2px;
    font-family: "Noto Serif JP", serif;
    overflow: hidden;
  }
  .contents-title small {
    font-size: 1.6rem;
    display: block;
  }
  .contents-title:before {
    margin-top: 1rem;
    border-top: 1px solid;
    content: "";
    color: #707070;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-right: 1rem;
  }
  .contents-title:after {
    margin-top: 1rem;
    border-top: 1px solid;
    content: "";
    color: #707070;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-left: 1rem;
  }
  .facility-address {
    margin: 0 0 20px;
    font-size: 1.6rem;
  }
  .facility-address span {
    margin: 0 10px 0 0;
    display: block;
  }
  /*■■■■■■ CONTENTS(XS) ■■■■■■■*/
  .contents-block {
    padding: 30px 0 15px;
  }
  .contents-flex-box {
    gap: 24px 0;
  }
  /*■■■■■■ ABOUT(XS) ■■■■■■■*/
  .head-img-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
  }
  .head-img-box {
    margin-top: 165px;
    height: 340px;
  }
  .price-table tr th, .price-table tr td {
    font-size: 1.6rem;
  }
  .overview-table {
    margin: 0;
    display: table;
    width: 100%;
    border-collapse: collapse;
  }
  .overview-table th, .overview-table td {
    padding: 0;
    display: block;
    width: 100%;
  }
  .overview-table th {
    padding: 3px;
    text-align: center;
    background-color: #DFDFDF;
  }
  .overview-table td {
    padding: 3px 3px 15px;
    text-align: center;
  }
  .overview-table tr td:nth-child(2) {
    display: none;
  }
  .pickup-place dt {
    width: 100%;
    margin: 0 0 0.5em 0;
    text-align: center;
  }
  .pickup-place dd {
    width: 100%;
    text-align: left;
  }
  /*■■■■■■ ACCESS アクセス(XS) ■■■■■■■*/
  .access-table {
    display: table;
    width: 100%;
  }
  .access-table th, .access-table td {
    border-top: 0 solid #999;
    border-bottom: 1px solid #999;
    display: block;
    width: 100%;
  }
  .access-table th {
    text-align: left;
  }
  .access-table td {
    text-align: left;
  }
  .pickup-place .pickup-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 1em;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pickup-place .pickup-row dt {
    margin: 10px 0 auto;
    padding: 5px 15px;
    font-size: 1.5rem;
    line-height: 1.2;
    border: 1px solid #666;
    width: 100%;
    text-align: center;
  }
  .pickup-place .pickup-row dd {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
    display: contents;
  }
  .golf-recommend {
    margin: 10px 0;
    border-spacing: 0 10px;
  }
  .golf-recommend thead th, .golf-recommend thead td {
    background-color: #CCCCFF;
  }
  .golf-recommend tbody th, .golf-recommend tbody td {
    background-color: #EEEEFF;
  }
  .golf-recommend th, .golf-recommend td {
    padding: 10px 20px;
    display: block;
    width: 100%;
  }
  .golf-recommend th {
    text-align: center;
    white-space: nowrap;
  }
  .golf-recommend td {
    text-align: center;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  /*■■■■■■ TOP(SM) ■■■■■■■*/
  /*■■■■■■ ACCESS アクセス(XS) ■■■■■■■*/
  .access-table {
    display: table;
    width: 100%;
  }
  .access-table th, .access-table td {
    border-top: 0 solid #999;
    border-bottom: 1px solid #999;
    display: block;
    width: 100%;
  }
  .access-table th {
    text-align: left;
  }
  .access-table td {
    text-align: left;
  }
  .pickup-place .pickup-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 1em;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .pickup-place .pickup-row dt {
    margin: 10px 0 auto;
    padding: 5px 15px;
    font-size: 1.5rem;
    line-height: 1.2;
    border: 1px solid #666;
    width: 100%;
    text-align: center;
  }
  .pickup-place .pickup-row dd {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
    display: contents;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  /*■■■■■■ TOP(MD) ■■■■■■■*/
  .main-img-block {
    height: auto;
  }
  .main-img-box {
    margin: 126px 0 0 0;
    min-height: 360px;
  }
  /*■■■■■■ ABOUT(MD) ■■■■■■■*/
  .head-img-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
  }
  .head-img-box {
    margin-top: 126px;
    min-height: 360px;
    position: relative;
  }
} /*SM*/
/*------------(LG)------------*/
@media (min-width: 1024px) and (max-width: 1215px) {
  .bg-dark {
    padding: 0 15px;
  }
}
/*------------(XL)------------*/