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

/** ================================================================================
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{
	overflow: hidden;
	margin: 0 auto;
	min-width: 1000px;
	background: #ffffff;
	color:#444444;
	font-size:15px;
	font-family:&quot;ヒラギノ角ゴ Pro W3&quot;, &quot;Hiragino Kaku Gothic Pro&quot;, &quot;Noto Sans Japanese&quot;, &quot;Yu Gothic&quot;, 游ゴシック, 游ゴシック体, メイリオ, meiryo, sans-serif;
	line-height: 1.7;
	-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;
}

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:15px;
		line-height: 1.6;
	}
	/**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 .mb70 {
	margin-bottom: 70px;
}
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 .mt70 {
	margin-top:70px;
}
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 .mb20 {
        margin-bottom: 15px;
    }
    body .mb30 {
        margin-bottom: 20px;
    }
	body .mb40 {
		margin-bottom: 20px;
	}
	body .mb50 {
		margin-bottom: 25px;
	}
	body .mb70 {
		margin-bottom: 35px;
	}
	body .mb80 {
		margin-bottom: 40px;
	}
	body .mb100 {
		margin-bottom: 50px;
	}
	body .mb150 {
		margin-bottom: 75px;
	}
    body .mt20 {
        margin-top:15px;
    }
    body .mt30 {
        margin-top:20px;
    }
	body .mt40 {
		margin-top:20px;
	}
	body .mt50 {
		margin-top:25px;
	}
	body .mt70 {
		margin-top:35px;
	}
	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 .p0 {
	padding: 0;
}
body .pb0{
	padding-bottom: 0;
}
body .pb5 {
	padding-bottom: 5px;
}
body .pb10 {
	padding-bottom: 10px;
}
body .pb15 {
	padding-bottom: 15px;
}
body .pb20 {
	padding-bottom: 20px;
}
body .pb30 {
	padding-bottom: 30px;
}
body .pb40 {
	padding-bottom: 40px;
}
body .pb50 {
	padding-bottom: 50px;
}
body .pb70 {
	padding-bottom: 70px;
}
body .pb80 {
	padding-bottom: 80px;
}
body .pb100 {
	padding-bottom: 100px;
}
body .pb150 {
	padding-bottom: 150px;
}
body .pt0{
	padding-top: 0px;
}
body .pt5 {
	padding-top:5px;
}
body .pt10 {
	padding-top:10px;
}
body .pt15 {
	padding-top:15px;
}
body .pt20 {
	padding-top:20px;
}
body .pt30 {
	padding-top:30px;
}
body .pt40 {
	padding-top:40px;
}
body .pt50 {
	padding-top:50px;
}
body .pt70 {
	padding-top:70px;
}
body .pt80 {
	padding-top:80px;
}
body .pt100 {
	padding-top:100px;
}
body .pt150 {
	padding-top:150px;
}
body .pl0{
	padding-left: 0;
}
body .pl5 {
	padding-left: 5px;
}
body .pl10 {
	padding-left: 10px;
}
body .pl15 {
	padding-left: 15px;
}
body .pl20 {
	padding-left: 20px;
}
body .pl30 {
	padding-left: 30px;
}
body .pr0{
	padding-right: 0;
}
body .pr5 {
	padding-right: 5px;
}
body .pr10 {
	padding-right: 10px;
}
body .pr15 {
	padding-right: 15px;
}
body .pr20 {
	padding-right: 20px;
}
body .pr30 {
	padding-right: 30px;
}


@media screen and (max-width: 768px) {
	/*5. padding 30以上は1/2 */
    body .pb20 {
        padding-bottom: 15px;
    }
    body .pb30 {
        padding-bottom: 20px;
    }
	body .pb40 {
		padding-bottom: 20px;
	}
	body .pb50 {
		padding-bottom: 25px;
	}
	body .pb70 {
		padding-bottom: 35px;
	}
	body .pb80 {
		padding-bottom: 40px;
	}
	body .pb100 {
		padding-bottom: 50px;
	}
	body .pb150 {
		padding-bottom: 75px;
	}
	body .pt20 {
		padding-top:15px;
	}
	body .pt30 {
		padding-top:20px;
	}
	body .pt40 {
		padding-top:20px;
	}
	body .pt50 {
		padding-top:25px;
	}
	body .pt70 {
		padding-top:35px;
	}
	body .pt80 {
		padding-top:40px;
	}
	body .pt100 {
		padding-top:50px;
	}
	body .pt150 {
		padding-top:75px;
	}
}

/* -------------------------------------
幅
-------------------------------------*/
body .w100p,
body .w1100,
body .w1000,
body .w980,
body .w900,
body .w820,
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 .w820{
	width: 820px;
}
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 .w820,
	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 .w820{
		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%;
		display: flex;
		justify-content: center;
	}
}

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%);
}
*/

/**黄色マーカー**/
mark{
	background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #ffff76));
	background: linear-gradient(transparent 70%, #ffff76 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;*/
	border-radius: 10px;
}

/**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:1000px;
    margin: 0 auto;
    position: relative;
}

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




/* -------------------------------------
リッチテキスト
-------------------------------------*/
.richtext{
}
.richtext *[style*="font-size: 10px"]{
    font-size: 10px!important;
}
.richtext *[style*="font-size: 11px"]{
    font-size: 11px!important;
}
.richtext *[style*="font-size: 12px"]{
    font-size: 12px!important;
}
.richtext *[style*="font-size: 13px"]{
    font-size: 13px!important;
}
.richtext *[style*="font-size: 14px"]{
    font-size: 14px!important;
}
.richtext *[style*="font-size: 15px"]{
    font-size: 15px!important;
}
.richtext p{
	margin: 0 auto 10px;
}
.richtext strong {
}/*リセットしていないので不要*/
.richtext s{
}/*リセットしていないので不要*/
.richtext u{
}/*リセットしていないので不要*/
.richtext em {
	font-style: italic;
}
.richtext ul {
/*	padding-left: 2em;*/
    line-height: 1.4;
}
.richtext ul li {
    list-style: outside decimal;
}
.richtext ol {
/*	padding-left: 2em;*/
    line-height: 1.4;
}
.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;
}

.richtext ul li{
    display: block;
    margin-bottom: 10px;
    margin-left: 1em;
/*    margin-right: 1em;*/
    text-indent: -1em;
    list-style: none;
}
.richtext ul li::before{
    content: "●";
}
.richtext *[style*="font-size: 14px"],
.richtext *[style*="font-size: 15px"],
.richtext *[style*="font-size: 16px"]{
	font-weight: normal;
}


@media screen and (max-width: 768px) {
	.richtext *[style*="font-size: 8px"]{
	}
	.richtext *[style*="font-size: 9px"]{
	}
	.richtext *[style*="font-size: 10px"]{
        font-size: 10px!important;
	}
	.richtext *[style*="font-size: 11px"]{
        font-size: 10px!important;
	}
	.richtext *[style*="font-size: 12px"]{
        font-size: 10px!important;
	}
	.richtext *[style*="font-size: 13px"]{
        font-size: 12px!important;
	}
	.richtext *[style*="font-size: 14px"]{
        font-size: 12px!important;
	}
    .richtext *[style*="font-size: 15px"]{
        font-size: 14px!important;
    }
	.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;
	}
	

	.richtext ul li{
		margin-bottom: 6px;
	}
}

/* -------------------------------------
パンくず
-------------------------------------*/
#breadcrumb{
	margin:0 auto ;
	padding: 4px 50px;
