@charset "UTF-8";
/*------------------------
スタイルの初期化
------------------------*/
body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object,figure { margin:0; padding:0; }
html {
	font-size: 62.5%;
}
body {
	font-family: "Noto Sans JP", 'sans-serif','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 400;
	font-size:14px;
	color: var(--black);
	line-height: 1.65;
	letter-spacing: .025em;
	text-autospace:ideograph-alpha;
	font-feature-settings: 'palt';
	min-width: 1000px;
}
body *, :before, :after {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	color: var(--black);
	display: block;
	transition: all 0.5s ease 0s;
}
a img {
	border:0;
}
img{
	vertical-align:top;
	max-width: 100%;
}
ul, ol { list-style-type:none; }
sup { position: relative; vertical-align: baseline; top: -0.9em; font-size: 0.5em; }
hr { display: none; }
h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal;}
th, caption{ text-align: left; font-weight: normal; }
th,td { empty-cells:show; }

input[type="text"] ,
input[type="email"] ,
input[type="tel"] ,
input[type="password"] { padding:0 2px; margin-right:0.4em; }
input[type="submit"] { display:inline; margin:0; }
input[type="radio"] { margin-right:0.1em; }
textarea { padding:2px; }
optgroup { font-style:normal; }
option { padding-right:10px; }
*:focus {
outline: none;
}
.flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.red {
	color: #eb1c1c;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.wf {
	font-family: "Quicksand", sans-serif;
}
:root{
	--black: #121212;
	--gray: #627877;
	--green: #6fb92c;
	--green02: #d2e9bd;
	--yellow: #fcc800;
	--yellow02: #feeba6;
	--bg_green:#f7fbf3;
}
.image img{
	width: 100%;
	height: 100%;
}
.textarea{
	text-align: justify;
}
/*ボタンデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	font-family: "Noto Sans JP", sans-serif;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"] ,
input[type="email"] ,
input[type="tel"] ,
input[type="password"] ,
textarea {
	-webkit-appearance : none;
	appearance: none;
	border-radius:0;
	padding:8px;
	border:1px solid #c9c9c9;
	width: 90%;
	box-sizing: border-box;
	font-family: "Noto Sans JP", sans-serif;
}
area{
	border:none;
	outline:none;
}
input, select, textarea {
	font-size: 1.6rem;
}
textarea {
	width: 90%;
	height: 10em;
	max-width: 560px;
}
select {
	text-indent: 0.01px;
	text-overflow: "";
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 10px 25px 10px 10px;
	border-radius: 3px;
	max-width: 12em;
	color: var(--black);
	border: 1px solid #c9c9c9;
	font-family: "Noto Sans JP", sans-serif;
	background: #fff url(/campass/pc/img/common/s_arrow.svg) no-repeat right 10px center;
	background-size: auto 4px;
	font-size: 14px;
	cursor: pointer;
}
label{
	display: block;
	margin-bottom: 10px;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
::placeholder {
	color: #c9c9c9;
}
/*チェックボックスのスタイル*/
input[type="checkbox"]{
	border: 1px solid #c9c9c9;
	vertical-align: -6px;
	-webkit-appearance: none;
	position: relative;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	background: #fff;
	margin-right: 4px;
}
input[type="checkbox"]:checked {
	background: var(--yellow);
	border: 1px solid #c9c9c9;
}
input[type="checkbox"]:checked:before {
	position: absolute;
	left: 4px;
	top: 13px;
	display: block;
	content: "";
	width: 5px;
	height: 1px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	display: block;
	position: absolute;
	left: 9px;
	top: 13px;
	content: "";
	width: 10px;
	height: 1px;
	background: #fff;
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}
/*ラジオボタンのスタイル*/
input[type="radio"]{
	border: 1px solid #c9c9c9;
	-webkit-appearance: none;
	position: relative;
	margin-right: 7px;
	border-radius: 50vw;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	background: #fff;
}
input[type="radio"]:checked{
	background:#627877;
	border: 1px solid #c9c9c9;
}
input[type="radio"]:checked:after {
	display: block;
	position: absolute;
	left: 4px;
	top: 4px;
	content: '';
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50vw;
}
input[type="submit"] {
	display: block;
	width: 420px;
	margin: auto;
	padding: 20px;
	font-size: 18px;
	font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: .002em;
	text-align: center;
	background: var(--black);
	color: #fff;
	transition: all 0.5s ease 0s;
	cursor: pointer;
}
input[type="submit"]:hover {
	background: #fff;
	color: var(--black);
	border: 2px solid var(--black);
}
table {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
}
/*ボタンデザイン*/
.btn a {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .1em;
	color: #fff;
	border-radius: 10px;
	background: var(--green);
	position: relative;
	width: 280px;
	height: 50px;
	border-radius: 50px;
	padding-left: 25px;
	border: 2px solid var(--green);
}
.btn a::after{
	content: "";
	background: url(/campass/pc/img/common/arrow_w.svg) no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	position: absolute;
	right: 4px;
	transition: all 0.5s ease 0s;
}
.btn a:hover{
	background: #fff;
	color: var(--green);
}
.btn a:hover::after{
	background: url(/campass/pc/img/common/arrow_g.svg) no-repeat;
	background-size: contain;
	transform: translateX(-10px);
}

