/*common_css*/
@charset "utf-8";
/* CSS Document */

/**================================================================================
このサイトの共通装飾CSS
================================================================================ **/

/* -------------------------------------
タイトル
-------------------------------------*/
.titZ{
    font-size: 36px;
    text-align: center;
    padding: 50px 0;
    color: #fff;
    background-color: #e11f26;
    border-top:2px solid #fff;
    border-bottom: 2px solid #fff;
}.titZ small,
.titZ b{
    display: block;
    font-size: 0.5em;
	font-weight: normal;
}.titZ small:before,
.titZ small:after{
    content: " - "
}
.titZ em{
	background: #fff;
	display: inline-block;
	font-size: 0.5em;
	padding: 5px;
	line-height: 1.0;
	color: #000;
	margin: 0 5px 0 0;
}

.titA{
	font-size: 40px;
	color: #33447b;
	text-align: center;
	font-weight: bold;
	line-height: 1.3;
}
.titA small{
	display: block;
	font-size: 20px;
}

.titB{
	background: #e11f26;
	color: #fff;
	text-align: center;
	padding: 15px 5%;
	font-size: 20px;
	font-weight: bold;
}
.titB strong{
	font-size: 40px;
}


.titC{
	background: #33447b;
	color: #fff;
	text-align: center;
	padding: 0 5%;
	font-size: 40px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}
.titC figure{
	position: relative;
	width: auto;
	height: 148px;
	margin-left: 30px;
}
.titC figure::after {
	position: absolute;
	content: '';
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	box-shadow: inset -15px 0 15px 0 #33447b;
}
.titC figure img{
	width: 100%;
	height: 100%;
}

.titD{
	font-weight: bold;
	color: #33447b;
	font-size: 20px;
}

.titE{
	background: #33447b;
	color: #fff;
	text-align: center;
	padding: 0 5%;
	font-size: 34px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
    padding: 10px 0;
}

.titF{
    background: #33447b;
    font-size: 16px;
    color: #fff;
    padding: 5px 10px;
}

@media screen and (max-width: 768px){
	.titZ{
		font-size:26px;
		padding: 25px 0;
	}
    .titA{
        font-size: 28px;
    }
    .titA small{
        font-size: 16px;
    }

   .titB{
        padding: 10px 2%;
        font-size: 16px;
    }
    .titB strong{
        font-size: 28px;
    } 
    .titC{
        position: relative;
        font-size: 22px;
        text-align: left;
        padding: 5px 0 5px 5%;
    }.titC figure{
        display: none;
    }
    .titC p{
        width: 100%;
        word-break:normal;
    }
    .titD{
        font-size: 16px;
    }
}

/* -------------------------------------
カテゴリ
-------------------------------------*/
.ctgr{
    display: inline-block;
    font-size: 14px;
    color: #fff;
    line-height: 1.0;
    padding: 5px;
    position: relative;
    line-height: 1.0;
	background: #33447b;
	margin: 0 0 10px;
}

.subctgr{
    display: inline-block;
    font-size: 10px;
    color: inherit;
    margin:0 2px;
    line-height: 1.0;
    padding: 5px 0;
    position: relative;
    line-height: 1.0;
}
.subctgr:before{
    content: "\e2c7";
    font-family: 'Material Icons';
    height: 1em;
    font-size: 1.2em;
    vertical-align: middle;
}



/* -------------------------------------
公開日
-------------------------------------*/
.time{
    font-size: 13px;
    display: inline-block;
    margin: 0 2px;
    vertical-align:middle;
    padding:5px 0;
    line-height: 1.0;
}.time:before{
    font-family: 'Material Icons';
    content: "\e192";
    font-size: 1em;
    display: inline-block;
    vertical-align: middle;
}


/* -------------------------------------
ボタン
-------------------------------------*/
.btnA{
	border:1px solid #33447b;
	border-radius: 10px;
	padding: 20px;
	display: block;
	max-width: 500px;
	text-align: center;
	margin:15px auto;
	line-height: 1.0;
	background: #33447b;
	color: #fff;
	position: relative;
	box-shadow: 0 4px 0 0 rgba(0,0,0,0.3);
	font-weight: bold;
}.btnA:after{
	display: inline-block;
	font-family: 'Material Icons';
	content: "\e315";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
}.btnA:hover{
	box-shadow: none;
}
.btnA.red{
    background: #e11f26;
    border:1px solid #e11f26;
}
.btnB{
	border:1px solid #33447b;
	padding: 10px 20px 10px 10px;
	display: block;
	text-align: center;
	margin:15px auto;
	line-height: 1.0;
	color: #33447b;
	position: relative;
}.btnB:after{
	display: inline-block;
	font-family: 'Material Icons';
	content: "\e315";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 5px;
}.btnB:hover{
	background:#33447b;
	color: #fff;
}
.btnB.white{
	border: 1px solid #fff;
	color: #fff;
}.btnB.white:hover{
	background: #fff;
	color: #33447b;
}

