@charset "utf-8";

/* ---------------------------------------- 
 - hole
---------------------------------------- */
#hole {
	width: 90%;
	max-width: 1200px;
	margin: 80px auto 100px;
    padding: 15px 4%;
	display: flex;
	justify-content: space-between;
	flex-direction:row-reverse;
	border-top: solid 1px #92a395;
	border-bottom: solid 1px #92a395;
}
#hole .visual {
	width: 48%;
	max-width: 525px;
}
#hole .hole_detail {
	width: 45%;
	margin: 35px 0 15px;
}
#hole .hole_detail .hole_number{
	font-size: 5.2rem;
	font-weight: 200;
	line-height: 1.4;
	margin-bottom: 0.8em;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	color: #657568;
}
#hole .hole_detail .hole_number > span{
	font-size: 3.6rem;
	margin-left: 1.0em;
	padding-left: 1.0em;
	border-left: solid 1px #92a395;
}
#hole .hole_detail .table_box {
	margin-bottom: 35px;
}
#hole .hole_detail .table_box .handicap {
	font-size: 2.2rem;
	margin-bottom: 0.2em;
}
#hole .hole_detail .table_box table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    border-spacing: 0;
	border-top: solid 1px #92a395;
	font-size: 1.6rem;
}
#hole .hole_detail .table_box table th {
    background: #d0d1cc;
	border-bottom: solid 1px #92a395;
	border-right: 1px solid #b3bbb4;
	padding: 5px;
	box-sizing: border-box;
	vertical-align: middle;
}
#hole .hole_detail .table_box table th:last-child {
	border-right: 0;
}
#hole .hole_detail .table_box table td {
    padding: 8px 5px;
    box-sizing: border-box;
	border-bottom: solid 1px #92a395;
	border-right: 1px solid #b3bbb4;  
	text-align: center;
	font-size: 2.0rem;
}
#hole .hole_detail .table_box table td:last-child {
	border-right: 0;
}
#hole .hole_detail .info_box {
	background-color: #d0d1cc;
	padding: 20px 30px;
	font-size:1.8rem;
	line-height: 1.6;
}
#hole .hole_detail .info_box dl {	
	display: flex;
	margin-bottom: 1.0em;
}
#hole .hole_detail .info_box dl:last-child {	
	margin-bottom: 0;
}
#hole .hole_detail .info_box dl dt {	
	width: 6em;
	font-weight: 400;
}
#hole .hole_detail .info_box dl dd {	
	flex: 1;
}
@media screen and (max-width: 1200px) {
	#hole {
		padding: 30px 0;
	}
	#hole .hole_detail {
		margin:0;
	}
	#hole .hole_detail .hole_number{
		font-size: 4.8vw;
		margin-bottom: 1.5vw;
	}
	#hole .hole_detail .hole_number > span{
		font-size: 2.8vw;
	}
	#hole .hole_detail .table_box {
		margin-bottom: 2vw;
	}
	#hole .hole_detail .info_box {
		font-size: 1.5vw;
	}
}
@media screen and (max-width: 768px) {
	#hole {
		padding: 30px 0 15px;
		margin: 30px auto 50px;
		display: block;
	}
	#hole .visual {
		width: 90%;
		max-width: 525px;
		margin: 15px auto 0;
	}
	#hole .hole_detail {
		width: 100%;
		margin: 0 0 10px;
	}
	#hole .hole_detail .hole_number{
		font-size: 3.6rem;
	}
	#hole .hole_detail .hole_number > span{
		font-size: 2.2rem;
		font-weight: 300;
	}
	#hole .hole_detail .table_box .handicap {
		font-size: 1.8rem;
	}
	#hole .hole_detail .table_box {
		margin-bottom: 26px;
	}
	#hole .hole_detail .table_box .ttl {
		font-size: 1.6rem;
	}
	#hole .hole_detail .table_box table {
		font-size: 1.5rem;
	}	
	#hole .hole_detail .table_box table td {
		padding: 5px;
		font-size: 1.7rem;
	}
	#hole .hole_detail .info_box {
		width: 100%;
		padding: 15px 20px;
		margin-top: 20px;
		font-size: 1.4rem;
	}
	#hole .hole_detail .info_box dl {	
		display: block;
		margin-bottom: 1.0em;
		font-size: 1.4rem;
	}
	#hole .hole_detail .info_box dl dt {	
		width: 100%;
	}	
}

