/*common_css*/
/*widget:e174b240-52b6-46e5-8764-474086ff0a2d*/[data-lib="1472"] #entry .form{position: relative;}[data-lib="1472"] #entry table{position: relative;
	z-index: 20;}[data-lib="1472"] #entry .owlet-form form table{z-index: 5;}[data-lib="1472"] #entry .form #val_btn{cursor: pointer;
	position: absolute;
	top: 12px;
	left: 230px;
	display: inline-block;
	z-index: 10;}[data-lib="1472"] #entry input[name="input[entry_title]"]{width: 100%;
	border: none;
	margin: 25px 0 0;}[data-lib="1472"] #entry.on input[name="input[entry_title]"]{border: 1px solid #ccc;
	padding: 5px;}[data-lib="1472"] .owlet-form{opacity: 1!important;}@media screen and (max-width: 768px){[data-lib="1472"] #entry .form #val_btn{top: 50px;
	left: 56px;}}@media screen and (max-width: 480px){[data-lib="1472"] #entry .form #val_btn{left: 40px;}}/*layout:1*/@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;
}
mark{
	color: inherit;
}
time{
	font-size: 0.8rem;
}

/** ================================================================================
		03.Default
================================================================================ **/
html{
	overflow: auto;
}

body{
    position: relative;
	overflow: hidden;
	margin: 0 auto;
	min-width: 980px;
	background: #ffffff;
	color:#323232;
	font-size:15px;
	font-family:&quot;Hiragino Kaku Gothic ProN&quot;, &quot;Hiragino Kaku Gothic Pro&quot;, &quot;游ゴシック Medium&quot;, YuGothic, YuGothicM, メイリオ, 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;
}
a:focus{
    outline: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:15px;
		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 {
	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 .w800,
body .w700,
body .w650,
body .w600{
	margin-right: auto;
	margin-left : auto;
}
body .w100p{
	width: 100%;
}
body .w1100{
	width: 1100px;
}
body .w1000{
	width: 1000px;
}
body .w980{
	width: 980px;
}
body .w900{
	width: 900px;
}
body .w800{
	width: 800px;
}
body .w700{
	width: 720px;
}
body .w650{
	width: 650px;
}
body .w600{
	width: 600px;
}

@media screen and (max-width: 768px) {
	body .w100p,
	body .w1100,
	body .w1000,
	body .w980,
	body .w900,
	body .w800,
	body .w700,
	body .w650,
	body .w600{
		margin-right: auto;
		margin-left : auto;
	}
	body .w100p{
		width: 100%;
	}
	body .w1100{
		width: 100%;
	}
	body .w1000{
		width: 100%;
	}
	body .w980{
		width: 100%;
	}
	body .w900{
		width: 100%;
	}
	body .w800{
		width: 100%;
	}
	body .w700{
		width: 100%;
	}
	body .w650{
		width: 100%;
	}
	body .w600{
		width: 100%;
	}
	body .w100p > *,
	body .w1100 > *,
	body .w1000 > *,
	body .w980 > *,
	body .w900 > *,
	body .w800 > *,
	body .w700 > *,
	body .w650 > *,
	body .w600 > *{
		margin-right: auto;
		margin-left: auto;
		width: 90%;
	}
	body .w100p > .max,
	body .w100p.max,
	body .w1100 > .max,
	body .w1100.max,
	body .w1000 > .max,
	body .w1000.max,
	body .w980 > .max,
	body .w980.max,
	body .w900 > .max,
	body .w900.max,
	body .w800 > .max,
	body .w800.max,
	body .w700 > .max,
	body .w700.max,
	body .w650 > .max,
	body .w650.max,
	body .w600 > .max,
	body .w600.max{
		width: 100%;
		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;
}
.ib{
	display: inline-block;
	font-weight: inherit;
}
.sponly{
	display:none;
}

@media screen and (max-width: 768px) {
	.pc{
		display: none;
	}
	.sp{
		display:block;
	}
	.sp-ib{
		display: inline-block;
	}
}

@media screen and (max-width: 480px) {
	.sponly{
		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: 20px;
}

/**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;
    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 p a{
    border-bottom: 1px dotted red;
    text-decoration: none;
}
.richtext p a[href^="tel"]{
    border-bottom: none;
}
/*△△本追加△△*/

.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:5px 0 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-radius: 50%;*/
	border: 1px solid #ffffff;
	background: #64b4f0;
	color: #ffffff;
	text-align: center;
	line-height: 38px;
}
.pagenation span.page{
	background: #b965c1;
	color: #fff;
}
.pagenation span a{
	display: block;
	width: 100%;
	height: 100%;
/*	border-radius: 50%;*/
	background: #64b4f0;
	color: #ffffff;
}.pagenation span a:hover{
	background: #b965c1;
	color: #fff;
}


@media screen and (max-width: 768px) {
	.pagenation span{
		margin: 3px;
		width: 30px;
		height: 30px;
		line-height: 27px;
	}
}
/* -------------------------------------
フォーム
-------------------------------------*/
/**エラー**/
.alert {
	margin: 5px 0;
	color: #ff0000;
}
form table th{
	position: relative;
}

/**必須**/
.require {
	position: absolute;
	display: inline-block;
	width: 3em;
	height: 2em;
	border-radius: 3px;
	background: #cc1111;
	color: #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: 80vw;
	max-width: 450px;
	border: 1px solid #444;
	background: #444;
	color: #fff;
	text-align: center;
	font-size: 16px;
}
.form_button a{
	border: 1px solid #444;
	background: #444;
}
.form_button input[type="submit"]:hover,
.form_button input.submit:hover,
.form_button a:hover{
	border: 1px solid #cc1111;
	background: #cc1111;
	color: #fff;
}




/*入力タグ*/
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{
    width: 5em;
	margin: 5px;
}
/*名前*/
form input.owlet-input-name-sei,
form input.owlet-input-name-mei{
    width: 8em;
}
/*郵便番号*/
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の場合は設定*/
}
.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;
    }
}



@charset "utf-8";
/* CSS Document */

/** ================================================================================
base追加
================================================================================ **/

h1, h2, h3, h4, h5, h6,
dt,th{
	font-size: 1em;
	line-height: 1.4;
}
h2,h3,h4{
	font-weight: bold;
}
img{
	vertical-align:top;
}
b,em,i,strong,address{
	font-weight: inherit;
}
a[href^="tel"]{
    text-decoration: none;
}
figure{
    overflow: hidden;
}
strong{
	font-weight: bold;
}
table{
     line-height: 1.2;
}

/* -------------------------------------
webフォント
-------------------------------------*/
.webf{
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
}


/* -------------------------------------
font 必要なら追加　優先順位：高
-------------------------------------*/
body .fw-b {
	font-weight: bold;
}
body .fs12{
	font-size: 0.75rem;
}
body .fs14{
	font-size: 0.87rem;
}
body .fs15{
	font-size: 0.94rem;
}
body .fs16{
	font-size: 16px;
}
body .fs17{
	font-size: 17px;
}
body .fs18{
	font-size: 18px;
}
body .fs20{
	font-size: 20px;
}
body .fs22{
	font-size: 22px;
}
body .fs24{
	font-size: 24px;
}
body .fs26{
	font-size: 26px;
}
body .fs28{
	font-size: 28px;
}
body .fs30{
	font-size: 30px;
}
body .fs32{
	font-size: 32px;
}
body .fs35{
	font-size: 35px;
}
body .fs40{
	font-size: 40px;
}
body .fs44{
	font-size: 44px;
}
body .fs46{
	font-size: 46px;
}
body .fs54{
	font-size: 54px;
}
body .fs50{
	font-size: 50px;
}
body .fs60{
	font-size: 60px;
}
body .fs70{
	font-size: 70px;
}

@media screen and (max-width: 768px) {
	body .fs16{
		font-size: 15px;
	}
	body .fs17{
		font-size: 15px;
	}
	body .fs18{
		font-size: 16px;
	}
	body .fs20{
		font-size: 16px;
	}
	body .fs22{
		font-size: 16px;
	}
	body .fs24{
		font-size: 18px;
	}
	body .fs26{
		font-size: 22px;
	}
	body .fs28{
		font-size: 24px;
	}
	body .fs30{
		font-size: 26px;
	}
	body .fs32{
		font-size: 28px;
	}
	body .fs35{
		font-size: 30px;
	}
	body .fs40{
		font-size: 36px;
	}
	body .fs44{
		font-size: 36px;
	}
	body .fs46{
		font-size: 40px;
	}
	body .fs50{
		font-size: 42px;
	}
	body .fs54{
		font-size: 42px;
	}
	body .fs60{
		font-size: 46px;
	}
	body .fs70{
		font-size: 48px;
	}
}

