@charset "utf-8";

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Modern+Antiqua);

/* =Default
-------------------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/*
html,body {
	height: 100%;
}
*/

body {
	background: #fff;
	-webkit-text-size-adjust: 100%;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/* 横スクロールを防ぐ
----------------------------------------------------*/
html{
	overflow:auto;
}
body{
	overflow-x: hidden;
}

/*--- reset --*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,th,td{margin:0;padding:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;}
ul{list-style:none;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;}
q:before,q:after{content:'';}
object,embed{vertical-align:top;}
legend{display:none;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
img,abbr,acronym,fieldset{border:0;}

blockquote{
	background-color:#ddd;
	padding:1em;
	position:relative;
}

*{
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}

body{
	font: 16px/1.7 'Noto Sans JP', Arial, Verdana, 游ゴシック, YuGothic,'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo,sans-serif;
	font-weight: 400;
	-webkit-text-size-adjust:100%;
	color: #111;
	letter-spacing: 0.02em;
	/*--- 折り返し --*/
	word-wrap : break-word;
	overflow-wrap : break-word;
}
@media (max-width: 768px) {
body{
	font-size: 15px;
}
}

a{
	color: #266ed0;
	text-decoration: underline;
}
a:hover, .active{
  text-decoration: none;
}
a:active, a:focus,input:active, input:focus{outline:0;}

/*--- clearfix --*/
.clear{
	clear:both;
}
.clearfix {zoom:1;}
.clearfix:after {
  content: ""; 
  display: block; 
  clear: both;
}

/*--- css ロールオーバー --*/
.ov a {
    -webkit-transition: 0.3s ease-in-out !important;  
       -moz-transition: 0.3s ease-in-out !important;  
         -o-transition: 0.3s ease-in-out !important;  
            transition: 0.3s ease-in-out !important; 
}
.ov a:hover {
    opacity:0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
}

/* 行ぞろえ */
.alignCenter{
	text-align: center !important;	
}
.alignLeft{
	text-align: left !important;	
}
.alignRight{
	text-align: right !important;	
}

/* 行頭明け */
.indent {
	text-indent: -1em;
	padding-left: 1em;
}

/* 横並びリスト */
.list_parallel {
	overflow:  hidden;
}

.list_parallel li {
	display:  inline-block;
	margin-right:  30px;
}

/* マージン関連 */
.mgt05{
	margin-top:5px;
}
.mgt10{
	margin-top:10px;
}
.mgt20{
	margin-top:20px;
}
.mgt30{
	margin-top:30px;
}
.mgt40{
	margin-top:40px;
}
.mgt60{
	margin-top:60px;
}
.mgb05{
	margin-bottom:5px;
}
.mgb10{
	margin-bottom:10px;
}
.mgb20{
	margin-bottom:20px;
}
.mgb30{
	margin-bottom:30px;
}
.mgb40{
	margin-bottom:40px;
}
.mgb50{
	margin-bottom:50px;
}
.mgl1em {
	margin-left: 1em;
}


/* float */
.floatLeft{
	float:left;
	margin-right: 30px;
	margin-bottom: 10px;
}
.floatRight{
	float:right;
	margin-left: 30px;
	margin-bottom: 10px;
}

/* 文字 */
.strong {
	font-weight: 700;
}
strong {
	font-weight: 700;
}
.textSize_s {
	font-size: 60% !important;
}
.textSize110 {
	font-size: 110% !important;
}
.textSize120 {
	font-size: 120% !important;
}
ul.kome li {
	font-size: 90%;
	margin-bottom: 5px;
	padding-left: 1em;
	text-indent: -1em;
}
ul.indent li {
	padding-left: 1em;
	text-indent: -1em;
}


/* リスト */
ol  {
	position: relative;
	margin:0;
	padding:0;
}
ol li  {
	list-style: none;
	list-style-position:outside;
	margin:5px 0px 5px 0px;
	padding-left:2.25em
}
ol li span {
	position: absolute;
	left:0;
	margin:0;
}

/*IE6*/
*html ol li span  {
	left: -1.25em;
}

/* アイコン
------------------------------------------------------------*/
.blank {
	background-image: url(../img/blank.png);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 17px;
}

/* ページトップ
------------------------------------------------------------*/
#pagetop {
	font-size: 90%;
	text-align: right;
	margin-top: 50px;
}
#pagetop a {
	color: #666;
	text-decoration: none;
	background-image: url(../images/pagetop.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
}
#pagetop a:hover {
	text-decoration: underline;
}

/* 共通
------------------------------------------------------------*/
img{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}



