@charset "utf-8";
/***************************************
common.css
***************************************/

/***************************************
reset
***************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
	margin:0;
	padding:0;
	border:0;
	font-style:normal;
	font-size:100%;
	vertical-align:baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
	display:block;
}

html{
    overflow-y:scroll;
}

blockquote, q{
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after{
	content:'';
	content:none;
}

input, textarea{
	margin:0;
	padding:0;
}

ol, ul{
    list-style:none;
}

ol.default{
	list-style-type:decimal;
}

ol.default > li{
	margin-left:2em;
}

table{
	width:100%;
    border-collapse:collapse; 
    border-spacing:0;
}

img{
	max-width:100%;
}

caption, th{
    text-align:left;
}

a{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	color:inherit;
	text-decoration:none;
}

a:focus{
	outline:none;
}

a:hover{
	color:inherit;
	text-decoration:none;
}

a:visited{
	color:inherit;
}

.clearfix{
	width:0;
}

.clearfix:after{
	content:""; 
	display:block;
	clear:both;
	width:0;
	height:0;
}

* html .clearfix{
	height: 1px;
	/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}

html{
	color:#444;
	font-size:12px;
	font-family:Avenir, 'Helvetica neue', Helvetica, 'メイリオ', Meiryo, '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
}

body{
	min-height:400px;
	-webkit-text-size-adjust:100%;
	font-size:1.2rem;
	background:#ffffff;
}

/***************************************
form setting
***************************************/
button,input[type="button"],input[type="submit"],input[type="reset"]{
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:100%;
	height:44px;
	margin:0;
	padding:0;
	font-family:Avenir, 'Helvetica neue', Helvetica, メイリオ, Meiryo, '游ゴシック', YuGothic, 'ＭＳ Ｐゴシック', sans-serif;
	border:inherit;
	outline:none;
}
input[type="text"],input[type="tel"],input[type="email"],input[type="password"],input[type="search"],select,textarea{
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:100%;
	height:44px;
	line-height:44px;
	padding:0 5px;
	font-size:1.2rem;
	border:none;
	border-radius:0;
	box-shadow:none;
	background:rgba(255,255,255,.5);
}
/*:focus{outline:none;}*/
input[type="password"]{
	font-family:Helvetica,Arial;	/*iOS*/
}
input[type="search"]:focus{outline-offset:-3px;}
input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{display:none;-webkit-appearance:none;}
/* placeholder */
::-webkit-input-placeholder{color:#999;}
:-moz-placeholder{color:#999;}
/* textarea */
textarea{
	height:auto;
	min-height:2em;
	line-height:2;
	padding:5px;
	resize:vertical;
}
/* select */
span[class^="select-"]{
	position:relative;
	display:block;
}
span[class^="select-"]:after{
	content:"▼";
	position:absolute;
	width:12px;
	height:12px;
	top:0;
	right:5px;
	bottom:0;
	margin:auto;
}
span.select-1{/*年*/
	display:inline-block;
	width:6em;
	margin-right:2px;
}
span.select-2{/*月日*/
	display:inline-block;
	width:4em;
	margin-right:2px;
}
select{
	padding-right:12px;
	color:#444;
}

/* textbox */
span[class^="input-"]{
	position:relative;
}
span[class^="input-"] span{
	padding-right:3px;
}
span.input-1{
	display:inline-block;
	width:8em;
	margin-right:3px;
}
span.input-2{/*最終学歴*/
	display:inline-block;
	width:15em;
	margin-right:3px;
}

/* checkbox */
input[type="checkbox"]{
	display:none;
}

label[class^="check-"] span{
	position:relative;
	padding-left:25px;
}

label[class^="check-"] span:after{
	content:"";
	position:absolute;
	width:20px;
	height:20px;
	top:0;
	left:0;
	bottom:0;
	margin:auto;
	background:url(../img/icon_02.png) no-repeat -25px 0px;
	background-size:45px auto;
}

label[class^="check-"] :checked + span:after{
	background-position:-25px -20px;
}

/* radio */
input[type="radio"]{
	display:none;
}

label[class^="radio-"] span{
	position:relative;
	padding-left:25px;
}

label[class^="radio-"] span:after{
	content:"";
	position:absolute;
	width:20px;
	height:20px;
	top:0;
	left:0;
	bottom:0;
	margin:auto;
	background:url(../img/icon_02.png) no-repeat -25px 0px;
	background-size:45px auto;
}

label[class^="radio-"] :checked + span:after{
	background-position:-25px -20px;
}

/***************************************
button setting
***************************************/
/* button a reset */
[class^="button-"],[class^="button-"]:visited{
	color:#fff;
	text-decoration:none;
}

/* button common */
[class^="button-"]{
	position:relative;
	cursor:pointer;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	display:block;
	width:100%;
	line-height:32px;
	text-align:center;
	text-shadow:-1px -1px 1px rgba(0,0,0,.3);
	color:#fff;
	font-size:1.2em;
	font-weight:normal;
	border-radius:2px;
	/*box-shadow:1px 2px 0 rgba(214,214,214,.3), 0 1px 0 rgba(255,255,255,.3) inset;*/
}

[class^="button-"]:hover{
	box-shadow:0 5px 10px rgba(255,255,255,.2) inset, 1px 1px 2px rgba(0,0,0,.3);
}

[class^="button-"]:active{
	box-shadow:0 10px 5px 2px rgba(0,0,0,.1) inset;
}

[class^="button-"].block{/*2行以上*/
	display:inline-block;
	width:100%;
	line-height:1.5em;
	padding:15px 40px;
}

[class^="button-"].block small{
	font-size:0.8em;
}

[class^="button-"].block em{
	letter-spacing:0.2em;
	font-size:1.3em;
	font-weight:bold;
}

/* active green */
.button-1{
	/*border:1px solid #4c7714;*/
	background:#5e9319;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #5e9319), color-stop(100%, #4c7714));
	background:-webkit-linear-gradient(top, #5e9319 0%, #4c7714 100%);
	background:-moz-linear-gradient(top, #5e9319 0%, #4c7714 100%);
	background:linear-gradient(to bottom, #5e9319 0%, #4c7714 100%);
}

/* active blue */
.button-2{
	/*border:1px solid #4059a0;*/
	background:#4f6dc4;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #4f6dc4), color-stop(100%, #4059a0));
	background:-webkit-linear-gradient(top, #4f6dc4 0%, #4059a0 100%);
	background:-moz-linear-gradient(top, #4f6dc4 0%, #4059a0 100%);
	background:linear-gradient(to bottom, #4f6dc4 0%, #4059a0 100%);
}

/* active red */
.button-3{
	/*border:1px solid #a60a12;*/
	background:#d61111;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%, #d61111), color-stop(100%, #a60a12));
	background:-webkit-linear-gradient(top, #d61111 0%, #a60a12 100%);
	background:-moz-linear-gradient(top, #d61111 0%, #a60a12 100%);
	background:linear-gradient(to bottom, #d61111 0%, #a60a12 100%);
}

/* light */
.button-light{
	border:1px solid #fff;
	background:none;
}

/* common white */
[class="button-white"]{
	padding:10px 0;
	color:#ff4d63;
	text-shadow:none;
	background:#fff;
}

[class="button-white"]:hover,
[class="button-white"]:visited{
	color:#ff4d63;
}

[class="button-white"]:hover{
	box-shadow:0 0 1px 1px rgba(0,0,0,.3);
}

[class="button-white"]:active{
	box-shadow:0 0 1px 1px rgba(255,255,255,.3);
}

/* arrow */
[class*="arw01-"]{
	position:relative;
}

[class*="arw01-"]:after{
	content:"";
	position:absolute;
	width:20px;
	height:20px;
	top:0;
	right:5px;
	bottom:0;
	margin:auto;
	background:url(../img/icon_02a.png) no-repeat 0 0;
	background-size:100px;
}

.arw01-U:after{
	background-position:-27px -3px;
}

.arw01-R:after{
	background-position:-27px -27px;
}

/* link */
a.link-yellow{
	color: #ffff96;
	font-weight: bold;
}

a.link-yellow img{
	margin-left: 0.5em;
	vertical-align: middle;
}

a.link-yellow:hover,
a.link-yellow:active{
	color: #fff;
}


/***************************************
color rules :
main color         :#4f6dc4
sub color1         :#d6e3f3
sub color2         :#ffddad
title color        :#53320e
basic gray color   :#444
***************************************/
/***************************************
common setting
***************************************/
.innerContainer{
	position:relative;
	display:block;
}

/* 警告 */
.attention{
    color:#fa2020;
}

.attention.type-1{
	position:relative;
    display:block;
    padding-left:25px;
}

.attention.type-1:after{
	content:"";
	position:absolute;
	width:20px;
	height:20px;
	top:0;
	left:0;
	bottom:0;
	margin:auto;
	background:url(../img/icon_01a.png) no-repeat -5px -5px;
	background-size:150px;
}

/* コメント */
.comment{
    color:#444;
}

.comment a{
    color:inherit;
    text-decoration:underline;
}

/* web font */
.webfont{
	font-family:'Open Sans', sans-serif;
}

#globalNavi .webfont{
	font-size: 80%;
}

/***************************************
layout
***************************************/
#page{
	height:100%;
	min-height:400px;
}

#wrapper{
	height:100%;
	min-height:540px;
    min-width: 500px;
}

/*****************
globalNavi
*****************/
#globalNavi{
	z-index:10;
	position:fixed;
	display:block;
	width:240px;
	min-width:240px;
	height:100%;
	min-height:400px;
	background: #ffe3e4;
}

#globalNavi .innerContainer{
	z-index:10;
	height:100%;
	margin-left:20px;
	border-left: 1px solid #ff8080;
}

/*****************
fixedMenu
*****************/
#fixedMenu{
	z-index:10;
	position:fixed;
	display:block;
	background: #ffe3e4;
	width: 100%;
}

/*****************
main
*****************/
main{
	display:block;
	padding-left:240px;
	color:#fff;
	background:#ff4d63;
}

main article{
	position:relative;
	background: #ff4d63;
}

/*****************
footer
*****************/
footer{
	background: #ff4d63;
}

footer .clm01{
	text-align: center;
	margin-left: 240px;
	padding: 10px 0;
}
footer span{
	margin: 0 auto;
	color: #fff;
}

.boxMaxsize{
	overflow:hidden;
	width:100%;
	min-width:500px;
	height:100%;
	min-height:270px;
	background: #ff4d63;
}

/*****************
header
*****************/
header{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:100%;
	height:240px;
	padding:30px 30px 0;
	background: #ff4d63;
}

header section{
	padding-top:20px;
	line-height:2em;
	color:#fff;
}

h1{/* for site discription */
	font-size:1.4rem;
	font-weight:bold;
}

h2{/* for module title */
	position:relative;
	top:-7px;
	line-height:50px;
	padding-bottom:7px;
	color:#fff;
	border-bottom:1px solid rgba(255,255,255,1);
    font-size: 120%;
}

h2 em{
	position:relative;
	top:7px;
	font-family:'Open Sans', sans-serif;
	font-size:2.4rem;
	font-weight:normal;
	padding-right:20px;
}

/***************************************
background color 2018
***************************************/

main#subPage {
	color:#444;
}

main#subPage article{
	background: #ffffff;
}

main#subPage .boxMaxsize{
	background: #ffffff;
}

main#subPage header{
	background: #ffffff;
}

main#subPage h2{
	color:#444;
	border-bottom:1px solid rgba(255,0,0,.3);
}