@media screen and (max-width: 480px) {
	body .fs26{
		font-size: 5vw;
	}
	body .fs28{
		font-size: 5vw;
	}
	body .fs30{
		font-size: 5vw;
	}
	body .fs32{
		font-size: 6vw;
	}
	body .fs35{
		font-size: 6vw;
	}
	body .fs40{
		font-size: 7vw;
	}
	body .fs44{
		font-size: 7vw;
	}
	body .fs46{
		font-size: 7vw;
	}
	body .fs50{
		font-size: 7vw;
	}
	body .fs54{
		font-size: 7vw;
	}
	body .fs60{
		font-size: 8.8vw;
	}
	body .fs70{
		font-size: 8.8vw;
	}
}


/* -------------------------------------
カラム
-------------------------------------*/
/**２つ並び**/
.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;
}
.box2C > *{
width: 48%;
}
.box2C:after{
display: block;
width: 48%;
content: "";
}

/**3つ並び**/
.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;
}
.box3C > *{
width: 32%;
}
.box3C:after{
display: block;
width: 32%;
content: "";
}

/**4つ並び**/
.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;
}
.box4C > *{
width: 24.5%;
}
.box4C:after,
.box4C:before{
display: block;
width: 24.5%;
content: "";
}
.box4C:before{
-webkit-box-ordinal-group:2;
-ms-flex-order:1;
order:1;
}

@media screen and (max-width: 768px) {
	
	/* -------------------------------------
	カラム
	-------------------------------------*/
	/**２つ並び**/
	.box2C{
	width: 100%;
	}
	.box2C.box1C_sp{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	}.box2C.box2C_sp{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	}
	.box2C.box1C_sp > *{
	width: 100%;
	}
	.box2C.box1C_sp:after{
	display: none;
	}
	.box2C.box2C_sp > *,
	.box2C.box2C_sp::after{
	width: 48%;
	}
	.box2C.box2C_sp.sp1c>*,
	.box2C.box2C_sp.sp1c::after{
	/*		min-width: 300px;*/
	}
	
	/**3つ並び**/
	.box3C{
	width: 100%;
	}
	.box3C.box1C_sp{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	}.box3C.box2C_sp{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	}
	.box3C.box3C_sp{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	}
	.box3C.box1C_sp > *{
	width: 100%;
	}
	.box3C.box1C_sp:after{
	display: none;
	}
	.box3C.box2C_sp > *,
	.box3C.box2C_sp::after{
	width: 48%;
	}
	.box3C.box3C_sp > *,
	.box3C.box3C_sp::after{
	width: 31%;
	}
	
	/**4つ並び**/
	.box4C{
	width: 100%;
	}
	.box4C.box1C_sp{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	}.box4C.box2C_sp{
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	}
	.box4C.box1C_sp > *{
	width: 100%;
	}.box4C.box2C_sp > *{
	width: 48%;
	}
	.box4C:after,
	.box4C:before{
	display: none;
	}
}

@media screen and (max-width: 480px) {
	/* -------------------------------------
	カラム
	-------------------------------------*/
	.sp1c{
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column !important;
	}
	.sp1c>*,
	.sp1c::after{
	width: 100% !important;
	margin-left: auto;
	margin-right: auto;
	}
	
	.sp2c>*,
	.sp2c::after{
	width: 47% !important;
	}
}


/* -------------------------------------
配置･･･画像の位置が基準
-------------------------------------*/
.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;
}