/*
	max-width:980px;
	width:94%;
*/
	font-size:12px;
	background: #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-radius: 50%;*/
	border: 1px solid #8b8b95;
	background: #8b8b95;
	color: #ffffff;
	text-align: center;
	line-height: 38px;
}
.pagenation span.page{
	background: #ffff3b;
	color: #272763;
}
.pagenation span a{
	display: block;
	width: 100%;
	height: 100%;
/*	border-radius: 50%;*/
	background: #8b8b95;
	color: #ffffff;
}.pagenation span a:hover{
	background: #ffff3b;
	color: #272763;
}


@media screen and (max-width: 768px) {
	.pagenation span{
		margin: 3px;
		width: 30px;
		height: 30px;
		line-height: 27px;
	}
}
/* -------------------------------------
フォーム
-------------------------------------*/
/**エラー**/
.alert {
	margin: 5px 0;
	color: #ffff3b;
}
form table th{
	position: relative;
}

/**必須**/
.require {
	position: absolute;
	display: inline-block;
	width: 3em;
	height: 2em;
	background: #ffff3b;
	color: #000;
	text-align: center;
	font-weight: bold;
	font-size: 14px;
	line-height: 2em;
	
	/*追加*/
    top: 0;
    right: 0.5em;
    bottom: 0;
	margin: auto 5px;
}

@media screen and (max-width: 768px) {
	/**必須**/
	.require {
		font-size: 12px;
	}
}






/**送信ボタン**/
.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 #9feaff;
	background: #9feaff;
	color: #272763;
	text-align: center;
	font-size: 16px;
}
.form_button a{
	border: 1px solid #9feaff;
	background: #9feaff;
}
.form_button input[type="submit"]:hover,
.form_button input.submit:hover,
.form_button a:hover{
	border: 1px solid #ffff3b;
	background: #ffff3b;
	color: #272763;
}




/*入力タグ*/
form input[type="text"],
form textarea,
form select{
	padding: 14px 10px;
/*	height:40px;*/
	border:1px solid #cccccc;
	font-size: 16px;
	line-height: 1.2;
	margin: 5px 5px 5px 0;
	box-shadow: none;
}
form input[type="text"]{
   width: 100%;
}
form textarea {
	min-height: 150px;
}
form select{
	width: 100%;
	padding: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{
    width: 5em;
	margin: 5px;
}
/*名前*/
form input.owlet-input-name-sei,
form input.owlet-input-name-mei{
    width: 8em;
    margin-left: 10px;
}
/*郵便番号*/
form input.zip1,
form input.zip2{
    width: 5em;
	margin: 5px;
}
/**住所**/
form input.address{
    display: block;
}
/*label 縦並び*/
/*
form label {
	display: block;
    margin: 5px 0;
}
*/
/*label 横並び*/
form label {
	margin: 5px 10px;
    font-size: 1.2em;
}
/*ボタン*/
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 {
	box-sizing:border-box;
	margin-bottom: 20px;
	border-top:1px dashed #000;
	padding:15px;
	
	/*iframeの場合は設定*/
	overflow-y:scroll;
	height:200px;
	border:1px solid #dcdcdc;
	background: #fff;
	/*/iframeの場合は設定*/
	display: none;
}
.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;
    }
}


/** ================================================================================
base追加
================================================================================ **/

h1, h2, h3, h4, h5, h6,
dt,th{
	line-height: 1.4;
}
img{
	vertical-align:top;
}
b,em,i,strong,address{
	font-weight: normal;
}
a[href^="tel"]{
    text-decoration: none;
}
figure{
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .sp-ib,
    .sp.sp-ib{
        display: inline-block;
    }
}

@media screen and (max-width: 480px) {
    .sp.sp-ib{
        display: inline-block;
    }
}

/* -------------------------------------
webフォント
-------------------------------------*/
.webf{
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
}
.webf.fw-b{
	font-weight: 700;
}
.icomoon{
	font-family: "icomoon";
}
/*英語*/
.webf-en{
	font-family: 'Anton', sans-serif;
	font-weight: 400;
}
/*電話番号*/
.webf-tel{
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
}





/* -------------------------------------
padding
-------------------------------------*/
body .pt10{
	padding-top: 10px;
}
body .pt20{
	padding-top: 20px;
}
body .pt30{
	padding-top: 30px;
}
body .pt40{
	padding-top: 40px;
}
body .pt50{
	padding-top: 50px;
}
body .pt80{
	padding-top: 80px;
}
body .pb10{
	padding-bottom: 10px;
}
body .pb20{
	padding-bottom: 20px;
}
body .pb30{
	padding-bottom: 30px;
}
body .pb40{
	padding-bottom: 40px;
}
body .pb50{
	padding-bottom: 50px;
}
body .pb80{
	padding-bottom: 80px;
}
body .pall30 {
	padding: 30px;
}
body .pall40 {
	padding: 40px;
}
body .pall50 {
	padding: 50px;
}

@media screen and (max-width: 768px) {
	body .pt40{
		padding-top: 30px;
	}
	body .pt50{
		padding-top: 30px;
	}
	body .pt80{
		padding-top: 40px;
	}
	body .pb40{
		padding-bottom: 30px;
	}
	body .pb50{
		padding-bottom: 30px;
	}
	body .pb80{
		padding-bottom: 40px;
	}
    body .pall30 {
    	padding: 20px;
    }
    body .pall40 {
    	padding: 20px;
    }
    body .pall50 {
    	padding: 20px;
    }
}


/* -------------------------------------
font 必要なら追加　優先順位：高
-------------------------------------*/
body .fw-b {
	font-weight: bold;
}
body .fs14{
	font-size: 0.87rem;/*13*/
}
body .fs15{
	font-size: 0.94rem;/*14*/
}
body .fs16{
	font-size: 16px;/*16*/
}
body .fs17{
	font-size: 17px;/*16*/
}
body .fs18{
	font-size: 18px;/*16*/
}
body .fs20{
	font-size: 20px;/*16*/
}
body .fs22{
	font-size: 22px;/*16*/
}
body .fs24{
	font-size: 24px;/*18*/
}
body .fs26{
	font-size: 26px;/*20*/
}
body .fs28{
	font-size: 28px;/*20*/
}
body .fs30{
	font-size: 30px;/*28*/
}
body .fs32{
	font-size: 32px;/*28*/
}
body .fs35{
	font-size: 35px;/*28*/
}
body .fs40{
	font-size: 40px;/*36*/
}
body .fs44{
	font-size: 44px;/*36*/
}
body .fs46{
	font-size: 46px;/*40*/
}
body .fs50{
	font-size: 50px;/*40*/
}
body .fs54{
	font-size: 54px;/*42*/
}
body .fs60{
	font-size: 60px;/*42*/
}
body .fs70{
	font-size: 70px;/*42*/
}

@media screen and (max-width: 768px) {
	body .fs16{
		font-size: 15px;/*16*/
	}
	body .fs17{
		font-size: 15px;/*16*/
	}
	body .fs18{
		font-size: 15px;/*16*/
	}
	body .fs20{
		font-size: 16px;/*16*/
	}
	body .fs22{
		font-size: 16px;/*16*/
	}
	body .fs24{
		font-size: 18px;/*18*/
	}
	body .fs26{
		font-size: 22px;/*20*/
	}
	body .fs28{
		font-size: 24px;/*20*/
	}
	body .fs30{
		font-size: 26px;/*28*/
	}
	body .fs32{
		font-size: 28px;/*28*/
	}
	body .fs35{
		font-size: 30px;/*28*/
	}
	body .fs40{
		font-size: 36px;/*36*/
	}
	body .fs44{
		font-size: 36px;/*36*/
	}
	body .fs46{
		font-size: 40px;/*40*/
	}
	body .fs50{
		font-size: 42px;/*40*/
	}
	body .fs54{
		font-size: 42px;/*42*/
	}
	body .fs60{
		font-size: 46px;/*42*/
	}
	body .fs70{
		font-size: 48px;/*42*/
	}
}

