/*------------------------------------
汎用
------------------------------------*/
html{min-width: 1200px;}
body {
    min-width: 1200px;
    min-height: 100%;
    background: #f8f8f0;
}
/*コンティナ*/
#container{
	display: block;
	width: 1200px;
	margin: 0 auto;
}
/*汎用flex*/
.flex-between{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex-around{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.flex-center{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.flex-start{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-self: baseline;
	align-items: baseline;
}
/*パンくずリスト*/
.container-breadcrumbs{
	width: 100%;
	padding: 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
#breadcrumbs{
	width: 1200px;
	display: block;
	margin: 0 auto;
}
#breadcrumbs ul {
	display: block;
	list-style: none;
    margin: 0 auto;
}
#breadcrumbs ul li {
	list-style: none;
	display:table-cell;
	vertical-align:middle;
    font-size: 12px;
    line-height: 3.5;
    padding: 0 0.5rem;
}
#breadcrumbs ul li:first-child{
	padding-left: 0;
}
#breadcrumbs ul li a{
	display: block;
    color: #333;
}
#breadcrumbs ul li a .fa-home{
	display: block;
	font-size: 24px;
	margin-top:-3px;
}
/*ページネーション*/
.pagination {
	display: flex;
	justify-content: center;
	line-height: 2;
	background: none;
	text-align: center;
}
.pagination span, .pagination a{
	padding: 4px 15px;
	margin: 0 2px;
	width: auto;
}
.pagination a{
	display: inline;
	padding: 4px 14px;
	border-radius: 100%;
	color: #448349;
}
.pagination a:hover{
	color: #fff;
	background: #448349;
	opacity: 1;
}
.pagination .current{
	background: #448349;
	color: #fff;
	border-radius: 100%;
	opacity: 1;
}
/*------------------------------------
ヘッダー
------------------------------------*/
.head-wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	text-align: center;
}
header{
	display: block;
	width: 100%;
	transition: all .3s ease;
	z-index: 9000;
}
header .logo{
	display: block;
	width: 100%;
	padding: 17px 0;
	background: linear-gradient(to right, #dae25f,#3d702f,#28612c);
}
header .logo a {
	display: inline-block;
}
header .logo a img{
	margin: 0 auto;
	opacity: 0.7;
}
header .logo a img:hover{
	opacity: 0.5;
}
header .g-navi{
	display: block;
	width: 100%;
}
header .g-navi ul{
	display: flex;
	justify-content: center;
}
header .g-navi ul li a{
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 18px 0;
	padding: 20px 16px;
	transition: all .3s ease;
}
header .g-navi ul li a:hover{
	background: #fff;
}
header .g-navi ul li a img{
	display: block;
	width: auto;
	height: auto;
	margin: auto 0 auto
}
header .g-navi ul li a span{
	margin: auto 0 auto 20px;
}
header .g-navi ul li a span .big{
	font-size: 14px;
	line-height: 1.2;
	font-weight: bold;
}
header .g-navi ul li a span .small{
	font-size: 10px;
	line-height: 1.5;
	color: #36ab4d;
}
header .g-navi ul li.address{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 18px 0;
}
header .g-navi ul li.address a{
	margin: 0;
	padding: 0 10px;
	line-height: 1.25;
	transition: all .3s ease;	
}
header .g-navi ul li.address .tel{
	font-size: 22px;
	font-weight: 700;
}
header .g-navi ul li.address .mail{
	font-size: 12px;
}
header .g-navi ul li.address a:hover{
	background: initial;
}
/*--------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
トップページ
----------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
--------------------------------------------------------------------------*/
/*------------------------------------
汎用
------------------------------------*/
#content h1{
	display: block;
	position: relative;
	margin: 24px 0;
	padding: 64px 18px;
	font-size: 36px;
	line-height: 1.5;
	font-weight: 700;
	color: #fff;
	text-align: center;
	border-radius: 5px;
	background: linear-gradient(to right, #dae25f,#3d702f,#28612c);
}
#content h1 p{
	font-size: 12px;
	color: #fff;	
}
#content h2{
	height: 50px;
	margin: 28px 0;
	text-align: center;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