/*配置*/
.h-text-img.right{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
}
.h-text-img.left{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
}
.h-text-img.center_t{
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
}
.h-text-img.center_b{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

/*画像*/
.h-text-img figure{
    -webkit-box-flex:0;
    -ms-flex:none;
    flex:none;
}
.h-text-img.right figure{
    margin-left: 60px;
}
.h-text-img.left figure{
    margin-right: 60px;
}
.h-text-img.center_t figure{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
.h-text-img.center_b figure{
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.h-text-img　figure.w50p{
    width: 50%;
}

/*テキスト領域*/
.h-text-img .text{
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
}
.pdf{
    width: 100%;
    margin:30px auto;
    text-align: center;
}

@media screen and (max-width: 768px) {
	/*配置*/
    .h-text-img.right.top,
    .h-text-img.left.top,
    .h-text-img.center_b.top{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
		-webkit-box-align:center;
		-ms-flex-align:center;
		align-items:center;
    }
	
	/*画像*/
	.h-text-img.right figure{
		margin-left: 20px;
	}
	.h-text-img.left figure{
		margin-right: 20px;
	}
	.h-text-img.center_t figure{
		margin-bottom: 20px;
	}
	.h-text-img.center_b figure{
		margin-top: 20px;
	}
	.h-text-img.right.top figure,
	.h-text-img.left.top figure{
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
	}

	/*テキスト領域*/
    .pdf{
        margin:20px auto;
    }
}

@media screen and (max-width: 480px) {
	/*配置*/
    .h-text-img.right,
    .h-text-img.left{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
    }
	
	/*画像*/
    .h-text-img.right figure,
    .h-text-img.left figure{
        margin:0 auto 16px;
    }
	.h-text-img　figure.w50p{
		width: 100%;
	}
}



/** ================================================================================
このサイトの共通設定
================================================================================ **/
/* -------------------------------------
セクション
-------------------------------------*/
body article{
}
body main{
/*	padding-top: 1px;*/
}
body section,
body aside{
	padding: 1px calc((100vw - 980px) / 2);
    position: relative;
/*  z-index: 1;*/
}
body section>*,
body aside>*{
	position: relative;
}

@media screen and (max-width: 768px) {
	body article{
	}
    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;
}
.block{
	display: block;
}
.flx{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}.flx .inner{
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.relative{
	position: relative;
}
.max100{
	max-width: 100%;
}

@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;
	}
	.w100p .w100vw{
		width: 100vw;
	}
}



/* -------------------------------------
背景
-------------------------------------*/
.bg-white{
	background: #fff;
}
.bg-gray{
	background: #ececec;
}
.bg-org{
	background: #f37303;
}
.bg-ppl{
	background: #b965c1;
}
.bg-sky{
	background: #64b4f0;
}
.bg-grn{
	background: #81c53a;
}
.bg-ptn{
	background: url(/images/bg-ptn_org.png);
	background-size: 60px auto;
	background-attachment: fixed;
}

@media screen and (max-width: 768px) {
	.bg-ptn{
		background-attachment:scroll;
	}
}


/* -------------------------------------
bg-photo
-------------------------------------*/
.bg-photo{
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
	background-image: url(/images/bg-img1.jpg);
	background-attachment:fixed;
}
.bg-photo::before{
    content: "";
    display: block;
    width:100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(146,146,146,.7);
    mix-blend-mode:multiply; /*乗算*/
}
.bg-photo>*{
    position: relative;
}

@media screen and (max-width: 768px) {
	.bg-photo{
	}
}



/* -------------------------------------
bg-deco
-------------------------------------*/
.bg-deco1,
.bg-deco2{
	padding-bottom: 190px;
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: 1500px auto;
	background-image: url(/images/deco-bg1.png);
}
.bg-deco2{
	background-image: url(/images/deco-bg2.png);
}

@media screen and (max-width: 768px) {
	.bg-deco1,
	.bg-deco2{
		padding-bottom: 100px;
		background-size: 100% auto;
	}
}

@media screen and (max-width: 480px) {
	.bg-deco1,
	.bg-deco2{
		background-image: url(/images/deco-bg1_sp.png);
	}
	.bg-deco2{
		background-image: url(/images/deco-bg2_sp.png);
	}
}


/* -------------------------------------
色
-------------------------------------*/
body .white{
  color: #fff;
}
body .org{
  color: #f37303;
}
body .ppl{
  color: #b965c1;
}
body .sky{
  color: #64b4f0;
}
body .grn{
  color: #81c53a;
}
body .red{
  color: #ff6b74;
}


/* -------------------------------------
タイトル
-------------------------------------*/
/*ページタイトル*/
.titZ{
	position: relative;
}
.titZ::before{
	content: "";
	display: block;
	width: 100%;
	height: 447px;
	background-repeat: repeat-X ,no-repeat;
	background-position: center top,center;
	background-size: auto 17px,cover;
}
.titZ h2{
	padding: 86px 0 198px;
	text-align: center;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
	background: 
		url(/images/titz-bg1.png) no-repeat center top / 100% auto,
		url(/images/hero-bg2.png) repeat-X center bottom / 1500px auto,
		#ffffc8;
}

/*titA*/
.titA{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
	text-align: center;
}
.titA span{
	padding: 0 0.8em;
	line-height: 1.3;
}
.titA span i{
	display: block;
	margin-top: 2px;
	font-size: 0.4em;
}
.titA::before,
.titA::after{
	content: "";
	display: block;
	width: 200px;
	height: 18px;
	margin-top: 14px;
	background: url(/images/deco-sankaku_L.svg) no-repeat center / contain;
}
.titA::after{
	background-image: url(/images/deco-sankaku_R.svg);
}

/*titA-2*/
.titA-2{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
	text-align: center;
}
.titA-2 span{
	padding: 0 0.6em;
	line-height: 1.3;
}
.titA-2 span i{
	display: block;
	margin-top: 2px;
	font-size: 0.4em;
}
.titA-2::before,
.titA-2::after{
	content: "";
	display: block;
	width: 354px;
	height: 12px;
	margin-top: 14px;
	background: url(/images/deco-sankaku_org.svg) no-repeat center / contain;
}

/*titA-3*/
.titA-3{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
	text-align: center;
}
.titA-3 span{
	padding: 0 0.6em;
	line-height: 1.3;
}
.titA-3 span i{
	display: block;
	margin-top: 2px;
	font-size: 0.4em;
}
.titA-3::before,
.titA-3::after{
	content: "";
	display: block;
	width: 231px;
	height: 12px;
	margin-top: 14px;
	background: url(/images/deco-sankaku_org2.svg) no-repeat center / contain;
}

/*titB*/
.titB{
	color: #fff;
	text-align: center;
	line-height: 50px;
	background: #f37303;
}

@media screen and (max-width: 768px) {
	/*ページタイトル*/
	.titZ::before{
		height: 30vw;
		background-size: auto 8px,cover;
	}
	.titZ h2{
		padding: 50px 0 110px;
		background-size: 100% auto, 100% auto;
	}
}

@media screen and (max-width: 480px) {
	/*ページタイトル*/
	.titZ::before{
		height: 30vw;
	}
	.titZ h2{
		padding: 24px 0 60px;
		background-size: 100% auto, 130% auto;
	}
	
	.titA span{
		padding: 0 10px;
	}
	.titA span i{
		font-size: 0.5rem;
	}
	.titA::before,
	.titA::after{
		width: 160px;
		margin-top: 6px;
	}
	.titA::before{
		margin-left: -26vw;
	}
	.titA::after{
		margin-right: -26vw;
	}
	
	/*titA-2*/
	.titA-2 span{
		padding: 0 10px;
	}
	.titA-2 span i{
		font-size: 0.5rem;
	}
	.titA-2::before,
	.titA-2::after{
		width: 160px;
		margin-top: 6px;
		background-size: auto 100%;
	}
	.titA-2::before{
		margin-left: -26vw;
		background-position: right center;
	}
	.titA-2::after{
		margin-right: -26vw;
		background-position: left center;
	}

	/*titA-3*/
	.titA-3{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.titA-3 span{
		padding: 0 10px;
	}
	.titA-3 span i{
		font-size: 0.5rem;
	}
	.titA-3::before{
		display: none;
	}
	.titA-3::after{
		width: 100%;
		height: 6px;
		margin-top: 10px;
	}
}

@media screen and (max-width: 768px) {
	.deco-tit{
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		margin-left: 0;
		margin-right: 0;
	}
	.deco-tit h3{
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		-webkit-box-flex: 1;
		width:100%;
		margin: 0 0 20px;
	}
	.deco-tit i{
		height: 60px;
	}
	.deco-tit i img{
		max-height: 100%;
	}
	.deco-tit i:first-of-type{
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.deco-tit i:last-of-type{
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
}


/* -------------------------------------
btn
-------------------------------------*/
.btn{
	display: block;
    width: 95%;
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;
	padding:24px;
	color: #f37303;
	font-weight: 900;
	text-align: center;
    line-height: 1.2;
	cursor: pointer;
	background: #fff;
    border: 2px solid #f37303;
	border-radius: 40px;
    text-decoration: none;
	position: relative;
	z-index: 1;
}.btn:hover{
    color: #fff;
    background: #f37303;
}

.btn.mini{
	max-width: 300px;
}
.btn.left{
	margin-left: 0;
}


/*色分け*/
.btn.btn-sky{
	color: #64b4f0;
	border-color: #64b4f0;
}.btn.btn-sky:hover{
	color: #fff;
	background: #64b4f0;
}
.btn.btn-grn{
	color: #81c53a;
	border-color: #81c53a;
}.btn.btn-grn:hover{
	color: #fff;
	background: #81c53a;
}
.btn.btn-ppl{
	color: #b965c1;
	border-color: #b965c1;
}.btn.btn-ppl:hover{
	color: #fff;
	background: #b965c1;
}


@media screen and (max-width: 768px) {
	.btn{
		width: 100%;
		max-width: 300px;
    	padding:10px 15px 10px 8px;
	    font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
	.btn.left{
		margin-left: auto;
	}
}


/* -------------------------------------
btn-pdf
-------------------------------------*/
.btn-pdf{
	display: block;
	max-width: 450px;
	padding: 16px;
	line-height: 1.0;
	text-decoration: underline;
	border: 1px solid #323232;
}
.btn-pdf::before{
	content: "▶";
}.btn-pdf:hover{
	color: #f37303;
	text-decoration: none;
	border-color: #f37303;
}

@media screen and (max-width: 768px) {
	.btn-pdf{
		padding: 14px;
		font-size: 13px;
	}
}


/* -------------------------------------
文字
-------------------------------------*/
.lh1{
	line-height: 1.0;
}
.lh2{
	line-height: 2.0;
}
.lh15{
	line-height: 1.5;
}
.lh13{
	line-height: 1.3;
}

@media screen and (max-width: 768px) {
	.lh2{
		line-height: 1.7;
	}
}


/* -------------------------------------
その他
-------------------------------------*/
a:hover img.hv{
	opacity: .8;
}
.z1{
	z-index: 1;
}


/* -------------------------------------
objedt-fit
-------------------------------------*/
.ojf img {
	width: 100%;
	height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';  /*IE対策*/
}


/* -------------------------------------
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;
	}
}

@media screen and (max-width: 480px) {
	.lead.fs26{
		width: 80%;
		font-size: 4.5vw;
	}
}


/* -------------------------------------
公開日
-------------------------------------*/
.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;
}



/* -------------------------------------
枠
-------------------------------------*/
/*frame*/
.frame{
	background: #fff;
	border: 10px solid red;
	position: relative;
}

@media screen and (max-width: 768px) {
	/*frame*/
	.frame{
		border-width: 6px;
	}
}


/* -------------------------------------
gmap
-------------------------------------*/
.gmap{
    position: relative;
    padding-bottom: 350px;
    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;
    }
}


/* -------------------------------------
フォーム table･･･スマホで th＝w:100%;
-------------------------------------*/
.table table,
table.table{
	width: 100%;
    margin: 30px auto;
}
.table th,
.table td{
	padding: 15px;
	border: 1px solid red;
	vertical-align: top;
	text-align: left;
}
.table th{
	width: 25%;
	color: #fff;
	font-weight: 600;
	background: red;
	border-color:#fff;
	vertical-align:middle;
}
.table td{
    background: #fff;
}

@media screen and (max-width: 768px) {
	.table table,
	.table tbody,
	.table tr,
	.table th,
	.table td{
		display: block;
/*		border: none;*/
	}
	.table th,
	.table td{
		padding: 10px;
	}
	.table th{
		width: 100%;
        padding: 8px;
        font-size: 0.9em;
		border-color: red;
	}
}


/* -------------------------------------
tableA　th:25% 背景：てれこで背景カラー
-------------------------------------*/
.tableA table,
table.tableA{
    width: 100%;
    border-top: 1px dotted red;
}
.tableA tr{
    border-bottom: 1px dotted red;
}
.tableA tr:nth-of-type(odd){
    background: yellow;
}
.tableA tr:nth-of-type(even){
    background: pink;
}
.tableA th,
.tableA td{
    padding: 20px 16px;
    vertical-align: top;
    text-align: left;
}
.tableA th{
    width: 25%;
	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%;
    background: #fff;
    border-top: 1px dotted #323232;
}
.tableB tr{
    border-bottom: 1px dotted #323232;
}
.tableB th,
.tableB td{
    padding:16px 20px;
    vertical-align: top;
    text-align: left;
}
.tableB th{
    width: 20%;
}
.tableB th.bg-gray{
	padding-left: 5%;
	vertical-align: middle;
}
.tableB td a:hover{
}

@media screen and (max-width: 768px) {
    .tableB th,
    .tableB td{
        padding: 8px 10px;
        font-size: 14px;
    }
    .tableB th{
		width: 25%;
        min-width: 6em;
        font-size: 0.9rem;
        font-size: 13px;
    }
}


/* -------------------------------------
tableC･･･スマホ th=w:100%
-------------------------------------*/
.tableC table,
table.tableC{
    width: 100%;
    background: #fff;
    border-top: 1px dotted red;
}
.tableC tr{
    border-bottom: 1px dotted red;
}
.tableC th,
.tableC td{
    padding:16px 20px;
    vertical-align: middle;
    text-align: left;
}
.tableC th{
    width: 25%;
    background: #DEF2FF;
}
.tableC td a:hover{
}

@media screen and (max-width: 768px) {
    .tableC th,
    .tableC td{
		display: block;
		width: 100%;
        font-size: 14px;
    }
    .tableC th{
		padding: 6px 10px;
    }
    .tableC td{
		padding: 6px 10px 20px;
    }
}


/* -------------------------------------
tableD　th W:100%
-------------------------------------*/
.tableD table,
table.tableD{
    width: 100%;
}
.tableD th,
.tableD td{
	display: block;
	width: 100%;
}
.tableD th{
	margin-bottom: 10px;
	padding: 14px;
	font-size: 1.1rem;
	font-weight: 700;
    text-align: left;
	background: #f4f4f4;
}
.tableD td{
	margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
	.tableD th{
		margin-bottom: 4px;
		font-size: 0.9rem;
	}
	.tableD td{
		margin-bottom: 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 #b965c1;
    background: #b965c1;
    color: #fff;
    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: #64b4f0;
    border-color: #64b4f0;
}

@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:#b965c1 ;
    color: #fff;
/*    border-radius: 3px;*/
}

.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;
}



/** ================================================================================
このサイトの共通装飾CSS
================================================================================ **/

/* -------------------------------------
content-box
-------------------------------------*/
.content-box{
	padding: 30px;
	background: #fff;
}

@media screen and (max-width: 480px) {
	.content-box{
		padding: 20px;
	}
}


/* -------------------------------------
bf-maru
bf-kome
-------------------------------------*/
.bf-maru >*,
.bf-kome >*{
    padding-left: 1.2em;
}
.bf-maru >*::before,
.bf-kome >*::before{
	margin-left: -1.2em;
	margin-right: 0.2em;
}
.bf-maru >*::before{
	content: "●";
}
.bf-kome >*::before{
	content: "※";
}


/* -------------------------------------
吹き出し
-------------------------------------*/
/**塗りつぶし（下）**/
.bln {
	width: 700px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 10px 10px;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background: #F37303;
	border-radius: 30px;
	position: relative;
}.bln::after {
	content: "";
	width: 26px;
	height: 18px;
	background: url(/images/bln-b_org.svg) no-repeat center / cover;
	position: absolute;
	left: 50%;
	top: 100%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

/*mini*/
.bln.mini::after{
	width: 20px;
	height: 14px;
}

/*色分け*/
.bln.bln-wh {
	color: #f37303;
	background: #fff;
}
.bln.bln-wh::after {
	background-image: url(/images/bln-b_wh.svg);
}
.bln.bln-sky{
	background: #64b4f0;
}
.bln.bln-sky::after {
	background-image: url(/images/bln-b_sky.svg);
}
.bln.bln-grn{
	background: #81c53a;
}
.bln.bln-grn::after {
	background-image: url(/images/bln-b_grn.svg);
}
.bln.bln-ppl{
	background: #b965c1;
}
.bln.bln-ppl::after {
	background-image: url(/images/bln-b_ppl.svg);
}

@media screen and (max-width: 768px) {
	/**塗りつぶし（下）**/
	.bln {
		width: 500px;
		max-width: 80%;
		padding: 10px 10px;
		border-radius: 30px;
	}.bln::after {
		width: 20px;
		height: 14px;
	}

	/*mini*/
	.bln.mini::after{
/*
		width: 20px;
		height: 14px;
*/
	}
}


/* -------------------------------------
tel
-------------------------------------*/
.tel {
	display: block;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: bold;
	line-height: 1.0;
}
.tel i img{
	width: 22px;
	margin-right: 8px;
	vertical-align: middle;
}


/* -------------------------------------
link
-------------------------------------*/
.link{
	padding-bottom: 2px;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
	font-weight: normal;
	border-bottom: 1px solid #f37303;
}.link:hover{
	color: #f37303;
	border: none;
}
.link::before{
	content: "▶";
	color: #f37303;
}


/* -------------------------------------
hti-list
-------------------------------------*/
.hti-list figure{
	width: 46%;
}

/*てれこ*/
.hti-list-wrap .hti-list.left:nth-child(even){
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row;
	flex-flow: row;
}
.hti-list-wrap .hti-list.left:nth-child(even) figure{
	margin-right: auto;
	margin-left: 60px;
}

@media screen and (max-width: 480px) {
	.hti-list figure{
		width: 100%;
	}

	/*てれこ*/
	.hti-list-wrap .hti-list.left:nth-child(even){
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-flow: column-reverse;
		flex-flow: column-reverse;
	}
	.hti-list-wrap .hti-list.left:nth-child(even) figure{
		margin-left: auto;
	}
}


/* -------------------------------------
listA
-------------------------------------*/
.listA li{
	margin: 0 0 40px;
}

@media screen and (max-width: 768px) {
	.listA li{
		margin-bottom: 20px;
	}
	.listA li figure figcaption{
		font-size: 0.85rem;
		line-height: 1.3;
	}
	.listA li figure figcaption strong{
		margin: 4px auto;
	}
}


/* -------------------------------------
news-list
-------------------------------------*/
.news-list a{
	display: block;
}
.news-list figure{
	margin: 0 auto;
	width: 90%;
}
.news-list .boxLR{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 16px auto;
}
.news-list em{
	display: inline-block;
	padding: 3px 8px;
	min-width: 100px;
	background: #323232;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 14px;
	color: #fff;
	text-align: center;
	line-height: 1.0;
}
.news-list time{
	margin-right: 5%;
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	.news-list li{
		margin: 0 auto 20px;
	}
	.news-list figure{
		max-width: 480px;
		width: 100%;
	}
	.news-list h4{
		margin: 10px auto 5px;
		font-size: 16px;
	}
}


/* -------------------------------------
news-list2
-------------------------------------*/
.news-list2{
	border-top: 1px dashed #40220f;
}
.news-list2 li{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 14px 20px;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	align-items:flex-start;
	border-bottom: 1px dashed #40220f;
}
.news-list2 .boxLR{
	width: auto;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin: 0 30px 0 0;
}
.news-list2 time{
	font-size: 0.9rem;
}
.news-list2 em{
	width: 120px;
	display: inline-block;
	padding: 0 8px;
	background: #000;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	line-height: 30px;
	margin: 0 30px;
}
.news-list2 h4{
	-webkit-box-flex:1;
	-ms-flex:1;
	flex:1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 15px;
	line-height: 1.4;
}
.news-list2 h4 a{
	-webkit-box-flex:1;
	-ms-flex:1;
	flex:1;
}
.news-list2 h4 a:hover{
	text-decoration:underline;
}

@media screen and (max-width: 768px) {
	/*
		.news-list2 li{
			flex-flow: column;
		}
	*/
	.news-list2 .boxLR{
		margin: 0 0 10px;
	}
	.news-list2 time{
		font-size: 0.7rem;
	}
	.news-list2 em{
		width: 100px;
		font-size: 12px;
		line-height: 22px;
		margin: 0 16px;
	}
	.news-list2 h4{
		padding-left: 10px;
		font-size: 0.9rem;
	}
	.news-list2 h4 .new.is-show{
		font-size: 12px;
		line-height: 24px;
		position: absolute;
		right: 10%;
		top: 15px;
	}
}


/* -------------------------------------
cost-table
-------------------------------------*/
.cost-table.left figure{
	width: 70%;
	margin-right: 20px;
}

@media screen and (max-width: 768px) {
	.cost-table.left figure{
		width: 100%;
		max-width: 500px;
	}
}


/* -------------------------------------
インスタ 240801
-------------------------------------*/
a.insta{
    --size:65px;
    width: var(--size);
    height: var(--size);
    display: grid;
    place-items: center;
    padding: 0;
    background: #b965c1;
    background: linear-gradient(123.25025379085776deg, rgba(131, 195, 243,1) 2.738317757009346%,rgba(131, 194, 242,1) 2.738317757009346%,rgba(199, 132, 205,1) 72.39563862928348%);
    border: none;
    border-radius: 50px;
    /* opacity: 0; */
}
a.insta:hover{
    opacity: .8;
}
a.insta img{
    width: calc(var(--size)*0.5);
}


/*layout:18*//* -------------------------------------
フォーム
-------------------------------------*/
/**必須**/
.require {
  position: absolute;
  top: 0;
  right: 0.5em;
  bottom: 0;
  display: inline-block;
  margin: auto 5px;
  width: 3em;
  height: 2em;
  border-radius: 3px;
  background: #cc1111;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
  line-height: 2em;
}

/**送信ボタン**/
.form_button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: 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 #3c3c3c;
	background: #555;
	color: #fff;
	text-align: center;
	font-size: 16px;
*/
  position: relative;
  display: block;
  margin: 30px auto 0;
  padding: 15px;
  width: 300px;
  border: none;
  border-radius: 50px;
  background: #cc1111;
  border: 1px solid #cc1111;
  color: #fff;
  font-weight: bold;
  font-size: 0.9em;
}
.form_button a {
  border: 1px solid #aaa;
  background: #aaa;
}
.form_button input[type="submit"]:hover,
.form_button input.submit:hover,
.form_button a:hover {
  color: #cc1111;
  background: #fff;
}

/*入力タグ*/
form input[type="text"],
form textarea,
form select {
  padding: 5px 4px;
  height: 30px;
  border: 1px solid #cccccc;
  font-size: 16px;
  line-height: 1.2;
}
form input[type="text"] {
  width: 80%;
}
form textarea {
  padding: 2px;
  min-height: 150px;
  width: 100%;
}
form select {
  padding: 0 10px;
  font-size: 14px;
}
/*記入例*/
form .owlet-input-sample {
  margin-top: 5px;
  color: #999;
  font-size: 14px;
}
/*名前*/
form input[type="text"].owlet-input-name-sei,
form input[type="text"].owlet-input-name-mei {
  margin: 0 5px;
  width: 90px;
}
/*住所*/
form input[type="text"].zip1,
form input[type="text"].zip2 {
  margin-bottom: 5px;
  width: 60px;
}
form input[type="button"].zip2addr {
  margin-bottom: 5px;
}
form select.prefectures,
form select.city {
  margin: 0 5px 5px;
}
form input[type="text"].address,
form input[type="text"].address1,
form input[type="text"].address2 {
  margin-bottom: 5px;
  margin-left: 5px;
  width: 60%;
}
/*日時*/
form input[type="text"].owl-datepicker {
  width: 200px;
}
/*電話番号*/
form input[type="text"].owlet-input-tel1,
form input[type="text"].owlet-input-tel2,
form input[type="text"].owlet-input-tel3 {
  width: 80px;
}
form input[type="text"].owlet-input-tel2,
form input[type="text"].owlet-input-tel3 {
  margin-left: 5px;
}
/*label*/
form label {
  display: block;
}
/*ラジオボタンにスタイルあてる場合*/
form label input[type="radio"] {
}
/*チェックボックスにスタイルあてる場合*/
form label input[type="check"] {
}

/**フォーム規約**/
.owlet-rules {
  margin: 0 auto 30px;
  width: 90%;
}
.owlet-rules-title {
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}
.owlet-rules-body {
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
  padding: 15px;
  height: 200px;
  border: 1px solid #dcdcdc;
}
.owlet-rules-agree {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}
.owlet-rules-agree .require {
  position: static;
  margin: 0 15px;
}

@media screen and (max-width: 768px) {
  .form_button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }
  /*名前*/
  form input[type="text"].owlet-input-name-sei,
  form input[type="text"].owlet-input-name-mei {
    width: 30%;
  }
  /**電話番号**/
  form input[type="text"].owlet-input-tel1,
  form input[type="text"].owlet-input-tel2,
  form input[type="text"].owlet-input-tel3 {
    width: 26%;
  }

  /*iPhone独自スタイル解除*/
  form　input[type="button"],
  .inquiry_form input[type="text"],
  .inquiry_form input[type="submit"] {
    border-radius: 0;

    -webkit-appearance: none;
  }
}

/**================================================================================
共通
================================================================================**/
#rec {
  overflow: hidden;
}
#rec * {
  line-height: 1.5;
}
@media rec_titA and (max-width: 768px) {
  #rec {
    font-size: 15px;
  }
}