main#subPage h3{
	color:#444;
	font-size:120%;
	font-weight:bold;
	border-bottom:solid 1px #FF0000;
	border-left:solid 1px #FF0000;
	margin:15px 0px 10px 0px;
	padding:5px 0px 5px 10px;
}

main#subPage section{
	color:#444;
}


/***************************************
common modules
***************************************/
/*****************
#logo
*****************/
#logo{
	padding:20px 10px 0;
}

/*****************
#mainNavi
*****************/
#mainNavi{
	position:relative;
	margin-top:80px;
	font-size:1.4rem;
}

#mainNavi ul li{
	position:relative;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	line-height:32px;
	padding:0 10px 0 10px;
	letter-spacing:0.1em;
	transition:padding-left .2s ease-in;
	-ms-transition:padding-left .2s ease-in;
	-moz-transition:padding-left .2s ease-in;
	-webkit-transition:padding-left .2s ease-in;
}

#mainNavi ul li:hover{
	/*padding-left:28px;*/
	transition:padding-left .2s ease-in;
	-ms-transition:padding-left .2s ease-in;
	-moz-transition:padding-left .2s ease-in;
	-webkit-transition:padding-left .2s ease-in;
}

#mainNavi ul li.active{
	color:#ff0000;
	left: -2px;
	/*padding-left:28px;*/
	border-left: 3px solid #ff0000;
	transition:padding-left .2s ease-in;
	-ms-transition:padding-left .2s ease-in;
	-moz-transition:padding-left .2s ease-in;
	-webkit-transition:padding-left .2s ease-in;
}