#content h2 span{
	position: relative;
	display: inline-block;
	font-size: 27px;
	font-weight: 700;
	background: #f8f8f0;
	padding: 0 20px;
	line-height: 2;
	z-index: 2;
}
#content h2:before,
#content h2:after {
	position: absolute;
	content: "";
	top: 50%;
	z-index: 1;
}
#content h2:before {
	border-top: #448349 3px solid;
	width: 100%;	
	right: 0%;
}
#content h2:after {
	border-top: #94bb40 3px solid;
	width: 80%;
	left: 10%;
}
#content h3{
	font-size: 18px;
	padding: 0 10px;
	margin: 16px 0;
	font-weight: 700;
	line-height: 2;
	border-left: 6px solid #d55a91;
}
#content h4{
	position: relative;
	font-size: 16px;
	margin: 12px 0;
	font-weight: 700;
	border-bottom: 1px solid #333;
}
#content table{
	width: 100%;
	display: table;
	border: 1px solid #ccc;
	background: #fff;
	margin: 10px 0;
}
#content table tr{
	border: 1px solid #ccc;
}
#content table tr th{
	color: #153d73;
	font-weight: 700;
	width: 30%;
	padding: 0.5rem 1rem;
	border: 1px solid #ccc;
	text-align: center;
	vertical-align: middle;
}
#content table tr td{
	font-size: 14px;
	padding: 0.5rem 1rem;
	text-align: left;
}

#content table.numerals{
	width: 46%;
	display: table;
	border: 1px solid #ccc;
	background: #fff;
	margin: 10px 0;
}
#content table.numerals tr{
	border: 1px solid #ccc;
}
#content table.numerals tr th{
	color: #153d73;
	font-weight: 700;
	width: 30%;
	padding: 0.4rem 1rem;
	border: 1px solid #ccc;
	text-align: center;
	vertical-align: middle;
}
#content table.numerals tr td{
	font-size: 14px;
	padding: 0.4rem 1rem;
}
#content .more{
	display: block;
	text-align: center;
	width: 40%;
	text-align: center;
	margin: 32px auto 48px;
	padding: 16px 0;
	color: #fff;
	background: #172a88;
	border: 1px solid #172a88;
	border-radius: 5px;
    transition: all 0.3s ease;
}
#content .more:hover{
	opacity: 1;
	color: #172a88;
	background: #fff;
}
/*------------------------------------
スライダー
------------------------------------*/
#slider {
	margin-bottom: 48px;
}
#slider .top_slider {
	position: relative;
}
#slider .top_slider .logo {
	position: absolute;
	display: block;
	bottom: 16px;
	left: 16px;
}
#slider .top_slider > ul,
#slider .top_slider .slick-list,
#slider .top_slider .slick-slide {
	width: 100%;
	height: 450px;
}
#slider .top_slider .slick-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#slider .top-dots{
	position: relative;
	display: flex;
	justify-content: center;
	height: 12px;
	margin: 0;
	padding: 12px 0;
}
#slider .top-dots li {
	width: 12px;
	height: 12px;
	margin: 0 6px;
}
#slider .top-dots li button {
	position: relative;
	width: 12px;
	height: 12px;
	text-indent: -9999px;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#slider .top-dots li button:before {
	display: block;
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 12px;
	height: 12px;
	border-radius: 100%;
	background: #d65a92;
}
#slider .top-dots li.slick-active button:before {
	background: #69a954;
}