/* header */
#rec header {
  width: 100%;
  margin: 0 auto;
  padding: 5px;
  padding: 5px 10%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
}

#rec header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}
#rec header .logo h1 {
  font-size: 11px;
  margin: 0;
  width: 100%;
}
#rec header .logo p {
  font-size: 13px;
  margin: 0 0 0 15px;
}
#rec header ul {
  width: 180px;
  position: fixed;
  right: 5%;
  top: 0px;
}
#rec header ul li {
  margin: 0;
}
#rec header ul a {
  display: block;
  color: #fff;
  font-weight: bold;
  background: #c11;
  border: 2px solid #c11;
  border-top: none;
  padding: 15px 0;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  font-size: 1.1em;
  text-align: center;
}
#rec header ul a:hover {
  background: #fff;
  color: #c11;
}

@media screen and (max-width: 768px) {
  #rec header {
    width: 100%;
    display: block;
    padding: 0 2% 44px;
  }
  #rec header .logo {
    width: 100%;
  }
  #rec header .logo h1 {
    display: none;
  }
  #rec header .logo img {
    width: 140px;
  }
  #rec header .logo p {
    display: none;
  }
  #rec header ul {
    display: none;
  }
}

/* footer */
#rec footer {
  text-align: center;
  margin: 30px auto;
  font-size: 0.8em;
}
#rec footer p {
  margin: 5px auto 25px;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  /* -------------------------------------
  sp-fix（footer）
  -------------------------------------*/
  .sp-fix {
    width: 100vw;
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.3);
    z-index: 200;
  }
  .sp-fix a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 56px;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    background: #7a5890;
  }
  .sp-fix a.fix-entry {
    background: #c11;
  }
}