#mainNavi ul li a{
	display:block;
	color:inherit;
	font-weight:bold;
}

#mainNavi ul li a:hover{
	color:ff0000;
}

/*****************
#snsLink
*****************/
#snsLink{
	position:relative;
	padding:20px 0 0 10px;
}

#snsLink .snsFb a{
	display:inline-block;
	width:34px;
	height:34px;
	background:url(../img/icon_sns.png) no-repeat 0 0;
}

#snsLink .snsFb a:hover{
	background-position:0 100%;
}

/*****************
#subNavi
*****************/
#subNavi{
	position:absolute;
	left:-2px;
	bottom:20px;
	font-size: 1.2rem;
}

#subNavi ul li{
	line-height:28px;
	padding:0 10px;
}

/*****************
#overlay
*****************/
#overlay{
	display:none;
	z-index:100;
	overflow:hidden;
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background:rgba(0,0,0,.5);
}

/*****************
#pageTop
*****************/
#pageTop header{
	position:absolute;
	background:transparent;
    border-top: 9px solid #ff4d63;
	padding: 0;
}

#pageTop header h2{
	padding-bottom:0;
	border-bottom:none;
}
#pageTop .boxMaxsize{
	background:#ff4d63;
}

#pageTop .boxMaxsize img{
	width:100%;
	min-width:470px;
	height:auto;
}

/*****************
#pageTopText
*****************/
#pageTopText header{
	position:absolute;
	z-index:+1;
	background: #a8a8a8;
	height: 200px;
}

#pageTopText header h2{
	padding-bottom:0;
	border-bottom:none;
}

#pageTopText header h2 em{
    font-size: 3.0rem;
    font-weight: bold;
}

#pageTopText header section{
	line-height:2.0em;
	padding-top:10px;
	font-size: 120%;
	font-family:'Open Sans', sans-serif;
}

#pageTopText .boxMaxsize{
	overflow:hidden;
	background:#ff4d63;
	min-height: 200px;
}

/*****************
#topics
*****************/
#topics header{
	height: 300px;
}

#topics header section{
	line-height:2.0em;
	padding-top:10px;
	font-size: 110%;
	font-family:'Open Sans', sans-serif;
	overflow: scroll;
	overflow-x: hidden;
	height: 12em;
	color: #444;
	background-color: #fff;
}

#topics .boxMaxsize{
	overflow:hidden;
	background:#ff4d63;
	min-height: 240px;
}

#topics .boxMaxsize ul{
	margin-left: 3em;
}

#topics .boxMaxsize ul li:before{
	margin-left: -2em;
	content: '●';
	color: #f00;
}

/*****************
#pageAbout_us
*****************/
#pageAbout_us{
	font-size:1.2rem;
}