@media screen and (max-width: 768px) {
    .btnA,
    .btnB{
        max-width: 90vw;
        padding: 13px 5px 10px;
        font-size: 14px;
    }
}

/* -------------------------------------
テーブル
-------------------------------------*/
.table table{
	margin: 30px auto;
	width: 100%;
    max-width: 980px;
	border-collapse:separate;
	border-spacing:1px;
    background: #626c8c;
}
.table th,
.table td{
	padding: 15px;
	background: #fff;
	vertical-align: top;
	text-align: left;
}
.table th{
	width: 25%;
	background: #33447b;
	vertical-align:middle;
	font-weight: bold;
    color: #fff;
	position: relative;
}
.require{
    margin:0 10px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
}

@media screen and (max-width: 768px) {
	.table table,
	.table tbody,
	.table tr,
	.table th,
	.table td{
		display: block;
		border: none;
	}
	.table table{
	}
	.table th,
	.table td{
		margin-bottom: 2px;
		padding: 10px;
	}
	.table th{
		width: 100%;
	}
	.table td{
	    padding:10px 15px;
	}
	.owlet-rules-title{
	    background: #f0e6d4;
	    padding:10px;
	}
}

/* -------------------------------------
テキスト + 画像　横並び
-------------------------------------*/
.h-text-img{
    display: flex;
    justify-content: space-between;
}
.h-text-img .text{
	flex: 1;
}
.h-text-img figure{
    max-width: 400px;
	flex: none;
}
.h-text-img.left{
    flex-flow: row-reverse;
}

@media screen and (max-width: 768px){
	.h-text-img{
		flex-flow: column;
	}
	.h-text-img figure{
		max-width: 100%;
	}
	.h-text-img.left{
			flex-flow: column;
	}
}

/* -------------------------------------
横並びボックスの数
.box1C_sp・・・スマホ1並び
.box2C_sp・・・スマホ2並び
-------------------------------------*/
.boxLR{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/**２つ並び**/
.box2C{
	display: flex;
	width: 100%;

	justify-content: space-between;
	flex-wrap: wrap;
}
.box2C > *{
	width: 48%;
}
.box2C:after{
	display: block;
	width: 48%;
	content: "";
}

/**3つ並び**/
.box3C{
	display: flex;
	width: 100%;

	justify-content: space-between;
	flex-wrap: wrap;
}
.box3C > *{
	width: 31%;
}
.box3C:after{
	display: block;
	width: 31%;
	content: "";
}

/**4つ並び**/
.box4C{
	display: flex;
	width: 100%;

	justify-content: space-between;
	flex-wrap: wrap;
}
.box4C > *{
	width: 24.5%;
}
.box4C:after,
.box4C:before{
	display: block;
	width: 24.5%;
	content: "";
}
.box4C:before{
	order:1;
}

@media screen and (max-width: 768px){
	/* -------------------------------------
横並びボックスの数
-------------------------------------*/
/**２つ並び**/
	.box2C{
		width: 100%;
        flex-wrap: wrap;
	}
	.box2C.box1C_sp{
		flex-flow: column;
	}.box2C.box2C_sp{
	}
	.box2C.box1C_sp > *{
		width: 100%;
	}.box2C.box2C_sp > *{
		width: 48%;
	}
	.box2C:after{
		display: none;
	}

	/**3つ並び**/
	.box3C{
		width: 100%;
        flex-wrap: wrap;
	}
	.box3C.box1C_sp{
		flex-flow: column;
	}.box3C.box2C_sp{
	}
	.box3C.box1C_sp > *{
		width: 100%;
	}.box3C.box2C_sp > *{
		width: 48%;
	}
	.box3C:after{
		display: none;
	}

	/**4つ並び**/
	.box4C{
		width: 100%;
	}
	.box4C.box1C_sp{
		flex-flow: column;
	}.box4C.box2C_sp{
	}
	.box4C.box1C_sp > *{
		width: 100%;
	}.box4C.box2C_sp > *{
		width: 48%;
	}
	.box4C:after,
	.box4C:before{
		display: none;
	}
}



/** ================================================================================
BASE CSS
owlet ver2.1用＝リソースの「カラー・基本フォント」とセットで使用する。
1.ページ編集＞レイアウト＞全レイアウト共通CSSにこのままコピーして入れる。
2.管理画面＞設定＞リソース＞resource-color.xmlをインポート
3.管理画面＞コンテンツ＞リソース＞カラー・基本フォントから基本設定を行う
================================================================================ **/

/* -------------------------------------
Browser：IE11 over
-------------------------------------
01: CSSをReset
02: /css/default.cssを変更
03: Default
-------------------------------------*/

/** ================================================================================
		01.Reset
================================================================================ **/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin:0;
padding:0;
border:none;
background:transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
display:block;
}
h1, h2, h3, h4, h5, h6,
dt,th{
	font-weight:normal;
	line-height: inherit;
}
ul,ol {
list-style:none;
}
blockquote, q {
quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content:'';
content:none;
}
table {
border-spacing:0;
border-collapse:collapse;
}
/* change border colour to suit your needs */
hr {
display:block;
margin:1em 0;
padding:0;
height:1px;
border:0;
border-top:1px solid #cccccc;
}
img{
	border:none;
	line-height: 1.0;
}
b,em,i,strong,address{
	font-style: normal;
}

