@charset "utf-8";

/*--太め--*/
@font-face {
  font-family: "myfont";
  src: url("../../font/h_w6.otf") format("opentype");
}

/*--細め--*/
@font-face {
  font-family: "myfont_light";
  src: url("../../font/h_w3.otf") format("opentype");
}

/* default ---*/
body {
	background: #FFF;
	color: #333;
	/* rem用 - ベースフォントサイズ12px*/
	font-size: 1.1rem;
	line-height: 1.5;
/*	font-feature-settings: "palt";
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN","ヒラギノ明朝 Pro W3" ,
        "Hiragino Sans", "Noto Sans", Meiryo, sans-serif;*/
font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
font-family: "myfont", sans-serif;
}

.lighttxt{
	font-family: "myfont_light", sans-serif;
}


.SPbreak{
	display:none;
}
.PCbreak{
	display:block;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.SPbreak{
	display:block;
}
.PCbreak{
	display:none;
}

}

/*----------------------------------------------------

ヘッダ-

------------------------------------------------------*/
.headerNav{
	background:#fff;
	position:relative;
	max-width:100%;
	margin: 0 auto;
	
}

.headerNav h1 img{
	max-width:100%;
}
.headerNav h1{
	padding:22px 10px 28px;
}
@media all and (min-width: 802px) and (max-width: 1180px) {
.headerNav h1 img{
	max-width:20%;
	}
.headerNav h1{
	padding:20px 0px;
}
}

@media all and (min-width: 320px) and (max-width: 801px) {
.headerNav{
	padding:20px 0;
	}
.headerNav h1{
	padding:0 5px;
	}
.headerNav h1 img{
	max-width:200px;
	}
/*---メニュー内---*/	
.pcimgnone{
	padding:10px 20px;
	}
.pcimgnone img{
	max-width:40px;
	}
}

@media all and (min-width: 802px) and (max-width: 120em) {
.pcimgnone{
	display:none;
	}
}



/*----------------------------------------------------

フッター

------------------------------------------------------*/
#footer{
	margin: 140px auto 0;
	background:#E5E5E5;
	padding:40px 0 ;
	color:#231815;
	position:relative;
	border-top:1px solid #000;
}
.footer_list{
	max-width:1280px;
	margin: 0 auto;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.footer_list{
	max-width:100%;
	}
}

.footer_list p {
	margin:15px 0 40px;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.footer_list p {
	max-width:93%;
	margin:30px auto 10px;
	}
}
#footer ul{
	display:flex;
	justify-content:flex-end;
}
@media all and (min-width: 320px) and (max-width: 801px) {
#footer ul{
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
	}
}
#footer ul li{
	margin: 0 30px;
}
#footer ul .lastBtn_text{
	margin: 0 0px 0 30px;
}

@media all and (min-width: 320px) and (max-width: 801px) {
#footer ul li{
	margin:10px 10px;
	width:calc(85% / 2);
	}
#footer ul .lastBtn_text{
	margin: 10px 10px 0 0px;
}
}

#footer ul li a{
	font-size:1.35em;
	text-decoration:none;
		color:#231815;
}
#footer ul li a:hover{
	transition:all 0.3s;
	opacity:.6;
}
@media all and (min-width: 320px) and (max-width: 801px) {
#footer ul li a{
	display:block;
	}

}


.copyright{
	padding:10px 0;
	text-align:center;
	color:#aaa;
}

.footer_acc{
	max-width:1260px;
	margin: 0 auto;
	font-size:1.25em;
	line-height:1.7;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.footer_acc{
	max-width:90%;
	}
}

.footer_acc dt span{
	display:block;

}
.footer_acc dd span{
	display:block;

}
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#001F45;
	border:1px solid #001F45;
	border-radius: 0px;
	width: 95px;
	height: 95px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size:1rem;
	transition:all 0.3s;
}
@media all and (min-width: 320px) and (max-width: 801px) {
#page-top a{
	width: 60px;
	height: 60px;
	}

}
#page-top a:hover{
	background: #fff;
	color:#001F45;
	border:1px solid #001F45;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 1%;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
@media all and (min-width: 320px) and (max-width: 801px) {
#page-top {
	right: 26px;
	}
}
/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}


/*-----------------------------------------

リクルート共通

-----------------------------------------*/

.recruit{
	max-width:800px;
	margin: 120px auto;
}
.link_recruit {
	margin-top: 14px;
}

@media all and (min-width: 320px) and (max-width: 801px) {
.recruit{
	max-width:90%;
	margin: 60px auto;
	text-align: center;
	}
}
.recruit h4{
	text-align:center;
	font-size:5.5em;
	font-weight:100;
	letter-spacing:4px;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.recruit h4{
	font-size:4.5em;
	}
}
.recruit h4 span{
	background:#001F45;
	color:#fff;
	padding:0px 5px;
}
.recruit_text{
	text-align:center;
	font-size:1.8em;
	font-weight:300;
	position:relative;
	margin:0px 0 0 ;
}
.recruit_text::before{
	content:"";
   display:block;
   width:40px;
   height:2px;
   background-color:#001F45;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.recruit_main{
	display:flex;
	padding:2px 0 2px;
	margin:40px 0 0 ;
	border-top:3px solid #001F45;
	border-bottom:3px solid #001F45;
	justify-content:space-between;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.recruit_main{
	display:flex;
	flex-wrap:wrap;
	padding-bottom: 8px;
	}
}