@media screen and (max-width: 480px) {
	body .fs26{
		font-size: 20px;/*20*/
		font-size: 5vw;/*18*/
	}
	body .fs28{
		font-size: 24px;/*20*/
		font-size: 5vw;/*18*/
	}
	body .fs30{
		font-size: 28px;/*28*/
		font-size: 5vw;/*18*/
	}
	body .fs32{
		font-size: 28px;/*28*/
		font-size: 6vw;/*18*/
	}
	body .fs35{
		font-size: 5.8vw;/*28*/
		font-size: 6vw;/*18*/
	}
	body .fs40{
		font-size: 36px;/*36*/
		font-size: 7vw;/*26*/
	}
	body .fs44{
		font-size: 36px;/*36*/
		font-size: 7vw;/*26*/
	}
	body .fs46{
		font-size: 40px;/*40*/
		font-size: 7vw;/*26*/
	}
	body .fs50{
		font-size: 5.8vw;/*40*/
		font-size: 7vw;/*26*/
	}
	body .fs54{
		font-size: 42px;/*42*/
		font-size: 7vw;/*26*/
	}
	body .fs60{
		font-size: 8.8vw;/*42*/
	}
	body .fs70{
		font-size: 42px;/*42*/
		font-size: 8.8vw;/*42*/
	}
}



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

/* -------------------------------------
セクション
-------------------------------------*/
body main{
    margin-top: 100px;
/*	padding-top: 1px;*/
}
body section,
body aside{
	padding: 1px calc((100vw - 1000px) / 2);
    position: relative;
/*  z-index: 1;*/
}
body section>*,
body aside>*{
	position: relative;
	z-index: 2;
}

@media screen and (max-width: 768px) {
    body main{
        margin-top: 50px;
    }
	body section,
	body aside{
		width:100%;
		padding: 1px 0;
	}
}


/* -------------------------------------
レイアウト
-------------------------------------*/
section>div{
	position: relative;
}
.w100vw{
	margin-left: calc( ( 100% - 100vw ) / 2 );
	margin-right: calc( ( 100% - 100vw ) / 2 );
	position: relative;
}
.w980{
	position: relative;
}
.relarive{
	position: relative;
}

@media screen and (max-width: 979px) {
	.w100vw{
		margin-left: calc( ( 100% - 100vw ) / 2 * -1 );
		margin-right: calc( ( 100% - 100vw ) / 2 * -1 );
		position: relative;
	}
}
@media screen and (max-width: 768px) {
	.w100vw{
		margin-left: -5vw;
		margin-right: -5vw;
	}
}



/* -------------------------------------
背景
-------------------------------------*/
.bg-white{
	background: #fff;
}
.bg-nvy{
	background: #272763;
}
.bg-gray{
	background: #8b8b95;
}
.bg-ptn{
	background: url(/images/bg-ptn.jpg);
}


/* 220314追加 */
.bg-blue{
	background: #185BAE;
}
.bg-blue_l{
	background: #d1deef;
}
.bg-gray_l{
	background: #ececec;
}






/* -------------------------------------
bg-photo
-------------------------------------*/
.bg-photo{
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
}
/*
.bg-photo::before{
    content: "";
    display: block;
    width:100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.7);
    mix-blend-mode:multiply;
}
*/
.bg-photo>*{
    position: relative;
}

@media screen and (max-width: 768px) {
	.bg-photo{
	}
}


/* -------------------------------------
色
-------------------------------------*/
body .white{
  color: #fff;
}
body .nvy{
  color: #272763;
}
body .sky{
  color: #9feaff;
}

/* 220314追加 */
.blue{
	color: #185BAE;
}
.blue_l{
	color: #d1deef;
}


/* -------------------------------------
タイトル
-------------------------------------*/
/*ページタイトル*/
.titZ{
	height: 378px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	background-image: url(images/titz.jpg);
}
.titZ:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	/* background:rgba(39, 39, 99,0.5); */
	background:rgba(39, 39,60,0.5);
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	left: 0;
}
.titZ > *{
	position: relative;
	z-index: 2;
}
.titZ .inner{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	margin-top: 30px;
}
.titZ em{
	margin: 0 0 -20px 0px;
    font-family: 'Anton', sans-serif;
    font-size: 180px;
    color: #ececec;
    font-weight: 400;
    line-height: 1.0;
    opacity: .2;
}