/*------------------------------------
バナー
------------------------------------*/
#banner{}
#banner .bigbox{
	width: 900px;
}
#banner .bigbox a{
	display: block;
	margin-bottom: 20px;
}
#banner .smallbox{
	width: 270px;
}
#banner .smallbox a{
	display: block;
	margin-bottom: 16px;
}
#banner .bigbox a:last-of-type,
#banner .smallbox a:last-of-type{
	margin-bottom: 0;
}
/*通貨コンバーター*/
#banner .smallbox .converter{
	width: 100%;
	background: #fff;
	border: 1px solid #172a88;
	margin: 16px auto 0;
	border-radius:5px;
}
#banner .smallbox .converter .title{
	display: block;
	width: 100%;
	background: #172a88;
	font-size:18px;
	line-height: 2;
	text-align: center;
	color: #fff;
}
#banner .smallbox .converter li{
	display: block;
	width: 100%;
	font-size: 13px;
	padding: 4px 0;
	text-align: center;
}
/*------------------------------------
ゴルフ場
------------------------------------*/
#content .course_list{
	display: block;
	width: calc((100% - 60px) / 3);
	margin: 0 30px 30px 0;
	background: #172a88;
	border: 1px solid #172a88;
	border-radius: 5px;
	box-sizing: border-box;
}
#content .course_list:nth-child(3n){
	margin: 0 0 32px 0;
}
#content .title_box{
	display: flex;
	align-items: baseline;
}
#content .course_list h3{
	margin: auto 10px auto 0;
	padding: 0;
	border: none;
}
#content .course_list h3 p{
	display: block;
	line-height: 1.25;
	color: #fff;
}
#content .course_list h3 .big{
	font-size: 15px;
	font-weight: 700;
	margin-bottom: .25em;
}
#content .course_list h3 .small{
	font-size: 10px;
}
#content .course_list span{
	display: block;
	width: auto;
	height: 32px;
	margin: 10px;
	padding: 6px;
	margin-right: 10px;
	border-radius: 100%;
}
#content .course_list span p{
	position: relative;
	font-size: 16px;
	top: 0;
	right: 0;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-weight: 700;
	letter-spacing: 0;
	padding: 6px;
	text-align: center;
	vertical-align: middle;
	border-radius: 100%;
	background: #fff;
}
#content .course_list span.bangkok{background: #448349;}
#content .course_list span.bangkok p{color: #448349;}
#content .course_list span.pattaya_rayong{background: #ec6d20;}
#content .course_list span.pattaya_rayong p{color: #ec6d20;}
#content .course_list span.huahin_chaam{background: #00b5c9;}
#content .course_list span.huahin_chaam p{color: #00b5c9;}
#content .course_list span.phuket{background: #a83a3a;}
#content .course_list span.phuket p{color: #a83a3a;}
#content .course_list img{
	margin: 0 auto;
	width: 100%;
	height: 200px;
	object-fit: cover;
	object-position: 50% 0%;
	font-family: 'object-fit: cover; object-position: 50% 0%;';
}
#content .course_list table{
	width: 100%;
	display: table;
	white-space: nowrap;
	border: none;
	margin-top:6px;
}
#content .course_list table tr{border: none;}
#content .course_list table tr th{
	color: #fff;
	font-size: 14px;
	width: 50%;
	padding: 5px 0px;
	border: none;
	font-weight: 500;
}
#content .course_list table tr:nth-child(odd) th{
	background: #94bb40;
}
#content .course_list table tr:nth-child(even) th{
	background: #448349;
}
#content .course_list table tr td{
	font-size: 14px;
	width: 50%;
	padding: 5px 0px;
	text-align: center;
	white-space: pre-wrap;
	border-bottom: 1px solid #bbb;
}
#content .course_list table tr:last-child td {border-bottom: none;}
#content .course_list a{
	display: block;
	text-align: center;
	width: 140px;
	margin: 12px auto;
	padding: 6px 20px;
	color: #fff;
	font-size: 15px;
	border: 1px solid #fff;
	border-radius: 5px;
	transition: .3s ease;
}
#content .course_list a:hover{
	background: #fff;
	color: #172a88;
	border: 1px solid #172a88;
}
/*------------------------------------
フッター
------------------------------------*/
footer{
	position: relative;
	background: url(../img/footerbg-texture.png) 0 0 repeat;
	padding: 24px 0 24px;
	margin-top: 100px;
}
footer:before{
	position: absolute;
	content: "";
	top: -20px;
	left: 0;
	width: 100%;
	height: 20px;
	background: url(../img/footerbg-top.png) 0 0 repeat-x;
}
footer ul li a{
	display: inline-block;
	width: 100%;
	margin: 0 auto;
	color: #fff;
	font-size: 15px;
	line-height: 2;
}
/*ナヴィ*/
footer ul.navi{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 36px;
}
footer ul.navi li a{
	margin: 0 20px;
}
footer ul.navi li a:before{
	font-family: FontAwesome;
	content: "\f138";
	padding: 0 0.5rem 0 0;
}
footer ul.navi li.address{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-left: 24px;
}
footer ul.navi li.address a{
	margin: 0;
	padding: 0;
	text-align: center;
	line-height: 1.25;
	transition: all .3s ease;
}
footer ul.navi li.address .tel{
	font-size: 22px;
	font-weight: 700;
}
footer ul.navi li.address .mail{
	font-size: 12px;
}
footer ul.navi li.address a:hover{
	background: initial;
}
footer ul.navi li.address a:before{
	content: "";
	padding: 0;
}
/*コース一覧*/
footer .course_list-wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer ul.course_list{
	display: block;
	width: 23%;
	margin-bottom: 24px;
}
footer ul.course_list h4{
	font-weight: 700;
	color: #fff;
	text-align: center;
	border-bottom: 1px solid #fff;
	margin-bottom: 8px;
	padding: 0 10px;
}
footer ul.course_list li{
	padding: 0 8px;
}
footer ul.course_list li a{
	font-size: 13px;
}
footer ul.course_list li a:before{
	content: "";
	padding: 0;
}
footer .logo{
	width: auto;
	margin: 40px auto 0;
	text-align: center;
}
footer .logo a{
	display: inline-block;
	width: auto;
	margin: 0 auto;
}
footer .logo a img{
	margin: 0 auto;
}
footer .copyright{
	display: block;
}
footer address{
	font-size: 12px;
	line-height: 2;
	text-align: center;
	text-decoration: none;
	font-style: normal;
	color: #fff;
}

