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


/********
サイトによって異なる
使い回し共通CSS
1.コーディング＞ページ編集＞レイアウト＞全レイアウト共通CSSにコピーして入れる。
********/

.mincho{
	font-family: 'Noto Serif JP', serif;
}


/**-------------------------------------
フォームテーブル
-------------------------------------**/
.owlet-form{
    width: 750px;
    margin: 0 auto;
}

.-w-table table,
.owlet-form table{
	margin: 0 auto;
	width: 100%;
	border-spacing:1px;
	border-collapse:separate;
	background:  #fff;
}
.-w-table table th,
.-w-table table td,
.owlet-form table th,
.owlet-form table td{
	padding: 20px 15px;
	background: #fff;
	text-align: left;
	display: block;
}
.-w-table table th,
.owlet-form table th{
	position: relative;
	padding: 15px 3.5em 15px 15px;
	width: 100%;
	background: #6b6b6b;
	color: #fff;
	line-height: 1.8;
}
@media screen and (max-width: 768px){
    .owlet-form{
        width: 100%;
        margin: 0 auto;
    }

	.-w-table table,
	.-w-table table tbody,
	.-w-table table tr,
	.-w-table table th,
	.-w-table table td,
	.owlet-form table,
	.owlet-form table tbody,
	.owlet-form table tr,
	.owlet-form table th,
	.owlet-form table td{
		display: block;
		width: 100%;
		border: none;
	}
	
	.-w-table table,
	.owlet-form table{
	}
	
	.-w-table table th,
	.-w-table table td
	.owlet-form table th,
	.owlet-form table td{
		text-align: left;
	}
	
	.-w-table table th,
	.owlet-form table th{
		padding-right: 3.5em;
	}
}


/**-------------------------------------
概要
-------------------------------------**/
.outline{
    width: 750px;
    margin: 30px auto;
}
.outline table{
    border-top:1px dotted #8c8a85;
    width: 100%;
    background:#fff;
    text-align:left;
}
.outline table th,
.outline table td{
     border-bottom:1px dotted #8c8a85;
     padding:10px 15px;
}
.outline table th{
    background: #9c9a93;
    color:#fff;
    width: 8em;
    text-align:left;
}


@media screen and (max-width: 768px){
.outline{
    width: 100%;
    margin: 20px auto;
}
}

/**-------------------------------------
必須アイコンの位置
-------------------------------------**/
.require {
	top: 0;
	right: 1em;
	bottom: 0;
	margin:  auto 5px;
	background: #fff;
	border-radius: 0;
	border: 1px solid #6b6b6b;
	color: #6b6b6b;
	z-index: 2;
}
form table th:after{
	content: "任意";
	position: absolute;
	display: inline-block;
	width: 3em;
	height: 2em;
	border-radius: 0;
	background: #fff;
	color: #6b6b6b;
	text-align: center;
	font-weight: bold;
	font-size: 11px;
	line-height: 2em;
	
	top: 0;
	right: 1em;
	bottom: 0;
	margin:  auto 5px;
	background: #fff;
	border-radius: 0;
	border: 1px solid #6b6b6b;
	z-index: 1;
}

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

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

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

	justify-content: space-between;
	flex-wrap: wrap;
}
.box3C > *{
	margin: 20px 0 0;
	width: 31.5%;
}
.box3C:after{
	display: block;
	width: 31.5%;
	content: "";
}

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

	justify-content: space-between;
	flex-wrap: wrap;
}
.box4C > *{
	margin: 20px 0 0;
	width: 23%;
}
.box4C:after,
.box4C:before{
	display: block;
	width: 23%;
	content: "";
}
.box4C:before{
	order:1;
}
.boxLR{
	display: flex;
	margin: 10px auto;

	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	/**２つ並び**/
	.box2C{
		width: 100%;

		flex-flow: column;
	}
	.box2C > *{
		width: 100%;
	}
	.box2C:after{
		display: none;
	}

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

		flex-flow: column;
	}
	.box3C > *{
		width: 100%;
	}
	.box3C:after{
		display: none;
	}

	/**4つ並び**/
	.box4C{
		width: 100%;
	}
	.box4C > *{
		width: 48%;
	}
	.box4C:after,
	.box4C:before{
		display: none;
	}
}