.titZ h2{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 600px;
	height: 90px;
	padding: 0 30px 0 100px;
	font-family: 'Noto Serif JP', serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.1;
	background: rgba(159,234,255,.9);
	position: relative;
	-webkit-transform: skewX(-33deg);
	transform: skewX(-33deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.titZ h2 span {
    display: inline-block;
    -webkit-transform: skewX(33deg);
    transform: skewX(33deg);
}

/*アニメーション*/
.titZ .inner {
    opacity: 0;
    -webkit-animation-name: titZ-inner;
    animation-name: titZ-inner;
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes titZ-inner {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-600px);
    transform: translateX(-600px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes titZ-inner {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-600px);
    transform: translateX(-600px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}


@media screen and (max-width: 768px) {
    /*ページタイトル*/
    .titZ{
        height: 40vw;
    }
    .titZ .inner{
        margin-top: 15vw;
    }
    .titZ em{
        margin: 0;
        font-size: 120px;
        position: absolute;
        right: 0;
        bottom: -14vw;
    }
    .titZ h2{
        max-width: 360px;
        width: 60vw;
        height: 14vw;
        max-height: 90px;
        padding: 0 20px 0 50px;
        font-size: 30px;
        -webkit-transform: skewX(-26deg);
        transform: skewX(-26deg);
    }
    .titZ h2 span {
        -webkit-transform: skewX(26deg);
        transform: skewX(26deg);
    }
}

@media screen and (max-width: 480px) {
    .titZ em{
        font-size: 100px;
    }
    .titZ h2{
        max-width: 360px;
        width: 60vw;
        height: 14vw;
        max-height: 90px;
        padding: 0 10px 0 30px;
        font-size: 6vw;
    }
}


/*titA*/
.titA{
    font-family: 'Noto Serif JP', serif;
	font-weight: 700;
    text-align: center;
	line-height: 1.2;
}
.titA.en{
	font-family: 'Anton', sans-serif;
	font-weight: 400;
}
.titA.fw-m{
	font-weight: 500;
}
.titA.fs50{
	line-height: 1.1;
}


/*titB*/


@media screen and (max-width: 768px) {
	/*titB*/
}




/* -------------------------------------
tit-balloon
-------------------------------------*/
.tit-balloon {
	text-align: center;
}
.tit-balloon span{
	display: inline-block;
	padding: 16px 30px;
	color: #fff;
	text-align: center;
	background: #000097;
	position: relative;
}
.tit-balloon span::after{
	content: "";
	display: block;
	width: 100%;
	height: 28px;
	background: url(/images/balloon.svg) no-repeat center top / auto 100%;
	position: absolute;
	left: 0;
	bottom: -26px;
	z-index: 1;
}



/* -------------------------------------
btn
-------------------------------------*/
.btn-wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.btn{
	display: block;
	width: 200px;
	padding:14px 20px 14px 5px;
	text-align: center;
    line-height: 1.2;
	cursor: pointer;
	color: #272763;
	background: #ffff3b;
    text-decoration: none;
	position: relative;
	-webkit-transition: ease .7s;
	transition: ease .7s;
	z-index: 1;
}
.btn::before{
    content: "\e5cc";
    margin: auto 0;
    height: 1em;
    font-family: 'Material Icons';
    font-size: 1.4em;
    line-height: 1.0;
    position: absolute;
    top: 0;
    right: 2px;
    bottom: 0;
    -webkit-transition: ease .5s;
    transition: ease .5s;
}

/*エフェクト追加*/
.btn{
	overflow: hidden;
}
.btn::after{
	content: '';
	background: #9feaff;
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	height: 120%;
	left:0;
	top: 0;
	-webkit-transform: skew(-50deg);
	transform: skew(-50deg);
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transform-origin: top left;
	transform-origin: top left;
	width: 0;
}.btn:hover::after {
	height: 100%;
	width: 140%;
}


@media screen and (max-width: 768px) {
	.btn-wrap.jc_fs,
	.btn-wrap.jc_fe{
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}

/* -------------------------------------
文字
-------------------------------------*/
.lh2{
	line-height: 2.0;
}
.lh15{
	line-height: 1.5;
}
.lh13{
	line-height: 1.3;
}
.ib{
	display: inline-block;
	font-weight: inherit;
}
strong{
	font-weight: bold;
}


@media screen and (max-width: 768px) {
	.lh2{
		line-height: 1.7;
	}
}


/* -------------------------------------
lead
-------------------------------------*/
.lead{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
	text-align: center;
	font-size: 16px;
}

@media screen and (max-width: 768px) {
	.lead{
		width: 100%;
		max-width: 90vw;
		font-size: 15px;
	}
}


/* -------------------------------------
公開日
-------------------------------------*/
.time{
	font-size: 14px;
	display: inline-block;
	margin: 0 2px;
	vertical-align:middle;
	padding:5px 0;
	line-height: 1.0;
}

@media screen and (max-width: 768px) {
    .time{
        font-size: 11px;
    }
}


/* -------------------------------------
boxLR
-------------------------------------*/
.boxLR{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 10px auto;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}


/* -------------------------------------
flame
-------------------------------------*/
.flame{
	border: 6px solid #fff;
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
    box-shadow: 0 0 5px rgba(0,0,0,.3);
}


/* -------------------------------------
gmap
-------------------------------------*/
.gmap{
    position: relative;
    padding-bottom: 390px;
    height: 0;
    overflow: hidden;
}
.gmap iframe, .gmap object, .gmap embed{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .gmap{
        padding-bottom: 35vh;
    }
}


/* -------------------------------------
その他色々
-------------------------------------*/
figcaption{
	margin: 10px auto;
	line-height: 1.3;
}
/*
li{
    line-height: 1.5;
}
*/
.ojf{
	width: 100px;
	height: 100px;
	object-fit: cover;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';  /*IE対策*/
}
table th{
    line-height: 1.2;
}
.radius{
    border-radius: 10px;
}
.z1{
	z-index: 1;
}

.flx{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}.flx .inner{
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
a:hover img.hv{
	opacity: .8;
}



/* -------------------------------------
フォーム table
-------------------------------------*/
.table table{
	width: 100%;
    margin: 30px auto;
	background: #ececec;
}
.table tr{
	border-bottom: 5px solid #fff;
}
.table th,
.table td{
	padding: 24px 20px;
	text-align: left;
	position: relative;
}
.table th{
	width: 35%;
	font-size: 1.2em;
	font-weight: bold;
}
.table td{
}

@media screen and (max-width: 768px) {
	.table table,
	.table tbody,
	.table tr,
	.table th,
	.table td{
		display: block;
/*		border: none;*/
	}
	.table th{
		width: 100%;
		padding: 14px 10px 4px;
	}
	.table td{
		padding: 0 10px 12px;
	}
}



/* -------------------------------------
tableA　背景：カラーと白のてれこ（奇数＝カラー）
-------------------------------------*/
.tableA table,
table.tableA{
    width: 100%;
    border-top: 1px dotted #381c01;
}
.tableA tr{
    border-bottom: 1px dotted #381c01;
}
.tableA tr:nth-of-type(odd){
    background: yellow;
	background: none;
}
.tableA tr:nth-of-type(even){
    background: #fff;
	background: none;
}
.tableA th,
.tableA td{
    padding: 20px 16px;
    vertical-align: top;
    text-align: left;
}
.tableA th{
    width: 20%;
	font-weight: bold;
}
.tableA td a:hover{
}

@media screen and (max-width: 768px) {
    .tableA th,
    .tableA td{
        padding: 8px 10px;
        font-size: 14px;
    }
    .tableA th{
        min-width: 6em;
        font-size: 0.9rem;
        font-size: 13px;
    }
}


/* -------------------------------------
tableB　･･･スマホもth＝w:25%
-------------------------------------*/
.tableB table,
table.tableB{
    width: 100%;
    border-top: 1px solid #272763;
/*    background: #fff;*/
/*	border: 1px solid #272763;*/
}
.tableB tr{
    border-bottom: 1px solid #272763;
}
.tableB th,
.tableB td{
    padding:16px 20px;
    vertical-align: top;
    text-align: left;
}
.tableB th{
    width: 25%;
	color: #272763;
/*    background: #000097;*/
}
.tableB td a:hover{
}

@media screen and (max-width: 768px) {
    .tableB th,
    .tableB td{
        padding: 8px 10px;
        font-size: 14px;
    }
    .tableB th{
		width: 36%;
        min-width: 6em;
        font-size: 0.9rem;
        font-size: 13px;
    }
}


/* -------------------------------------
tableC･･･スマホ th=w:100%
-------------------------------------*/
.tableC table,
table.tableC{
    width: 100%;
/*    border-top: 1px dotted red;*/
}
.tableC tr{
/*    border-bottom: 1px dotted red;*/
}
.tableC th,
.tableC td{
	display: block;
    vertical-align: top;
    text-align: left;
}
.tableC td{
	padding:10px 0 30px;
}

@media screen and (max-width: 768px) {
    .tableC th,
    .tableC td{
        font-size: 14px;
    }
    .tableC td{
		padding: 4px 0 20px;
    }
}



/* -------------------------------------
カテゴリボタン
-------------------------------------*/
.catBtn{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin:  25px auto;
}
.catBtn a{
    position: relative;
    display: block;
    margin: 5px;
    padding: 10px 40px 10px 20px;
    min-width: 8em;
    line-height: 1.2;
    border: 1px solid #9feaff;
    background: #9feaff;
    color: #272763;
    text-align: left;
    font-weight: bold;
/*    border-radius:4px;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.catBtn a:after{
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\e5cc";
    font-family: 'Material Icons';
}
.catBtn a:hover{
    background: #ffff3b;
    border-color: #ffff3b;
}

@media screen and (max-width: 768px) {
/*
    .catBtn{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin:  20px auto;
        width: 90%;
        max-width: 480px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .catBtn a{
        margin: 0 0 8px;
        padding: 10px 15px 10px 10px;
        min-width: 8em;
        width: 49%;
        width: 27%;
        font-size: 0.87rem;
    }
*/
    .catBtn{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin:  20px auto;
        width: 90%;
        max-width: 480px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
    }
    .catBtn a{
        margin: 0 4px 8px;
        padding: 4px 15px 4px 10px;
        min-width: 8em;
        width: 30%;
        /*max-width: 160px;*/
        font-size: 0.7rem;
		font-weight: normal;
		min-height: 3.0em;
    }
    .catBtn a:after{
        right: 5px;
    }
}


/* -------------------------------------
カテゴリ（採用）
-------------------------------------*/
/*背景あり*/
.ctgr{
	display: inline-block;
	font-size: 14px;
	margin: 0 2px;
	padding: 8px 10px;
	position: relative;
	line-height: 1.0;
	vertical-align:middle;
    background:#000 ;
    color: #fff;
/*    border-radius: 3px;*/
}

/*カッコで囲む*/
/*
.ctgr{
	display: inline-block;
	font-size: 12px;
	position: relative;
	line-height: 1.0;
}
.ctgr::before{
    content: "[";
    margin-right: 5px;
}
.ctgr::after{
    content: "]";
    margin-left: 5px;
}
*/


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



/* -------------------------------------
richtext
-------------------------------------*/
.richtext p a,
a.dotted{
    border-bottom: 1px dotted #40220f;
    text-decoration: none;
}
.richtext p a[href^="tel"]{
    border-bottom: none;
}

.richtext.b-bdr strong{
	padding-bottom: 4px;
	border-bottom: 1px solid #b80000;
}



/* -------------------------------------
deco
-------------------------------------*/
.deco{
	pointer-events: none;
	z-index: 0;
}

@media screen and (max-width: 768px) {
	.deco img{
		max-width: 120%;
	}
}


/* -------------------------------------
フォーム
-------------------------------------*/
input[type="text"][name="input[company]"]+.owlet-input-sample{
	color: #b80000;
}


/* -------------------------------------
採用詳細
-------------------------------------*/
main.rec-detail{
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    main.rec-detail{
        margin-top: 80px;
    }
}


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

/* -------------------------------------
fadein 下から
-------------------------------------*/
.fadein {
  opacity : 0;
  transform : translate(0, 100px);
  transition : all .5s;
}
.fadein.active{
  opacity : 1;
  transform : translate(0, 0);
}
/*左から*/
.fadein.fi-L {
  transform : translate(-800px, 0);
  transition : all .5s;
	position: absolute;
	left: 0;
}
.fadein.fi-L.active{
  transform : translate(0, 0);
}

/*右から*/
.fadein.fi-R {
  transform : translate(800px, 0);
  transition : all .5s;
	position: absolute;
	right: 0;
}
.fadein.fi-R.active{
  transform : translate(0, 0);
}


@media screen and (max-width: 768px) {
	/*右から*/
	.fadein.fi-R {
		right: 20%;
	}
}



/* -------------------------------------
モーダルウィンドウ
-------------------------------------*/
.modaal-inner-wrapper{
    background: rgba(39,39,99,.3);
}
.modaal-close:focus,
.modaal-close:hover{
    background: #ffff3b;
}
.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
    background: #272763;
}

@media screen and (max-width: 768px) {
    .modaal-content-container{
        max-height: 88vh;
        overflow: scroll;
    }
}

/*widget:e0c55e7b-5fee-4700-9fad-ca12ba6b4e55*/[data-lib="260"]{width: 100%;
	min-width: 1000px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	background: #fff;
	display: flex;
	justify-content: space-between;}[data-lib="260"] h1{position: absolute;
	left: 16px;
	top: 10px;}[data-lib="260"] .logo{display: block;
	width: 314px;
	margin:40px auto 16px 16px;}[data-lib="260"] .logo img{width: 100%;}[data-lib="260"] nav{display: flex;}[data-lib="260"] nav ul.menu1{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 50px;}[data-lib="260"] nav ul.menu1 li{flex: 1;
	border-left: 1px solid #8b8b95;
	position:relative;}[data-lib="260"] nav ul.menu1 li a{display: block;
	width: 100px;
	font-weight: bold;
	line-height: 50px;
	text-align: center;
	position: relative;
	-webkit-transition: ease .7s;
	transition: ease .7s;
	z-index: 1;
	overflow: hidden;}[data-lib="260"] nav ul.menu1 li a::after{content: '';
	background: #9feaff;
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	height: 120%;
	left: -75%;
	top: 0;
	-webkit-transform: skew(50deg);
	transform: skew(50deg);
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transform-origin: top left;
	transform-origin: top left;
	width: 0;}[data-lib="260"] nav ul.menu1 li a:hover::after{height: 100%;
	width: 180%;}[data-lib="260"] nav .menu2{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;}[data-lib="260"] nav .menu2 a{width: 100px;
	padding-top: 60px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	transition: 0.3s;}[data-lib="260"] nav .menu2 a:hover{position: relative;
	overflow: hidden;
	opacity: .8;}[data-lib="260"] nav .menu2 a:after{visibility: hidden;
	position: absolute;
	left: -72px;
	top: 0;
	height: 120%;
	content: "";
	-ms-transform: skew(-45deg);
	-webkit-transform: skew(-45deg);
	transform: skew(-45deg);
	border-left: solid 30px rgba(255,255,255,0.2);}[data-lib="260"] nav .menu2 a:hover:after{visibility: visible;
	left: 140%;
	-webkit-transition: left 200ms linear;
	transition: left 200ms linear;}[data-lib="260"] nav .menu2 a i img{width: 20px;
	margin-right: 6px;
	vertical-align: middle;
	transform: translateY(-2px);}[data-lib="260"] nav .menu2 a.menu2-toi{color: #185BAE;
	background: #E2E2E2;}[data-lib="260"] nav .menu2 a.menu2-rec{background: #185BAE;}[data-lib="260"] a[href^="tel"]{font-weight: bold;
	position: absolute;
	right: 210px;
	top: 10px;}[data-lib="260"] a[href^="tel"] i img{margin-right: 6px;
	vertical-align: middle;
	transform: translateY(-2px);}[data-lib="260"] a.insta{display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	right: 390px;
	top: 14px;}[data-lib="260"] a.insta img{max-width: 100%;}@media screen and (max-width: 979px) {[data-lib="260"] nav ul.menu1{margin-left: calc( ( 100% - 100vw ) / 2 * -1);
	margin-right: calc( ( 100% - 100vw ) / 2 * -1);}}@media screen and (max-width: 768px) {[data-lib="260"]{display: block;
	min-width: auto;}[data-lib="260"] .logo{width: calc(100vw - 140px - 40px);
	max-width: 290px;
	margin:0;
	padding: 12px 0 0 5vw;
	height: 50px;}[data-lib="260"] .logo img{width: auto;}[data-lib="260"] #menu{position: fixed;
	top: 0;
	right: 0;
	z-index: 1500;
	width: 50px;
	height: 50px;
	background: #185BAE;
	text-align: center;
	line-height: 1.0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;}[data-lib="260"] #menu:before{color: #fff;
	content: "\e3c7";
	font-size: 30px;
	font-family: 'Material Icons';
	line-height: 40px;}[data-lib="260"].on #menu:before{content: "\e5cd";}[data-lib="260"] #menu:after{display: block;
	margin: -6px auto;
	color: #fff;
	content: "MENU";
	font-size: 10px;
	font-weight: bold;}[data-lib="260"].on #menu:after{content: "CLOSE";}[data-lib="260"] nav{display: block;
	display: none;
	width: 100% !important;
	background: #185BAE;
	height: calc(100vh - 50px);
	overflow-y: scroll;}[data-lib="260"] nav ul.menu1{display: block;
	width: 80%;
	margin: 0 auto;
	padding: 20px 0;
	font-size: 15px;
	border-right: none;}[data-lib="260"] nav ul.menu1 li{border-left:none;}[data-lib="260"] nav ul.menu1 li a{display: block;
	width: 100%;
	padding: 10px 10%;
	color: #fff;
	line-height: 1.2;
	border-left: none;}[data-lib="260"] nav ul.menu1 li a::after{display:none;}[data-lib="260"] nav .menu2{display: block;}[data-lib="260"] nav .menu2 a{display: block;
	width: 80%;
	margin: 0 auto 20px;
	padding: 10px;}[data-lib="260"] nav .menu2 a i img{margin-right: 6px;
	transform: translateY(-2px);}[data-lib="260"] nav .menu2 a.menu2-rec{border:1px solid #fff;}[data-lib="260"] a[href^="tel"]{position: fixed;
	top: 0;
	right: 50px;
	z-index: 1500;
	width: 50px;
	height: 50px;
	padding: 6px 0 0;
	background: #8b8b95;
	text-align: center;
	line-height: 1.0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;}[data-lib="260"] a[href^="tel"] i{display: inline-block;
	text-align: center;}[data-lib="260"] a[href^="tel"] i img.sp{width: 24px;
	margin:0;
	vertical-align: middle;
	transform: translateY(0px);}[data-lib="260"] a[href^="tel"]:after{display: block;
	margin: 2px auto 0;
	color: #fff;
	content: "TEL";
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", "Yu Gothic", 游ゴシック, 游ゴシック体, メイリオ, meiryo, sans-serif;
	font-size: 10px;
	font-weight: bold;}[data-lib="260"] a.insta{width: 38px;
	height: 38px;
	right: 108px;
	top: 6px;}}[data-instance="94"]{background-image:url(/_img/ja/cms/94/bg_image/_/);}/*widget:bf117c75-d50c-499a-bc37-1b02cc0d89b4*/[data-lib="865"] .category{display: flex;
	justify-content: center;
	flex-flow: row-reverse;
	align-items: center;
	margin:0 5%;
	text-align:center;}[data-lib="865"] .time{display: block;
	margin: 5px 10px;}[data-lib="865"] .ctgr{margin:5px 10px;
	color: #272763;
	background:#9feaff;}[data-lib="865"] figure{margin: 20px 0;}[data-lib="865"] .youtube{margin: 20px 0;}[data-lib="865"] .richtext{margin: 20px 0;
	padding:0 10%;}[data-lib="865"] .entry-content{border:1px dotted #9feaff;
	padding:20px 30px;
	margin:50px 10% 0;}[data-lib="865"] .entry-content dt{text-align:center;
	font-weight: bold;
	font-size: 1.1em;
	padding-bottom: 10px;
	border-bottom: 1px dotted #9feaff;}[data-lib="865"] .entry-content dd{counter-increment: list;
	padding:15px 0 0 1.2em;
	text-indent: -1.2em;}[data-lib="865"] .entry-content dd:before{content: counter(list)". ";}[data-lib="865"] .entry-content dd a{text-decoration: underline;}[data-lib="865"] .entry-content dd a:hover{text-decoration: none;}[data-lib="865"] .fixnum{padding:1px 0;}[data-lib="865"] .fixnum .titE{margin: 50px auto 30px;
	position: relative;}[data-lib="865"] .sns{display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px 0;
	flex-wrap: wrap;
	display: none;}[data-lib="865"] .sns > *{margin: 0 5px 5px 0;
	color: #fff;
	padding: 3px 0;
	width: 100px;
	font-size: 13px;
	text-align: center;
	border-radius: 5px;}[data-lib="865"] .sns  i{margin: 0 5px 0 0;}[data-lib="865"] .sns .line{background: #00b900;}[data-lib="865"] .sns .line i{width: 20px;
	height: 20px;
	overflow:hidden;
	display: inline-block;
	position: relative;
	vertical-align: middle;}[data-lib="865"] .sns .line i:before{position: absolute;
	top: -5px;
	left: -5px;
	color: #00b900;
	background: #fff;
	font-size: 30px;}[data-lib="865"] .sns .gb{background: #3a5b97;}[data-lib="865"] .sns .ht{background: #4e73b5;}[data-lib="865"] .sns .pk{background: #ec4058;}[data-lib="865"] .sns .pr{background: #d7071d;}[data-lib="865"] .sns .tw{background: #50aff0;}@media screen and (max-width: 768px){[data-lib="865"] .richtext{margin: 20px 0;
	padding:0 4%;
	font-size: 0.9em;
	line-height: 1.8;}[data-lib="865"] .entry-content{padding:15px;
	margin:30px 5% 0;
	font-size: 0.9em;}[data-lib="865"] .entry-content dt{text-align:center;
	font-weight: bold;
	font-size: 0.9em;
	padding-bottom: 10px;
	border-bottom: 1px dotted #381c01;}}/*widget:05c04225-fc34-4f93-97db-d6426f2142e2*/[data-lib="926"] .box2C{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;}[data-lib="926"] .box2C > *{width: 48%;}[data-lib="926"] .box2C:after{display: block;
	width: 48%;
	content: "";}[data-lib="926"] .box3C{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;}[data-lib="926"] .box3C > *{width: 32%;}[data-lib="926"] .box3C:after{display: block;
	width: 32%;
	content: "";}[data-lib="926"] .box4C{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;}[data-lib="926"] .box4C > *{width: 24.5%;}[data-lib="926"] .box4C:after,[data-lib="926"] 
.box4C:before{display: block;
	width: 24.5%;
	content: "";}[data-lib="926"] .box4C:before{-webkit-box-ordinal-group:2;
	-ms-flex-order:1;
	order:1;}[data-lib="926"] .h-text-img{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left:auto;
	margin-right: auto;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;}[data-lib="926"] .h-text-img.right{-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row;
	flex-flow: row;}[data-lib="926"] .h-text-img.left{-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-flow: row-reverse;
	flex-flow: row-reverse;}[data-lib="926"] .h-text-img.center_t{-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-flow: column-reverse;
	flex-flow: column-reverse;}[data-lib="926"] .h-text-img.center_b{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;}[data-lib="926"] .h-text-img figure{-webkit-box-flex:0;
	-ms-flex:none;
	flex:none;}[data-lib="926"] .h-text-img.right figure{margin-left: 30px;
	width: 55%;}[data-lib="926"] .h-text-img.left figure{margin-right: 30px;}[data-lib="926"] .h-text-img.center_t figure{margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;}[data-lib="926"] .h-text-img.center_b figure{margin-left: auto;
	margin-right: auto;
	margin-top: 20px;}[data-lib="926"] .h-text-img　figure.w50p{width: 50%;}[data-lib="926"] .h-text-img .text{-webkit-box-flex:1;
	-ms-flex:1;
	flex:1;}[data-lib="926"] .pdf{width: 100%;
	margin:30px auto;
	text-align: center;}[data-lib="926"] .count li{counter-increment: li;}[data-lib="926"] .count li::after{content: counter(li);}[data-lib="926"] .column ul{-webkit-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 10%;
	column-gap: 10%;}[data-lib="926"] .column ul li{width: 100%;}[data-lib="926"] .tate{-ms-grid-row: 1;
	-ms-grid-column: 2;
	grid-area: h_area_desc;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
	text-orientation: upright;}[data-lib="926"] .btn-toi{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 44px;
	color: #fff;
	text-align: center;
	background: #000;
	border: 4px double #fff;}[data-lib="926"] .btn-toi img{margin-right: 4px;}[data-lib="926"] .btn-toi:hover{background: #000097;}[data-lib="926"] .i-count{display: block;
	color: #000097;
	font-family: 'Noto Serif JP', serif;
	font-size: 14px;
	font-style: italic;}[data-lib="926"] .i-count::after{display: inline-block;
	margin-left: 0.2em;
	font-size: 1.4em;
	transform: translateY(2px);}[data-lib="926"] .z-box li{display: flex;
	flex-flow: row;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 50px;}[data-lib="926"] .count.z-box li::after{display: none;}[data-lib="926"] .z-box li .inner{width: 376px;
	padding: 30px;
	background: rgba(255,255,255,.6);
	border:1px solid #999;
	transform: translateX(90px);
	z-index: 1;}[data-lib="926"] .z-box li h4{margin-top: 0;
	font-family: 'Noto Serif JP', serif;
	color: #000097;}[data-lib="926"] .count.z-box li i{margin-bottom: 8px;}[data-lib="926"] .count.z-box li i::after{content: counter(li, decimal-leading-zero);}[data-lib="926"] .z-box li figure{width: 600px;
	margin-top: 115px;
	position: relative;
	overflow: visible;
	z-index: 0;}[data-lib="926"] .z-box li figure::before{content: "";
	display: block;
	width: calc(100vw - ((100vw - 980px) / 2));
	height: 100px;
	background: url(/images/bg-ptn.jpg);
	position: absolute;
	right: calc(((100vw - 980px) / 2) * -1);
	bottom: 0;
	z-index: -1;}[data-lib="926"] .z-box li:nth-child(even){flex-flow: row-reverse;}[data-lib="926"] .z-box li:nth-child(even) figure::before{right: auto;
	left: calc(((100vw - 980px) / 2) * -1);}[data-lib="926"] .z-box li:nth-child(even) .inner{transform: translateX(-90px);}[data-lib="926"] .z-box.z-50p li .inner,[data-lib="926"] 
.z-box.z-50p li figure{width: 450px;}[data-lib="926"] .frame-box{margin-bottom: 50px;
	padding: 40px;
	background: #fff;
	border: 1px solid #000;
	position: relative;}[data-lib="926"] .frame-box::before{content: "";
	display: block;
	width: 100%;
	height: 100%;
	border:1px solid #7f7f7f;
	position: absolute;
	left: 4px;
	top: 4px;
	pointer-events: none;}[data-lib="926"] .box2C .frame-box{padding: 20px;}[data-lib="926"] .box2C .frame-box>*{margin-bottom: 14px;}[data-lib="926"] .contents-box{padding:50px;
	background: #fff;
	border: 1px solid #000097;}@media  screen and (max-width: 768px){[data-lib="926"] .box2C{width: 100%;}[data-lib="926"] .box2C.box1C_sp{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;}[data-lib="926"] .box2C.box2C_sp{-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;}[data-lib="926"] .box2C.box1C_sp > *{width: 100%;}[data-lib="926"] .box2C.box1C_sp:after{display: none;}[data-lib="926"] .box2C.box2C_sp > *,[data-lib="926"] 
	.box2C.box2C_sp::after{width: 48%;}[data-lib="926"] .box3C{width: 100%;}[data-lib="926"] .box3C.box1C_sp{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;}[data-lib="926"] .box3C.box2C_sp{-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;}[data-lib="926"] .box3C.box3C_sp{-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;}[data-lib="926"] .box3C.box1C_sp > *{width: 100%;}[data-lib="926"] .box3C.box1C_sp:after{display: none;}[data-lib="926"] .box3C.box2C_sp > *,[data-lib="926"] 
	.box3C.box2C_sp::after{width: 48%;}[data-lib="926"] .box3C.box3C_sp > *,[data-lib="926"] 
	.box3C.box3C_sp::after{width: 31%;}[data-lib="926"] .box4C{width: 100%;}[data-lib="926"] .box4C.box1C_sp{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;}[data-lib="926"] .box4C.box2C_sp{-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;}[data-lib="926"] .box4C.box1C_sp > *{width: 100%;}[data-lib="926"] .box4C.box2C_sp > *{width: 48%;}[data-lib="926"] .box4C:after,[data-lib="926"] 
	.box4C:before{display: none;}[data-lib="926"] .h-text-img.right.top,[data-lib="926"] 
    .h-text-img.left.top,[data-lib="926"] 
    .h-text-img.center_b.top{-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-flow: column-reverse;
	flex-flow: column-reverse;
	align-items:center;}[data-lib="926"] .h-text-img.right figure{margin-left: 20px;
	width: 45%;}[data-lib="926"] .h-text-img.left figure{margin-right: 20px;}[data-lib="926"] .h-text-img.center_t figure{margin-bottom: 20px;}[data-lib="926"] .h-text-img.center_b figure{margin-top: 20px;}[data-lib="926"] .h-text-img.right.top figure,[data-lib="926"] 
	.h-text-img.left.top figure{margin-left: auto;
	margin-right: auto;}[data-lib="926"] .pdf{margin:20px auto;}[data-lib="926"] .column ul{-webkit-column-count: 1;
	column-count: 1;
	-webkit-column-gap: 0%;
	column-gap: 0%;}[data-lib="926"] .column.richtext ul li{width: auto;}[data-lib="926"] .i-count{font-size: 12px;}[data-lib="926"] .z-box{width: 100vw;
	margin-left: -5%;}[data-lib="926"] .z-box li{flex-flow: row wrap;
	margin-bottom: 50px;}[data-lib="926"] .z-box li .inner{width: 80%;
	padding: 20px;
	transform: translateX(5%);}[data-lib="926"] .count.z-box li i{margin-bottom: 8px;}[data-lib="926"] .z-box li figure{width: 60vw;
	margin-top: -50px;
	transform: translateX(40vw);}[data-lib="926"] .z-box li figure::before{width: 100vw;
	height: 50px;
	right: 0;}[data-lib="926"] .z-box li:nth-child(even){flex-flow: row-reverse wrap;}[data-lib="926"] .z-box li:nth-child(even) .inner{transform: translateX(-5%);}[data-lib="926"] .z-box li:nth-child(even) figure{transform: translateX(-40vw);}[data-lib="926"] .z-box li:nth-child(even) figure::before{left: 0;}[data-lib="926"] .z-box.z-50p li .inner{width: 80%;}[data-lib="926"] .z-box.z-50p li figure{width: 60vw;}[data-lib="926"] .frame-box{margin-bottom: 30px;
	padding: 20px;}[data-lib="926"] .frame-box::before{left: 2px;
	top: 2px;
	pointer-events: none;}[data-lib="926"] .contents-box{padding:24px;}[data-lib="926"] .contents-box.w900>*{width: 100%;}}@media  screen and (max-width: 480px){[data-lib="926"] .sp1c{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column !important;}[data-lib="926"] .sp1c>*,[data-lib="926"] 
	.sp1c::after{width: 100% !important;
	margin-left: auto;
	margin-right: auto;}[data-lib="926"] .h-text-img.right,[data-lib="926"] 
    .h-text-img.left{-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-flow: column-reverse;
	flex-flow: column-reverse;
	align-items: center;}[data-lib="926"] .h-text-img.right figure,[data-lib="926"] 
    .h-text-img.left figure{margin:0 auto 16px;}[data-lib="926"] .h-text-img　figure.w50p{width: 100%;}[data-lib="926"] .h-text-img.right figure{width: 100%;}}[data-instance="101"] .news-list li{padding: 16px;}[data-instance="101"] .news-list a{display: block;}[data-instance="101"] .news-list figure{margin: 0 auto;
	width: 100%;}[data-instance="101"] .news-list .boxLR{margin: 5px auto;}[data-instance="101"] .news-list em{display: inline-block;
	padding: 3px 8px;
	min-width: 100px;
	background: #9feaff;
	color: #272763;
	text-align: center;
	font-size: 14px;
	line-height: 1.0;}[data-instance="101"] .news-list time{font-size: 14px;}[data-instance="101"] .news-list h4{margin: 15px auto 10px;
	font-weight: 900;}/*instance mediea*/@media  screen and (max-width: 768px){[data-instance="101"] .news-list{width: 90%;}[data-instance="101"] .news-list li{margin: 0 auto 20px;}[data-instance="101"] .news-list figure{max-width: 480px;
	width: 100%;
	height: 50vw;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;}[data-instance="101"] .news-list h4{margin: 10px auto 5px;
	font-size: 16px;}}/*widget:254d5154-faa1-4a5e-bd4d-f0538ce5ad8f*/[data-lib="873"] .box2C{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;}[data-lib="873"] .box2C > *{width: 48%;}[data-lib="873"] .box2C:after{display: block;
	width: 48%;
	content: "";}[data-lib="873"] .box3C{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;}[data-lib="873"] .box3C > *{width: 32%;}[data-lib="873"] .box3C:after{display: block;
	width: 32%;
	content: "";}[data-lib="873"] .box4C{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;}[data-lib="873"] .box4C > *{width: 24.5%;}[data-lib="873"] .box4C:after,[data-lib="873"] 
.box4C:before{display: block;
	width: 24.5%;
	content: "";}[data-lib="873"] .box4C:before{-webkit-box-ordinal-group:2;
	-ms-flex-order:1;
	order:1;}[data-lib="873"] .h-text-img{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left:auto;
	margin-right: auto;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;}[data-lib="873"] .h-text-img.right{-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row;
	flex-flow: row;}[data-lib="873"] .h-text-img.left{-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-flow: row-reverse;
	flex-flow: row-reverse;}[data-lib="873"] .h-text-img.center_t{-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-flow: column-reverse;
	flex-flow: column-reverse;}[data-lib="873"] .h-text-img.center_b{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;}[data-lib="873"] .h-text-img figure{-webkit-box-flex:0;
	-ms-flex:none;
	flex:none;}[data-lib="873"] .h-text-img.right figure{margin-left: 30px;}[data-lib="873"] .h-text-img.left figure{margin-right: 30px;}[data-lib="873"] .h-text-img.center_t figure{margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;}[data-lib="873"] .h-text-img.center_b figure{margin-left: auto;
	margin-right: auto;
	margin-top: 20px;}[data-lib="873"] .h-text-img　figure.w50p{width: 50%;}[data-lib="873"] .h-text-img .text{-webkit-box-flex:1;
	-ms-flex:1;
	flex:1;}[data-lib="873"] .pdf{width: 100%;
	margin:30px auto;
	text-align: center;}@media screen and (max-width: 768px){[data-lib="873"] .box2C{width: 100%;}[data-lib="873"] .box2C.box1C_sp{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;}[data-lib="873"] .box2C.box2C_sp{-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;}[data-lib="873"] .box2C.box1C_sp > *{width: 100%;}[data-lib="873"] .box2C.box1C_sp:after{display: none;}[data-lib="873"] .box2C.box2C_sp > *,[data-lib="873"] 
	.box2C.box2C_sp::after{width: 48%;}[data-lib="873"] .box3C{width: 100%;}[data-lib="873"] .box3C.box1C_sp{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;}[data-lib="873"] .box3C.box2C_sp{-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;}[data-lib="873"] .box3C.box3C_sp{-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;}[data-lib="873"] .box3C.box1C_sp > *{width: 100%;}[data-lib="873"] .box3C.box1C_sp:after{display: none;}[data-lib="873"] .box3C.box2C_sp > *,[data-lib="873"] 
	.box3C.box2C_sp::after{width: 48%;}[data-lib="873"] .box3C.box3C_sp > *,[data-lib="873"] 
	.box3C.box3C_sp::after{width: 31%;}[data-lib="873"] .box4C{width: 100%;}[data-lib="873"] .box4C.box1C_sp{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;}[data-lib="873"] .box4C.box2C_sp{-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;}[data-lib="873"] .box4C.box1C_sp > *{width: 100%;}[data-lib="873"] .box4C.box2C_sp > *{width: 48%;}[data-lib="873"] .box4C:after,[data-lib="873"] 
	.box4C:before{display: none;}[data-lib="873"] .h-text-img.right.top,[data-lib="873"] 
    .h-text-img.left.top,[data-lib="873"] 
    .h-text-img.center_b.top{-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-flow: column-reverse;
	flex-flow: column-reverse;
	align-items:center;}[data-lib="873"] .h-text-img.right figure{margin-left: 20px;}[data-lib="873"] .h-text-img.left figure{margin-right: 20px;}[data-lib="873"] .h-text-img.center_t figure{margin-bottom: 20px;}[data-lib="873"] .h-text-img.center_b figure{margin-top: 20px;}[data-lib="873"] .h-text-img.right.top figure,[data-lib="873"] 
	.h-text-img.left.top figure{margin-left: auto;
	margin-right: auto;}[data-lib="873"] .pdf{margin:20px auto;}}@media screen and (max-width: 480px){[data-lib="873"] .sp1c{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column !important;}[data-lib="873"] .sp1c>*,[data-lib="873"] 
	.sp1c::after{width: 100% !important;
	margin-left: auto;
	margin-right: auto;}[data-lib="873"] .h-text-img.right,[data-lib="873"] 
    .h-text-img.left{-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-flow: column-reverse;
	flex-flow: column-reverse;
	align-items: center;}[data-lib="873"] .h-text-img.right figure,[data-lib="873"] 
    .h-text-img.left figure{margin:0 auto 16px;}[data-lib="873"] .h-text-img　figure.w50p{width: 100%;}}/*widget:0ad7d7ca-a62d-4b8a-85ed-8477141280d1*/[data-lib="264"]{position: relative;}[data-lib="264"] .footer-content{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	margin: 50px auto;}[data-lib="264"] .footer-content .gmap{width: 360px;
	padding-bottom: 300px;
	margin-right: 50px;}[data-lib="264"] .footer-content .inner{flex: 1;}[data-lib="264"] .footer-content .inner address{font-size: 18px;}[data-lib="264"] .footer-content .inner address .logo{display: block;}[data-lib="264"] .footer-content .inner address p a{display: inline-block;
	text-decoration: none;}[data-lib="264"] .footer-content .btn{background: #fff;
	border: 1px solid #272763;}[data-lib="264"] nav{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;}[data-lib="264"] nav a{padding: 0 12px;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.0;}[data-lib="264"] nav a:hover{color: #9feaff;}[data-lib="264"] nav a+a{border-left: 1px solid #272763;}[data-lib="264"] .copyright small{display: block;
	width:100%;
	text-align: center;
	line-height: 1.0;}@media screen and (max-width: 768px){[data-lib="264"] footer>*{padding-left: 5%;
	padding-right: 5%;}[data-lib="264"] .footer-content{margin: 40px auto;}[data-lib="264"] .footer-content .gmap{width: 52%;
	padding-bottom: 240px;
	margin-right: 30px;}[data-lib="264"] .footer-content .inner address{font-size: 15px;}[data-lib="264"] .footer-content .inner address .logo{width: 100%;
	max-width: 280px;}[data-lib="264"] .footer-content .inner address .logo img{width: 100%;}[data-lib="264"] nav{flex-flow: row wrap;}[data-lib="264"] nav a{margin-bottom: 14px;
	padding: 0 12px;
	font-size: 14px;}[data-lib="264"] .copyright small{padding: 10px;
	font-size:12px;}}@media screen and (max-width: 480px){[data-lib="264"] .footer-content{margin: 0 auto 40px;
	padding: 0;
	flex-flow: column;}[data-lib="264"] .footer-content .gmap{width: 100%;
	padding-bottom: 240px;
	margin: 0 0 16px;}[data-lib="264"] .footer-content .inner{margin:0 auto;
	padding-left: 5%;
	padding-right: 5%;}}