/*--------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
下層ページ
----------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
--------------------------------------------------------------------------*/
/*------------------------------------
投稿ページ (single.php)
------------------------------------*/
#single{}
#single h1{
	position: relative;
	width: 100%;
	font-size: 27px;
	font-weight: 700;
	margin: 28px 0;
	padding: 48px 16px;
	line-height: 2;
}
#single h1:after {
	position: absolute;
	content: '';
	z-index: 2;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(to right, #dae25f,#3d702f,#28612c);
}
#single h2{
	width: 100%;
	text-align: center;
	position: relative;
	font-size: 24px;
	font-weight: 700;
	margin: 28px 0;
	padding: 0 16px;
	border-bottom: 3px solid #448349;
	line-height: 2;
}
#single h2:after {
	position: absolute;
	content: '';
	bottom: -3px;
	left: 10%;
	width: 80%;
	height: 3px;
	z-index: 2;
	background: #94bb40;
}
#single h3{
	font-size: 18px;
	padding: 0 10px;
	margin: 16px 0;
	font-weight: 700;
	line-height: 2;
	border-left: 6px solid #d55a91;
}
#single h4{
	position: relative;
	font-size: 16px;
	margin: 12px 0;
	font-weight: 700;
	border-bottom: 1px solid #333;
}
#single strong{
    position: relative;
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 2;
    font-weight: bold;
}
#single p{
    margin-bottom: 28px;
    line-height: 2;
}
#single ul{
	margin-bottom: 28px;
}
#single ul li{
	margin-left: 1rem;
	list-style: disc;
}
#single ol{
	margin-bottom: 28px;
}
#single ol li{
	margin-left: 1rem;
	list-style: decimal;
}
#single table {
	margin-bottom: 28px;
	border-collapse: collapse;
	text-align: left;
	line-height: 1.5;
	border: 1px solid #ccc;
}
#single table thead th {
	padding: 0.7rem 1.25rem;
	border-bottom: 2px solid #448349;
	border-left: 1px solid #ccc;
	background: #e4e4e4;
}
#single table thead td {
	padding: 0.7rem 1.25rem;
	border-bottom: 2px solid #448349;
	border-left: 1px solid #ccc;
	background: #fff;
}
#single table tbody th {
	padding: 0.5rem 1.25rem;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
	background: #e4e4e4;
}
#single table td {
	padding: 0.5rem 1.25rem;
	vertical-align: top;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