.recruit_main dl{
	padding:25px 40px 0px 20px;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.recruit_main dl{
	padding:15px 0px 0px 0px;
	}
}
.recruit_main dt{
	font-size:2.3em;
	color:#001F45;
	font-weight:500;	
}
.recruit_main dd{
	font-size:1.45em;
	margin:5px 0 0;
	line-height:1.6;
	background:#fff;
	max-width:425px;

}
@media all and (min-width: 320px) and (max-width: 801px) {
.recruit_main dd{
	margin:10px auto 0;
	max-width:100%;

	}
}

.recruit_main p a{
	color:#F05A24;
}

.recruit img{
	max-width:300px;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.recruit img{
	max-width:100%;
	}
.recruit .imgphoto{
	max-width:60%;
	margin: 30px auto 0;
	text-align:center;

	}
}

.action_btn{
	text-align:center;
	margin:140px auto;
	font-size:2.5em;
	letter-spacing:3px;
}

/* ボタン共通設定 */
.btn06{
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
	background:#1A1A1A;
	color:#fff;
    padding: 20px 60px 20px 60px;
	border-radius:0px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.action_btn{
	margin:60px auto 100px;
	font-size:1.2em;
	max-width:100%;
}

/* ボタン共通設定 */
.btn06{
	padding: 20px 40px 20px 25px;
	}
}

.btn06:hover{
	background:#555;
}


/* 矢印が右に移動 */

.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top:42%;
    right: 20px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
    right: 18px;
}



/*-----------------------------------------

サブメインビジュアル（テキスト）

-----------------------------------------*/
.mainV_sub{
	padding:13em 0 ;
	background:url(../../cmn/images/subbg_text.png) no-repeat 0% 50%;
	background-size:cover;
	border-bottom:1px solid #001F45;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.mainV_sub{
	background:url(../../cmn/images/subbg_text.png) no-repeat 50% 0%;
	background-size:cover;
	padding:6em 0 ;
	}
}


.mainV_sub dl{
	max-width:1080px;
	margin: 0 auto;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.mainV_sub dl{
	max-width:90%;
	margin: 0 auto;
	}
	.mainV_sub dl dt{
	font-size:3em;
}
}

.mainV_sub dt{
	font-size:4.5em;
	letter-spacing:7px;
	margin:0 0 0px;
}

.mainV_sub dd{
	font-size:1.3em;
	letter-spacing:2px;
	color:#808080;
}

/*-----------------------------------------

サブメインビジュアル（イメージ）

-----------------------------------------*/
.mainV_sub_img{
	padding:20em 0 20em;
	border-bottom:1px solid #001F45;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.mainV_sub_img{
	padding:11em 0 ;
	}
}
.eventbg{
	background:url(../../cmn/images/event/e_bg.png) no-repeat 0% 20%;
	background-size:cover;
}
.storebg{
	background:url(../../cmn/images/event/s_bg.png) no-repeat 0% 50%;
	background-size:cover;
}
.temporarybg{
	background:url(../../cmn/images/event/t_bg.png) no-repeat 0% 50%;
	background-size:cover;
}

@media all and (min-width: 320px) and (max-width: 801px) {
.eventbg{
	background:url(../../cmn/images/event/e_bg.png) no-repeat 50% 100%;
	background-size:cover;
}
.storebg{
	background:url(../../cmn/images/event/s_bg.png) no-repeat 65% 50%;
	background-size:cover;
}
.temporarybg{
	background:url(../../cmn/images/event/t_bg.png) no-repeat 50% 0%;
	background-size:cover;
}

}

/*-----------------------------------------

人材募集

-----------------------------------------*/
.recruitbg{
	background:url(../../cmn/images/recruit/bg.png) no-repeat 50% 50% #000;
	background-size: contain;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.recruitbg{
	background:url(../../cmn/images/recruit/bg.png) no-repeat 24% 50% #000;
	background-size: contain;
	height: 180px;
	padding: 60px 0 0 0;
	}

}
.recruitbg .bg_black{
	background:rgba(0,0,0,.8);
}

.mainV_sub_img dl{
	max-width:1080px;
	margin: 0 auto;
	color:#fff;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
@media all and (min-width: 320px) and (max-width: 801px) {
.mainV_sub_img dl{
	max-width:90%;
	}
}

.mainV_sub_img dt{
	font-size:5.5em;
	letter-spacing:7px;
	margin:0 0 0px;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.mainV_sub_img dt{
	font-size:3.5em;
	}
}
.mainV_sub_img dd{
	font-size:1.5em;
	letter-spacing:3px;
}

/*-----------------------------------------

パンくずナビ

-----------------------------------------*/
.pnav{
	max-width:1080px;
	margin: 10px auto;
	display:flex;
}
@media all and (min-width: 320px) and (max-width: 801px) {
.pnav{
	max-width:90%;
	}
}
.pnav li{
	font-size:1.2em;
	letter-spacing:1px;
}
.pnav li::after{
	content:">";
	margin: 0 10px;
}
.pnav li:last-child::after{
	content:"";
}
.pnav li a{
	color:#333;
}

.font-base{
	color:#001F45;
	font-size:2.1em;
	letter-spacing:2px;
	font-weight:500;
}