#pageAbout_us .list01{
	padding:20px 0 0;
}

#pageAbout_us .list01 ul{
	letter-spacing:-.3em;
}

#pageAbout_us .list01 ul li{
	letter-spacing:normal;
	overflow:hidden;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	display:inline-block;
	width:33.33333%;
	vertical-align:bottom;
}

#pageAbout_us .list01 ul li img{
	width:100%;
	height:auto;
	line-height:0;
	margin:0;
	padding:0;
	font-size:0;
	border:none;
	vertical-align:bottom;
}

#pageAbout_us .box01{
	float:right;
	padding-right:20px;
}

/*****************
#pageService_menu
*****************/
#pageService_menu{
	font-size:1.2rem;
}

#pageService_menu header{
	z-index:+1;
	top:0;
	left:0;
	background:none;
	height: 100px;
}

#pageService_menu #serviceListArea{
	overflow:hidden;
	width:100%;
}

#pageService_menu .serviceList{
	letter-spacing:-.3em;
	position:relative;
	float:left;
	left:0;
	background-color: #f2364d;
}

#pageService_menu .serviceList > li{
	letter-spacing:normal;
	display:inline-block;
	width:50%;
	vertical-align:top;
}

#pageService_menu .serviceList li .innerBox{
	overflow:hidden;
	position:relative;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	display:block;
	padding:0 5%;
	height:	100%;
}

#pageService_menu .serviceList li.even .innerBox{
	background-color: #ff4d63;
}

#pageService_menu .serviceList li .onlyimg{
	padding:0;
}

#pageService_menu .serviceList li h3{
	padding:40px 10px 0;
	font-size: 1.8rem;
    font-weight: bold;
}

#pageService_menu .serviceList li .title em{
	position:relative;
	display:block;
	line-height:1.3;
	padding-bottom:20px;
	font-family:'Open Sans', sans-serif;
	font-size:1.5em;
	font-weight:bold;
}

#pageService_menu .serviceList li .title em:after{
	content:"";
	position:absolute;
	width:20px;
	height:1px;
	left:0;
	right:0;
	bottom:10px;
	margin:auto;
	background:#ff4d63;

}

#pageService_menu .serviceList li .title span{
	position:absolute;
	display:inline-block;
	width:66px;
	height:66px;
	line-height:66px;
	top:-33px;
	right:-15px;
	text-align:center;
	color:#fff;
	border-radius:50%;
	background:#3f5f98;

}

#pageService_menu .serviceList li section{
	padding-top:10px;
	min-height:130px;
}

#pageService_menu .serviceList li section li{
	position:relative;
	line-height:2em;
	padding-left:1em;
}

#pageService_menu .serviceList li section li:after{
	content:"・";
	position:absolute;
	width:1em;
	height:1em;
	text-align:center;
	top:0;
	left:0;
}

#pageService_menu .serviceList li section p{
	line-height:2em;
}

#pageService_menu .serviceList li section span{
	display:block;
	line-height:2em;
	margin-top:10px;
	padding:10px;
	font-size:0.9em;
	border:1px solid #9fc457;
}

#pageService_menu .serviceList li .box01{
	float:right;
	right: 0;
	margin:0.5em 0;
}

/* float contents */
#pageService_menu #serviceListArea .carouselNavi{
	position:absolute;
	cursor:pointer;
	width:48px;
	height:48px;
	top:0;
	bottom:0;
	margin:auto;
	background:#496d03 url(../img/arrow_01.png) no-repeat 0 0;
}

#pageService_menu #serviceListArea #carouselLeft{
	display:none;
	left:0;
}

#pageService_menu #serviceListArea #carouselRight{
	right:0;
	background-position:0 100%;
}

#pageService_menu #serviceListArea .btn01{
	position:absolute;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	width:100%;
	bottom:0;
	padding:20px 50px 30px;
}

/*****************
#pageCompany
*****************/
#pageCompany header{
	height:auto;
	padding-bottom:20px;
}

#pageCompany .boxMaxsize{
	background: #ff4d63;
}

#pageCompany .box01{
	padding:0 50px;
}

#pageCompany .box01 dl{
	letter-spacing:-.4em;
	width:100%;
}

#pageCompany .box01 dl dt,
#pageCompany .box01 dl dd{
	letter-spacing:normal;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	display:inline-block;
	line-height:2em;
	vertical-align:top;
}

#pageCompany .box01 > dl{
	padding-top:0px;
}

#pageCompany .box01 > dl > dt{
	width:15%;
	min-width:100px;
}

#pageCompany .box01 > dl > dd{
	max-width:85%;
}

#pageCompany .box01 > dl > dd dt{
	padding-right:5px;
}

#pageCompany .box01 > dl > dd dd{
	padding-right:15px;
}

#pageCompany .box02{
	padding:20px 0 0 150px;
}

#pageCompany .box02 p{
	line-height:2em;
	padding-bottom:20px;
}

#pageCompany .box02 a{
	display:inline-block;
	width:auto;
	line-height:1em;
	padding:10px 20px;
	border:1px solid #fff;
}

#pageCompany .btn01{
	padding:20px 50px 30px;
}

#pageCompany .list01{
	padding:20px 0 0;
}

#pageCompany .list01 ul{
	letter-spacing:-.3em;
}