/** ================================================================================
		02./css/default.cssを変更
================================================================================ **/

h1, h2, h3, h4, h5, h6 {
	clear: none;
}

time{
	font-size: 0.8rem;
}

/** ================================================================================
		03.Default
================================================================================ **/
html{
	overflow: auto;
}

body{
	margin: 0 auto;
	min-width: 980px;
	background: #ffffff;
	color:#444444;
	font-size:16px;
	font-family:'M PLUS 1p', sans-serif;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	
	padding-top: 127px;
}


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}

p a{
	text-decoration:underline;
}p a:hover{
	text-decoration:none;
}

a{
	color:inherit;
	text-decoration:none;
	cursor: pointer;
}a:hover{
	-webkit-transition: .3s;
	transition: .3s;
}

/**PC電話ボタン無効**/
a[href^="tel"]{
	pointer-events: none;
}
@media screen and (max-width: 768px) {
	a[href^="tel"]{
		pointer-events: auto;
	}
}

hr{
	display:block;
	margin:1em 0;
	padding:0;
	height:1px;
	border:0;
	border-top:1px solid #666666;
}

figure img{
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	body{
		min-width: 100%;
		font-size:16px;
		line-height: 1.5;
		padding-top: 64px;
	}
	/**post制御**/
	p{
		word-break: break-all;
	}
	table{
		width: 100%;
		word-break: break-all;
	}
	img{
		max-width: 100%;
		height: auto;
	}
	/**post制御**/
}


/* -------------------------------------
ベーススタイル設定
0.block
1.clearfix,clear
2.
3.float
4.align
5.margin
6.padding
-------------------------------------*/
/*0.block */
.block{
	display: block;
}
.in-block{
	display: inline-block;
}

/*1. clearfix,clear */
/* For modern browsers */
.cf:before,
.cf:after {
	display:block;
	overflow:hidden;
	content:"";
}

.cf:after {
	clear:both;
}

.clear{
	clear: both;
}

/*3. float */
.f_L {
	display: inline;
	float: left;
}
.f_R {
	display: inline;
	float: right;
}

/*4. align  */
body .t_R {
	text-align: right;
}
body .t_L {
	text-align: left;
}
body .t_C {
	text-align: center;
}

body .jc_c{
	justify-content: center;
}
body .jc_fe{
	justify-content: flex-end;
}
body .jc_fs{
	justify-content: flex-start;
}
body .jc_sb{
	justify-content: space-between;
}

body .ai_c{
	align-items: center;
}
body .ai_fe{
	align-items: flex-end;
}
body .ai_fs{
	align-items: flex-start;
}

/*5. margin 必要なら追加　優先順位：高 */
body .m0 {
	margin: 0;
}
body .mb0{
	margin-bottom: 0;
}
body .mb5 {
	margin-bottom: 5px;
}
body .mb10 {
	margin-bottom: 10px;
}
body .mb15 {
	margin-bottom: 15px;
}
body .mb20 {
	margin-bottom: 20px;
}
body .mb30 {
	margin-bottom: 30px;
}
body .mb40 {
	margin-bottom: 40px;
}
body .mb50 {
	margin-bottom: 50px;
}
body .mb80 {
	margin-bottom: 80px;
}
body .mb100 {
	margin-bottom: 100px;
}
body .mb150 {
	margin-bottom: 150px;
}
body .mt0{
	margin-top: 0px;
}
body .mt5 {
	margin-top:5px;
}
body .mt10 {
	margin-top:10px;
}
body .mt15 {
	margin-top:15px;
}
body .mt20 {
	margin-top:20px;
}
body .mt30 {
	margin-top:30px;
}
body .mt40 {
	margin-top:40px;
}
body .mt50 {
	margin-top:50px;
}
body .mt80 {
	margin-top:80px;
}
body .mt100 {
	margin-top:100px;
}
body .mt150 {
	margin-top:150px;
}
body .ml0{
	margin-left: 0;
}
body .ml5 {
	margin-left: 5px;
}
body .ml10 {
	margin-left: 10px;
}
body .ml15 {
	margin-left: 15px;
}
body .ml20 {
	margin-left: 20px;
}
body .ml30 {
	margin-left: 30px;
}
body .mr0{
	margin-right: 0;
}
body .mr5 {
	margin-right: 5px;
}
body .mr10 {
	margin-right: 10px;
}
body .mr15 {
	margin-right: 15px;
}
body .mr20 {
	margin-right: 20px;
}
body .mr30 {
	margin-right: 30px;
}