/*------------------------
header
------------------------*/
header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 350;
	transition: all .3s ease 0s;
	min-width: 1000px;
	background: #fff;
}
header .inner.flex-box {
	justify-content: space-between;
	align-items: center;
}
header .inner {
	margin: 0 0 0 40px;
	height: 50px;
	position: relative;
}
header .inner .logo a {
	height: auto;
	width: 140px;
}
header .main_menu{
	display: flex;
	align-items: center;
	height: 100%;
}

/* ヘッターメニュー */
header .main_menu .menu_list {
	margin-right: 20px;
}
header .main_menu .menu_list a{
	margin: 0 15px;
	font-size: 14px;
	letter-spacing: .06em;
	font-weight: 500;
}
header .main_menu .menu_list a::after {
	content: '';
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 4px solid var(--green);
	margin: 3px auto 0;
	border-radius: 50px;
}
header .main_menu .menu_list a:hover::after {
	width: 25px;
}

/* 問い合わせ・予約 */
header .main_menu .flex{
	display: flex;
	align-items: stretch;
	height: 100%;
}
header .main_menu .c-btn a{
	width: 170px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--yellow);
	font-size: 14px;
	font-weight: 500;
}
/* 問い合わせ */
header .main_menu .c-btn.contact a::before{
	content: "";
	height: 15px;
	width: 20px;
	background: url(/campass/pc/img/common/icon_mail.svg) no-repeat;
	background-size: contain;
	display: block;
	margin-right: 8px;
	transition: all 0.5s ease 0s;
}
header .main_menu .c-btn.contact a:hover{
	opacity: .7;
}
header .main_menu .c-btn.contact a:hover::before{
	transform: translateY(-5px);
}

/* 予約 */
header .main_menu .c-btn.reserve{
	background: var(--green);
	color: #fff;
	width: 170px;
	font-size: 14px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.5s ease 0s;
}
header .main_menu .c-btn.insta{
	background: #fff;
	width: 80px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.5s ease 0s;
}
header .main_menu .c-btn.reserve:hover,
header .main_menu .c-btn.insta:hover{
	opacity: .7;
}
header .main_menu .c-btn.reserve::before{
	content: "";
	height: 20px;
	width: 20px;
	background: url(/campass/pc/img/common/icon_calendar.svg) no-repeat;
	background-size: contain;
	display: block;
	margin-right: 8px;
	transition: all 0.5s ease 0s;
}
header .main_menu .c-btn.insta::before{
	content: "";
	height: 24px;
	width: 24px;
	background: url(/campass/pc/img/common/icn_insta-g.svg) no-repeat;
	background-size: contain;
	display: block;
	transition: all 0.5s ease 0s;
}
header .main_menu .c-btn.reserve:hover::before,
header .main_menu .c-btn.insta:hover::before{
	transform: translateY(-5px);
}