/* コンテンツ
------------------------------------------------------------*/
#wrapper{
	z-index:1;
	padding-bottom: 150px;
}
#inner {
	width: 1000px;
	margin: 0 auto;
}
#footer_inner {
	width: 1000px;
	margin: 0 auto;
}

section {
	margin-bottom: 100px;
}
.b10 {
	margin-bottom: 10px !important;
}

#bg_grey {
	background-color: #eee;
	margin-top: 0px;
	padding-top: 40px;
	padding-bottom: 40px;
}
#bg_pink {
	background-color: #fadfd4;
	margin-top: 30px;
	padding-top: 40px;
	padding-bottom: 40px;
}
section#bg_set {
	background-color: #faf6ec;
	margin-top: 30px;
	padding-top: 40px;
	padding-bottom: 40px;
	margin-bottom: 0px;
}

@media (max-width: 768px) {
#inner {
	width: 100%;
	padding: 0 15px;
}
#footer_inner {
	width: 100%;
}
section {
	margin-bottom: 50px;
}
}


/* フッター
------------------------------------------------------------*/
.foot_link {
	width: 100px;
	padding: 5px;
	background-color: rgba(255,255,255,0.5);
	text-align: right;
	position: fixed;
	bottom: 90px;
	right: 10px;
	z-index:99999;
	font-size: 80%;
	border-radius: 10px;
}
.foot_link img {
	width: 100%;
}
/*
.foot_link a {
	color: #fff;
	text-decoration: none;
	background-image: url("../images/blank.png");
	background-position: right center;
	background-repeat: no-repeat;
	padding-right: 15px;
}
*/
#footer{
	width: 100%;
	background-color: #111;
	color: #fff;
	text-align: center;
	position: fixed;
	bottom: 0px;
	z-index:99999;
}

ul.gnav > li {
	float: left;
	width: 20%;/* 4つの場合　25% */
	font-weight: 500;
}

ul.gnav > li > a,
ul.gnav > li > span {
	background-color: #111;
	height: 80px;
	font-size: 80%;
	color: #FFF;
	text-decoration: none;
	display: block;
	-webkit-transition: 0.3s ease-in-out;  
       -moz-transition: 0.3s ease-in-out;  
         -o-transition: 0.3s ease-in-out;  
            transition: 0.3s ease-in-out; 
	padding-top: 45px;
	background-repeat: no-repeat;
	background-position: center 15px;
	background-size: auto 20px;
}
@media (min-width: 769px) {
ul.gnav > li > a,
ul.gnav > li > span {
	height: 50px;
	padding: 10px 0px 0px 0px;
	font-size: 100%;
}
ul.gnav > li > span {
	cursor: default;
}
ul.gnav > li > a.top {
	background-position: left 28% center;
}
ul.gnav > li > a.concept {
	background-position: left 22% center;
}
ul.gnav > li > a.menu {
	background-position: left 15% center;
}
ul.gnav > li > span.access {
	background-position: left 25% center;
}
ul.gnav > li > a.recruit {
	background-position: left 24% center;
}
}
ul.gnav > li > a:hover {
	background-color: #333;
}

ul.gnav > li > a.top {
	background-image: url(../images/top.png);
}
ul.gnav > li > a.concept {
	background-image: url(../images/concept.png);
}
ul.gnav > li > a.menu {
	background-image: url(../images/menu.png);
}
ul.gnav > li > span.access {
	background-image: url(../images/access.png);
}
ul.gnav > li > a.recruit {
	background-image: url(../images/recruit.png);
}

ul.gnav > li > a:hover,
ul.gnav > li > span.active {
	background-color: #e7141a;
}
/* アクティブ */
.gnav_top ul.gnav > li > a.top {
	background-color: #e7141a;
}
.gnav_concept ul.gnav > li > a.concept {
	background-color: #e7141a;
}
.gnav_menu ul.gnav > li > a.menu {
	background-color: #e7141a;
}
.gnav_access ul.gnav > li > span.access {
	background-color: #e7141a;
}