/* ---------------------------------------- 
 - instruction
---------------------------------------- */
/* instruction_box */
#instruction .instruction_box {
	width: 90%;
	max-width: 1200px;
	margin: 100px auto;
	display: flex;
	justify-content: space-between;
	flex-direction:row-reverse;
}
#instruction #tips.instruction_box {	
	flex-direction:row;
}
#instruction .instruction_box .visual {
	width: 55%;
	max-width: 650px;
}
#instruction .instruction_box .visual img,
#instruction .instruction_box .visual picture {
    width: 100%;
    height: 100%;
    vertical-align: top;
    object-fit: cover;
    font-family: 'object-fit: cover';
}
#instruction .instruction_box .txt_box {
	width: 40%;
	padding: 2% 0;
}
#instruction .instruction_box .txt_box .ttl {
	margin-bottom: 2.0em;
}
#instruction .instruction_box .txt_box .ttl .en {
	font-size: 5.2rem;
	font-weight: 200;
	line-height: 1.2;	
	color:#657568;
}
#instruction .instruction_box .txt_box .ttl .jp {
	display: block;
    font-size: 1.8rem;
	margin-top: 0.5em;
}
@media screen and (max-width: 1200px) {
	#instruction .instruction_box .txt_box {
		padding: 0;
	}
	#instruction .instruction_box .txt_box .ttl .en {
		font-size: 5.2vw;
	}
	#instruction .instruction_box .txt_box .ttl .jp {
		font-size: 1.8vw;
	}
}
@media screen and (max-width: 768px) {
	#instruction .instruction_box {
		margin: 60px auto;
		display: block;
	}
	#instruction .instruction_box .visual {
		width: 100%;
	}
	#instruction .instruction_box .txt_box {
		width: 100%;
		margin-top: 1.5em;
	}
	#instruction .instruction_box .txt_box .ttl {
		margin-bottom: 1.5em;
	}
	#instruction .instruction_box .txt_box .ttl .en {
		font-size: 3.6rem;
	}
	#instruction .instruction_box .txt_box .ttl .jp {
		font-size: 1.6rem;
		margin-top: 0.2em;
	}
}

/* movie_visual_box */
#instruction .movie_visual_box {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
#instruction .movie_visual_box .movie {
	width: calc(100% - 43% - 15px);
	overflow: hidden;
}
#instruction .movie_visual_box .visual {
	width: 43%;
	overflow: hidden;
}
#instruction .movie_visual_box .movie video,
#instruction .movie_visual_box .visual picture,
#instruction .movie_visual_box .visual img{
	width: 100%;
	height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover';
}
@media screen and (max-width: 768px) {
	#instruction .movie_visual_box {
		display: block;
	}
	#instruction .movie_visual_box .movie {
		width: 80%;
	}
	#instruction .movie_visual_box .visual {
		width: 80%;
		margin-left: auto;
	}
}

/* visual_box */
#instruction .visual_box {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	max-height: 480px;
	height: 45vw;
	margin-bottom: 70px;
	overflow: hidden;
}
#instruction .visual_box .visual {
	width: 100%;
	height: 100%;
}
#instruction .visual_box .visual picture,
#instruction .visual_box .visual img{
	width: 100%;
	height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover';
}
@media screen and (min-width: 1367px) {
	#instruction .visual_box {
		max-height: 550px;
	}
}
@media screen and (max-width: 768px) {
	#instruction .visual_box {
		height: 55vw;
		margin-bottom: 35px;
	}
}

/* ---------------------------------------- 
 - .other_box
---------------------------------------- */
.other_box {
	width: 90%;
	max-width: 1200px;
	margin: 120px auto;
	background: #d0d1cc;
	box-sizing: border-box;
	text-align: center;
	padding: 65px 85px;
}
.other_box > .ttl {
	margin-bottom: 1.5em;
}
.other_box > .ttl .en {
	font-size:4.6rem;
	font-weight: 200;
	line-height:1.4;
	color: #657568;
}
.other_box > .ttl .jp {
	display: block;
	font-size:1.8rem;
}
.other_box .profile {
	width: 100%;
	margin: 60px auto 0;
	display: flex;
	justify-content: space-between;
}
.other_box .profile .visual {
	width: 46%;
	max-width: 460px;
}
.other_box .profile .visual img,
.other_box .profile .visual picture {
    width: 100%;
    height: 100%;
    vertical-align: top;
    object-fit: cover;
    font-family: 'object-fit: cover';
}
.other_box .profile dl.txt_box {
	width: 48%;
	text-align: left;
	margin: 4% 0;
}
.other_box .profile dl.txt_box dt {
	font-size: 2.6rem;
	font-weight: 200;
	margin-bottom: 0.8em;
}
.other_box .profile dl.txt_box dt .en {
	font-size: 1.8rem;
	display: block;
}
.other_box .profile dl.txt_box dd {
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
	.other_box {		
		margin: 50px auto;
		padding: 30px 5%;
	}
	.other_box > .ttl {
		margin-bottom: 1.0em;
	}
	.other_box > .ttl .en {
		font-size:2.6rem;
		font-weight: 300;
	}
	.other_box > .ttl .jp {
		font-size:1.6rem;
	}
	.other_box .profile {		
		margin-top: 30px;
		display: block;
	}
	.other_box .profile .visual {		
		width: 80%;
		max-width: 400px;
		margin: 0 auto 20px;
	}
	.other_box .profile dl.txt_box {
		width: 100%;
		margin: 0;
	}
	.other_box .profile dl.txt_box dt {
		font-size: 2.0rem;
	}
	.other_box .profile dl.txt_box dt .en {
		font-size: 1.5rem;
	}
}