/* rec_titA */
.rec_titA {
  margin: 30px auto;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .rec_titA {
    margin: 20px auto;
    font-size: 20px;
  }
}

/**-------------------------------------
inq
-------------------------------------**/
.inqA {
  padding: 40px 5%;
  background: #7a5890;
  color: #fff;
  text-align: center;
}
.inqA h3 {
  margin: 0 auto;
  font-size: 1.6em;
}
.inqA a[href*="tel"] {
  font-weight: bold;
  font-size: 2.5em;
}
.inqA a[href^="#"] {
  position: relative;
  display: inline-block;
  margin: 30px 10px 0;
  padding: 15px;
  width: 300px;
  border-radius: 50px;
  background: #fff;
  color: #7a5890;
  font-weight: bold;
  font-size: 0.9em;
  border: 1px solid #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.inqA a[href*="entry"] {
  background: #cc1111;
  color: #fff;
}
.inqA a[href^="#"]:after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #7a5890;
  border-right: 1px solid #7a5890;
  content: "";
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}
.inqA a[href*="entry"]:after {
  border-top-color: #fff;
  border-right-color: #fff;
}
.inqA a[href^="#"]:hover {
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
  .inqA {
    padding: 20px 5%;
  }
  .inqA h3 {
    font-size: 1.1em;
  }
  .inqA p {
    font-size: 0.9em;
  }
  .inqA a[href*="tel"] {
    font-size: 2em;
  }
  .inqA a[href^="#"] {
    display: block;
    margin: 30px auto 0;
    padding: 15px 0;
    width: 100%;
  }
  .inqA a[href*="entry"] {
    margin: 15px auto 0;
  }
}

/**-------------------------------------
list
-------------------------------------**/