/*------------------------------------
ゴルフ場 (single-course.php)
------------------------------------*/
#single-course{
	display: block;
	background: #172a88;
	margin: 24px 0;
	border: solid 10px #172a88;
	border-top: none;
	border-radius: 5px;
	box-sizing: border-box;
}
#single-course .box{
	padding: 10px;
	border-radius: 5px;	
	background: #fff;
}

#single-course .title_box{
	display: flex;
	align-items: center;
}
#single-course .title{}
#single-course .title *{
	color: #fff;
	line-height: 1.35;
}
#single-course .title .big{
	font-size: 22px;
	font-weight: 700;
	background: transparent;
	margin: auto 0;
	padding: 0;
	text-align: left;
	border: none;
}
#single-course .title .small{
	font-size: 12px;
}
#single-course .num{
	width: 36px;
	height: 36px;
	margin: 10px;
	padding: 6px;
	border-radius: 100%;
}
#single-course .num span{
	display: block;
	position: relative;
	font-size: 20px;
	top: 0;
	right: 0;
	width: 24px;
	height: 24px;
	line-height: 24px;
	font-weight: 700;
	letter-spacing: 0;
	padding: 6px;
	text-align: center;
	vertical-align: middle;
	border-radius: 100%;
	background: #fff;
}
#single-course .num.bangkok{background: #448349;}
#single-course .num.bangkok span{color: #448349;}
#single-course .num.pattaya_rayong{background: #ec6d20;}
#single-course .num.pattaya_rayong span{color: #ec6d20;}
#single-course .num.huahin_chaam{background: #00b5c9;}
#single-course .num.huahin_chaam span{color: #00b5c9;}
#single-course .num.phuket{background: #a83a3a;}
#single-course .num.phuket span{color: #a83a3a;}