#pageCompany .list01 ul li{
	letter-spacing:normal;
	overflow:hidden;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	display:inline-block;
	width:33.33333%;
	vertical-align:bottom;
}

#pageCompany .list01 ul li img{
	width:100%;
	height:auto;
	line-height:0;
	margin:0;
	padding:0;
	font-size:0;
	border:none;
	vertical-align:bottom;
}


/*****************
#pageAccess
*****************/
#pageAccess header section{
	padding-top:20px;
}

#pageAccess header section h3{
	padding-bottom:10px;
}

#pageAccess header section div{
	display:inline-block;
	width:40%;
	min-width:300px;
	vertical-align:top;
}

#pageAccess header section div dl{
	letter-spacing:-.4em;
}

#pageAccess header section div dl dt,
#pageAccess header section div dl dd{
	letter-spacing:normal;
	display:inline-block;
	padding-right:10px;
	vertical-align:top;
}

#pageAccess header section div dl dd{
	padding-right:20px;
}

#pageAccess .box01{
}

#pageAccess .box01 dl{
	letter-spacing:-.4em;
	width:100%;
}

#pageAccess .box01 > ul{
	padding-top:20px;
	padding-bottom:20px;
}

#pageAccess .box01 > ul > li{
	min-width:100px;
}

/*****************
.pageDocument
*****************/
.pageDocument{
	padding-bottom:50px;
}

.pageDocument header a{
	text-decoration:underline;
}

.pageDocument header section{
	padding-top:20px;
}

.pageDocument header section h3{
	padding-bottom:10px;
}

.pageDocument header section ul{
	padding:30px 30px 0;
}

.pageDocument header section ul li{
	position:relative;
	padding:1em 0 0 1.5em;
}

.pageDocument header section ul li.type01:after{
	content:"※";
	position:absolute;
	width:1em;
	height:1em;
	top:0;
	left:0;
	padding-top:1em;
}

.pageDocument header section ul li.type02{
	padding-top:0.5em;
}

.pageDocument header section ul li.type02:after{
	content:"→";
	position:absolute;
	width:1em;
	height:1em;
	top:0;
	left:0;
	padding-top:0.5em;
}

.pageDocument .box01,
.pageDocument .box02{
	line-height:2em;
	padding:20px 20px 0 30px;
}

.pageDocument .box01 h3{
	padding:0 0 10px 1em;
}

.pageDocument .box01 h4{
	padding:2em 0 0;
}

.pageDocument .box01 ol{
	padding-left:2em;
	list-style:decimal;
}

.pageDocument .box01 > ol > li{
	padding-top:30px;
}

.pageDocument .box01 > ol > li:first-child{
	padding-top:0;
}

.pageDocument .box01 > ol > li ul{
	list-style:disc;
	padding-left:2em;
}

.pageDocument .box01 ol ol{
	list-style:circled-decimal;
}

.pageDocument .box01 h3 + dl{
	margin-top:30px;
}

.pageDocument .box01 dl.type01{
	letter-spacing:-.4em;
	margin:0 30px;
	border-top:1px solid #fff;
}

.pageDocument .box01 dl.type01:last-child{
	border-bottom:1px solid #fff;
}

.pageDocument .box01 .type01 dt,
.pageDocument .box01 .type01 dd{
	letter-spacing:normal;
	display:inline-block;
	padding:10px;
	vertical-align:top;
}

.pageDocument .box01 .type01 dt{
	width:100px;
}

.pageDocument .box01 dd p.indent01{
	padding-top:15px;
}

.pageDocument .box01 dd p.indent01 span{
	padding-left:2em;
}

.pageDocument .box01 dd a{
	text-decoration:underline;
}

.pageDocument .box02 dt,
.pageDocument .box02 dd{
	display:inline-block;
	padding-right:10px;
}

.pageDocument .box02 dd{
	padding-right:20px;
}

.pageDocument .box02 p.type02{
	padding:0 30px;
}

.pageDocument .btn01{
	padding:20px 50px 30px;
}

.pageDocument .list01{
	padding:20px 0 0;
}

.pageDocument .list01 ul{
	letter-spacing:-.3em;
}

.pageDocument .list01 ul li{
	letter-spacing:normal;
	overflow:hidden;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	display:inline-block;
	width:33.33333%;
	vertical-align:bottom;
}

.pageDocument .list01 ul li img{
	width:100%;
	height:auto;
	line-height:0;
	margin:0;
	padding:0;
	font-size:0;
	border:none;
	vertical-align:bottom;
}

/*****************
#pageXXXX .pageDocument
*****************/
#pageAbout_us.pageDocument h3{
	color: #ff0012;
}

#pageAbout_us.pageDocument .box01{
	float:unset;
	padding:30px 20px 0 30px;
}

#pageService.pageDocument header{
	height: auto;
}

#pageService.pageDocument h2{
	color: #ff0000;
}

#pageService.pageDocument ul{
    margin: 0 auto 0 20px;
	max-width: 590px;;
}

#pageService.pageDocument li{
	display: inline-block;
	width: 130px;
}

#pageService.pageDocument li span{
	color: #FF0000;
}

#pageService.pageDocument ul.link{
    margin: 80px auto 0 0;
	max-width :none;
}

#pageService.pageDocument ul.link li{
	color: #FF0000;
	display: inline-block;
	width: auto;
	margin-right: 2em;
}