.rec_listA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.rec_listA li {
  margin: 0 0 50px;
  width: 47%;
}
.rec_listA figure {
  position: relative;
  z-index: 1;
  width: 440px;
  height: 300px;
}
.rec_listA dl {
  position: relative;
  z-index: 2;
  margin: -60px 0 0 auto;
  margin: 0 0 0 auto;
  width: 400px;
}
.rec_listA figure + dl {
  margin-top: -60px;
}
.rec_listA dt {
  margin: 0;
  padding: 10px;
  width: 320px;
  background: #7a5890;
  color: #fff;
  font-size: 1.1em;
}
.rec_listA dd {
  padding: 10px;
  /*border: 1px solid #7a5890;*/
  background: #fff;
  font-size: 0.9em;
}

@media screen and (max-width: 768px) {
  .rec_listA {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
  .rec_listA li {
    width: 100%;
  }
  .rec_listA li:last-child {
    margin: 0 auto;
  }
  .rec_listA figure {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
  }
  .rec_listA figure img {
    display: block;
  }
  .rec_listA dl {
    margin: 0 auto;
    width: 100%;
  }
  .rec_listA dt {
    width: 100%;
    font-size: 1em;
  }
}

.listB {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 70px auto 20px;
  width: 980px;

  -webkit-box-pack: justify;

  -ms-flex-pack: justify;

  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.listB li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 30px;
  width: 100%;
}
.listB li:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}
.listB figure {
  margin: 0 30px 0 0;
  width: 410px;
}
.listB li:nth-child(even) figure {
  margin: 0 0 0 30px;
}
.listB dl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.listB dt {
  margin: 15px 0;
  font-size: 1.3em;
}

@media screen and (max-width: 768px) {
  .listB {
    margin: 35px auto 20px;
    width: 90%;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

    -ms-flex-flow: column;

    flex-flow: column;
  }
  .listB li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
  .listB li:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
  .listB figure {
    margin: 0 auto;
    width: 100%;
  }
  .listB li:nth-child(even) figure {
    margin: 0 auto;
  }
  .listB dt {
    margin: 10px 0;
    font-size: 1.1em;
  }
}

/* -------------------------------------
テーブル
-------------------------------------*/
.rec_table table {
  margin: 30px auto;
  width: 100%;
  /*border-collapse:separate;
	border-spacing:4px;*/
  background: #fff;
}
.rec_table th,
.rec_table td {
  padding: 15px;
  vertical-align: top;
  text-align: left;
  background: #f3f2f7;
  border-bottom: 8px solid #fff;
}
.rec_table th {
  width: 20%;
  /*background: #f3f2f7;*/
  vertical-align: middle;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .rec_table table,
  .rec_table tbody,
  .rec_table tr,
  .rec_table th,
  .rec_table td {
    display: block;
  }
  .rec_table table {
    /*border-bottom: 1px solid #aaa;*/
  }
  .rec_table th,
  .rec_table td {
    padding: 10px;
    /*border: 1px solid #aaa;
		border-bottom: none;*/
  }
  .rec_table th {
    width: 100%;
  }
}

/**================================================================================
1
================================================================================**/
/**-------------------------------------
キャッチコピー
-------------------------------------**/
#rec .rec01 {
  padding: 150px 0 0;
  padding-right: calc((100% - 980px) / 2);
  padding-left: calc((100% - 980px) / 2);
  width: 100%;
  margin: 0 auto;
  background-position: top -150px center;
  background-size: auto 150%;
  background-repeat: no-repeat;
  position: relative;
}
#rec .rec01:after {
  content: "";
  width: 100%;
  height: 50px;
  display: block;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
#rec .rec01 .catch {
  margin: 0 0 0 auto;
  min-height: 220px;
  width: 500px;
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#rec .rec01 .catch > * {
  font-weight: bold;
}
#rec .rec01 .catch h3 {
  font-size: 1.9em;
  font-weight: bold;
}
#rec .rec01 .catch h3 span {
  font-size: 0.73em;
  line-height: 1.7;
  display: inline-block;
}
#rec .rec01 .catch p {
  margin: 20px 0 0;
  font-size: 1.5em;
}

/**-------------------------------------
メインタイトル
-------------------------------------**/
#rec .rec01 .title {
  margin: 40px 0 0 auto;
  padding: 30px 40px;
  width: 500px;
  /*border: 1px solid #000;*/
  background: #fff;
  position: relative;
  z-index: 2;
}
#rec .rec01 .title small {
  display: block;
  margin: 0 0 8px;
  font-size: 1em;
  /*	display: none;*/
}
#rec .rec01 .title h2 {
  margin: 0 0 15px;
  color: #7a5890;
  font-size: 1.4em;
  font-weight: bold;
}
#rec .rec01 .title em {
  display: inline-block;
  margin: 0 5px 5px 0;
  padding: 5px;
  min-width: 100px;
  background: #7a5890;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
#rec .richtext {
  margin: 10px auto 15px;
}
#rec .rec01 .title .price {
  padding: 5px;
  background: #e3dff0;
  color: #7a5890;
  font-weight: bold;
  text-align: center;
  font-size: 1.5em;
}

#rec .rec01 .title ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  margin: 15px 0 15px;
  color: #7a5890;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#rec .rec01 .title ul li {
  display: grid;
  place-items: center;
  border: 1px solid #7a5890;
  padding: 5px;
  min-width: 30%;
  margin: 0 3px;
}

@media screen and (max-width: 768px) {
  /**-------------------------------------
	キャッチコピー
	-------------------------------------**/
  #rec .rec01 {
    padding: 70vw 5% 0;
    width: 100%;
    height: auto;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #rec .rec01 .catch {
    min-height: 20vw;
    max-width: 440px;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }
  #rec .rec01 .catch h3 {
    font-size: 1.6em;
  }
  #rec .rec01 .catch p {
    width: 100%;
    margin: 10px 0 0;
    font-size: 1.1em;
  }

  /**-------------------------------------
	メインタイトル
	-------------------------------------**/
  #rec .rec01 .title {
    margin: 20px 0 0 auto;
    padding: 20px;
    max-width: 440px;
    width: 100%;
    background: #fff;
  }
  #rec .rec01 .title small {
    font-size: 0.8em;
  }
  #rec .rec01 .title h2 {
    margin: 0 0 10px;
  }
  #rec .rec01 .title em {
    min-width: 80px;
    font-size: 12px;
  }
  #rec .rec01 .title .price {
    font-size: 1.2em;
  }
}

/**-------------------------------------
rec_fv 20251218～
-------------------------------------**/
#rec .rec_fv {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 50px;
  align-items: start;
  padding: 120px 0 50px 10%;
  width: 100%;
  position: relative;
}
#rec .rec_fv .mainimg {
  border-radius: 30px 0 0 30px;
  height: 700px;
  overflow: hidden;
}
#rec .rec_fv .mainimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* catch */
#rec .rec_fv .text {
  margin-top: 20px;
}
#rec .rec_fv .text .catch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  font-weight: bold;
}
#rec .rec_fv .text .catch h3 {
  font-size: 1.9em;
}
#rec .rec_fv .text .catch p {
  font-size: 1.5em;
}

/* title */
#rec .rec_fv .text .title {
  margin: 40px 0 0;
}
#rec .rec_fv .text .title small {
  display: block;
  margin: 0 0 8px;
  font-size: 1em;
}
#rec .rec_fv .text .title h2 {
  margin: 0 0 15px;
  color: #7a5890;
  font-size: 1.4em;
  font-weight: bold;
}
#rec .richtext {
  margin: 10px auto 15px;
}
#rec .rec_fv .text .title em {
  display: inline-block;
  margin: 0 5px 5px 0;
  padding: 5px;
  min-width: 100px;
  background: #7a5890;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}
#rec .rec_fv .text .title .price {
  padding: 5px;
  background: #e3dff0;
  color: #7a5890;
  font-weight: bold;
  text-align: center;
  font-size: 1.5em;
}

#rec .rec_fv .text .title ul {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 15px 0 15px;
  color: #7a5890;
}

#rec .rec_fv .text .title ul li {
  display: grid;
  place-items: center;
  min-width: 32.5%;
  margin: 0 3px;
  padding: 5px;
  color: #fff;
  font-weight: bold;
  background: #e6b422;
}