/* -------------------------------------
見出し+テキスト+画像
.h-text-img>
div>h+p
figure>img

.h-text-img　：　見出し+テキスト　画像右
.h-text-img.left　：　画像左　見出し+テキスト
.h-text-img.center　：　画像+見出し+テキスト　縦並び
-------------------------------------*/
.h-text-img{
	display: flex;
	margin: 30px auto;
	width: 100%;

	justify-content: space-between;
}
.h-text-img.left{
	flex-direction:row-reverse;
}
.h-text-img.center{
	flex-flow: column-reverse nowrap;
}
.h-text-img > div{
	margin: 0 30px 0 0;

	flex: 1;
}.h-text-img.left > div{
	margin: 0 0 0 30px;
}
.h-text-img.center > div{
	margin: 0 30px;

	flex: auto;
}
.h-text-img figure{
	width: 400px;
	height: auto;
}
.h-text-img.center figure{
	margin: 0 0 30px;
	width: 100%;
	height: auto;
}
.h-text-img.center figure{
	margin: 30px 0;
}
.h-text-img.big figure{
	width: 643px;
}
.h-text-img.min figure{
	width: 280px;
}
.h-text-img.free figure{
	width: auto;
}
.h-text-img figure img{
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	.h-text-img{
		margin: 30px auto;
		width: 100%;

		flex-flow: column;
	}
	.h-text-img.left{
		flex-direction:column-reverse;
	}
	.h-text-img.center{
		flex-flow: column-reverse nowrap;
	}
	.h-text-img > div,
	.h-text-img.left > div,
	.h-text-img.center > div{
		margin: 5px 0;

		flex: 1;
	}
	.h-text-img figure{
		margin: 5px auto;
		max-width: 400px;
		width: 100%;
		height: auto;
	}
	.h-text-img.center figure{
		margin: 5px auto;
		max-width: 100%;
	}
	.h-text-img figure img{
		width: 100%;
	}
	.h-text-img.big figure{
		max-width: 643px;
		width: 100%;
	}
	.h-text-img.min figure{
		max-width: 280px;
		width: 100%;
	}
}

/**-------------------------------------
背景
-------------------------------------**/
.bg-fff{
	background: #fff;
	overflow: hidden;
}
.bg-e8f0f7{
	background: #e8f0f7;
	overflow: hidden;
}
.bg-f3f0ef{
	background: #f3f0ef;
	overflow: hidden;
}
.bg-img{
	background: no-repeat center / cover;
	padding: 40px 5%;
	position: relative;
}
.bg-img.opacity:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.4);
}
.bg-img.opacity *{
	position: relative;
	z-index: 2;
}

/**================================================================================
サイトで必ず異なる
================================================================================**/
/**-------------------------------------
目次
-------------------------------------**/
.entry-content{
    border:1px solid #969696;
    background:#f2efee;
    padding:0;
    margin:50px 10%;
}
.entry-content dt{
    text-align:center;
    font-weight: bold;
    font-size: 1.1em;
    padding:15px 30px;
}
.entry-content dt + dd{
    border-top:1px solid #969696;
}
.entry-content dd{
    counter-increment: list;
    padding:15px 30px 15px 3em;
    text-indent: -1.2em;
}.entry-content dd:before{
    content: counter(list)". ";
}
.entry-content dd a{
    text-decoration: underline;
}.entry-content dd a:hover{
     text-decoration: none;
}

@media screen and (max-width: 768px){
.entry-content{
    padding:0 ;
    margin:30px 5% 20px;
}
.entry-content dt{
    padding:10px;
}
.entry-content dd{
    padding:10px 10px 10px 2em;
    text-indent: -1.2em;
}
}