@media screen and (max-width: 768px) {
	/*5. margin 30以上は1/2 */
	body .mb40 {
		margin-bottom: 20px;
	}
	body .mb50 {
		margin-bottom: 25px;
	}
	body .mb80 {
		margin-bottom: 40px;
	}
	body .mb100 {
		margin-bottom: 50px;
	}
	body .mb150 {
		margin-bottom: 75px;
	}
	body .mt40 {
		margin-top:20px;
	}
	body .mt50 {
		margin-top:25px;
	}
	body .mt80 {
		margin-top:40px;
	}
	body .mt100 {
		margin-top:50px;
	}
	body .mt150 {
		margin-top:75px;
	}
}

/*6. padding 優先順位:高*/
body .p0 {
	padding: 0;
}
body .plr5 {
	padding: 0 5px;
}
body .plr10 {
	padding: 0 10px;
}
body .plr15 {
	padding: 0 15px;
}
body .plr20 {
	padding: 0 20px;
}
body .ptb10 {
	padding: 10px 0;
}
body .ptb20 {
	padding: 20px 0;
}
body .pall10 {
	padding: 10px;
}
body .pall20 {
	padding: 20px;
}

/* -------------------------------------
幅
-------------------------------------*/
body .w100p,
body .w1100,
body .w1000,
body .w980,
body .w900,
body .w800,
body .w700,
body .w650,
body .w600{
	margin-right: auto;
	margin-left : auto;
}
body .w100p{
	width: 100%;
}
body .w1100{
	width: 1100px;
}
body .w1000{
	width: 1000px;
}
body .w980{
	width: 980px;
}
body .w900{
	width: 900px;
}
body .w800{
	width: 800px;
}
body .w700{
	width: 700px;
}
body .w650{
	width: 650px;
}
body .w600{
	width: 600px;
}

@media screen and (max-width: 768px) {
	body .w100p,
	body .w1100,
	body .w1000,
	body .w980,
	body .w900,
	body .w800,
	body .w700,
	body .w650,
	body .w600{
		margin-right: auto;
		margin-left : auto;
	}
	body .w100p{
		width: 100%;
	}
	body .w1100{
		width: 100%;
	}
	body .w1000{
		width: 100%;
	}
	body .w980{
		width: 100%;
	}
	body .w900{
		width: 100%;
	}
	body .w800{
		width: 100%;
	}
	body .w700{
		width: 100%;
	}
	body .w650{
		width: 100%;
	}
	body .w600{
		width: 100%;
	}
	body .w100p > *,
	body .w1100 > *,
	body .w1000 > *,
	body .w980 > *,
	body .w900 > *,
	body .w800 > *,
	body .w700 > *,
	body .w650 > *,
	body .w600 > *{
		margin-right: auto;
		margin-left: auto;
		width: 90%;
	}
	body .w100p > .max,
	body .w100p.max,
	body .w1100 > .max,
	body .w1100.max,
	body .w1000 > .max,
	body .w1000.max,
	body .w980 > .max,
	body .w980.max,
	body .w900 > .max,
	body .w900.max,
	body .w800 > .max,
	body .w800.max,
	body .w700 > .max,
	body .w700.max,
	body .w650 > .max,
	body .w650.max,
	body .w600 > .max,
	body .w600.max{
		width: 100%;
	}
}

body .calc980{
	padding-right: calc( ( 100% - 980px ) / 2 );
	padding-left: calc( ( 100% - 980px ) / 2 );
}

@media screen and (max-width: 768px){
	body .calc980{
	padding-right: 0;
	padding-left: 0;
	}
	body .calc980 > .max{
		width: 100%;
	}
	body .calc980 > *{
		margin-right: auto;
		margin-left: auto;
		width: 90%;
	}
}

