@charset "UTF-8";

/* ▼810px以上の場合に適用
--------------------------------------------------------------------- */
@media only screen and (min-width: 811px) {

	.Sp_Cont {
		display: none;
	}

}

/* ▼810px以下の場合に適用（ipad以下）
---------------------------------------------------------------------- */
@media only screen and (max-width: 810px) {

	body {
		font-size: 16px;
		line-height: 1.6em;
	}

	.Sp_None {
		display: none;
	}

	.row {
		width:90%;
		margin: 0 auto;
	}

	/* !Footer
	---------------------------------------------------------- */
	footer {
		padding-top: 24px;
	}

	/*--- エリア分け（ボタン等） ---*/
	#Btn_Box {
		width: 84%;
		margin: 0 auto;
		flex-direction: column;
	}

	#Frame_Tel,
	#Frame_Recruit {
		width: 100%;
		margin: 10px 0;
	}

	/*--- 枠（電話番号） ---*/
	#Frame_Tel {
		width: 100%;
		height: 70px;
		display: grid;
		grid-template-columns: 30px 1fr;
		align-items: center;
		background: #005130;
		color: #fff;
	}

	#Frame_Tel .icon {
		width: 30px;
		height: auto;
		margin-left: 20px;
	}

	.text {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 6px;
	}

	#Frame_Tel .label {
		font-size: 12px;
	}

	#Frame_Tel .number {
		font-size: 24px;
		font-weight: bold;
		font-style: italic;
		letter-spacing: 0.05em;
		line-height: 1;
	}

	/*--- 枠（お問い合わせ） ---*/
	#Frame_Contact {
		width: 100%;
		height: 70px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: relative;
		text-align: center;
		background: #000;
		color: #fff;
		text-decoration: none;
		transition: background-color .3s ease;
	}

	#Frame_Contact:hover {
		background: #b9ad7a;
		color: #fff;
		text-decoration: none;
	}

	#Frame_Contact .title {
		font-size:18px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		line-height: 1em;
		letter-spacing: 0.16rem;
		margin-top: 6px;
	}

	#Frame_Contact .title::first-letter {
		font-size: 1.2em;
	}

	#Frame_Contact .sub_tit {
		font-size:12px;
		letter-spacing: 0.16rem;
	}

	#Frame_Contact .icon {
		position: absolute;
		left: 25px;
		top: 50%;
		transform: translateY(-50%);
		width: 24px;
		height: auto;
	}

	/*--- エリア分け（住所等） ---*/
	#Company_Box {
		font-size:14px;
		line-height: 1.6em;
		text-align: center;
		padding: 10px 0 40px;
		position: relative;
	}

	#FtrLogo {
		display: block;
		width:60%;
		margin:0 auto;
	}

	#Copy {
		height: 78px;
		font-size: 12px;
		color: #fff;
		padding: 0;
		border-top: 10px solid #b9ad75;
		background: #005130;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/*--- ボタン（採用情報） ---*/
	.btn_recruit {
		position: static;
		right: auto;
		bottom: auto;
		width: 84%;
		margin: 0 auto 24px;
		padding: 12px 0;
	}

	.btn_recruit .title {
		font-size:18px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		line-height: 1.2em;
		letter-spacing: 0.16rem;
	}

	.btn_recruit .sub_tit {
		font-size:12px;
		line-height: 1.4em;
		letter-spacing: 0.16rem;
	}

	/* !汎用コンテンツ
	---------------------------------------------------------- */
	/*--- 見出し ---*/
	h2 .title {
		font-size:24px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		line-height: 1.2em;
		letter-spacing: 0.16rem;
	}

	h2 .title::first-letter {
		font-size: 1.2em;
	}

	h2 .sub_tit {
		font-size:12px;
		line-height: 1.8em;
		letter-spacing: 0.16rem;
	}

	h3 {
		font-size: 18px;
		line-height: 1.2em !important;
		font-weight: bold;
		color: #000;
		border-left: 4px solid #005130;
		padding: 3px 0 4px 10px;
	}

	h4 {
		display: flex;
		align-items: center;
	}

	h4::before {
		content: "";
		width: 14px;
		height: 14px;
		background: #005130;
		margin-right: 5px;
		transform: translateY(1px);
	}

	/*--- インデント ---*/
	.indent {
		margin-left: 20px;
	}

	.indent p {
		margin-top: 6px;
	}

	/* !Fonts -------------------------------------------------------------- */
	.fz14 { font-size: 14px;}
	.fz16 { font-size: 14px;}
	.fcWhite_spBlack { color: #000 !important;}

	/* !Margin ------------------------------------------------------------------ */
	.mt20 { margin-top:20px !important;}
	.mt40 { margin-top:24px !important;}
	.mt60 { margin-top:32px !important;}
	.mt80 { margin-top:36px !important;}
	.mt100 { margin-top:40px !important;}
	.mt120 { margin-top:50px !important;}

	/* !Inline Align ------------------------------------------------------------ */
	.taC { text-align: center !important;}
	.taC_spL { text-align: left !important;}
	.taL_spC { text-align: center !important;}

	/* ==========================================================
	トップページ
	========================================================== */
	/*--- オープニング・アニメ ---*/
	.loading {
		width: 100vw;
		height: 100vh;
		transition: all 1s;
		background: #005130;
		position: fixed;
		top: 30%;
		left: 50%;
		transform: translate(-50%, -50%);
		z-index: 99999;
		opacity: 1;
		visibility: visible;
	}

	.loading img {
		width: 100px;
	}

	/*--- カバー画像 ---*/
	#Cover_Main .logo_mark {
		position: absolute;
		top: 30%;
		left: 50%;
		transform: translate(-50%, -50%);
		max-width: 100px;
		height: auto;
		z-index: 10;
	}

	/* !お知らせ
	---------------------------------------------------------- */
	#News {
		position: absolute;
		bottom: 0;
		left: 5%;
		width: 90%;
		max-width: initial;
		background: #005130;
		padding: 20px 20px 24px;
		z-index: 10;
		display: block;
	}

	#News .title {
		font-size:24px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		line-height: 1.2em;
		letter-spacing: 0.16rem;
	}

	#News .title::first-letter {
		font-size: 1.2em;
	}

	#News .sub_tit {
		font-size:12px;
		line-height: 1.8em;
		letter-spacing: 0.16rem;
	}

	/*--- レイアウト ---*/
	.News_box {
		margin: 0;
	}

	.frame_news {
		display: flex;
		padding: 14px 0;
		border-bottom: 1px solid #b3b3b3;
	}

	/* !コンセプト
	---------------------------------------------------------- */
	#Area_Concept {
		width: 100%;
		height: 40vh;
		background: url(../../common/img/concept_sp.jpg) no-repeat center top;
		background-size: cover;
		padding-top: 80px;
	}

	#Area_Concept .Lead {
		font-size: 20px;
		line-height: 1em;
		font-weight: bold;
		text-align: center;
	}

	/* !各種リンクバナー
	---------------------------------------------------------- */
	#Area_Bg_Black {
		background: #f4f2e8;
		padding: 20px 0 0;
	}

	.Link {
		display: grid;
		gap: 20px;
		margin-bottom: 0;
	}

	/*--- 2カラム ---*/
	.Link.col2 h2 .title {
		font-size:24px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		line-height: 1em;
		letter-spacing: 0.16rem;
	}

	.Link.col2 h2 .title::first-letter {
		font-size: 1.2em;
	}

	.Link.col2 h2 .sub_tit {
		font-size:12px;
		line-height: 1.8em;
		letter-spacing: 0.16rem;
	}

	/*--- 3カラム ---*/
	.Link.col3 h2 .title {
		font-size:24px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		line-height: 1em;
		letter-spacing: 0.16rem;
	}

	.Link.col3 h2 .title::first-letter {
		font-size: 1.2em;
	}

	.Link.col3 h2 .sub_tit {
		font-size:12px;
		line-height: 1.8em;
		letter-spacing: 0.16rem;
	}

	/*--- リンク（ボタン並び） ---*/
	#Link_Btn {
		padding: 0;
		margin: 0;
	}

	/*--- ボタン（緑色） ---*/
	.btn_green {
		width: 100%;
		display: block;
		text-align: center;
		color: #fff;
		text-decoration: none;
		background: #005130;
		padding: 14px 0;
		margin: 0 0 20px;
	}

	.btn_green .title {
		font-size:18px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		line-height: 1em;
		letter-spacing: 0.16rem;
	}

	.btn_green .title::first-letter {
		font-size: 1.2em;
	}

	.btn_green .sub_tit {
		font-size:12px;
		line-height: 1.8em;
		letter-spacing: 0.16rem;
	}

	/* ==========================================================
	第二階層共通
	========================================================== */
	/*--- カバー画像（表示幅の設定） ---*/
	#Cover_Common {
		width: 100%;
		height: 36vh;
		min-height: 320px;
		background-size: cover;
		position: relative;
	}

	/*--- タイトル（位置指定） ---*/
	#Cover_Common .TitPosi {
		position: absolute;
		top: 54%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: #fff;
		text-align: center;
		z-index: 1;
	}

	#Cover_Common .TitPosi02 {
		position: absolute;
		top: 54%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: #fff;
		text-align: center;
		z-index: 1;
	}

	/*--- 見出し ---*/
	#Cover_Common h2 .title {
		font-size:30px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		line-height: 1em;
		letter-spacing: 0.16rem;
	}

	#Cover_Common h2 .title::first-letter {
		font-size: 1.2em;
	}

	#Cover_Common h2 .sub_tit {
		font-size:14px;
		line-height: 1.2em;
		letter-spacing: 0.16rem;
		white-space: nowrap;
		margin-top: 12px;
	}

	/*--- 背景パターン01（ご利用案内／アクセス／クラブ概要／お知らせ／会員募集／お問い合わせ／プレーヤー名連絡フォーム／よくある質問／プライバシーポリシー） ---*/
	#Pattern01 .Bg_Black {
		width: 100%;
		background: #e0debd;
	}

	#Pattern01 .Bg_Beige {
		width: 100%;
		background: #f4f2e8;
		margin: 0;
	}

	#Pattern01 .Bg_Beige .Cont {
		width:100%;
		border-top: 4px solid #005130;
		padding: 40px 0;
	}

	/*--- 背景パターン02（レストラン） ---*/
	#Pattern02 .Bg_Black {
		width: 100%;
		background: #e0debd;
	}

	#Pattern02 .Bg_Maroon {
		width: 100%;
		background: #6b4c52;
		margin: 0;
	}

	#Pattern02 .Bg_Maroon .Cont {
		width:100%;
		padding: 50px 0 40px;
	}

	#Pattern02 .Bg_Navy {
		width: 100%;
		background: #3a414a;
	}

	#Pattern02 .Bg_Navy .Cont {
		width:100%;
		padding: 40px 0;
	}

	#Pattern02 .Bg_Green {
		width: 100%;
		background: #44503e;
	}

	#Pattern02 .Bg_Green .Cont {
		width:100%;
		padding: 40px 0;
	}

	#Pattern02 .Bg_Brown {
		width: 100%;
		background: #6a5a46;
	}

	#Pattern02 .Bg_Brown .Cont {
		width:100%;
		padding: 40px 0;
	}

	/*--- 背景パターン03（ご宴会・ショップ） ---*/
	#Pattern03 .Bg_Black {
		width: 100%;
		background: #e0debd;
	}

	#Pattern03 .Bg_Purple {
		width: 100%;
		background: #5b404b;
		margin: 0;
	}

	#Pattern03 .Bg_Purple .Cont {
		width:100%;
		padding: 50px 0 40px;
	}

	/*--- 背景パターン04（各ホール詳細） ---*/
	#Pattern04 .Bg_Green {
		width: 100%;
		background: #005130;
		padding-bottom: 0;
	}

	#Pattern04 .Bg_Gray {
		width: 100%;
		background: #e6e6e6;
		margin: 0;
	}

	#Pattern04 .Bg_Gray .Cont {
		width:100%;
		padding: 40px 0;
	}

	/* ==========================================================
	施設紹介
	========================================================== */
	/*--- メニュー ---*/
	#Facilities_Index_Menu {
		width: 98%;
		margin: 0 auto;
		display: flex;
		gap: 3px;
		justify-content: center;
	}

	#Facilities_Index_Menu .btn {
		flex: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size:11px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		color: #005130;
		line-height: 1;
		letter-spacing: -0.06rem;
		text-align: center;
		text-decoration: none;
		background: #fff;
		padding: 12px 0 10px;
		box-sizing: border-box;
	}

	/*--- レイアウト ---*/
	#Layout_Facilities .Bg_Ivory {
		width: 100%;
		color: #000;
		background: #e0debd;
		padding: 20px 0 0;
	}

	/*--- クラブハウス ---*/
	#Area_Clubhouse {
		width:100%;
		padding: 0 0 20px;
		margin-top: 30px;
	}

	#Area_Clubhouse_Lead {
		width:100%;
		display: block;
		margin-bottom: 20px;
	}

	#Area_Clubhouse_Lead .Title {
		width:80%;
		height: auto;
		background: #005130;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto;
		padding: 20px 0;
	}

	#Area_Clubhouse_Lead .Explain {
		flex: 1;
		font-size:14px;
	}

	#Area_Clubhouse_Lead .Explain span {
		display: block;
		font-size:20px;
		text-align: center;
	}

	/*--- レストラン ---*/
	#Area_Restaurant {
		width:100%;
		background: #005130;
		margin: 0;
		padding: 40px 0 30px;
	}

	#Area_Restaurant .Cont {
		width:100%;
	}

	#Area_Restaurant .Title {
		width:80%;
		height: auto;
		background: #000;
		margin: 0 auto 30px;
		padding: 20px 0;
	}

	/*--- ご宴会 ---*/
	#Area_Party {
		width:100%;
		color: #000;
		background: #fff;
		padding: 40px 0;
	}

	/*--- ショップ ---*/
	#Area_Shop {
		width:100%;
		margin: 40px auto 0;
	}

	#Area_Shop .Title {
		width:80%;
		height: auto;
		background: #005130;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 30px;
		padding: 20px 0;
	}

	/*--- 練習場 ---*/
	#Area_Driving {
		width:100%;
		margin: 40px auto 0;
		color: #fff;
		background: #005130;
		padding: 40px 0;
	}

	#Area_Driving .Cont {
		width:100%;
	}

	#Area_Driving_Lead {
		width:100%;
		flex-direction: column;
		gap: 20px;
	}

	#Area_Driving_Lead .Title {
		order: 1;
		width:80%;
		height: auto;
		background: #000;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		margin: 0 auto;
		padding: 20px 0;
	}

	#Area_Driving_Lead .Explain {
		order: 2;
		font-size:12px;
		padding-top: 0;
		margin-bottom: 20px;
	}

	#Area_Driving_Lead .Explain span {
		font-size:16px;
		line-height: 1.8em;
	}

	/*--- 説明文（2カラム用） ---*/
	.Photo_Explain {
		display: block;
		margin-top: 10px;
	}

	.Photo_Title {
		font-size:16px;
		color: #cec47b;
		line-height: 1em;
	}

	.Photo_Detail {
		font-size:14px;
		line-height: 1.6em;
		margin-top: 6px;
	}

	/*--- 説明文（1カラム用） ---*/
	.Photo_Explain02 {
		display: block;
		margin-top: 10px;
	}

	.Photo_Title02 {
		font-size:16px;
		color: #cec47b;
		line-height: 1em;
	}

	.Photo_Detail02 {
		font-size:14px;
		line-height: 1.6em;
		margin-top: 6px;
	}

	/*--- 説明文（タイトルのみ） ---*/
	.Photo_Explain03 {
		text-align: center;
		margin-top: 6px;
	}

	/*--- ボタン（ベージュ色） ---*/
	.btn_beige {
		width: 200px;
		display: block;
		margin: 0 auto;
		font-size:14px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		color: #005130;
		line-height: 1em;
		letter-spacing: 0.1rem;
		text-align: center;
		text-decoration: none;
		background: #cec47b;
		padding: 10px 0;
	}

	/* ==========================================================
	施設紹介（レストラン）
	========================================================== */
	/*--- メニュー（上部） ---*/
	#Restaurant_Index_Menu {
		width: 98%;
		margin: 0 auto;
		display: flex;
		gap: 3px;
		justify-content: center;
		position: absolute;
		top: -18px;
	}

	#Restaurant_Index_Menu .btn {
		flex: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size:11px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		color: #005130;
		line-height: 1;
		letter-spacing: -0.06rem;
		text-align: center;
		text-decoration: none;
		background: #fff;
		padding: 12px 0 10px;
		box-sizing: border-box;
	}

	/*--- メニュー（各項） ---*/
	.Restaurant_Menu {
		width: 98%;
		margin: 0 auto;
		display: flex;
		gap: 3px;
		justify-content: center;
		position: relative;
		top: 10px;
	}

	.Restaurant_Menu .btn {
		flex: 1;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size:11px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		color: #005130;
		line-height: 1;
		letter-spacing: -0.06rem;
		text-align: center;
		text-decoration: none;
		background: #fff;
		padding: 12px 0 10px;
		box-sizing: border-box;
	}

	/*--- 見出し ---*/
	.Txt_Line_bottom_Center {
		font-size:20px;
		color: #fff;
		text-align: center;
		position: relative;
		display: block;
		margin: 0 auto 50px;
	}

	.Txt_Line_bottom_Center:before {
		content: '';
		position: absolute;
		left: 50%;
		bottom: -16px;
		display: inline-block;
		width: 60px;
		height: 2px;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		background-color: #cec47b;
	}

	/*--- メニュー ---*/
	.Menu_Wrap .name {
		font-size:16px;
	}

	/*--- テーブル枠 ---*/
	.Frame_Menu {
		background: #f4f2e8;
		padding: 20px 20px 34px;
	}

	.Frame_Menu .Tit {
		display: block;
		font-weight: bold;
		text-align: center;
		margin-bottom: 12px;
	}

	/* ==========================================================
	施設紹介（ご宴会）
	========================================================== */
	/*--- キャンセルポリシー ---*/
	#Area_Cancel {
		background: #fff;
		padding: 20px;
		margin-top: 0;
	}

	/* ==========================================================
	施設紹介（ショップ）
	========================================================== */
	/*--- コメント ---*/
	.Menu_Comment {
		color: #000;
		background: #fff;
		padding: 0 14px 20px;
		line-height: 1.4em;
	}

	/* ==========================================================
	コースガイド
	========================================================== */
	#Area_Course_Lead {
		background: #e0debd;
		padding: 40px 0;
	}

	#Area_Course_Lead .Cont {
		width:90%;
		margin: 0 auto;
		font-size:14px;
		color: #000;
	}

	#Area_Course_Lead .Cont span {
		display: block;
		font-size:20px;
		text-align: center;
	}

	/*--- 西コース ---*/
	#Area_Westcourse {
		background: #005130;
		padding: 40px 0;
	}

	#Area_Westcourse .Cont {
		width:100%;
		margin: 0 auto;
		color: #fff;
		position: relative;
	}

	#Area_Westcourse_Lead {
		width:100%;
		display: block;
	}

	#Area_Westcourse_Lead .Title {
		position: absolute;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		width: 200px;
		height: 140px;
		background: #000;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		margin-bottom: 20px;
	}

	#Area_Westcourse_Lead .Explain {
		flex: 1;
		font-size:14px;
		padding-top: 20px;
	}

	/*--- 東コース ---*/
	#Area_Eastcourse {
		background: #e0debd;
		padding: 40px 0;
	}

	#Area_Eastcourse .Cont {
		width:100%;
		color: #000;
		position: relative;
	}

	#Area_Eastcourse_Lead {
		width:100%;
		display: block;
	}

	#Area_Eastcourse_Lead .Title {
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		width: 200px;
		height: 140px;
		background: #005130;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		order: 1;
		margin-bottom: 20px;
	}

	#Area_Eastcourse_Lead .Explain {
		flex: 1;
		font-size:14px;
		padding-top: 20px;
		order: 2;
	}

	/*--- ボタン（横並び） ---*/
	.btn_wrap {
		display: block;
		margin-top: 6px;
		text-align: center;
	}

	.btn_detail {
		width: 240px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 4px;
		font-size:14px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		color: #005130;
		line-height: 1em;
		letter-spacing: 0.1rem;
		text-align: center;
		text-decoration: none;
		background: #fff;
		padding: 14px 0;
		box-sizing: border-box;
		margin-top: 14px;
	}

	/* ==========================================================
	コースガイド（西コース・東コース）
	========================================================== */
	#Course_Rate span {
		font-size:20px;
	}

	#Course_Rate p {
		font-size:13px;
		line-height: 2em;
		margin-top: 14px;
	}

	/*--- タブ ---*/
	.tab_course-box {
		margin-top: 40px;
	}

	.tab_course-box .tab_link {
		width: 100%;
		padding: 12px 0;
		color: #000;
		background: #fff;
		text-align: center;
		cursor: pointer;
		transition: all 0.2s ease 0s;
		line-height: 1.4em;
	}

	.tab_course-box .tab_link span {
		font-size:14px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		letter-spacing: 0.08rem;
	}

	/*--- テーブル ---*/
	.Area_Table {
		background:#fff;
		padding: 20px 20px 30px;
	}

	/*--- コース一覧 ---*/
	.Area_Course_List {
		margin-top: 20px;
	}

	.Course_Wrap {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}

	/*--- レイアウト ---*/
	.hole_card {
		width: 100%;
		background: #fff;
		box-sizing: border-box;
	}

	.hole_header {
		display: flex;
		align-items: flex-start;
		gap: 6px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		margin-bottom: 10px;
	}

	.hole_no {
		background: #000;
		color: #fff;
		width: 50px;
		height: 50px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		line-height: 1;
	}

	.hole_no_green {
		background: #005130;
		color: #fff;
		width: 50px;
		height: 50px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		line-height: 1;
	}

	.hole_label {
		font-size: 10px;
		letter-spacing: 0.1em;
		line-height: 1.4em;
	}

	.hole_number {
		font-size: 20px;
		font-weight: bold;
	}

	.hole_rate {
		height: 50px;
		display: flex;
		align-items: center;
		font-size: 13px;
		font-weight: bold;
		line-height: 1.4em;
		color: #000;
	}

	/*--- ボタン（黒色） ---*/
	.btn_black {
		width: 240px;
		display: block;
		margin: 0 auto;
		font-size:12px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		color: #fff;
		line-height: 1em;
		letter-spacing: 0.1rem;
		text-align: center;
		text-decoration: none;
		background: #000;
		padding: 14px 0;
	}

	/* ==========================================================
	コースガイド（各ホール詳細）
	========================================================== */
	/*--- タイトル（西コース） ---*/
	#West_Course_Wrap .Title {
		position: absolute;
		top: -170px;
		left: 50%;
		transform: translateX(-50%);
		width: 180px;
		height: 180px;
		color: #fff;
		background: #000;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		margin-bottom: -170px;
	}

	/*--- タイトル（東コース） ---*/
	#East_Course_Wrap .Title {
		position: absolute;
		top: -170px;
		left: 50%;
		transform: translateX(-50%);
		width: 180px;
		height: 180px;
		color: #fff;
		background: #005130;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		margin-bottom: -170px;
	}

	/*--- レイアウト ---*/
	#Course_Cont {
		width:100%;
		margin-top: 20px;
	}

	/*--- ホール名 ---*/
	#Hole_Info {
		display: flex;
		align-items: center;
		font-size:20px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		line-height: 1.2em;
		width: fit-content;
		margin: 0 auto;
	}

	#Hole_Info span {
		font-size:60px;
		color: #005130;
		margin-left: 10px;
	}

	#Hole_Info > div {
		padding: 24px 20px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/*--- ホール詳細 ---*/
	#Hole_Detail {
		font-size:14px;
		display: block;
		background: #fff;
		padding: 20px 20px 40px;
	}

	#Hole_Detail .ContL {
		width: 100%;
	}

	#Hole_Detail .ContR {
		width: 100%;
	}

	#Hole_Detail .Illust img {
		display: block;
		margin: 20px auto 0;
		width: 90%;
		height: auto;
		border: 1px solid #e6e6e6;
	}

	/* ==========================================================
	ご利用案内
	========================================================== */
	/*--- 横並び（クレジットカード） ---*/
	#Payment {
		display: block;
		margin-top: 10px;
	}

	#Payment img {
		max-width: 100%;
		height: auto;
		margin-top: 10px;
	}

	/* !利用約款
	---------------------------------------------------------- */
	/*--- 見出し ---*/
	.Terms_Title {
		font-size: 18px;
		line-height: 1.4em;
		font-weight: bold;
		text-align: center;
	}

	/*--- レイアウト ---*/
	.Cont_Terms {
		display: block;
		margin-top: 10px;
		font-size:16px;
		line-height: 1.6em;
	}

	.Cont_Terms .ContL {
		width: 100%;
		color: #005130;
		font-weight: bold;
		margin-bottom: 10px;
	}

	.Cont_Terms .ContR {
		width: 100%;
	}

	/* ==========================================================
	プライバシーポリシー
	========================================================== */
	/*--- 見出し ---*/
	.Privacy_Title {
		font-size: 18px;
		line-height: 1em;
		font-weight: bold;
		text-align: center;
		border-bottom: 1px solid #005130;
		padding-bottom: 24px;
		margin-bottom: 24px;
	}

	/* ==========================================================
	会員専用
	========================================================== */
	/*--- ナビ ---*/
	#Members_Logo {
		height:74px;
		width:100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#Members_Logo img {
		width: 200px;
	}

	#Menu_List {
		display: none;
	}

	/*--- ナビ オーバーレイ画面 ---*/
	#g-nav .Cont_Members {
		width: 100%;
		height: 100vh;
		padding: 60px 0;
		position: relative;
		background: #005130;
		overflow-y: scroll;
	}

	#g-nav .Cont_Members img {
		display: block;
		width: 200px;
		margin:0 auto;
	}

	#g-nav-list {
		margin-top: 20px;
	}

	#g-nav-list li {
		display: block;
		width: 80%;
		margin: 0 auto;
		list-style-type:none;
		font-size: 16px;
		line-height: 1.5em;
		position: relative;
		padding: 16px 0;
		transition: all 0.3s;
		text-decoration: none;
		color: #fff;
		background: #005130;
		border-bottom:1px solid #fff;
		cursor: pointer;
	}

	#g-nav-list li a{
		display: block;
		color:#fff;
		text-decoration: none;
	}

	#g-nav-list li a::after {
		content: '▶';
		font-size: 10px;
		position: absolute;
		right: 4px;
	}

	#g-nav-list li:hover {
		color: #fff;
	}

}

