@charset "UTF-8";
/** ==============================================
01: アーティクル用
============================================== **/
/* -------------------------------------
detail-cat
記事詳細のタグ+日付
-------------------------------------*/
.detail-cat {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    gap:2px 20px;
	margin: 0 0 14px;
	font-size: 14px;
	text-align: center;
}
.detail-cat time{
	color: var(--c-main);
}

/* -------------------------------------
カテゴリ
-------------------------------------*/
.ctgr{
	display: inline-block;
	width: 8em;
	margin: 0 2px;
	padding: 6px 1em;
	color: #fff;
	text-align: center;
	line-height: 1.0;
	vertical-align:middle;
	background: var(--blue);
}
.ctrg-wrap .ctgr:not(:last-child){
	margin-right: 5px;
}

@media (max-width: 520px) {
	.ctgr{
		font-size: 13px;
	}
}

/* -------------------------------------
カテゴリボタン
-------------------------------------*/
.catBtn{
	display: flex;
	margin:  25px auto 40px;
	justify-content: center;
}
.catBtn a{
	position: relative;
	display: block;
	margin: 8px;
	padding: 10px 40px 10px 20px;
	min-width: 8em;
	border: 1px solid var(--blue);
	background: var(--color);
	color: #fff;
	text-align: left;
	font-weight: bold;
}
.catBtn a.current{
	background: var(--red);
}
.catBtn a:after{
	position: absolute;
	right: 10px;
	content: "\e5cc";
	font-family: 'Material Icons';
}
.catBtn a:hover{
	opacity: var(--opacity);
}

@media screen and (max-width: 768px) {
	.catBtn{
		display: flex;
		margin:  20px auto;
		width: 100%;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.catBtn a{
		margin: 0 0 8px;
		padding: 10px 15px 10px 10px;
		min-width: 8em;
		width: 49%;
        font-size: 0.87rem;
    }
    .catBtn a:after{
        right: 5px;
    }
}

/* -------------------------------------
パンくず
-------------------------------------*/
#breadcrumb{
	margin:0 auto;
	padding:5px 0 15px;
	max-width:980px;
	width:94%;
	font-size:12px;
}
/*家アイコン*/
#breadcrumb ol:before {
	display: inline-block;
	content: "\e88a";
	vertical-align: middle;
	font-size: 14px;
	font-family: 'Material Icons';
}
#breadcrumb ol li{
	display:inline-block;
	padding:0 5px;
}
#breadcrumb ol li+li:before{
	content:">";
}
#breadcrumb a{
	text-decoration: underline;
}#breadcrumb a:hover{
	text-decoration: none;
}

/* -------------------------------------
ページャー
-------------------------------------*/
.pagenation{
	margin: 30px auto;
	text-align: center;
}
.pagenation span{
	--size:34px;
	display: inline-block;
	margin: 5px;
	width: var(--size);
	height: var(--size);
	background: #fff;
	color: var(--blue);
	text-align: center;
	line-height: var(--size);
}
.pagenation span.page{
	background: #eee;
}
.pagenation span a{
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	color: var(--blue);
}.pagenation span a:hover{
	background: var(--blue);
	color: #fff;
}

@media screen and (max-width: 768px) {
	.pagenation span{
		margin: 3px;
		width: 30px;
		height: 30px;
		line-height: 27px;
	}
}

/* -------------------------------------
フォーム
-------------------------------------*/
/**エラー**/
.alert {
	margin: 5px 0;
	color: #ff0000;
}

/**テーブル**/
.form table th{
	position: relative;
	padding-right:5em;
}

/**必須**/
.require {
	position: absolute;
	top: 0;
	right: 1em;
	bottom: 0;
	display: inline-block;
	margin:  auto 5px;
	width: 3em;
	height: 2em;
	font-size: 14px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	line-height: 2em;
	background: #ea1b1b;
}

/**送信ボタン**/
.form_button {
	position: relative;
	display: flex;
	margin-bottom: 20px;
	width: 100%;
	text-align: center;
	align-items: center;
	justify-content: center;
}

.form_button input[type="submit"]/**確認・送信**/,
.form_button input.submit,
.form_button a/**戻る**/{
	display: inline-block;
	margin: 0 30px 10px;
	padding: 15px 30px;
	width: 200px;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	text-align: center;
	font-size: 16px;
    cursor: pointer;
}
.form_button a{
	border: 1px solid #aaa;
	background: #aaa;

}
.form_button input[type="submit"]:hover,
.form_button input.submit:hover,
.form_button a:hover{
	border: 1px solid var(--red);
	background: var(--red);
}