/* -------------------------------------
文字装飾
-------------------------------------*/
/**黄色マーカー**/
b.liner{
	background: -webkit-linear-gradient(transparent 40%, #fff552 0%);
	background: linear-gradient(transparent 40%, #fff552 0%);
}

/* -------------------------------------
改行
-------------------------------------*/
.pc{
}
.sp{
	display:none;
}

@media screen and (max-width: 768px) {
	.pc{
		display: none;
	}
	.sp{
		display:block;
	}
}

/* -------------------------------------
写真のエフェクト
-------------------------------------*/
/**4辺ぼかし：親要素にかける**/
.blur_w {
	position: relative;
	display: inline-block;
}
.blur_w:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0);
	box-shadow:
	  inset 0 0 40px #fff,
	  inset 0 0 40px #fff,
	  inset 0 0 40px #fff,
	  inset 0 0 40px #fff;
	content: "";
}

/**角丸：画像に直接かけれる**/
.radius{
	border-radius: 15px;
}

/**hover時画像拡大**/
.scale {
	overflow: hidden;
}
.scale img {
	-webkit-transition: -webkit-transform 0.3s linear;
	-moz-transition: -moz-transform 0.3s linear;
	-ms-transition: -ms-transform 0.3s linear;
	-o-transition: -o-transform 0.3s linear;
	transition: transform 0.3s linear;
}
a:hover .scale img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/**-------------------------------------
地図 動画 iframe
-------------------------------------**/
iframe{
	width: 100%;
}
.youtube{
	position: relative;
	margin: 30px auto 20px;
	padding-bottom: 56.25%;
	width:100%;
	height:0px;
	background-position: center;
	background-size:cover;
	background-repeat: no-repeat;
}
.youtube iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 768px) {
	.youtube{
			margin: 20px auto 10px;
	}
}


/**================================================================================
OWLET用　 Browser：IE11 over
================================================================================
・リッチテキスト　
・パンくず
・ページャー
・フォーム
================================================================================**/

/* -------------------------------------
この記述を入れると、ウィジェット設置時に
「コンテンツ幅を選んでの設置」をする選択肢が出るようになります。
対象ウィジェットには<div data-w-width=""></div>を記述
-------------------------------------*/
/*ウィンドウ幅での設置*/
[data-w-width] {
    max-width: 100%;
}

/*コンテンツ幅での設置*/
[data-w-width="1"] {
    width:980px;
    margin: 0 auto;
}

@media screen and (max-width: 768px){
    [data-w-width="1"] {
        width: 90%;
    }
}


/* -------------------------------------
リッチテキスト
-------------------------------------*/
.richtext{
}
.richtext p{
	margin: 0 0 10px;
}
.richtext strong {
}/*リセットしていないので不要*/
.richtext s{
}/*リセットしていないので不要*/
.richtext u{
}/*リセットしていないので不要*/
.richtext em {
	font-style: italic;
}
.richtext ul {
	padding-left: 2em;
}
.richtext ul li {
	list-style: outside disc;
}
.richtext ol {
	padding-left: 2em;
}
.richtext ol li{
	list-style: outside decimal;
}
.richtext h1{
	font-size: 2.0em;
}
.richtext h2{
	font-size: 1.5em;
}
.richtext h3{
	font-size: 1.17em;
}
.richtext h4{
	font-size: 1.0em;
}

.richtext blockquote{
	margin-left: 0;
	padding-left: 5px;
	border-left: 2px solid #444444;
	color: inherit;
}
.richtext table{
	max-width: 100%;
	border: none;
	border-collapse: collapse;
	table-layout: fixed;
	empty-cells: show;
}
.richtext table tr td{
	border: 1px solid #cccccc;
	vertical-align: middle;
	text-align: left;

	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}
.richtext img{
	max-width: 100%;
}
.richtext iframe{
	max-width: 100%;
}

.richtext p a{
	text-decoration: underline;
}
.richtext p a:hover{
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.richtext *[style*="font-size: 8px"]{
	}
	.richtext *[style*="font-size: 9px"]{
	}
	.richtext *[style*="font-size: 10px"]{
	}
	.richtext *[style*="font-size: 11px"]{
	}
	.richtext *[style*="font-size: 12px"]{
	}
	.richtext *[style*="font-size: 13px"]{
	}
	.richtext *[style*="font-size: 14px"]{
	}
	.richtext *[style*="font-size: 16px"]{
	    font-size: 1rem!important;
	}
	.richtext *[style*="font-size: 18px"]{
		font-size: 1rem!important;
	}
	.richtext *[style*="font-size: 24px"]{
		font-size: 1.2rem!important;
	}
	.richtext *[style*="font-size: 30px"]{
		font-size: 1.3rem!important;
	}
	.richtext *[style*="font-size: 36px"]{
		font-size: 1.6rem!important;
	}
	.richtext *[style*="font-size: 48px"]{
		font-size: 1.65rem!important;
	}
	.richtext *[style*="font-size: 60px"]{
		font-size: 1.7rem!important;
	}
	.richtext *[style*="font-size: 72px"]{
		font-size: 1.75rem!important;
	}
	.richtext *[style*="font-size: 96px"]{
		font-size: 1.8rem!important;
	}
}