/**-------------------------------------
チェックリスト
-------------------------------------**/
.check li{
	background: url(/common/images/check.png) no-repeat left top;
	padding: 0 0 0 30px;
	margin-bottom: 10px;
}

/**-------------------------------------
アイコン
-------------------------------------**/
.tag,
.cat{
	display: inline-block;
	text-align: left;
	margin: 10px auto;
}
.tag > *,
.cat > *{
	text-align: center;
	display: inline-block;
	padding: 3px 2px;
	margin: 1px 1px 0;
	background: #000;
	background: #808080;
	color: #fff;
	min-width: 65px;
	font-size: 12px;
}
.cat > *{
	border: 1px solid #000;
	color: #000;
	background: #fff;
}

@media screen and (max-width: 768px){
    .tag > *,
    .cat > *{
	    /*min-width: 74px;*/
	    width: calc( 25% - 2px);
    }
}



/**-------------------------------------
見出し
-------------------------------------**/
/*ガーディアン社では -w-generalというクラスを、共通の見出しにつけています */
.-w-general {
}
h2.-w-general {
}
h3.-w-general {
}

.titA{
	font-weight: bold ;
	font-size: 28px;
}
.reform .titA{
	color: #6aa2cc;
}
.titB{
	font-size: 32px;
	font-family: 'Noto Serif JP', serif;
}.titB small{
	display: block;
	margin: 0 auto;
	font-weight: normal;
	font-size: 1rem;
}
.titC{
	font-size: 1.2em;
	font-family: 'Noto Serif JP', serif;
}
.titD{
	font-weight: bold;
}
.titE{
    background: #716d63;
    color:#fff;
    padding: 7px 15px;
    margin: 15px auto;
}
.titF{
    background: #716d63;
    color: #fff;
    padding: 5px 15px;
}

.titG{
    font-weight: bold;
    padding:5px;
    border-bottom:1px dashed #716d63;
}