/*入力タグ*/
form input[type="text"],
form textarea,
form select {
	padding: 10px;
	border:1px solid #cccccc;
	font-size: 16px;
	line-height: 1.2;
}
form input[type="text"]{
	width: 100%;
}
form textarea {
	padding: 2px;
	min-height: 150px;
	width: 100%;
}
form select{
	padding: 10px 20px;
	font-size: 14px;
}
/*記入例*/
form .owlet-input-sample {
	margin-top: 8px;
	color: #666;
	font-size: 14px;
}
/*名前*/
form input[type="text"].owlet-input-name-sei,
form input[type="text"].owlet-input-name-mei {
	margin: 0 5px;
	width: 90px;
}
/*住所*/
form input[type="text"].zip1,form input[type="text"].zip2 {
	margin-bottom: 5px;
	width: 60px;
}
form input[type="button"].zip2addr {
	margin-bottom: 5px;
}
form select.prefectures,
form select.city {
	margin: 0 8px 14px;
}
form input[type="text"].address,
form input[type="text"].address1,
form input[type="text"].address2{
	margin-bottom: 5px;
	margin-left: 5px;
	width: 85%;
}
/*日時*/
form input[type="text"].owl-datepicker {
	width:200px;
}
/*電話番号*/
form input[type="text"].owlet-input-tel1,
form input[type="text"].owlet-input-tel2,
form input[type="text"].owlet-input-tel3 {
	width: 80px;
}
form input[type="text"].owlet-input-tel2,
form input[type="text"].owlet-input-tel3 {
	margin-left:5px;
}
/*label*/
form label {
/*	display: block;*/
    display: inline-block;
}
/*ラジオボタンにスタイルあてる場合*/
form label input[type="radio"] {}
/*チェックボックスにスタイルあてる場合*/
form label input[type="check"] {}

/**フォーム規約**/
.owlet-rules {
	margin: 0 auto 30px;
	width: 90%;
}
.owlet-rules-title {
    display: none;
	margin-bottom: 10px;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}
.owlet-rules-body {
    display: none;
	overflow-y:scroll;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	margin-bottom: 20px;
	padding:15px;
	height:200px;
	border:1px solid #dcdcdc;
}
.owlet-rules-agree {
	position: relative;
	margin-bottom: 20px;
	text-align: center;
}
.owlet-rules-agree .require{
	position: static;
	margin: 0 15px;
}

/**送信ボタン**/
.form_button {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin: 50px auto 20px;
}
.form_button button[type="submit"],
.form_button input[type="submit"],
.form_button input.submit,
.form_button a{
	display: block;
	width: 200px;
	padding: 15px 10px;
	color: #fff;
	text-align: center;
	background: var(--blue);
	border: 1px solid var(--blue);
	transition: var(--transition);
}
.form_button button[type="submit"]:hover,
.form_button input[type="submit"]:hover,
.form_button input.submit:hover,
.form_button a:hover{
	opacity: .8;
}

@media screen and (max-width: 768px) {
	/**必須**/
	.require {
		height: 1.7em;
		line-height: 1.7em;
		font-size: 12px;
		right: 2px;
	}

	.form_button {
		flex-flow: column-reverse;
	}
	/*名前*/
	form input[type="text"].owlet-input-name-sei,
	form input[type="text"].owlet-input-name-mei {
		width: 36%;
	}
	/**電話番号**/
	form input[type="text"].owlet-input-tel1,
	form input[type="text"].owlet-input-tel2,
	form input[type="text"].owlet-input-tel3 {
		width: 28%;
	}

	/*iPhone独自スタイル解除*/
	form　input[type="button"],
	.inquiry_form input[type="text"],
	.inquiry_form input[type="submit"] {
		border-radius: 0;
		-webkit-appearance: none;
	}
}


/* -------------------------------------
ajax チェックボックス
-------------------------------------*/
#entry .table{
	position: relative;
}
#entry table{
	position: relative;
	z-index: 20;
/*	background: #fff;*/
}
#entry .owlet-form form table{
	z-index: 5;
}
#entry .table #val_btn{
	position: absolute;
	top: 13px;
	left: 206px;
	z-index: 10;
	display: inline-block;
	cursor: pointer;
}
#entry input[name="input[entry_title]"]{
	margin: 30px 0 0;
	width: 100%;
	border: none;
}#entry.on input[name="input[entry_title]"]{
	padding: 5px;
	border: 1px solid #ccc;
}
.owlet-form{
	opacity: 1!important;
/*	background: #fff;*/
}
.owlet-form p{
	position: relative;
	z-index: 20;
/*	background: #fff;*/
}

/*事前予約ボタン---------------------*/
input[name*="entry_title"]{
   width: 100%;
}
.table #val_btn{
	cursor: pointer;
	position: absolute;
	top: 13px;
	left: 250px;
	display: inline-block;
	z-index: 10;
}
/*事前予約ボタン---------------------*/


/*【確認画面】送信ボタンと戻るボタンを逆にする---------------------*/
#entry .form_button input[type="submit"]/**確認・送信**/,
#entry .form_button input.submit,
#entry .form_button a/**戻る**/{
	float: right;
}
@media screen and (max-width: 768px) {
    #entry .table #val_btn{
        top: 54px;
        left: 10px;
    }

    #entry .form_button input[type="submit"]/**確認・送信**/,
    #entry .form_button input.submit,
    #entry .form_button a/**戻る**/{
        float:none;
    }
}