@media screen and (max-width: 768px) {
  #rec .rec_fv {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    padding: 100px 0 20px;
  }
  #rec .rec_fv .mainimg {
    width: 95%;
    border-radius: 0 30px 30px 0;
    aspect-ratio: 5/6;
    height: auto;
  }

  /* catch */
  #rec .rec_fv .text {
    width: 88%;
    margin: 0 auto;
  }
  #rec .rec_fv .text .catch h3 {
    font-size: 1.6em;
  }
  #rec .rec_fv .text .catch p {
    font-size: 1.1em;
  }

  /* title */
  #rec .rec_fv .text .title {
    margin: 20px auto 0;
  }
  #rec .rec_fv .text .title small {
    font-size: 0.8em;
  }
  #rec .rec_fv .text .title h2 {
    margin: 0 0 10px;
  }
  #rec .rec_fv .text .title em {
    min-width: 80px;
    font-size: 12px;
  }
  #rec .rec_fv .text .title .price {
    font-size: 1.2em;
  }
}

/**================================================================================
6
================================================================================**/
#rec .rec06 {
  margin: 0 auto;
}
#rec .hosoku {
  padding: 30px 0;
  padding-right: calc((100% - 980px) / 2);
  padding-left: calc((100% - 980px) / 2);
  background: #7a5890;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  #rec .hosoku {
    padding: 20px 5%;
    /*		text-align: left;*/
    font-size: 1rem;
    font-weight: bold;
  }
}

/**================================================================================
7
================================================================================**/
#rec .rec07 {
  margin: 0 auto;
}
#rec .boxHSK {
  margin: 50px auto;
  width: 800px;
  text-align: center;
  font-weight: bold;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  #rec .rec07 {
  }
  #rec .boxHSK {
    margin: 30px auto;
    width: 80%;
    font-size: 1rem;
  }
}

/**================================================================================
8
================================================================================**/
#rec .rec08 {
  margin: 0 auto;
  padding: 20px 5%;
  background: #e3dff0;
}
#rec .yarigai {
  margin: 0 auto;
  padding: 1px 30px 30px;
  width: 650px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
#rec .rec08 .rec_titA {
  color: #7a5890;
}
@media screen and (max-width: 768px) {
  #rec .rec08 {
    margin: 0px auto;
  }
  #rec .yarigai {
    padding: 1px 20px 20px;
    width: 100%;
    text-align: left;
  }
}

/**================================================================================
9
================================================================================**/
#rec .rec09 {
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  #rec .rec09 {
    margin: 30px auto 0;
  }
}

/**================================================================================
10
================================================================================**/
#rec .rec10 {
  margin: 50px auto;
}
#rec .senpai {
  position: relative;
  margin: 30px auto;
  padding: 1px;
  min-height: 360px;
  width: 980px;
}
#rec .senpai:after {
  position: absolute;
  top: 90px;
  right: -30vw;
  z-index: 1;
  display: block;
  min-width: 880px;
  width: 70vw;
  height: 270px;
  background: #e3dff0;
  content: "";
}
#rec .senpai figure {
  position: absolute;
  top: 0;
  right: 50px;
  z-index: 2;
}
#rec .senpai figure img {
  position: relative;
  z-index: 2;
  display: block;
}
#rec .senpai dl {
  position: relative;
  z-index: 5;
  margin: 200px 0 0 150px;
  width: 400px;
  background: #fff;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
}
#rec .senpai dt {
  padding: 15px;
  background: #7a5890;
  color: #fff;
}
#rec .senpai dd {
  padding: 15px;
}
#rec .senpai dd h4 {
  margin: 15px 0 0;
  font-size: 2em;
}
#rec .senpai dd sub {
  display: inline-block;
  margin: 0 0 0 15px;
  vertical-align: baseline;
  font-size: 0.5em;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  #rec .rec10 {
    margin: 30px auto;
  }
  #rec .senpai {
    position: relative;
    width: 100%;
    min-height: auto;
  }
  #rec .senpai:after {
    position: absolute;
    top: 90px;
    right: 0;
    z-index: 1;
    min-width: auto;
    width: 100%;
    height: 170px;
  }
  #rec .senpai figure {
    position: static;
    text-align: center;
  }
  #rec .senpai figure img {
    height: 260px;
    max-width: none;
    width: auto;
  }
  #rec .senpai dl {
    margin: 0 auto 0;
    width: 90%;
  }
  #rec .senpai figure + dl {
    margin-top: 0;
  }
  #rec .senpai dd h4 {
    margin: 8px 0 0;
    font-size: 1.3em;
  }
  #rec .senpai dd sub {
    font-size: 0.7em;
  }
}

/**================================================================================
11
================================================================================**/
#rec .rec11 {
  margin: 50px auto;
}
#rec .oneday {
  display: flex;
  justify-content: space-between;
}
#rec .oneday figure {
  margin: 0 0 0 30px;
  width: 400px;
  flex: none;
}
#rec .oneday ul {
  flex: 1;
}
#rec .oneday li {
  margin: 0 0 20px;
  padding: 20px;
  background: #ffefef;
  font-size: 1em;
}

@media screen and (max-width: 768px) {
  #rec .rec11 {
    margin: 30px auto;
  }
  #rec .oneday {
    flex-flow: column;
  }
  #rec .oneday figure {
    margin: 15px auto;
    width: 100%;
  }
}

/**================================================================================
12
================================================================================**/
#rec .rec12 {
  margin: 50px auto 50px;
  padding: 40px 5%;
  background: #dcdcdc url(/recruit/images/bg_02.jpg) no-repeat center center / cover;
  position: relative;
  background-attachment: fixed;
}
#rec .about {
  margin: 0 auto;
  padding: 1px 30px 30px;
  width: 650px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #rec .rec12 {
    margin: 0 auto 50px;
  }
  #rec .about {
    padding: 1px 20px 20px;
    width: 100%;
    text-align: left;
  }
}

/**================================================================================
12-2
================================================================================**/
#rec .rec12-2 {
  margin: 50px auto;
}
#rec .rec12-2 .oneday li {
  margin: 0 0 8px;
  padding: 20px;
  background: #f3f2f7;
  font-size: 1em;
}
#rec .rec12-2 .oneday strong,
#rec .rec12-2 .oneday b {
  display: inline-block;
  width: 5em;
}

@media screen and (max-width: 768px) {
  #rec .rec12-2 {
    margin: 30px auto;
  }
  #rec .rec12-2 .oneday li {
    padding: 10px;
  }
  #rec .rec12-2 .oneday strong,
  #rec .rec12-2 .oneday b {
    display: block;
    width: 100%;
    margin: 0 0 10px;
  }
}

/**================================================================================
13
================================================================================**/
#rec .rec13 {
  margin: 50px auto;
}
@media screen and (max-width: 768px) {
  #rec .rec13 {
    margin: 30px auto;
  }
}

/**================================================================================
14
================================================================================**/
#rec .rec14 {
  margin: 50px auto;
}
#rec .training {
  display: flex;
  justify-content: space-between;
  padding: 150px 0 0;
  padding-right: calc((100% - 980px) / 2);
  padding-left: calc((100% - 980px) / 2);
  min-height: 460px;
  background-position: top right;
  background-size: 900px 460px;
  background-repeat: no-repeat;
}
#rec .training dt {
  color: #e3dff0;
  font-weight: bold;
  font-size: 2.5em;
}
#rec .training dd {
  margin: 20px 0 0;
  padding: 15px;
  width: 430px;
  border: 1px solid #e3dff0;
  background: #fff;
}
#rec .training dd p {
  margin: 8px 0;
}
#rec .training .richtext {
  margin: 330px 30px 0;
}
@media screen and (max-width: 768px) {
  #rec .training {
    display: block;
    padding: 35vw 5% 0;
    min-height: auto;
    background-position: top center;
    background-size: 100% auto;
  }
  #rec .training dt {
    font-size: 1.5em;
    line-height: 1.2;
  }
  #rec .training dd {
    margin: 15px auto;
    width: 100%;
  }
  #rec .training .richtext {
    margin: 0 auto;
  }
}