.titImg{
	margin: 15px auto;
	text-align: center;
}
.titImg img{
	max-width: 600px;
	height: auto;
}
.toMail{
	background: #000;
	color: #fff;
	padding: 0;
	position: relative;
	min-height: 60px;
	font-size: 18px;
	font-weight: bold;
	display: flex;
	align-items: center;
}
.toMail:before{
	content: "\e910";
	font-family: icomoon;
	background: #6b6b6b;
	font-size: 40px;
	width: 60px;
	height: 100%;
	min-height: 60px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

@media screen and (max-width: 768px){
	.titA{
		font-size: 22px;
	}
	.titB{
		font-size: 24px;
	}
	.titD{
	}
	.titG{
	    font-size: 18px;
	}
	.titImg{
		margin: 5px auto 0;
		text-align: center;
	}
	.titImg img{
		max-width: 100%;
		height: auto;
	}
	.toMail:before{
		font-size: 40px;
		width: 75px;
		height: 75px;
	}
	.toMail{
	    padding: 0 5px 0 0;
	    font-size: 16px;
	}
}



/**-------------------------------------
ボタン
-------------------------------------**/
.btnA{
	position: relative;
	display: block;
	margin: 0 15px;
	padding: 15px 10px;
	width: 500px;
	border-radius: 50px;
	background: #1178e6;
	background: #1ba681;
	box-shadow: 2px 5px 0 rgba(0,0,0,0.1);
	color: #fff;
	text-align: center;
	line-height: 1.5;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
	font-size: 16px;
}
.btnA:after{
	position: absolute;
	top: 50%;
	right: 10px;
	content: "arrow_right";
	font-family: 'Material Icons';
	transform: translateY(-50%);
}
.btnA.t_C{
	margin: 0 auto;
}

.btnA i{
	display: inline-block;
	margin: 0 8px 0 0;
	vertical-align: middle;
	font-size: 1.8em;
}

.btnA:hover{
	background: rgba(68,63,53,1.0);
	background:  #0e8162;
	color: #fff;
}

.btnB{
	position: relative;
	display: block;
	margin: 0 15px;
	padding: 15px 10px;
	width: 500px;
	border-radius: 50px;
	border: 1px solid #716d63;
	background: #fff;
	box-shadow: 2px 5px 0 rgba(0,0,0,0.1);
	color: #716d63;
	text-align: center;
	line-height: 1.5;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
.btnB.t_C{
	margin: 0 auto;
}
.btnB:after{
	position: absolute;
	top: 50%;
	right: 10px;
	content: "arrow_right";
	font-family: 'Material Icons';
	transform: translateY(-50%);
}
.btnB i{
	display: inline-block;
	margin: 0 8px 0 0;
	vertical-align: middle;
	font-size: 1.8em;
	color: inherit;
}
.btnB:hover{
	background: rgba(68,63,53,1.0);
	color: #fff;
}


.reform .btnA{
	background: #6aa2cc;
}.reform .btnA:hover{
	background: #529bd2;
}
@media screen and (max-width: 768px) {
	.btnA{
		width: 88vw;
		padding: 12px 10px 12px 5px;
		font-size: 1.0em;
	}
	.btnB{
		width: 88vw;
		padding: 12px 10px 12px 5px;
		font-size: 1.0em;
	}
}



/**-------------------------------------
swiper slide
-------------------------------------**/
.hero{
	position: relative;
	max-width: 1200px;
	overflow: hidden;
	text-align: center;
	margin: 0 auto;
}
.swiper-container{
    z-index: 50;
}
.swiper-slide{
	height: 750px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
.swiper-hero-prev,
.swiper-hero-next{
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 50;
}
.swiper-hero-next{
    left:auto;
    right: 0;
}
.swiper-hero-prev:before,
.swiper-hero-next:before{
    content: "\e5de";
    font-family: 'Material Icons';
    color: #fff;
    font-size: 20px;
    line-height: 1.0;
    background: rgba(0,0,0,0.2);
    padding: 10px 5px;
    margin-top: -2em;
}
.swiper-hero-next:before{
     content: "\e5df";
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 15px 4px;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: #646464;
}
.swiper-pagination-bullet {
	width: 9px;
	height: 9px;
}
.swiper-slide a{
    display: block;
    width: 100%;
    height: 100%;
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    text-align: center;
}

@media screen and (max-width: 768px) {
    .hero{
        height: 122vw;
        max-width: 100%;
    }	

	.swiper-slide{
		height: 122vw;
		background-size: 100% auto;
	}
}


/**================================================================================
固定バナー
================================================================================**/

#fix_bnr{
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1000;
	padding: 10px 0; 
	width: 100%;
	background: #00000073;
}

.form_bnr,
.page_bnr{
	display: flex;
	margin: 0 auto;
	width: 980px;
	color: #000;

	justify-content: center;
	align-items: center;
}
#fix_bnr .form_bnr{
	color: #fff;
}


/**-------------------------------------
PC電話
-------------------------------------**/
.form_bnr dl,
.page_bnr dl{
	position: relative;
	margin: 0 30px 0 0;
	padding: 0 0 0 2.5em;
}
.form_bnr dl:before,
.page_bnr dl:before{
	position: absolute;
	top: 0;
	left: 0;
  content: "\e92b";
	font-size: 2.3em;
  font-family: 'icomoon';
}
.form_bnr dl dt,
.page_bnr dl dt{
	font-size: 2.1em;
	font-family: 'Noto Serif JP', serif;
	line-height: 1.0;
}
.form_bnr dl dd,
.page_bnr dl dd{
	margin: 5px;
	font-size: 14px;
}

/**-------------------------------------
ボタン
-------------------------------------**/
.form_bnr .btn,
.page_bnr .btn{
	position: relative;
	display: block;
	margin: 0 15px;
	padding: 10px;
	width: 305px;
	/*border-radius: 50px;*/
	background: #716d63;
	background: #FFA500;
	box-shadow: 2px 5px 0 rgba(0,0,0,0.2);
	color: #fff;
	text-align: center;
	line-height: 1.0;
	font-weight: 300;
}.form_bnr .sp.btn,
.page_bnr .sp.btn{
	display: none;
}
.page_bnr .btn{
    font-family: 'Noto Serif JP', serif;
}

#fix_bnr .form_bnr .btn{
	background: #1178e6;
	background: #FFA500;
	box-shadow: none;
	color: #fff;
}
.form_bnr .btn:after,
.page_bnr .btn:after{
	position: absolute;
	top: 50%;
	right: 10px;
	content: "arrow_right";
	font-family: 'Material Icons';
	transform: translateY(-50%);
}
.form_bnr .btn:before,
.page_bnr .btn:before{
	display: inline-block;
	margin: 0 8px 0 0;
	vertical-align: middle;
	font-size: 1.6em;
}
.form_bnr .btn:before,
.page_bnr .btn:before{
	content: "\e942";
	font-family: icomoon;
}.form_bnr .mail:before,
.page_bnr .mail:before{
	content: "\e92c";
	font-family: icomoon;
}.form_bnr .free:before,
.page_bnr .free:before{
	content: "\e928";
	font-family: icomoon;
}
.form_bnr .btn:hover,
#fix_bnr .form_bnr .btn:hover,
.page_bnr .btn:hover,{
	background: rgba(68,63,53,1.0);
		background: #FFA500;
	color: #fff;
}
.btn .spsp{
    display: none;
}