ul.gnav > li > .gnav_in {
	position: fixed;
	left: 0;
	bottom: 80px;
	z-index:99999;
	width: 100%;
	background: #111;
	border-top: 1px solid #e7141a;
	border-bottom: 1px solid #e7141a;
	display: none;
}
ul.gnav > li > .gnav_in li a {
	background-color: #111;
	height: 40px;
	font-size: 80%;
	color: #FFF;
	text-decoration: none;
	display: block;
	-webkit-transition: 0.3s ease-in-out;  
       -moz-transition: 0.3s ease-in-out;  
         -o-transition: 0.3s ease-in-out;  
            transition: 0.3s ease-in-out; 
	padding-top: 10px;
	cursor: pointer;
}
ul.gnav > li > .gnav_in li a:hover,
.gnav_access01 ul.gnav > li > .gnav_in li a.gnav_access01,
.gnav_access02 ul.gnav > li > .gnav_in li a.gnav_access02,
.gnav_access03 ul.gnav > li > .gnav_in li a.gnav_access03,
.gnav_access04 ul.gnav > li > .gnav_in li a.gnav_access04,
.gnav_access05 ul.gnav > li > .gnav_in li a.gnav_access05,
.gnav_access06 ul.gnav > li > .gnav_in li a.gnav_access06,
.gnav_access07 ul.gnav > li > .gnav_in li a.gnav_access07
{
	background-color: #e7141a;
}

@media (min-width: 769px) {

	ul.gnav > li > span:hover{
		background-color: #e7141a;
	}

	ul.gnav > li > .gnav_in {
		left: auto;
		bottom: 50px;
		width: 200px;
		border-bottom: 0;
	}
	ul.gnav > li > .gnav_in.block {
		display: block;
	}
	ul.gnav > li > .gnav_in li a {
		height: 50px;
		padding: 10px 0px 0px 0px;
		font-size: 100%;
	}

}




/* PCスマホ調整
------------------------------------------------------------*/
.pc_none {
	display: none;
}
@media (max-width: 768px) {
.pc_none {
	display: block;
}
}

.sp_none {
	display: inline-block;
}
@media (max-width: 768px) {
.sp_none {
	display: none;
}
}



/* ページ内リンク
------------------------------------------------------------*/
.pagenav_outline {
	position:relative;
	overflow:hidden;
	width: 100%;
	margin-bottom: 40px;
}
ul#pagenav {
    position:relative;
    left:50%;
    float:left;
    clear: both;
	margin-bottom: 20px;
}
ul#pagenav li {
	position:relative;
	right:50%;
	float:left;
	padding-right: 2em;
	font-weight: bolder;
}
ul#pagenav li a {
	color: #111;
	text-decoration: none;
	background-image: url(../images/pagenav.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 1em;
	padding-bottom: 3px;
}
ul#pagenav li a:hover {
	text-decoration: underline;
}

@media (max-width: 460px) {
ul#pagenav {
	left:0;
	float:none;
	text-align: center;
	margin-bottom: 0px;
}
ul#pagenav li {
	right:0;
	float:none;
	padding-right: 0;
	padding-left: 0;
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999;
}
ul#pagenav li a {
	padding-bottom: 0px;
}
}




/*641px～PC　PC上では見えないようにする*/
@media screen and (min-width:641px){
.tel_area{
	display: none;
}	
.tel_area_pc{
	display: block;
	position: fixed;
	top: 0px;
	right: 0px;
	z-index: 9998;
	background-color: rgba( 0, 0, 0, 0.8 );
	padding: 10px 30px;
}
.tel_area_pc p{
	font-size: 160%;
	color: #FFF;
	letter-spacing: 0.1em;
	font-weight: 600;
	background-image: url(../images/tel_pc.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 25px;
}
}
 
/*スマホ～641pxの幅サイズまで*/
@media screen and (max-width:640px){
.tel_area_pc{
	display: none;
}
.tel_area {
    position: fixed;
    top: 10px;
    right: 10px;
	z-index: 9998;
}
.tel_area .tel_area_inner {
    position: relative;
}
.tel_area .tel_area_inner .tel_area_inner_btn {
    width: 85%;
    padding: 10px;   
}
.inquiry_btn {
	display: inline-block;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: rgba( 231, 20, 26, 0.8 );
	text-align:center;
	line-height: 60px;
	text-decoration: none;
	font-size: 80%;
}

.inquiry_btn:link, .inquiry_btn:visited {
    color: #FFFFFF !important;
}
.tel_area_inner span{
	color: #fff;
}
}


/* 下部お知らせ
----------------------------------------------------*/
.foot_link2 {
	width: 100px;
	padding: 5px;
	background-color: rgba(231, 20, 26,0.7);
	text-align: center;
	position: fixed;
	bottom: 90px;
	right: 10px;
	z-index:99999;
	font-size: 80%;
	border-radius: 10px;
	font-size: 110%;
}
.foot_link2 a {
	color: #fff;
	text-decoration: none;
}
.infoTTL {
	margin: 0px 0 1em 0;
	font-size: 120%;
	font-weight: 700;
}
.infoTTL a {
	color: #111;
}
@media screen and (max-width:640px){
.infoTTL {
	margin: 40px 0 1em 0;
}
.infoTTL a {
	color: #fff;
}
}