/**================================================================================
15
================================================================================**/
#rec .rec15 {
  margin: 80px auto;
}
#rec .ceo {
  display: flex;
  justify-content: flex-end;
  background: #f3f2f7;
}
#rec .ceo figure {
  width: 55%;
  background-position: right top;
  background-size: cover;
  background-repeat: no-repeat;
}
#rec .ceo dl {
  padding: 30px;
  width: 45%;
  background: #7a5890;
  color: #fff;
}
#rec .ceo dt {
  margin: 0 0 20px;
  padding: 8px;
  width: 400px;
  background: #fff;
  color: #7a5890;
  text-align: center;
  font-size: 1.4em;
}
#rec .ceo dd p {
  margin: 0 0 50px;
  width: 400px;
  font-size: 1.4em;
}
#rec .ceo dd p span {
  display: block;
}
#rec .ceo dd small {
  display: block;
  margin: 0 0 10px;
}
#rec .ceo dd h4 {
  margin: 0 0 20px;
  font-size: 2em;
}
#rec .ceo dd sub {
  display: block;
  font-size: 0.5em;
}
#rec .rec15 .richtext {
  margin: 40px auto;
  width: 800px;
}
@media screen and (max-width: 768px) {
  #rec .rec15 {
    margin: 30px auto;
  }
  #rec .ceo {
    flex-flow: column;
  }
  #rec .ceo figure {
    width: 100%;
    height: 60vw;
  }
  #rec .ceo dl {
    width: 100vw;
    margin: 0 auto;
    padding: 20px 5%;
  }
  #rec .ceo dt {
    width: 100%;
    font-size: 1.1em;
  }
  #rec .ceo dd p {
    margin: 0 0 20px;
    width: 100%;
    font-size: 1.1em;
  }
  #rec .ceo dd small {
  }
  #rec .ceo dd h4 {
    display: inline-block;
    margin: 0 0 20px;
    font-size: 1.3em;
  }
  #rec .ceo dd sub {
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: baseline;
    font-size: 0.7em;
    line-height: 1;
  }
  #rec .rec15 .richtext {
    margin: 20px auto;
    width: 90%;
  }
}

/**================================================================================
16
================================================================================**/
#rec .rec16 {
  margin: 0 auto;
  padding: 40px 5% 30px;
  background: #e3dff0;
  background: #ffefef;
}
#rec .rec16 .rec_titA {
  font-size: 1.4rem;
  margin: 0px 0 10px;
}
#rec .rec16 .rec_titA mark {
  display: inline-block;
  color: #fff;
  background: #7a5890;
  padding: 10px 20px;
  position: relative;
  border-radius: 14px;
}
#rec .rec16 .rec_titA mark::before {
  position: absolute;
  left: calc(50% - 10px);
  bottom: -10px;
  content: "";
  width: 20px;
  height: 20px;
  background: #7a5890;
  transform: rotate(135deg); /* calc((90deg - 欲しい角度) / 2) */
}
#rec .osusume {
  margin: -24px auto 0;
  padding: 30px 30px 20px;
  width: 650px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
#rec .rec16 .richtext p {
  display: inline-block;
  margin-right: 1em;
  color: #7a5890;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #rec .rec16 {
    padding: 30px 5% 30px;
  }
  #rec .rec16 .rec_titA {
    font-size: 1rem;
  }
  #rec .rec16 .rec_titA mark {
    padding: 10px 40px;
  }
  #rec .osusume {
    width: 100%;
    text-align: left;
  }
}

/**================================================================================
募集要項
================================================================================**/
#rec #recruit {
  margin: 80px auto 0;
}

@media screen and (max-width: 768px) {
  #rec #recruit {
    margin: 30px auto 0;
  }
}

/**================================================================================
エントリー
================================================================================**/
#rec #entry {
  margin: 0 auto 80px;
}
#rec #entry .rec_titA {
  color: #7a5890;
}
/**テーブル**/
.form table {
  margin: 30px auto;
  width: 100%;
  border-spacing: 1px;
  border-collapse: separate;
  background: #fff;
  border-top: 1px dotted #ccc;
}
.form table th,
.form table td {
  padding: 15px;
  background: #fff;
  text-align: left;
  border-bottom: 1px dotted #ccc;
}
.form table th {
  position: relative;
  width: 25%;
  background: #e3dff0;
  line-height: 1.8;
}

/**必須**/
.require {
  /*position: absolute;
	top: 0;
	right: 0.5em;
	bottom: 0;*/
  display: inline-block;
  margin: auto 5px;
  padding: 2px;
  width: 4em;
  background: #cc1111;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  font-size: 11px;
}

/*入力タグ*/
.form input[type="text"],
.form textarea,
.form select {
  padding: 5px 4px;
  width: 80%;
  height: 30px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.2;
}
.form input[name*="年齢"] {
  width: 20%;
}
.form textarea {
  padding: 2px;
  min-height: 150px;
}
.form select {
  padding: 0 10px;
  font-size: 14px;
}
/*ラジオボタンにスタイルあてる場合*/
.form label input[type="radio"] {
}
/*チェックボックスにスタイルあてる場合*/
.form label input[type="check"] {
}

#rec .form .textlink {
  text-align: center;
  margin: 50px auto;
}

@media screen and (max-width: 768px) {
  #rec #entry {
    margin: 0px auto 30px;
    width: 98%;
  }
  /**テーブル**/
  .form table,
  .form table tbody,
  .form table tr,
  .form table th,
  .form table td {
    display: block;
    width: 100%;
    border: none;
  }
  .form table th,
  .form table td {
    padding: 10px;
  }
  .form table th {
    background: #e3dff0;
  }

  /*入力タグ*/
  .form input[type="text"],
  .form textarea,
  .form select {
    width: 100%;
  }
  .form input[name*="年齢"] {
    width: 20%;
  }
  .form button {
    width: 90%;
  }

  #rec .form .textlink {
    margin: 30px auto;
  }
}


@media screen and (max-width: 768px) {
  /**スマホ固定ナビ**/
  #rec .sp_fix {
    width: 90%;
    position: fixed;
    left: 5%;
    top: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: center;
    z-index: 9998;
    /*
		background: #fff;
		background: #fdfce5;
		-webkit-box-shadow: 0 0px 4px #aaa;
		box-shadow: 0 0px 4px #aaa;
	*/
  }

  /*
	#rec .sp_fix > *:not(.anc) {
		display: inline-block;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		margin-right: 6px;
		padding: 0 0px;
		font-size: 12px;
		font-weight: 700;
		line-height: 40px;
		background: #f2de00;
		border-radius: 2px;
		pointer-events: visible;
	}
	#rec .sp_fix > a[href="#entry"] {
		color: #fff;
		background: #e55c7e;
	}
	#rec .sp_fix > a[href^="tel"] {
		margin-right: 50px;
		padding: 0 10px;
		background: #e55c7e;
		-webkit-box-flex: initial;
		-ms-flex: initial;
		flex: initial;
	}
	#rec .sp_fix > a[href^="tel"]:before {
		display: block;
		width: 20px;
		margin: auto;
		content: "\e942";
		font-size: 20px;
		color: #fff;
		font-family: 'icomoon';
		line-height: 40px;
	}
	*/

  #rec .sp_fix .anc {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 10px auto;
    border-left: 1px dotted #263238;
  }

  #rec .sp_fix .anc a {
    padding: 6px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    border-right: 1px dotted #263238;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #rec .sp_fix .anc a:nth-child(2) {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }

  #rec .sp_fix .anc a::after {
    /*
		content: ">";
		color: #e55c7e;
		display: block;
		width: 100%;
		height: 0.5em;
		line-height: 1.8;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
*/
    content: "\f107";
    font-family: "FontAwesome";
    display: block;
    width: 100%;
    height: 0.5em;
    line-height: 1.8;
    vertical-align: middle;
    margin: 0;
    color: #7a5890;
  }

  /**募集一覧**/
  /*
	#rec .sp_fix .rec-menus {
		display: none;
		width: 100%;
		max-height: calc(100vh - 60px);
		overflow: scroll;
		padding: 16px 10px;
		position: absolute;
		left: 0;
		top: 60px;
		background: #f2de00;
	}
*/

  /*
	#rec .sp_fix #rec-menu.op .rec-menus {
		display: block;
	}

	#rec .sp_fix .rec-menus li {
		margin: 4px;
		background: #fff;
	}

	#rec .sp_fix .rec-menus li a {
		display: block;
		position: relative;
	}

	#rec .sp_fix .rec-menus li a:after {
		content: "";
		display: block;
		width: 5px;
		height: 5px;
		border-top: 1px solid #7a5890;
		border-right: 1px solid #7a5890;
		-webkit-transform: rotate(45deg) translateY(-50%);
		transform: rotate(45deg) translateY(-50%);
		position: absolute;
		top: 50%;
		right: 15px;
	}
*/
}