#pageService.pageDocument ul.link a{
	color: #FF0000;
	opacity: 0.4;
}

#pageService.pageDocument header{
	height: auto;
}

#pageService.pageDocument .productList ul{
    margin: 0 auto 0 20px;
	max-width: 900px;
}

#pageService.pageDocument .productList li{
	display: inline-block;
	width: 49%;
    vertical-align: top;
	margin-top: 20px;
}

#pageService.pageDocument .productList li p{
	width: 50%;
	display: block;
	float: left;
}

#pageService.pageDocument .productList li img{
	float: left;
}

#pageCompany.pageDocument h2 em{
	color: #ff0000;
}

#pageCompany.pageDocument .innerBox h3{
	width: 100%;
	border: none;
	padding-left: 0;
}

#pageCompany.pageDocument .businessList{
	max-width: 900px;
}

#pageCompany.pageDocument .businessList li{
	padding: 10px 20px 10px 0;
	margin: 0 30px;
	border-top: 1px dotted rgba(255,0,0,.3);
}

#pageCompany.pageDocument .businessList li:first-child{
	border-top: none;
}

#pageCompany.pageDocument .businessList li .innerBox{
	float: left;
	width: 50%;
	padding-left: 0px;
}

#pageCompany.pageDocument #gmap01,
#pageCompany.pageDocument #gmap02,
#pageCompany.pageDocument #gmap03,
#pageCompany.pageDocument #gmap04,
#pageCompany.pageDocument #gmap05,
#pageCompany.pageDocument #gmap06{
	margin: 20px0 auto;
	width: 50%;
	height: 160px;
}

#pageCompany.pageDocument .box01 > dl > dt {
	width: 20%;
}

#pageCompany.pageDocument .box02{
	float: right;
    padding-right: 40px;
}

/*****************
.pageMail
*****************/
.pageMail{
	padding-bottom:50px;
}

.pageMail .box01{
	max-width:560px;
	margin:auto;
	padding:50px 0 0;
}

.pageMail .box03 + form .box01{
	padding-top:20px;
}

.pageMail .box01 > ul > li{
	padding-top:10px;
}

.pageMail .box01 > ul.js-resume{
	margin-top:10px;
	padding:5px;
	padding-left:20px;
	border:1px solid #fff;
}

.pageMail .box01 > ul > li.comment{
	text-align:right;
	color:#fff;
}

.pageMail .box01 > ul > li.comment span{
	color:#f00;
}

.pageMail .box01 dl{
	letter-spacing:-.4em;
	display:block;
	width:100%;
}

.pageMail .box01 dl dt,
.pageMail .box01 dl dd{
	position:relative;
	letter-spacing:normal;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	display:inline-block;
	vertical-align:top;
}

.pageMail .box01 .vertical{
	vertical-align:middle;
}

.pageMail .box01 dl dt{
	width:30%;
	min-width:150px;
	line-height:44px;
	padding:0 20px 0 0;
	text-align:right;
}

.pageMail .box01 dl dt.txt01{
	line-height:18px;
	padding:13px 20px 0 0;
}

.pageMail .box01 dl dt .message{
	display:block;
	font-size:0.9em;
}

.pageMail .box01 dl.required dt:after{
	content:"*";
	position:absolute;
	line-height:44px;
	top:0;
	right:12px;
	color:#f00;
}

.pageMail .box01 dl dd{
	width:70%;
	min-width:300px;
}

.pageMail .box01 dl dd label{
	padding-left:20px;
}

.pageMail .box01 dl dd label:first-child{
	padding-left:0;
}

.pageMail .box01 dl dd input{
	height:44px;
	line-height:44px;
	padding:0 5px;
}

.pageMail .box01 .btn01{
	letter-spacing:-.4em;
	padding-left:30%;
}

.pageMail .box01 .btn01 li{
	position:relative;
	letter-spacing:normal;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	display:inline-block;
	width:50%;
	vertical-align:top;
}

.pageMail .box01 .btn01 li:first-child{
	padding-right:10px;
}

.pageMail .box01 .btn01 li:last-child{
	padding-left:10px;
}

.pageMail .box01 .btn01 li .button-white{
	line-height:44px;
}

/* 完了画面コメント */
.pageMail .box02{
	position:relative;
	width:320px;
	line-height:1.5;
	margin:auto;
	padding:150px 0 0 0;
	text-align:center;
}

.pageMail .box02 h3{
	font-size:2.4rem;
	font-weight:bold;
}

.pageMail .box02 p{
	line-height:2;
	padding-top:20px;
}

/* 確認画面 */
.pageMail .box01 > ul > li.data01{
	border-bottom:1px solid #fff;
}

.pageMail .box01 > ul > li.data01:first-child{
	border-top:1px solid #fff;
}

.pageMail .box01 li.data01 dl{
	letter-spacing:-.4em;
	display:block;
	width:100%;
}

.pageMail .box01 li.data01 dl dt,
.pageMail .box01 li.data01 dl dd{
	position:relative;
	letter-spacing:normal;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	display:inline-block;
	vertical-align:top;
}

.pageMail .box01 li.data01 dl dt{
	width:30%;
	min-width:150px;
	line-height:1.2em;
	padding:10px 20px 10px 0;
	text-align:right;
}

.pageMail .box01 li.data01 dl dd{
	width:70%;
	min-width:300px;
	line-height:1.2em;
	padding:10px 0;
}