/* OPEN MENU */
header .main_menu #open-menu,
header .main_menu #open-menu2{
	display: none;
}
header .main_menu #open-menu li a,
header .main_menu #open-menu2 li a{
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	background: #fff;
	border: 2px solid var(--green);
	position: relative;
	padding: 0 10px;
}
header .main_menu #open-menu2 li a{
	border: 2px solid var(--green);
}
header .main_menu #open-menu li a:hover,
header .main_menu #open-menu2 li a:hover{
	opacity: .8;
}
header .main_menu #open-menu li a::after,
header .main_menu #open-menu2 li a::after{
	content: '';
	width: 5px;
	height: 5px;
	border-bottom: 1px solid var(--green);
	border-left: 1px solid var(--green);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 8px;
	margin: auto;
	transition: all .3s ease 0s;
}
header .main_menu #open-menu2 li a::after{
	border-bottom: 1px solid var(--green);
	border-left: 1px solid var(--green);
}
header .main_menu #open-menu li:first-child a,
header .main_menu #open-menu2 li:first-child a{
	border-bottom: 0;
}
/*------------------------
section共通
------------------------*/
section .inner{
	width: 1000px;
	padding: 0 50px;
	position: relative;
	margin: 0 auto;
}
section .inner .ttl-wrap{
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}
section .inner .ttl-wrap::before{
	content: "";
	width: 80px;
	height: 6px;
	background: var(--green);
	border-radius: 50px;
	position: absolute;
	bottom: -25px;
	left: 0;
	right: 0;
	margin: auto;
}
section .inner .ttl-wrap::after{
	content: "";
	width: 40px;
	height: 6px;
	background: var(--yellow);
	border-radius: 50px 0 0 50px;
	position: absolute;
	bottom: -25px;
	left: 0;
	right: 40px;
	margin: auto;
}
section .inner .ttl-wrap .sub{
	height: 16px;
	width: 100%;
	margin-bottom: 12px;
}
section .inner .ttl-wrap .sub img{
	object-fit: contain;
}
section .inner .ttl-wrap h2{
	font-size: 26px;
	font-weight: 600;
	letter-spacing: .08em;
	line-height: 1;
	position: relative;
}
/* ▽ SVGの場合 ▽ */
section .inner .ttl-wrap h2.image{
	width: auto;
	height: 26px;
}
section .inner .ttl-wrap h2.image img{
	width: auto;
}
section .inner .sub-text{
	font-weight: 500;
	text-align: center;
	margin-bottom: 25px;
	letter-spacing: .07em;
	font-size: 15px;
}
/*------------------------
後続ページタイトル
------------------------*/
#top-ttl {
	background: url(/campass/pc/img/index/pattern_green.png);
	position: relative;
}
#top-ttl::before {
	content: "";
	width: 723px;
	height: 123px;
	background: url(/campass/pc/img/facility/en_facility_w.svg) no-repeat;
	background-size: cover;
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: .4;
}
#top-ttl .page-ttl{
	padding: 60px 50px 80px;
	text-align: center;
}
#top-ttl .page-ttl .sub{
	height: 18px;
	width: 100%;
	margin-bottom: 8px;
}
#top-ttl .page-ttl .sub img{
	object-fit: contain;
}
#top-ttl .page-ttl h1 {
	font-size: 42px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.2;
	position: relative;
}
/*------------------------
パンくず
------------------------*/
#breadcrumb {
	padding: 8px 50px;
	overflow: hidden;
	z-index: 100;
	position: relative;
	width: 1000px;
	margin: 0 auto;
}
#breadcrumb li {
	float: left;
}
#breadcrumb li a {
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
}
#breadcrumb li a:hover{
	text-decoration: underline;
}
#breadcrumb li::before {
	content: '';
	width: 6px;
	height: 6px;
	display: inline-block;
	border-bottom: 1px solid var(--black);
	border-right: 1px solid  var(--black);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin: auto 12px 0 12px;
	vertical-align: 1px;
}
#breadcrumb li:first-child::before{
	content: none;
}
/*------------------------
corporate
------------------------*/
#corporate{
	position: relative;
	background: var(--yellow02);
	margin-bottom: 150px;
}
#corporate::after{
	content: "";
	width: 100%;
	height: 80px;
	background: url(/campass/pc/img/index/corporate_nami01.png) no-repeat;
	background-size: cover;
	display: block;
	position: absolute;
	top: -80px;
	left: 0;
}
#corporate::before{
	content: "";
	width: 700px;
	height: 113px;
	background: url(/campass/pc/img/index/en_corporate.svg) no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: -20px;
	left: 0;
	opacity: .4;
	z-index: 1;
}
#corporate .inner{
	padding: 0px 50px 50px;
	z-index: 2;
}
#corporate .inner .sub-text{
	margin-bottom: 30px;
}
#corporate .block-wrap{
	display: flex;
	padding-bottom: 30px;
	justify-content: space-between;
}
#corporate .block {
	position: relative;
	background: #fff;
	border-radius: 15px;
	width: calc((100% - 40px) / 3);
	padding: 15px;
}
#corporate .block .image{
	width: 100%;
	height: 180px;
	margin-bottom: 8px;
}
#corporate .block .image img{
	object-fit: cover;
	border-radius: 15px;
}