/* -------------------------------------
パンくず
-------------------------------------*/
#breadcrumb{
	margin:5px auto 0;
	font-size:12px;
    background: #333;
    padding: 1px;
}
#breadcrumb ul{
	max-width:980px;
	width:94%;
    margin: 8px auto;
    color: #fff;
}
/*家アイコン*/
#breadcrumb ul:before {
	display: inline-block;
	content: "\e88a";
	vertical-align: middle;
	font-size: 14px;
	font-family: 'Material Icons';
}
#breadcrumb ul li{
	display:inline-block;
	padding:0 5px;
}
#breadcrumb ul li+li:before{
	content:">";
}
#breadcrumb a{
	text-decoration: underline;
}#breadcrumb a:hover{
	text-decoration: none;
}


/* -------------------------------------
ページャー
-------------------------------------*/
.pagenation{
	margin: 30px auto;
	text-align: center;
}

.pagenation span{
	display: inline-block;
	margin: 5px;
	width: 40px;
	height: 40px;
	border: 1px solid #444;
	background: #fff;
	color: #444;
	text-align: center;
	line-height: 38px;
}
.pagenation span.page{
	background: #444;
	color: #fff;
}
.pagenation span a{
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	color: #444;
}.pagenation span a:hover{
	background: #444;
	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;
}

/**必須**/
.require {
	position: absolute;
	display: inline-block;
	width: 3em;
	height: 2em;
	border-radius: 3px;
	background: #cc1111;
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: 11px;
	line-height: 2em;
}
/**送信ボタン**/
.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 #444;
	background: #33447b;
	color: #ffffff;
	text-align: center;
	font-size: 16px;
}
.form_button a{
	border: 1px solid #444;
	background: #33447b;
}
.form_button input[type="submit"]:hover,
.form_button input.submit:hover,
.form_button a:hover{
	border: 1px solid #33447b;
	background: #ffffff;
	color: #33447b;
}



/*入力タグ*/
form input[type="text"],
form textarea,
form select{
	padding: 5px 4px;
	height:30px;
	border:1px solid #cccccc;
	font-size: 16px;
	line-height: 1.2;
	margin: 5px 5px;
}
form input[type="text"]{
   width: 80%;
}
form textarea {
	padding: 2px;
	min-height: 150px;
}
form select{
	padding: 0 10px;
	font-size: 14px;
}