@media screen and (max-width: 768px){
	#fix_bnr{
		padding: 0; 
		background: rgba(255,255,255,1.0);
	}
	#fix_bnr .form_bnr .btn{
	    background: rgba(42,85,138,0.9);
	    		background: #FFA500;
	    color:#fff;
	    border-right: 1px solid #fff;
	    font-size: 14px;
	}
	#fix_bnr .form_bnr .btn .spsp{
        display: block;
    }
    
   
	
	.form_bnr{
		width: 100%;
		border: none;
		color: #3c3c3c;
		font-size: 13px;

		align-items: stretch;
	}
	.page_bnr{
		width: 90%;
		flex-flow: column;
	}

	/**-------------------------------------
	PC電話
	-------------------------------------**/
	.form_bnr dl{
		display: none;
	}
	/**-------------------------------------
	ボタン
	-------------------------------------**/
	.form_bnr .btn{
		display: block;
		margin: 0;
		padding: 15px 0;
		width: auto;
		border-right:1px solid #b4b4b4;
		border-radius: 0;
		background: #1178e6;
		box-shadow: none;
		color: #3c3c3c;
		text-align: center;
		font-size: 1.1em;

		flex: 1;
	}.form_bnr .sp.btn{
		display: block;
	}
	 .form_bnr .pc.btn,
    .page_bnr .pc.btn{
    	display: none;
    }
	#fix_bnr .form_bnr .btn{
		padding: 8px 0;
	}
	.form_bnr .btn:after{
		display: none;
	}
	.form_bnr .btn:before{
		display: block;
		margin: 0 auto 5px;
		font-size: 1.8em;
	}
	.form_bnr .btn:hover{
		background: rgba(68,63,53,1.0);
		color: #fff;
	}
	
	.page_bnr .sp.btn{
		display: block;
	}
	.page_bnr .btn{
		width: 100%;
		margin-bottom: 15px;
	}
}



/** ================================================================================
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:#1e1e1e;
	font-size:16px;
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,'Noto Sans JP', sans-serif;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}


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

	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	
	/*-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;*/
}

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;
}