#single-course .course_slider{
	display: block;
	width: 100%;
	height: 550px;
	margin: 0;
}
#single-course .course_slider img{
	width: 100%;
	height: 450px;
	object-fit: cover;
	object-position: 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#single-course .slick-dots {
	position: static;
	display: flex;
	justify-content: flex-start;
	margin: 10px 0 0 0;
}
#single-course .slick-dots li {
	list-style: none;
	display: block;
	width: 20%;
	height: 88px;
	margin: 0;
}
#single-course .slick-dots li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50%;
	font-family: 'object-fit: cover; object-position: 50% 50%;';
}
#single-course .slick-dots .slick-active img {
	opacity: 0.8;
}
#single-course .slider_container{
	position: relative;
}
#single-course .slider_container .logo{
	position: absolute;
	display: block;
	bottom: 116px;
	left: 16px;
}
#single-course .flex-around{
	margin: 24px 0 32px;
}
#single-course .property_box{
	width: 48%;	
}
#single-course .text{
	width: 100%;
	margin-bottom: 16px;
}
#single-course table{
	width: 100%;
	display: table;
	border: 1px solid #333;
	margin-top:6px;
}
#single-course table tr{border: none;}
#single-course table tr th{
	color: #fff;
	font-size: 14px;
	width: 50%;
	padding: 5px 0px;
	border: none;
	font-weight: 500;
}
#single-course table tr:nth-child(odd) th{
	background: #94bb40;
}
#single-course table tr:nth-child(even) th{
	background: #448349;
}
#single-course table tr td{
	font-size: 14px;
	width: 50%;
	padding: 5px 0;
	text-align: center;
	white-space: pre-wrap;
	border-right: 1px solid #333;
	border-top: 1px solid #bbb;
}
#single-course table tr:first-child td {border-top: none;}
.googlemap {
	width: 100%;
	position: relative;
	padding-bottom: 70%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	max-height: none;
}
.googlemap img {
   max-width: inherit !important;
}
.googlemap a{
	all: inherit !important;
}
.googlemap iframe,
.googlemap object,
.googlemap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#single-course .booking{
	display: block;
	text-align: center;
	width: 320px;
	margin: 24px auto;
	padding: 20px;
	color: #fff;
	background: #172a88;
	border: 1px solid #172a88;
	border-radius: 5px;
	transition: .3s ease;
}
#single-course .booking:hover{
	background: #fff;
	color: #172a88;
}
/*------------------------------------
ゴルフ場を探す (page-search.php)
------------------------------------*/
#page-search{position: relative;}
#page-search #cluster-map {
	height: 600px;
}
#page-search #cluster-map p{
	margin: 0;
    padding: 0;
}
/*一覧表ボタン*/
#page-search #table_botton{
	display: block;
	position: absolute;
	background: #448349;
	color: #fff;
	top: 1vw;
	right: 5vw;
	padding: 12px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1;
	box-shadow: 2px 2px 0 0 #aaa;
	z-index: 200;
	transition: .3s ease;
}
#page-search #table_botton:hover{
	background: #94bb40;
}
/*一覧表*/
#page-search .table{
	display: none;
	position: fixed;
	top: 10vh;
	left: 50%;
	transform: translate(-50%, 0%);
	width: 80%;
	height: 80vh;
	overflow-y: scroll;
	z-index: 300;
	overflow-scrolling: touch;
	opacity: 0;
	transition: .3s ease;
}
#page-search .table table{
	border-collapse: collapse;
	text-align: left;
	border: 1px solid #ccc;
}
#page-search .table table thead td{
	text-align: center;
	border-bottom: 2px solid #448349;
	border-left: 1px solid #ccc;
	background: #e4e4e4;
	font-size: 13px;
	font-weight: 700;
}
#page-search .table table tbody td{
	border-bottom: 1px solid #ccc;
	font-size: 12px;
}
#page-search .table table td{
	padding: 0.5rem;
	vertical-align: middle;
	line-height: 1.5;
	border-left: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