/*電話*/
form input.owlet-input-tel1,
form input.owlet-input-tel2,
form input.owlet-input-tel3,
form input.zip1,
form input.zip2{
    width: 5em;
}
/*名前*/
form input.owlet-input-name-sei,
form input.owlet-input-name-mei{
    width: 8em;
}
/*label*/
form label {
	display: block;
}
/*ボタン*/
form button{
	margin: 0 10px;
	padding: 5px 10px;
	border-radius: 5px;
	background: #fff;
}
/*記入例*/
form .owlet-input-sample {
	margin-top: 5px;
	color: #999;
	font-size: 14px;
}
/**フォーム規約**/
.owlet-rules {
	margin: 0 auto 30px;
	width: 90%;
}
.owlet-rules-title {
	margin-bottom: 10px;
	text-align: center;
	font-weight: bold;
}
.owlet-rules-body {
	overflow-y:scroll;
	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;
}
@media screen and (max-width: 768px) {
	.form_button {
		flex-flow: column-reverse;
	}
	/*iPhone独自スタイル解除*/
	form input[type="button"],
	form input[type="text"],
	form input[type="submit"] {
		border-radius: 0;

		-webkit-appearance: none;
	}
	/*入力タグ*/
    form input[type="text"],
    form textarea,
    form select{
    	font-size: 13px;
    }
}
/*widget:3a6e17fd-ad07-4729-beb0-a08bd8ec9c7a*/[data-lib="1"]{display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background: #fff;
	width: 100%;}[data-lib="1"] h1{font-size: 10px;
	margin: 5px 0;
	text-overflow: ellipsis;
	white-space: nowrap;}[data-lib="1"] .logo img{width: 150px;}[data-lib="1"] nav{width: 100%;}[data-lib="1"] .menu2{flex: 1;
	position: absolute;
	top: 8px;
	right: calc( ( 100% - 980px ) / 2 );
	display: flex;
	justify-content: flex-end;
	align-items: center;}[data-lib="1"] .menu2 dt{background: #e11f26;
	padding: 10px;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	margin-right: 15px;}[data-lib="1"] .menu2 dd .phone{font-size: 36px;
	color: #e11f26;
	font-weight: bold;
	line-height: 1.0;}[data-lib="1"] .menu2 dd p{font-size: 14px;}[data-lib="1"] .menu1{display: flex;
	justify-content: space-around;
	margin: 5px auto;
	font-size: 18px;}[data-lib="1"] .menu1 li{text-align: center;}[data-lib="1"] .menu1 a{display: block;}[data-lib="1"] .menu1 a:hover{color: #e11f26;}[data-lib="1"] #tel{display: none;}@media screen and (max-width: 768px){[data-lib="1"]{padding: 10px;
	width: 100%;}[data-lib="1"] h1{display: none;}[data-lib="1"] .logo img{width: 100px;}[data-lib="1"] nav{width: 100%;
	display: none;}[data-lib="1"] .menu2{position: relative;
	top: auto;
	right: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 8px 5%;}[data-lib="1"] .menu2 dt{background: #e11f26;
	padding: 5px;
	border-radius: 5px;
	color: #fff;
	font-size: 10px;
	margin-right: 10px;
	width: 90px;
	flex: none;}[data-lib="1"] .menu2 dd .phone{font-size: 20px;
	color: #e11f26;
	font-weight: bold;
	line-height: 1.0;}[data-lib="1"] .menu2 dd p{font-size: 10px;}[data-lib="1"] .menu1{border-top: 1px solid #aaa;
	flex-flow: column;}[data-lib="1"] .menu1 li{text-align: center;
	border-bottom: 1px solid #aaa;}[data-lib="1"] .menu1 a{display: block;
	padding: 10px;}[data-lib="1"] .menu1 a:hover{color: #e11f26;}[data-lib="1"] #menu{position: absolute;
	top: 10px;
	right: 10px;
	width: 35px;}[data-lib="1"] #menu:before{content: "\e90a";
	font-family: icomoon;
	font-weight: normal;
	font-size: 30px;}[data-lib="1"] .on #menu:before{content: "\e905";}[data-lib="1"] #tel{display: flex;
	align-items: center;
	background: #e11f26;
	color: #fff;
	padding: 8px 10px;
	width: auto;
	border-radius: 10px;
	position: absolute;
	top: 10px;
	right: 55px;
	font-size: 14px;
	box-shadow: 0 2px 0 rgba(0,0,0,0.5);
	line-height: 1.0;}[data-lib="1"] #tel:before{content: "\e0cd";
	font-family: 'Material Icons';
	font-size: 24px;}[data-lib="1"] #tel:hover{box-shadow: none;
	top: 7px;}}/*widget:3846526e-17e9-4cab-9a1d-9df4329ef50b*/[data-lib="11"]{margin: 50px auto;
	max-width: 980px;}[data-lib="11"] a.tel{display: flex;
	justify-content: flex-end;
	align-items: center;
	background: #e11f26;
	color: #fff;
	border-radius: 10px;
	padding: 10px 30px;
	position: relative;
	box-shadow: 0 4px 0 0 rgba(0,0,0,0.3);}[data-lib="11"] a:hover{box-shadow: none;}[data-lib="11"] i{position: absolute;
	width: 113px;
	left: 10px;
	top: -20px;}[data-lib="11"] i img{max-width: 100%;}[data-lib="11"] p{font-size: 28px;
	font-weight: bold;
	text-shadow: 
		black 2px 0px,  black -2px 0px,
		black 0px -2px, black 0px 2px,
		black 2px 2px , black -2px 2px,
		black 2px -2px, black -2px -2px,
		black 1px 2px,  black -1px 2px,
		black 1px -2px, black -1px -2px,
		black 2px 1px,  black -2px 1px,
		black 2px -1px, black -2px -1px;
	line-height: 1.2;}[data-lib="11"] dl{margin-left: 20px;}[data-lib="11"] dl dt{font-size: 48px;
	color: #ff0;
	font-weight: bold;
	line-height: 1.1;}[data-lib="11"] dl dt:before{content: "\e0b0";
	font-family: 'Material Icons';
	vertical-align: middle;
	display: inline-block;}[data-lib="11"] dl dd{margin-left: 60px;}[data-lib="11"] a.mail{border-radius: 10px;
	padding: 30px 10px;
	display: block;
	background: #f2d100;
	color: #fff;
	text-align: center;
	box-shadow: 0 4px 0 0 rgba(0,0,0,0.3);
	margin: 20px auto;}[data-lib="11"] a.mail b{display: inline-block;
	margin: 0 10px;
	font-weight: bold;
	font-size: 1.5em;
	vertical-align: middle;}[data-lib="11"] a.mail p{margin: auto;}@media screen and (max-width: 768px){[data-lib="11"]{margin: 35px auto 35px;
	max-width: 90%;}[data-lib="11"] a.tel{justify-content: flex-start;
	flex-wrap:wrap;
	padding: 10px;}[data-lib="11"] i{width: 70px;
	left: 5px;
	top: -20px;}[data-lib="11"] p{font-size: 18px;
	line-height: 1.3;
	margin: 0 0 5px 80px;}[data-lib="11"] dl{margin: 5px auto;
	text-align: center;}[data-lib="11"] dl dt{font-size: 28px;}[data-lib="11"] dl dd{font-size: 14px;
	margin-left: 0;}[data-lib="11"] a.mail{padding: 15px 10px;}[data-lib="11"] a.mail span{display: inline-block;}}/*widget:4e2b37d4-756d-471b-86fd-d202a3b690e5*/[data-lib="68"]{background: url(/_img/ja/cms_parts_library/72/image/_/) no-repeat center bottom / cover;}/*widget:f40914eb-022e-448b-9d79-56e4e6ee1b03*/[data-lib="7"] footer{background: url(/_img/ja/cms_parts_library/10/image/_/) no-repeat center /cover;
	padding: 50px 5%;
	color: #fff;
	text-align: center;}[data-lib="7"] .logo{width: 180px;
	margin: 0 auto 15px;}[data-lib="7"] h1,[data-lib="7"] 
 p{font-size: 14px;
	font-weight: normal;}[data-lib="7"] .link{width: 350px;
	margin: 20px auto 0;}[data-lib="7"] .link a{width: 45%;}[data-lib="7"] .copyright{color: #646464;
	font-size: 14px;
	padding: 10px 5% 100px;
	text-align-last: center;}@media screen and (max-width: 768px){[data-lib="7"] .link{width: 100%;}[data-lib="7"] .copyright{padding: 10px 5% 50px;}}/*widget:d2a13224-1f3a-4b52-a2dc-faf2230b11e8*/[data-lib="292"]{margin: 50px auto 80px;}[data-lib="292"] .rec-list{max-width: 980px;
	margin: 30px auto;}[data-lib="292"] .rec-list li{margin: 0 0 30px;}[data-lib="292"] .rec-list li a{border: 3px solid #33447b;
	padding: 20px;
	display: flex;
	position: relative;}[data-lib="292"] .rec-list li figure{width: 395px;
	flex: none;}[data-lib="292"] .rec-list li figure img{display: block;}[data-lib="292"] .rec-list li .text{flex: 1;
	padding: 0 0 0 20px;}[data-lib="292"] .rec-list li .text .titD{margin-bottom: 10px;
	font-size: 22px;}[data-lib="292"] .rec-list li .ctgr{margin: 0 5px 10px 0;}[data-lib="292"] .rec-list li a:before{position: absolute;
	right: -1px;
	bottom: -1px;
	width: 0;
	height: 0;
	border-width: 0 0 35px 35px;
	border-style: solid;
	border-color: transparent transparent #33447b transparent;
	content: "";}[data-lib="292"] .rec-list li a:after{position: absolute;
	right: 0;
	bottom: 0;
	color: #ffffff;
	content: "→";}[data-lib="292"] .rec-list li a:hover:before,[data-lib="292"] 