/* ▼440px以上の場合に適用
--------------------------------------------------------------------- */
@media only screen and (min-width: 441px) {


}

/* ▼440px以下の場合に適用（iphone以下）
---------------------------------------------------------------------- */
@media only screen and (max-width: 440px) {

	body {
		font-size: 14px;
		line-height: 1.6em;
	}

	/* !フルスクリーンナビ設定
	---------------------------------------------------------- */
	/* 左側ボタン */
	.nav-buttons {
		position: fixed;
		top: 0;
		left: 0;
		width: calc(100% - 50px);
		display: flex;
		gap: 0;
		z-index: 9998;
	}

	.nav-btn1,
	.nav-btn2 {
		flex: 1;
		height: 50px;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.nav-btn1 {
		flex: 0 0 25%;
		font-size: 12px;
	}

	.nav-btn2 {
		flex: 0 0 25%;
		font-size: 12px;
	}

	.nav-btn_logo {
		flex: 0 0 50%;
		background-color: rgba(255, 255, 255, 0.8);
		backdrop-filter: blur(6px);
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.nav-btn_logo img {
		width: 140px;
		height: auto;
		display: block;
		margin-left: 0;
	}

	/* 右のハンバーガー */
	.openbtn{
		position: fixed;
		top: 0;
		right: 0;
		width: 50px;
		height: 50px;
		z-index: 9999;
		background: #000;
	}

	.openbtn:hover{
		cursor: pointer;
		display: block;
		-webkit-transition: all .3s;
		transition: all .3s;
		background: #b9ad7a;
	}

	.openbtn span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 3px;
		border-radius: 2px;
		background-color: #fff;
		width: 45%;
	}

	.openbtn span:nth-of-type(1) {
		top:15px;
	}

	.openbtn span:nth-of-type(2) {
		top:23px;
	}

	.openbtn span:nth-of-type(3) {
		top:31px;
	}

	.openbtn.active span:nth-of-type(1) {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
		width: 30%;
	}

	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}

	.openbtn.active span:nth-of-type(3){
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
		width: 30%;
	}

	/*---ナビ オーバーレイ画面---*/
	#g-nav{
		position:fixed;
		z-index: 9999;
		top:50px;
		right: -120%;
		width:100%;
		height: calc(100vh - 50px);
		overflow-y: auto;
		background-color: rgba(255, 255, 255, 0.96);
		backdrop-filter: blur(6px);
		box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1), 0 0 50px rgba(128, 128, 128, 0.1) ;
	}

	#g-nav .Cont {
		width: 100%;
		padding: 40px 0 100px;
	}

	#g-nav .Cont img {
		display: none;
	}

	/* !メニュー
	---------------------------------------------------------- */
	.nav-menu {
		display: inline-block;
		text-align: left;
		margin-bottom: 20px;
		width: 220px;
	}

	/* タイトル */
	.nav-menu .titleLink {
		position: relative;
		display: flex;
		align-items: center;
		font-size: 16px;
		font-weight: bold;
	}

	/* サブメニュー */
	.nav-menu .submenu {
		font-size: 14px;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	/* !contents
	---------------------------------------------------------- */
	.row {
		width:90%;
		margin: 0 auto;
	}

	/*---固定メニュー---*/
	#fixed_right_menu{
		position: fixed;
		z-index: 999;
		top: 60px;
		right: 10px;
		width: 40px;
	}

	/*--- ページの先頭へ ---*/
	#back-top {
		display: none !important;
	}

	/* !汎用コンテンツ
	---------------------------------------------------------- */
	/*--- 見出し ---*/
	h2 .title {
		font-size:20px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		line-height: 1.2em;
		letter-spacing: 0.16rem;
	}

	h3 {
		font-size: 16px;
		line-height: 1em;
		font-weight: bold;
		color: #000;
		border-left: 4px solid #005130;
		padding: 2px 0 4px 10px;
	}

	/* ==========================================================
	トップページ
	========================================================== */
	/*--- カバー画像 ---*/
	#Cover_Main {
		width: 100%;
		height: 100dvh;
		background: url(../../common/img/main01.jpg) no-repeat center;
		background-size: cover;
		position: relative;
	}

	/*--- Splide非表示 ---*/
	.Splide_None {
		display: none;
	}

	/* ==========================================================
	コースガイド（各ホール詳細）
	========================================================== */
	/*--- ページ送り ---*/
	#Pagenation_Hole {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
		justify-content: center;
		margin-top: 40px;
		width: 320px;
		margin-left: auto;
		margin-right: auto;
	}

	#Pagenation_Hole a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 28px;
		height: 28px;
		background: #fff;
		border-radius: 50%;
		text-decoration: none;
		font-size: 12px;
		font-weight: bold;
		color: #000;
		font-family: sans-serif;
		transition: 0.3s;
	}

	/* !Splide
	----------------------------------------------------------- */
	/* 左ボタンの位置 */
	.splide__arrow--prev {
		left: -14px !important;
	}

	/* 右ボタンの位置 */
	.splide__arrow--next {
		right: -14px !important;
	}

	/* ==========================================================
	ご利用案内
	========================================================== */
	/*--- 横並び（クレジットカード） ---*/
	#Payment {
		display: block;
		margin-top: 10px;
	}

	#Payment img {
		max-width: 100%;
		height: auto;
		margin-top: 10px;
	}

	/* !利用約款
	---------------------------------------------------------- */
	/*--- 見出し ---*/
	.Terms_Title {
		font-size: 16px;
		line-height: 1.4em;
		font-weight: bold;
		text-align: center;
	}

	/*--- レイアウト ---*/
	.Cont_Terms {
		display: block;
		margin-top: 10px;
		font-size:14px;
		line-height: 1.6em;
	}

	/* ==========================================================
	アクセス
	========================================================== */
	/*--- 地図 ---*/
	#Map iframe {
		display: block;
		height: 380px;
	}

	#Frame_Green {
		display: block;
		color: #fff;
		background: #005130;
		padding: 14px;
	}

	#Frame_Green p {
		margin: 0;
		padding: 0;
	}

	#Frame_Green p:first-child {
		width: 100%;
		border-right: none;
		text-align: left;
	}

	#Frame_Green p:last-child {
		font-size:12px;
		width: 100%;
		margin-top: 6px;
	}

	/* ==========================================================
	お知らせ
	========================================================== */
	/*--- 一覧 ---*/
	#Area_News_List {
		width: 100%;
		background: #fff;
		padding:40px 20px;
	}

	.News_List a {
		display: block;
		border-bottom:1px solid #e0e0e0;
		padding: 20px 0;
		line-height: 1em;
		cursor: pointer;
	}

	.contL {
		width: 100%;
	}

	.contR {
		width: 100%;
		margin-top: 10px;
	}

	/*--- 詳細 ---*/
	#News_Cont {
		width: 100%;
		padding:20px;
		background: #fff;
	}

	#News_Cont .date {
		text-align: right;
		font-size: 14px;
		line-height: 1em;
	}

	#News_Cont .tit {
		font-size: 18px;
		line-height: 1.4em;
		margin: 12px 0 24px;
		padding-bottom: 12px;
		border-bottom:1px solid #005130;
	}

	#News_Post p {
		margin: 10px 0;
	}

	/* ==========================================================
	会員募集
	========================================================== */
	/*--- 文字 ---*/
	.txt_tel {
		font-size: 18px;
		font-weight: bold;
		color: #005130;
		letter-spacing: 0.16rem;
		margin-top: 20px;
	}

	.txt_tel span {
		font-size: 26px;
	}

	/* ==========================================================
	お問い合わせ
	========================================================== */
	#Tel_Box {
		width: fit-content;
		margin: 20px auto;
		transform: translateX(10px);
	}

	#Tel_Box div {
			font-size:10px;
			margin:6px 0;
	}

	#Tel_Box span {
			font-size:28px;
			color: #005130;
			font-style: italic;
			font-weight: bold;
			letter-spacing: 0.05em;
			margin-left:4px;
			position: relative;
			top: 3px;
	}

	/* ==========================================================
	プレーヤー名連絡フォーム
	========================================================== */
	#Area_Form {
		color: #000;
		background: #fff;
		padding: 20px;
		margin-top: 40px;
	}

	#Area_Form .Atten {
		width:100%;
		margin: 20px auto 0;
		font-size: 14px;
		color: #000;
		background: #f4f2e8;
		padding: 20px;
	}

	#Area_Form .Atten .Tit {
		font-size: 18px;
		text-align: center;
	}

	#Area_Form .Atten .Fax {
		font-size: 18px;
		line-height: 1.6em;
	}

	.Atten_Red {
		text-align: center;
		font-size: 16px;
		color: #c1272d;
		line-height: 2em;
	}

	/* ==========================================================
	よくある質問
	========================================================== */
	/*--- 目次リスト ---*/
	#List_Text ul {
		display: block;
		margin: 0 0 0 20px;
		padding: 0;
		list-style: none;
	}

	#List_Text ul li {
		position: relative;
		padding: 4px 0 4px 18px;
	}

	#List_Text ul li::after {
		display: none;
	}

	#List_Text ul li::before {
		content: "▼";
		position: absolute;
		left: 0;
		top: 4px;
		font-size: 12px;
		color: #005130;
	}

	#List_Text ul li a {
		font-size: 16px;
		color: #000;
		text-decoration: underline;
	}

	#List_Text ul li a:hover {
		text-decoration: none;
	}

	/*--- アンカー移動時のマージン設定 ---*/
	.anchor {
		scroll-margin-top: 70px;
	}

	.anchor02 {
		scroll-margin-top: 70px;
	}

	.anchor03 {
		scroll-margin-top: 20px;
	}

	/* !アコーディオン（よくある質問）
	----------------------------------------------------------- */
	.accordion-area {
		list-style: none;
		width: 100%;
		margin-top: 10px;
	}

	.accordion-area > li {
		padding: 10px 0;
	}

	/* アコーディオンタイトル */
	.tit_question {
		position: relative;
		cursor: pointer;
		padding: 14px 40px 14px 12px;
		transition: all .3s ease;
		font-size: 14px;
		color: #fff;
		line-height: 1.4em;
		background: #005130;
	}

	.tit_question:hover {
		background: #11845c;
	}

	.tit_question .areaL {
		width: 8%;
		float: left;
	}

	.tit_question .areaL span {
		font-size: 20px;
		font-weight: bold;
		font-family: 'M PLUS 1p', sans-serif;
		line-height: 1em;
	}

	.tit_question .areaR {
		width: 92%;
		float: left;
	}

	/* アコーディオンで現れるエリア */
	.box_cont {
		display: none;
		margin:0;
		padding: 20px;
		font-size: 14px;
		line-height: 1.6em;
		background: #fff;
	}

	.box_cont .areaL {
		width: 8%;
		float: left;
	}

	.box_cont .areaL span {
		font-size: 24px;
		font-weight: bold;
		font-family: 'M PLUS 1p', sans-serif;
		color: #005130;
	}

	.box_cont .areaR {
		width: 92%;
		float: left;
		font-size: 14px;
	}

	/* ==========================================================
	プライバシーポリシー
	========================================================== */
	/*--- 見出し ---*/
	.Privacy_Title {
		font-size: 16px;
		line-height: 1.4em;
		font-weight: bold;
		text-align: left;
		border-bottom: 1px solid #005130;
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.Privacy_Lead {
		font-size: 14px;
		line-height: 1.6em;
	}

	/*--- リスト（数字） ---*/
	.Decimal_Privacy {
		margin-left:18px;
		font-size: 14px;
		line-height: 1.6em;
	}

	.Decimal_Privacy li {
		list-style-type:decimal;
		margin-bottom: 24px;
	}

	/* ==========================================================
	会員専用
	========================================================== */
	/*--- ナビ ---*/
	#Members_Logo {
		height:50px;
		width:100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	#Members_Logo img {
		width: 134px;
	}

	/*--- 見出し ---*/
	.Members_Title {
		font-size: 18px;
		line-height: 1em;
		font-weight: bold;
		color: #005130;
		text-align: center;
	}

	.Members_Title_Ul {
		font-size: 18px;
		line-height: 1em;
		font-weight: bold;
		color: #005130;
		text-align: center;
		border-bottom: 1px solid #005130;
		padding-bottom: 12px;
		margin-bottom: 12px;
	}

	/*--- エリア分け（白背景） ---*/
	#Area_Bg_White .Cont {
		width:100%;
		padding: 40px 0;
	}

	/* !トップページ
	---------------------------------------------------------- */
	/*--- リード文 ---*/
	#Area_Lead {
		width: 100%;
		background: #fff;
	}
	
	#Area_Lead .Cont {
		width:80%;
		margin: 0 auto;
		padding: 40px 0;
	}

	/*--- お知らせ ---*/
	#Area_Info {
		width: 100%;
		background: #fff;
	}

	#Area_Info .Cont {
		width:90%;
		margin: 0 auto;
		padding: 40px 0;
	}

	#Info_Title {
		display: flex;
		justify-content: space-between;
		font-size: 16px;
		color: #fff;
		background: #005130;
		padding: 10px 30px;
	}

	#Info_Frame {
		border-left: 1px solid #005130;
		border-right: 1px solid #005130;
		border-bottom: 1px solid #005130;
		padding: 20px 20px 30px;
	}

	.flex_info .date {
		min-width: 90px;
		font-size: 14px;
		color: #000;
	}

	.flex_info .cont {
		flex: 1;
		font-size: 14px;
		color: #000;
		/*--- 文字数制限 ---*/
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 1;
	}

	/*--- リンク集 ---*/
	#Area_Link {
		width: 100%;
		background: #f6f8fa;
	}

	#Area_Link .Cont {
		width:80%;
		margin: 0 auto;
		padding: 40px 0;
	}

	/*--- カラム表示 ---*/
	.btn_square_wrap {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	/*--- ボタン ---*/
	.btn_square img {
		max-width: 40px;
		height: auto;
		margin-bottom: 20px;
	}

	.btn_square p {
		margin: 0;
		font-size: 14px;
		text-align: center;
	}

	/* !リクエスト予約
	---------------------------------------------------------- */
	/*--- リスト ---*/
	.Decimal_Reservation {
		margin-left:18px;
		font-size: 14px;
		line-height: 1.6em;
	}

	.Decimal_Reservation li {
		list-style-type:decimal;
		margin-bottom: 20px;
	}

	/*--- 見出し ---*/
	.Reservation_Title {
		font-size: 16px;
		line-height: 1.4em;
		font-weight: bold;
		text-align: center;
		border-bottom: 1px solid #005130;
		padding-bottom: 12px;
		margin-bottom: 20px;
	}

	/* !名義変更手続き
	---------------------------------------------------------- */
	/*--- 見出し ---*/
	.Procedure_Title {
		display: flex;
		align-items: center;
		font-size: 16px;
		line-height: 1em;
		font-weight: bold;
	}
	
	.Procedure_Title::before {
		content: "";
		width: 14px;
		height: 14px;
		background: #005130;
		margin-right: 5px;
		transform: translateY(1px);
	}

	/*--- ボタン（横並び） ---*/
	.btn_procedure_wrap {
		display: block;
		width: 90%;
		margin: 0 auto;
	}

	.btn_procedure {
		width: 100%;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 4px;
		font-size:13px;
		font-family: "Cinzel", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		color: #005130;
		line-height: 1em;
		letter-spacing: 0.1rem;
		text-align: center;
		text-decoration: none;
		background: #cec47b;
		padding: 18px 0;
		box-sizing: border-box;
		margin: 10px 0;
	}

	/*--- 区切り線 ---*/
	hr {
		width: 90%;
		border: none;
		border-top: 1px solid #d3d3d3;
		margin: 20px auto;
	}

	/* !プロアマ大会結果
	---------------------------------------------------------- */
	/*--- テーブル ---*/
	.table_result {
		width:100%;
		font-size: 14px;
	}

	/* !料金表
	---------------------------------------------------------- */
	/*--- テーブル ---*/
	.table_fee {
		width: 100%;
		background: #fff;
		border-collapse: collapse;
		font-size:14px;
		line-height: 1.6em;
		text-align: center;
		margin-top: 10px;
	}

	/* !お知らせ
	---------------------------------------------------------- */
	/*--- 一覧 ---*/
	#Info_List_Frame {
		width:100%;
		border: 1px solid #005130;
		padding: 20px;
		margin-top: 40px;
	}

	/*--- 詳細 ---*/
	#Info_Cont {
		width:100%;
		margin: 30px auto 0;
	}

	#Info_Cont .date {
		text-align: right;
		font-size: 14px;
		line-height: 1em;
	}

	#Info_Cont .tit {
		font-size: 16px;
		line-height: 1.4em;
		margin: 16px 0 18px;
		padding-bottom: 12px;
		border-bottom:1px solid #005130;
	}

	#Info_Post p {
		font-size: 14px;
		line-height: 1.6em;
		margin: 10px 0;
	}

	/* !会則等
	---------------------------------------------------------- */
	/*--- 見出し ---*/
	.Rule_Title {
		font-size: 16px;
		line-height: 1em;
		font-weight: bold;
		text-align: center;
	}

}