#overlay2{
	display: none;
	position: fixed;
	background: #000;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 200;
}
.open_table #page-search .table{
	display: block;
	opacity: 1;
}
.open_table #overlay2{
	display: block;
	background: rgba(0,0,0,0.6);
}
#page-search .linkbox{
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 20px 0;
	background: linear-gradient(to right, #dae25f,#3d702f,#28612c);
}
#page-search .linkbox a{
	display: block;
	width: 250px;
	margin: 0 12px;
	padding: 20px 0;
	text-align: center;
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 5px;
	font-weight: 700;
	transition: .3s ease;
}
#page-search .linkbox a:hover{
	color: #448349;
	background: #fff;
}
/*------------------------------------
送迎サービス (page-pickup.php)
------------------------------------*/
#page-pickup{}
#page-pickup #big_photo h3{
	display: block;
	font-size: 21px;
	text-align: center;
	border-left: none;
	padding: 0;
	margin: 10px 0;
}
#page-pickup #big_photo img{
	object-fit: contain;
	font-family: 'object-fit: contain;';
}
#page-pickup ul#price_list li{
	padding: 16px 0;
	border-bottom: 1px solid #333;
}
#page-pickup ul#price_list li:first-child{
	padding: 0 0 16px;
}
#page-pickup ul#price_list li h3{
	font-size: 21px;
	border-left: none;
	padding: 0;
	margin: 0;
}
#page-pickup ul#price_list li p:before{
	font-family: FontAwesome;
	content: "\f058";
	padding: 0 0.5rem 0 0;
	color: #333;
}
#page-pickup .flex-between{
	margin: 48px 0 56px;
}
/*------------------------------------
お支払い方法 (page-system.php)
------------------------------------*/
#page-system{}
#page-system .set{
	margin-bottom: 48px;
}
#page-system .set .text{
	font-size: 20px;
	margin: auto 0;
}
#page-system .set .icon_set{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 34%;
}
#page-system .set .icon_set img{
	width: 96px;
	height: 96px;
	margin-right: 8px;
}
#page-system .set .icon_set p{
	display: block;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.5;
	margin: auto;
}
#page-system .flow{
	margin-bottom: 48px;
}
#page-system .flow .flow_icon_set{
	display: flex;
	flex-direction: column;
	align-items: center;
}
#page-system .flow .flow_icon_set:last-child{
	display: flex;
	flex-direction: row;
	align-items: center;
}
#page-system .flow .flow_icon_set img{
	width: 120px;
	height: 120px;
	margin: 0 auto;
}
#page-system .flow .flow_icon_set p{
	text-align: center;
	margin-top: 12px;
	font-weight: 700;
	font-size: 20px;
	color: #448349;
}
#page-system .flow .flow_icon_set .fax{
	width: 200px;
	font-size: 18px;
	text-align: center;
	margin-left: 8px;
	font-weight: 700;
	color: #333;
}
#page-system .flow .flow_icon_set .furikomi{
	display: block;
	text-align: center;
	line-height: 1.5;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	background: #94bb40;
	margin: auto;
	padding: 10px;
	border-radius: 5px;
}
#page-system .flow .flow_arrow_set{
	display: flex;
	justify-content: center;
	position: relative;
	padding-right: 20px;
	width: 80px;
}
#page-system .flow .flow_arrow_set p{
	display: block;
	position: absolute;
	left: 3px;
	top: calc(50% - 14px);
	width: 80px;
	text-align: center;
	font-weight: 700;
	color: #fff;
}
#page-system .flow .flow_arrow_set .arrow{
	position: relative;
	margin: auto;
	width: 80px;
	height: 30px;
	background: #888;
}
#page-system .flow .flow_arrow_set .arrow:after{
	content: "";
	position: absolute;
	top: -10px;
	right: -20px;
	border-left: 35px solid #888;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
}
#page-system em{
	display: block;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	color: #e03030;
}
#page-system .important p{
	position: relative;
	padding: 0 0 0 16px;
}
#page-system .important p:before{
	content: "";
	position: absolute;
	top: 12px;
	left: 0px;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: #333;
}
#page-system .cource_list{
	padding: 12px 18px;
}
#page-system .cource_list li{
	color: #448349;
	font-style: italic;
	font-weight: 700;
}
/*------------------------------------
ギャラリー (page-gallary.php)
------------------------------------*/
#page-gallary{}
#page-gallary .gallery{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#page-gallary img{
	width: 95%;
	margin: 2.5%;
}
/*------------------------------------
お問い合わせフォーム (page-contact.php)
------------------------------------*/
#page-form{
	position: relative;
	width: 940px;
	margin: 48px auto 24px;
	padding: 57px 30px;
	background-color: #fff;
	background-image: url(../img/contact/border.png), url(../img/contact/border.png);
	background-position: left top, left bottom;
	background-repeat: no-repeat, no-repeat;
	background-size: auto, auto;
    box-shadow: 3px 3px 3px 0 rgba(128,128,128, 0.3);
}
#page-form:after {
	position: absolute;
	display: block;
	content: "";
	top: 5px;
	left: 5px;
	width: 100%;
	height: 100%;
	box-shadow: 3px 3px 3px 0 rgba(128,128,128, 0.3);
	transform: rotate(2.5deg); /* 回転させる */
	background: #fff;
	z-index: -1;
}
#page-form h1{
	display: block;
	position: relative;
	margin: 0 0 32px 0;
	padding: 32px 18px;
	font-size: 30px;
	line-height: 1.5;
	font-weight: 700;
	color: #555;
	text-align: left;
	border-radius: none;
	background: url(../img/contact/cont-logo.png) right center no-repeat;
}
#page-form h1 p{
	color: #555;
	text-align: left;
}
#page-form p {text-align: center;}
#page-form p br {display: none;}
#page-form .form-table {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	text-align: left;
	border: none;
}
#page-form .form-table ul {
	display: flex;
	flex-wrap: wrap;
	width: calc((100% - 36px) / 2);
	padding: 6px 0;
}
#page-form .form-table ul.textarea{
	width: 100%;
}
#page-form .form-table ul li{
	width: 100%;
	text-align: left;
	vertical-align: middle;
}
#page-form .form-table ul li .required {
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	vertical-align: middle;
	margin-left: 8px;
	margin-bottom: 4px;
	padding: 6px 8px;
	color: #fff;
	background: #448349;
}
#page-form .form-table ul li .notice {
	margin-top: 10px;
	font-size: 13px;
	text-align: left;
}
#page-form .form-table input[type="text"],
#page-form .form-table input[type="email"],
#page-form .form-table input[type="tel"],
#page-form .form-table input[type="date"],
#page-form .form-table select {
	display: block;
	width: 100%;
	line-height: 1.5;
	padding: 5px 10px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