#corporate .block .text-wrap{
	position: relative;
	letter-spacing: 0;
}
#corporate .block .text-wrap::after{
	content: "";
	width: 34px;
	height: 50px;
	background: url(/campass/pc/img/index/corporate_ttl_ashi.svg) no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: -15px;
	right: 0;
}
#corporate .block .text-wrap h3{
	font-size: 17px;
	color: var(--green);
	font-weight: 500;
	margin-bottom: 15px;
	position: relative;
}
#corporate .block .text-wrap h3::after{
	content: "";
	width: 100%;
	height: 4px;
	background: url(/campass/pc/img/index/corporate_ttl_sen.png) no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	bottom: -8px;
}
#corporate .btn a{
	margin: 0 auto;
}
#corporate .image.bottom {
	height: 230px;
	width: 100%;
	position: absolute;
	bottom: -80px;
	left: 0;
}
#corporate .image.bottom img{
	object-fit: cover;
}
/*------------------------
共通CONTACT
------------------------*/
#bottom-contact {
	margin-bottom: 100px;
}
#bottom-contact .inner{
	padding: 30px 50px 40px;
	background: var(--bg_green);
	position: relative;
	border-radius: 0 30px 0 30px;
	width: 900px;
}
#bottom-contact .inner::before{
	content: "";
	width: 40px;
	height: 40px;
	background: url(/campass/pc/img/common/ashirai_kakko.png) no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0;
}
#bottom-contact .inner::after{
	content: "";
	width: 40px;
	height: 40px;
	background: url(/campass/pc/img/common/ashirai_kakko.png) no-repeat;
	background-size: contain;
	position: absolute;
	right: 0;
	bottom: 0;
	transform: rotate(-180deg);
}
#bottom-contact .block{
	width: 750px;
	background: #fff;
	border: 2px solid var(--gray);
	border-radius: 15px;
	padding: 25px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto 20px;
}
#bottom-contact .text{
	flex: 1;
	font-size: 16px;
	font-weight: 600;
}
#bottom-contact .c-btn a{
	background: var(--yellow);
	border-radius: 50px;
	width: 260px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	position: relative;
	border: 2px solid var(--yellow);
}
#bottom-contact .contact .c-btn a::before {
	content: "";
	height: 17px;
	width: 25px;
	background: url(/campass/pc/img/common/icon_mail.svg) no-repeat;
	background-size: contain;
	display: block;
	margin-right: 10px;
	transition: all 0.5s ease 0s;
}
#bottom-contact .c-btn a:hover{
	background: #fff;
	color: var(--yellow);
}
#bottom-contact .contact .c-btn a:hover:before{
	background: url(/campass/pc/img/common/icon_mail_y.svg) no-repeat;
	background-size: contain;
}
/* 予約 */
#bottom-contact .reserve .c-btn a{
	background: var(--green);
	color: #fff;
	border: 2px solid var(--green);
}
#bottom-contact .reserve .c-btn:first-child a{
	margin-bottom: 10px;
}
#bottom-contact .reserve .c-btn a::before{
	content: "";
	height: 23px;
	width: 23px;
	background: url(/campass/pc/img/common/icon_calendar.svg) no-repeat;
	background-size: contain;
	display: block;
	margin-right: 10px;
	transition: all 0.5s ease 0s;
}
#bottom-contact .reserve .c-btn a:hover{
	background: #fff;
	color: var(--green);
}
#bottom-contact .reserve .c-btn a:hover:before{
	background: url(/campass/pc/img/common/icon_calendar_g.svg) no-repeat;
	background-size: contain;
}
/*------------------------
page_top
------------------------*/
#page-top {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.2s opacity ease-in-out, 0.2s visibility ease-in-out;
	transition: 0.2s opacity ease-in-out, 0.2s visibility ease-in-out;
	text-align: right;
	width: 40px;
	height: 40px;
	position: sticky;
	bottom: 100px;
	z-index: 100;
	opacity: 0;
	margin: 0 40px -22px auto;
}
#page-top.show {
	opacity: 1;
	visibility: visible;
}
#page-top a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--green);
	box-sizing: content-box;
}
#page-top a:after {
	content: "";
	background: url(/campass/pc/img/common/arrow_w.svg) no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	position: absolute;
	transform: rotate(-90deg);
}
#page-top a:hover{
	transform: translateY(-5px);
}
/*------------------------
footer
------------------------*/
footer .inner{
	width: 1000px;
	margin: 0 auto;
}