.rec-list li a:hover:before{border-color: transparent transparent transparent #33447b;
	;
	-webkit-transition: .3s;
	transition: .3s;}@media screen and (max-width: 768px) {[data-lib="292"]{margin: 20px auto 40px;}[data-lib="292"] .rec-list{margin: 20px 5%;}[data-lib="292"] .rec-list li a{flex-flow: column;
	padding: 10px;}[data-lib="292"] .rec-list li figure{width: 100%;
	flex: none;}[data-lib="292"] .rec-list li .text{padding: 10px 0 0;}}/*widget:521a2155-56b0-4ea6-94c3-681dfbd3b758*/[data-lib="408"]{display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;}[data-lib="408"] a{display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	padding: 15px 0;
	flex: 1;
	color: #ffffff;
	text-align: center;
	line-height: 1;
	font-size: 1.2rem;}[data-lib="408"] .tel{background: #e11f26;}[data-lib="408"] .line{background: #06c755;}[data-lib="408"] .line b{font-size: 1.5em;
	margin: 0;}[data-lib="408"] .mail{background: #f0b70c;}[data-lib="408"] b{margin: 0 auto 5px;
	font-size: 1.2em;}@media screen and (max-width: 520px){[data-lib="408"] a{font-size: 0.9rem;
	padding: 5px 0;}}