#page-form .form-table select {
	cursor: pointer;
}
#page-form .form-table textarea{
	display: block;
	width: 100%;
	resize: vertical;
	line-height: 1.5;
	padding: 5px 10px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
#page-form input[type="submit"]{
	display: block;
	position: relative;
	text-align: center;
	width: 240px;
	margin: 36px auto 48px;
	padding: 18px;
	color: #fff;
	font-size: 16px;
	background: #172a88;
	border: 1px solid #172a88;
	cursor: pointer;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.3s ease;
}
#page-form input[type="submit"]:hover{
	background: #fff;
    color: #172a88;
}
#page-form input[type="radio"]{
	width: auto;
	margin: 0 10px;
	top: 0;
}
#page-form .wpcf7-form-control-wrap,
#page-form .wpcf7-form-control {
	display: block;
}
#page-form .wpcf7-list-item,
#page-form .wpcf7-list-item-label {
	display: inline-block;
	line-height: 1;
}


/*------------------------------------
404.php
------------------------------------*/
#notfound{
	padding-top: 100px;
}
#notfound img{
	position: relative;
	display: inline-block;
	width: 400px;
	height: 400px;
	margin-left: 100px;
	box-shadow: 10px 10px 10px 0 rgba(128,128,128, 0.5);
}
#notfound .box{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#notfound h1{
	font-size: 140px;
	font-weight: bold;
	color: #448349;
	text-align: center;
	line-height: 1;
}
#notfound h2{
	line-height: 1;
	letter-spacing: 0.5rem;
	font-size: 12px;
	text-align: center;
	height: auto;
}
#notfound p{
	text-align: center;
	margin: 32px 0 0;
}
#notfound a{
	display: block;
	position: relative;
	text-align: center;
	width: 320px;
	margin: 100px auto 0;
	padding: 20px;
	color: #fff;
	font-size: 16px;
	background: #172a88;
	border: solid 1px #172a88;
	cursor: pointer;
	text-decoration: none;
	border-radius: 5px;
	transition: all 0.3s ease;
}
#notfound a:hover{
	background: #fff;
    color: #172a88;
  
}
/*------------------------------------
電話番号
------------------------------------*/
#tel{
	display: block;
	position: fixed;
	right: 0;
	bottom: 120px;
	z-index: 9000;
}
#tel a{
	position: relative;
	display: block;
	width: 100%;
	height: auto;
}
/*------------------------------------
スクロール
------------------------------------*/
.scrollup{
	display: block;
	position: fixed;
	background: #448349;
	right: 28px;
	bottom: 48px;
	width: 56px;
	height: 56px;
	border-radius: 100%;
	opacity: 1;
	transition: 0.3s;
	z-index: 9000;
}
.scrollup div{
	position: relative;
	top:8px;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	margin: auto;
	background: #fff;
}
.scrollup div i{
	position: absolute;
	left: 8px;
	top: 5px;
	color: #448349;
	font-size: 24px;
}
.scrollup:hover{
	opacity: 0.7;
}