/* nav */
footer .n-area{
	background: #f8f8f8;
}
footer .n-area .inner{
	padding: 50px 50px 60px;
	display: flex;
	justify-content: space-between;
}
footer .n-area .logo a{
	width: 220px;
	margin-bottom: 20px;
	display: block;
}
footer .n-area nav ul li a {
	display: block;
	padding: 0px 12px;
	font-weight: bold;
	letter-spacing: .06em;
	position: relative;
}
footer .n-area nav ul li:first-child a{
	padding: 0 20px 0 0;
}
footer .n-area nav ul li a::after {
	content: '';
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 3px solid var(--green);
	margin: 3px auto 0;
	border-radius: 50px;
}
footer .n-area nav ul li a:hover::after {
	width: 25px;
}
/* 予約 */
footer .n-area .insta-wrap{
	margin-top: 10px;
}
footer .n-area .reserve-wrap,
footer .n-area .insta-wrap{
	background: var(--green);
	padding: 10px 15px 20px 15px;
	width: 280px;
	height: max-content;
	border-radius: 12px;
}
footer .n-area .insta-wrap{
	background: #fff;
}
footer .n-area .reserve-wrap .ttl,
footer .n-area .insta-wrap .ttl{
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}
footer .n-area .reserve-wrap .ttl {
	color: #fff;
}
footer .n-area .reserve-wrap .ttl::before,
footer .n-area .insta-wrap .ttl::before {
	content: "";
	height: 18px;
	width: 18px;
	background: url(/campass/pc/img/common/icon_calendar.svg) no-repeat;
	background-size: contain;
	display: block;
	margin-right: 8px;
	transition: all 0.5s ease 0s;
}
footer .n-area .insta-wrap .ttl::before {
	background: url(/campass/pc/img/common/icn_insta-g.svg) no-repeat;
	background-size: contain;
}
footer .n-area .reserve-wrap .btn-wrap,
footer .n-area .insta-wrap .btn-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .n-area .reserve-wrap .btn-wrap a,
footer .n-area .insta-wrap .btn-wrap a{
	background: #fff;
	font-weight: 500;
	width: 122px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
footer .n-area .insta-wrap .btn-wrap a {
	background: var(--yellow);
}
footer .n-area .reserve-wrap .btn-wrap a::after,
footer .n-area .insta-wrap .btn-wrap a::after {
	content: '';
	width: 6px;
	height: 6px;
	border-bottom: 1px solid var(--green);
	border-left: 1px solid var(--green);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto;
	transition: all .3s ease 0s;
}
footer .n-area .insta-wrap .btn-wrap a::after{
	border-bottom: 1px solid var(--black);
	border-left: 1px solid var(--black);
}
footer .n-area .reserve-wrap .btn-wrap a:hover,
footer .n-area .insta-wrap .btn-wrap a:hover{
	color: var(--green);
}

/* copy */
footer .c-area {
	justify-content: space-between;
}
footer .c-area .left {
	font-size: 14px;
	line-height: 1;
}
/* 個人情報 */
footer .c-area{
	padding: 25px 0;
}
footer .c-area .privacy {
	display: block;
	margin-bottom: 10px;
}
footer .c-area .privacy a {
	display: inline-block;
	padding-left: 14px;
	position: relative;
}
footer .c-area .privacy a::before {
	content: '';
	width: 6px;
	height: 6px;
	border-bottom: 1px solid var(--green);
	border-right: 1px solid var(--green);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: all .3s ease 0s;
}
footer .c-area .privacy a::after {
	content: '';
	display: block;
	width: 0;
	transition: width 0.3s;
	border-bottom: 1px solid var(--green);
	margin: 5px auto 0;
}
footer .c-area .privacy a:hover::after {
	width: 100%;
}
footer .c-area .logo {
	width: 167px;
}
/*------------------------
error
------------------------*/
#error .inner{
	padding: 80px 0 150px;
}
#error .inner .ttl-wrap h2{
	line-height: 1.2;
	margin-bottom: 5px;
}
#error .inner .ttl-wrap .sub{
	color: var(--green);
	font-size: 20px;
	font-weight: bold;
}
#error .contents li{
	font-size: 18px;
	font-weight: 500;
	text-align: center;
}
/*------------------------
facility
------------------------*/
#facility .inner .ttl-wrap h2.image{
	width: auto;
	height: 30px;
}
#facility .map-wrap{
	width: 450px;
	height: auto;
	margin: 0 auto 40px;
	position: relative;
}
#facility .map-wrap .icon a {
	position: absolute;
	width: 180px;
	transition: all 0.5s ease 0s;
}
#facility .map-wrap .icon a:hover{
	transform: translateY(-5px);
	opacity: 0.8;
}
/* リンク追加 */
#facility .map-wrap .icon.oomiya a{
	top: 30px;
	left: 175px;
}
#facility .map-wrap .icon.akihabara a{
	top: 76px;
	left: 202px;
}
/* 施設ブロック */
#facility .block-wrap .block{
	border-radius: 20px;
	border: 4px solid var(--green02);
	display: flex;
	justify-content: space-between;
	padding: 40px 40px 30px;
	margin-bottom: 30px;
	position: relative;
}
#facility .block-wrap .block:last-child{
	margin-bottom: 60px;
}
#facility .block-wrap .block .ttl h3{
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 10px;
}
#facility .block-wrap .block .ttl h3 .map a{
	background: var(--yellow);
	font-weight: 600;
	border-radius: 50px;
	display: inline-flex;
	font-size: 16px;
	padding: 0 10px;
	margin-left: 15px;
	align-items: center;
	height: 25px;
}
#facility .block-wrap .block .ttl h3 .map a:hover{
	opacity: .8;
}
#facility .block-wrap .block .ttl .sub{
	margin-bottom: 25px;
	line-height: 1.2;
}
#facility .block-wrap .block .ttl .sub span{
	font-size: 19px;
	font-weight: bold;
}
#facility .block-wrap .block .catch{
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5;
	color: var(--green);
	letter-spacing: .06em;
	margin-bottom: 8px;
}
/* 料金 */
#facility .block-wrap .block .price{
	display: flex;
	align-items: stretch;
	width: 580px;
	position: relative;
}
#facility .block-wrap .block .price::after{
	content: "";
	width: 18px;
	height: 20px;
	background: url(/campass/pc/img/common/ashirai_clip.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: -10px;
	right: 20px;
}
#facility .block-wrap .block .price .ttl{
	background: var(--black);
	color: #fff;
	padding: 10px;
	font-weight: bold;
	display: flex;
	align-items: center;
	width: 110px;
}
#facility .block-wrap .block .price .in{
	padding: 12px 20px;
	border: 1px solid var(--black);
	flex: 1;
	font-size: 15px;
}
#facility .block-wrap .block .text .come{
	font-size: 14px;
	margin: 3px 0 15px;
}
#facility .block-wrap .block .image-wrap{
	width: 300px;
	position: relative;
	margin-bottom: 8px;
}
#facility .block-wrap .block .hukidasi,
#facility .block-wrap .block .hukidasi02{
	position: absolute;
	top: 10px;
	right: 20px;
	background: var(--yellow);
	border-radius: 50%;
	font-size: 13px;
	text-align: center;
	line-height: 1.3;
	width: 74px;
	height: 74px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: -0.04em;
}
#facility .block-wrap .block .hukidasi02{
	right: 90px;
}
#facility .block-wrap .block .image-wrap .image{
	width: 300px;
	height: 180px;
}
#facility .block-wrap .block .image-wrap .image img{
	object-fit: cover;
	border-radius: 15px;
}
/* slick */
#facility .block-wrap .slick-arrow {
	cursor: pointer;
	background: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	border: 2px solid var(--yellow);
	z-index: 10;
	position: absolute;
	transition: all .3s ease 0s;
	left: -25px;
}