.pageMail .box03{
	max-width:560px;
	margin:auto;
	padding:50px 0 0;
}

.pageMail .box03 h3{
	line-height:3em;
	text-align:center;
	font-size:1.5em;
	font-weight:bold;
}

.pageMail .box03 h4{
	line-height:3em;
	text-align:center;
	font-size:1.2em;
	font-weight:bold;
}

.pageMail .box03 .error_messe{
	padding:5px 0;
	color:#be1f27;
}

/* イメージ画像 */
.pageMail .list01{
	padding:50px 0 0;
}

.pageMail .list01.type-2{
	position:fixed;
	bottom:0;
}

.pageMail .list01 ul{
	letter-spacing:-.3em;
}

.pageMail .list01 ul li{
	letter-spacing:normal;
	overflow:hidden;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	display:inline-block;
	width:33.33333%;
	vertical-align:bottom;
}

.pageMail .list01 ul li img{
	width:100%;
	height:auto;
	line-height:0;
	margin:0;
	padding:0;
	font-size:0;
	border:none;
	vertical-align:bottom;
}


/*****************
#pageContact
*****************/
#pageContact{
	padding-bottom:0;
}

#pageContact header{
	height:auto;
}

#pageContact header h2 em{
	color:#FF0000;
}

#pageContact header dt{
	font-size:120%;
	font-weight:bold;
	padding-top:15px;
	padding-bottom:15px;
}

#pageContact .box01 ul{
	margin:40px auto 160px auto;
    text-align: center;
}

#pageContact .box01 li{
	display: inline-block;
	margin: 0px 13px;
}

#pageContact .box01 a{
	width: 140px;
	color: #ffffff;
	background-color: #ff9999;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
    text-align: center;
	border: solid 1px #ffffff;
}

#pageContact .box01 a:hover,
#pageContact .box01 a:active{
	background-color: #ff4d63;
}

/*****************
#pageForm
*****************/
#pageForm{
	padding-bottom:0;
}

#pageForm header{
	height:auto;
}

#pageForm header h2 em{
	color:#FF0000;
}

#pageForm .box01 dt,
#pageForm .box01 dd{
    letter-spacing: normal;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    line-height: 2em;
    vertical-align: top;
}

#pageForm .box01 dl{
    width: 100%;
	margin-bottom: 10px;
}

#pageForm .box01 > dl > dt {
    width: 30%;
    max-width: 200px;
    text-align: right;
    padding-top: 0.6rem;
	margin-right: 1.0em;
}

#pageForm .box01 dl em{
	width: 0;
	color: #ff0000;
    font-size: 160%;
    display: inline-block;
}

#pageForm .box01 > dl > dd {
    min-width: 65%;
}

#pageForm .box01 dl dd.comment{
    text-align: right;
}

#pageForm .box01 input,
#pageForm .box01 select,
#pageForm .box01 textarea{
	width: 100%;
	background-color: #ffe5e5;
	border: solid 1px #ff4d63;
}
#pageForm .box01 textarea{
	height: 260px;
}

#pageForm .box01 input{
	background-color: #ffe5e5;
}

#pageForm .box01 a{
	width: 140px;
	color: #ffffff;
	background-color: #ff9999;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
    text-align: center;
	border: solid 1px #ffffff;
}

#pageForm .box01 a:hover,
#pageForm .box01 a:active{
	background-color: #ff4d63;
}

#pageForm .box01 ul{
	margin:40px auto 160px auto;
    text-align: center;
}

#pageForm .box01 li{
	display: inline-block;
	margin: 0px 13px;
}

#pageForm .box01 a{
	width: 140px;
	color: #ffffff;
	background-color: #ff9999;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
    text-align: center;
	border: solid 1px #ffffff;
}

#pageForm .box01 a:hover,
#pageForm .box01 a:active{
	background-color: #ff4d63;
}

#pageForm .box02 dt,
#pageForm .box02 dd{
    letter-spacing: normal;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    line-height: 2em;
    vertical-align: top;
}

#pageForm .box02 dl{
    width: 100%;
	margin-bottom: 10px;
}

#pageForm .box02 > dl > dt {
    width: 30%;
    max-width: 200px;
    text-align: right;
	margin-right: 1.0em;
}

#pageForm .box02 dl em{
	width: 0;
	color: #ff0000;
    font-size: 160%;
    display: inline-block;
}

#pageForm .box02 > dl > dd {
    min-width: 65%;
}

#pageForm .box02 dl dd.comment{
    text-align: right;
}

#pageForm .box02 a{
	width: 140px;
	color: #ffffff;
	background-color: #ff9999;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
    text-align: center;
	border: solid 1px #ffffff;
}

#pageForm .box02 a:hover,
#pageForm .box02 a:active{
	background-color: #ff4d63;
}

#pageForm .box02 ul{
	margin:40px auto 160px auto;
    text-align: center;
}

#pageForm .box02 li{
	display: inline-block;
	margin: 0px 13px;
}

#pageForm .box02 a{
	width: 140px;
	color: #ffffff;
	background-color: #ff9999;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
    text-align: center;
	border: solid 1px #ffffff;
}

#pageForm .box02 a:hover,
#pageForm .box02 a:active{
	background-color: #ff4d63;
}