a[href=""]{
	pointer-events: none;
}
/**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;
	}
	/**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,
body .t_CR,
body .t_CL{
	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) {
    body .t_CR {
	    text-align:right;
    }
    body .t_CL {
	    text-align:left;
    }
    
    
	/*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 .w750,
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 .w750{
	width: 750px;
}
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 .w750,
	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 .w750{
		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 .w750 > *,
	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 .w750 > .max,
	body .w750.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 15px;
	max-width:980px;
	width:94%;
	font-size:12px;
}
/*家アイコン*/
#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 #1e1e1e;
	background: #ffffff;
	color: #1e1e1e;
	text-align: center;
	line-height: 38px;
}
.pagenation span.page{
	background: #1e1e1e;
	color: #ffffff;
}
.pagenation span a{
	display: block;
	width: 100%;
	height: 100%;
	background: #ffffff;
	color: #1e1e1e;
}.pagenation span a:hover{
	background: #1e1e1e;
	color: #ffffff;
}


@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: 3.2em;
	height: 2em;
	border-radius: 3px;
	background: #faee00;
	color: #000;
	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: 20px 30px 10px;
	padding: 15px 30px;
	width: 200px;
	border: 1px solid #000000;
	background: #000000;
	color: #ffffff;
	text-align: center;
	font-size: 16px;
	border-radius: 50px;
	font-family: 'Noto Serif JP', serif;
}
.form_button a{
	border: 1px solid #000000;
	background: #000000;
}
.form_button input[type="submit"]:hover,
.form_button input.submit:hover,
.form_button a:hover{
	border: 1px solid #000000;
	background: #000000;
	color: #ffffff;
}



/*入力タグ*/
form input[type="text"],
form textarea,
form select{
	padding: 5px 4px;
	height:40px;
	border:1px solid #cccccc;
	font-size: 16px;
	line-height: 1.2;
	margin: 5px 5px 5px 0;
	box-shadow: none;
	border-radius: 5px;
}
form select{
    margin:5px;
}
form input[type="text"]{
   width: 100%;
}
form textarea {
	padding: 2px;
	min-height: 150px;
}
form select{
	padding: 0 10px;
	font-size: 14px;
}
td input[type="button"]{
    background: none;
    -webkit-appearance: none;
      appearance: none;
background-image: linear-gradient(to bottom, rgba(255,255,255,1.0) 40%,rgba(200,200,200,0.1) 100% ); /* グラデーション */
   border: 1px solid #cccccc; /* 枠線 */
   border-radius: 0.3em;      /* 角丸 */
   height: 40px;
}
form input[type="file"]{
    display: block;
    margin: 8px 0;
}

/*電話*/
form input.owlet-input-tel1,
form input.owlet-input-tel2,
form input.owlet-input-tel3,
form input.zip1,
form input.zip2{
    width: 5em;
	margin: 5px;
}
/*名前*/
form input.owlet-input-name-sei,
form input.owlet-input-name-mei{
    width: 8em;
}
/**住所**/
form input.address{
    display: block;
}
/*label*/
form label {
	display: block;
    margin: 5px 0;
}
/*ボタン*/
form button{
	margin: 0 10px;
	padding: 5px 10px;
	border-radius: 5px;
	background: #fff;
}
/*記入例*/
form .owlet-input-sample {
	margin-top: 5px;
	color: #505050;
	font-size: 14px;
	margin-left: 8px;
}
/**フォーム規約**/
.owlet-rules {
	margin: 0 auto 30px;
	width: 100%;
}
.owlet-rules-title {
	margin-bottom: 10px;
	text-align: center;
	font-weight: bold;
	display: none;
}
.owlet-rules-body {
	/*overflow-y:scroll;*/
	box-sizing:border-box;
	margin-bottom: 20px;
	border-top:1px dashed #000;
	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"] {

		-webkit-appearance: none;
	}
	/*入力タグ*/
    form input[type="text"],
    form textarea,
    form select{
    	font-size: 13px;
    }
}