#facility .block-wrap .slick-arrow.slick-next {
	left: auto;
	right: -30px;
}
#facility .block-wrap .slick-arrow:after {
	content: '';
	width: 8px;
	height: 8px;
	border-bottom: 2px solid var(--yellow);
	border-left: 2px solid var(--yellow);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 35%;
	transform: rotate(45deg);
	margin: auto;
	transition: all .3s ease 0s;
}
#facility .block-wrap .slick-arrow.slick-next:after {
	transform: rotate(-135deg);
	right: auto;
	left: 35%;
}
.slick-prev:before, .slick-next:before {
	content: '';
}
#facility .block-wrap .slick-dots li button:before {
	font-size: 12px;
	line-height: 20px;
	width: 25px;
	height: 25px;
	opacity: .6;
	color: #c9c9c9;
}

#facility .block-wrap .slick-arrow:hover{
	background: var(--yellow);
}
#facility .block-wrap .slick-arrow:hover:after{
	border-bottom: 3px solid #fff;
	border-left: 3px solid #fff;
}
#facility .slick-prev:hover:before,
#facility .slick-prev:focus:before,
#facility .slick-next:hover:before,
#facility .slick-next:focus:before{
	opacity: 0;
}

/* ボタン */
#facility .btn-wrap .ttl{
	font-size: 21px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
	position: relative;
}
#facility .btn-wrap .ttl::after{
	content: "";
	width: 60px;
	height: 18px;
	background: url(/campass/pc/img/index/ashirai_sen.svg) no-repeat;
	background-size: contain;
	position: absolute;
	top: -24px;
	right: 47%;
}
#facility .btn-wrap .btn a{
	margin: 0 auto;
	width: 380px;
	height: 70px;
	font-size: 20px;
}

#facility .block-wrap .block .instagram a{
	width: 40px;
	height: 40px;
	position: absolute;
	top: 162px;
	left: 340px;
}
#facility .block-wrap .block .instagram a:hover{
	transform: translateY(-5px);
	opacity: 0.8;
}