/*****************
#pagePolicy
*****************/
#pagePolicy{
	padding-bottom:0;
}

#pagePolicy header{
	height:auto;
}

#pagePolicy header h2 em{
	color:#FF0000;
}

#pagePolicy .box01 dt{
	font-size:120%;
	font-weight:bold;
	padding-top:15px;
}

#pagePolicy .box01 ul{
	padding-left:30px;
}

#pagePolicy .box02{
	border:1px solid;
	margin:30px;
}

#pagePolicy .box02 #jimukyoku01{
	font-size:120%;
	font-weight:bold;
	line-height:10%;
	padding-left:20px;
}

#pagePolicy .box02 #jimukyoku02{
	padding-left:80px;
	padding-bottom:20px;
}




/* イメージ画像 */
#pagePolicy .list01{
	padding:50px 0 0;
}

#pagePolicy .list01.type-2{
	position:fixed;
	bottom:0;
}



/*****************
.permissionBox
*****************/
.permissionBox{
    padding:30px 30px 250px;
}

.permissionBox h3{
    font-size:1.2em;
}

.permissionBox .txt01{
    padding-top:20px;
}

.permissionBox .txt01 a{
    text-decoration:underline;
}

.permissionBox .txt01 em{
    font-weight:bold;
}

.permissionBox .box01{
    padding-top:30px;
    text-align:center;
    font-size:0;
}

.permissionBox .box01 li{
    display:inline-block;
    width:200px;
    padding:0 20px;
    vertical-align:top;
    font-size:10px;
}

.permissionBox .box01 li a{
    padding:5px 0;
}


/*****************
#pageRecruit
*****************/
#pageRecruit.pageDocument{
	padding-bottom:50px;
}

#pageRecruit header{
	height:auto;
}

#pageRecruit header h2{
	color:#FF0000;
	border-bottom:none;
}

#pageRecruit header h2 a{
	text-decoration:none;
}

#pageRecruit #usume{
	opacity:0.4;
}


#pageRecruit p{
	padding-left:10px;
}    



/*****************
#pagePrivacy
*****************/
#pagePrivacy header{
	height:auto;
}

#pagePrivacy header h2 em{
	color:#FF0000;
}

#pagePrivacy .box01 dt{
	font-size:120%;
	font-weight:bold;
	padding-top:15px;
}

#pagePrivacy .box01 dd{
	padding-left:20px;
}

#pagePrivacy .box02{
	border:1px solid;
	padding:20px 50px;
	margin:30px;
}

#pagePrivacy .box03{
	float:right;
	padding-right:40px;
}

/*****************
#Topics
*****************/
#pageTopics p.title {
    line-height: 1.6;
    font-weight: bold;
    border-left: 5px solid #999;
    padding: 10px 20px;
    color: #6d5155;
    margin-bottom: 1.65em;
}

/*****************
#pageContact
*****************/
#pageContact.pageMail{
	padding-bottom:0;
}

#pageContact header{
	height:auto;
}

/*****************
js settings
→permissionAccordion
*****************/
#js-accTarget{
    display:none;
}

/*****************
Plugins settings
→Glide
*****************/
.slider__nav {
	position:absolute;
	bottom:30px;
}
.slider__nav-item {
	width:5px;
	height:5px;
	float:left;
	clear:none;
	display:block;
	margin:0 5px;
	background:#fff;
}
.slider__nav-item--current {
	background:#ff4d63;
}
.slider__nav-item:hover {
	background:#ff4d63;
}

#closeMenu,#openMenu{
	background: #ffe3e4;
	color: #fff;
    padding: 8px;
	display: none;
}

#closeMenu a,
#openMenu a{
	padding: 4px;
	color: #fff;
    text-align: right;
}

#openMenu div{
    display: inline-block;
    float: right;
}

#closeMenu{
	background:#ff4d63;
}
a.burger{
    display: inline-block;
    position: relative;
    min-width: inherit;
    width: 14px;
    margin: 5px 20px 0 5px;
    padding: 0;
    background: transparent;
    border: 0 none;
    border-top: 2px solid #ff4d63;
    border-bottom: 2px solid #ff4d63;
    border-radius: 0;
    text-indent: -9999px;
}

.burger:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% - 1px);
    height: 2px;
    background-color: #ff4d63;
}

@media screen and ( max-width:999px )
{
	#pageTopText header h2 em {
	    font-size: 2.0rem;
	}

	h2,
	h3{
	    font-size: 100%;
	}

	h2 em {
	    font-size: 2.0rem;
	}

	header{
		height: auto;
	}

	#pageAbout_us header{
		height: 280px;
	}

	#pageTopText header section {
	    font-size: 100%;
	}

	#pageService_menu .serviceList li section {
	    min-height: 60px;
	}
}

@media screen and ( max-width:779px )
{
	#globalNavi {
	    width: 0;
	    display: none;
	}

	#globalNavi .innerContainer {
		margin-left: 0;
	}

	main{
		padding-top: 40px;
		padding-left: 0;
	}

	footer .clm01 {
	    margin-left: 0;
	}

	#closeMenu, #openMenu {
		display: block;
	}

	#logo{
		display: none;
	}

	#mainNavi {
	    margin-top: 10px;
	}

	h2 em {
		padding-right: 0.5em;
	}

	#pageTopText header h2 em {
		padding-right: 0;
	}
}
