@charset "utf-8";
/* CSS Document */

/* ------------------------------------------------------------------------- */
/* 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-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
}

/* ------------------------------------------------------------------------- */
/* base
/* ------------------------------------------------------------------------- */

/* layout
/* ------------------------------------------------------------------------- */

.inner{
	margin: 0 auto;
	width: 1120px;
}

section {
	padding: 60px 0 100px;
}

/* box-sizing */
*,
*:before,
*:after {
	box-sizing: border-box;
}

/* SP */

@media only screen and (max-width: 1150px){
	body{
		width: 100%;
	}
	
	section {
		padding: 30px 0 60px;
	}
	
	.inner{
		margin: 0 auto;
		width: 100%;
		padding: 20px;
	}
}

@media only screen and (max-width: 768px){
	body{
		width: 100%;
	}
	
	section {
		padding: 30px 0 60px;
	}
	
	.inner{
		margin: 0 auto;
		width: 100%;
		padding: 20px;
	}
}


/* font size
/* ------------------------------------------------------------------------- */

html { font-size: 62.5%; } /* 10px＝1rem */
body { font-size: 1.6rem; } /* 16px */

/* SP */
@media only screen and (max-width: 768px){
	html { font-size: 56.25%; } /* 9px＝1rem */
}

/* font
/* ------------------------------------------------------------------------- */

body { 
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Verdana, "メイリオ", Meiryo, sans-serif;
	line-height: 1.8;
}

/* text
/* ------------------------------------------------------------------------- */

.align_center{
	text-align: center;
}

.txt_maru{
	color: #fdd000;
	font-size: 250%;
	vertical-align: sub;
}



/* ------------------------------------------------------------------------- */
/* header
/* ------------------------------------------------------------------------- */

#header {
	width: 100%;
	height: 65px;
	background-color: rgba(255,255,255,0.98);
	padding: 10px 20px 5px;
	box-sizing: border-box;
	position: fixed;
	z-index: 99999;
}

/* SP */
@media screen and (max-width: 768px) {
	
	#header {
		padding: 5px 10px;
	}
}


/* logo
/* ------------------------------------------------------------------------- */

.logo a{
	display: block;
	background-image: url(image/logo.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	overflow: hidden;
	text-indent: -9999px;
	white-space: nowrap;
}

header #header > .logo a{
	width: 135px;
	height: 50px;
	padding-top: 10px;
	display: block;
}

/* PC */
@media all and (min-width: 769px){
	
	header #header > .logo a:hover{
		opacity: 0.7;
	}
}

/* SP */
@media screen and (max-width: 768px) {
	
	header #header > .logo a{
		width: calc(200px - 80px);
		height: 60px;
	}
}


/* header menu
/* ------------------------------------------------------------------------- */
.btn_hamburger a{
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	overflow: hidden;
	width: 50px;
	height: 50px;
	margin: auto;
}

.btn_hamburger {
	position: absolute;
	display: block;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 50px;
	z-index: 1000;
}

#bgr_btn{
	position: relative;
	width: 50px;
	height: 50px;
	float: right;
	background-color: #e38616;
	cursor: pointer;
	border-radius: 50px;
	top: 7px;
	right: 20px;
}

#bgr_btn span {
	display: inline-block;
	transition: all 1s;
	box-sizing: border-box;
}
#bgr_btn span {
	position: absolute;
	left: 0;
	right: 0;
	width: 50%;
	height: 3px;
	margin: auto;
	background-color: #fff;
	border-radius: 0px;
}

#bgr_btn span:nth-of-type(1) { top: 15px; }
#bgr_btn span:nth-of-type(2) { top: 23px; }
#bgr_btn span:nth-of-type(3) { top: 31px; }

#bgr_btn.active span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
#bgr_btn.active span:nth-of-type(2) {
	opacity: 0;
}
#bgr_btn.active span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}

#global_menu{
	display: none;
}

#global_menu{
	position: absolute;
	top: 65px;
	right: 0;
	width: 100%;
	min-height: 100%;
	/*background-color: #e38616;*/
	background: -moz-linear-gradient(bottom left, #ffa200, #ffe000); 
	background: -webkit-linear-gradient(bottom left, #ffa200, #ffe000); 
	background: linear-gradient(to top right, #ffa200, #ffe000);
	height: 100vh;
	z-index: 900;
	font-size: 1.4rem;
	box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.1);
	overflow-y: auto;
	opacity: 0.98;
}

#global_menu ul.ul_menu{
	margin: 100px auto;
	width: 70%;
}

#global_menu ul.ul_menu > li a{
	display: block;
	text-align: left;
	color: #fff;
	font-size: 3rem;
	font-family: "M PLUS Rounded 1c";
	line-height: 3;
	border-bottom: 1px dotted #fff;
	padding: 0 20px;
	position: relative;
}

#global_menu > ul.ul_menu > li a::after{
	background-image: url(image/icon_bgr_link.png);
	background-size: auto 14px;
	background-repeat: no-repeat;
	background-position: right center;
	content: "";
	display: block;
	width: 14px;
	height: 100%;
	position: absolute;
	padding: 3px;
	top: 0;
	right: 10px;
}

#header #global_menu > .sns{
	width: 100%;
	padding: 0 20px;
	height: 80px;
}
#header #global_menu > .sns a{
	margin: 20px 5px;
}

#header #global_menu > .btn_contact .btn_tel,
#header #global_menu > .btn_contact .btn_reservation{
	width: 100%;
	height: 60px;
	padding-left: 70px;
	line-height: 60px;
	text-align: left;
	background-position: 30px center;
}


/* PC */
@media all and (min-width: 769px){
	#global_menu ul.ul_menu > li a:hover{
		background-color: #fff;
		color: #ffa200;
		border-radius: 10px;
	}
	
	#global_menu > ul.ul_menu > li a:hover::after{
		background-image: url(image/icon_bgr_link_orange.png);
		background-size: auto 14px;
		background-repeat: no-repeat;
		background-position: right center;
		content: "";
		display: block;
		width: 14px;
		height: 100%;
		position: absolute;
		padding: 3px;
		top: 0;
		right: 10px;
	}

}

/* SP */
@media screen and (max-width: 768px) {
	
	.btn_hamburger {
		width: 45px;
		top: 5px;
	}

	#global_menu{
		width: 100%;
	}
	
	#global_menu ul.ul_menu{
		margin: 30px auto;
		width: 90%;
	}
	#global_menu ul.ul_menu > li a{
		font-size: 2rem;
	}
	
	#bgr_btn{
		position: relative;
		width: 45px;
		height: 45px;
		right: 10px;
	}
	
	#bgr_btn span:nth-of-type(1) { top: 14px; }
	#bgr_btn span:nth-of-type(2) { top: 21px; }
	#bgr_btn span:nth-of-type(3) { top: 28px; }

	#bgr_btn.active span:nth-of-type(1) {
		-webkit-transform: translateY(7px) rotate(-45deg);
		transform: translateY(7px) rotate(-45deg);
	}
	#bgr_btn.active span:nth-of-type(2) {
		opacity: 0;
	}
	#bgr_btn.active span:nth-of-type(3) {
		-webkit-transform: translateY(-7px) rotate(45deg);
		transform: translateY(-7px) rotate(45deg);
	}
	
	#global_menu .btn_contact{
		padding-bottom: 60px;
	}
}


/* mainimage
/* ------------------------------------------------------------------------- */

#main_img{
	position: relative;
	display: block;
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover !important;
	background-position: center center;
	z-index: -1;
}

#ncbb_slider{
	position: absolute;
	width: 100%;
}

#ncbb_slider li{
	width: 100%;
	height: 100vh;
	position: absolute;
	bottom: 0;
	overflow: hidden;
	text-align: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#ncbb_slider li:nth-child(1){ background-image: url(image/main_img01.jpg); }
#ncbb_slider li:nth-child(2){ background-image: url(image/main_img02.jpg); }
#ncbb_slider li:nth-child(3){ background-image: url(image/main_img03.jpg); }

#main_img .bg-slider_title img.catch{
	position: absolute;
	bottom: 40%;
	left: 3%;
	width: 60%;
	height: auto;
	max-width: 575px;
	min-width: 200px;
	z-index: 1;
	text-indent: -9999px;
}

#main_img h2{
	position: absolute;
	bottom: 30%;
	left: 0;
	right: 0;
	width: 100%;
	display: block;
	text-align: center;
	color: #ffffff;
	font-weight: 700;
	font-size: 2.1rem;
	text-shadow: 0 0 0.3em rgba(0,0,0,0.5);
	line-height: 1.5;
}
#main_img h2 span{
	display: block;
	font-size: 4.8rem;
	font-weight: bold;
	font-style: italic;
	font-family: 'Roboto', sans-serif;
}


/* PC */
@media all and (min-width: 769px){
	body:not(.index) #main_img{
		bottom: 0;
		height: 300px;
		margin-top: 80px;
	}
	
	body.index #main_img{
		min-height: 600px;
	}
	body.index #ncbb_slider li{
		min-height: 600px;
	}
}

/* SP */
@media all and (max-width: 768px) {
	#main_img{
		bottom: 0px;
		height: 30vw;
		min-height: 200px;
		max-height: 300px;
	}
	body.index #main_img{
		height: 100vw;
		max-height: 765px;
	}
	#main_img .bg-slider_title{
		margin: auto;
		height: 100vw;
		min-height: 200px;
	}
	
	#main_img h2{
		bottom: 10%;
		font-size: 1.8rem;
	}
	#main_img h2 span{
		font-size: 3.6rem;
	}
	
	#ncbb_slider li{
		height: 100vw;
	}
	
	#main_img .bg-slider_title img.catch{
		bottom: 30%;
	}
}





/* ------------------------------------------------------------------------- */
/* common
/* ------------------------------------------------------------------------- */

/* title
/* ------------------------------------------------------------------------- */
h2 {
	position: relative;
	margin: 0 auto;
	text-align: center;
	font-size: 3.5rem;
	display: block;
	background-image: url("image/icon_logistics.png");
	background-position: center top;
	background-repeat: no-repeat;
	width: 30%;
	height: 50px;
	padding: 90px 0 50px;
	background-size: auto 80px;
	margin-bottom: 70px;
	border-bottom: solid 3px #2c2e4a;
	font-family: "M PLUS Rounded 1c"; 
	font-weight: 700;
	line-height: 1;
}
h2:first-letter {
	color: #fac11f;	
}

h2::after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #fac11f;
	bottom: -3px;
	width: 50%;
}

#top_logistics h2 {
	background-image: url("image/icon_logistics.png");
}

#top_logistics h2:first-letter {
	color: #fff;	
}

#top_logistics h2::after {
	border-bottom: solid 3px #fff;
}

#top_group h2 {
	background-image: url("image/icon_group.png");
}

#top_member h2 {
	background-image: url("image/icon_member.png");
}

#top_yourtown h2{
	background-image: none;
	padding: 0 0 10px;
	border-bottom: none;
	margin-bottom: 10px;
}

#top_yourtown h2:first-letter {
	color: #2c2e4a;	
}

#top_yourtown h2::after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #fac11f;
	bottom: -3px;
	width: 100%;
	margin: 0 auto;
}

h3{
	font-size: 3rem;
	color: #2c2e4a;
	font-weight: bold;
	font-family: "M PLUS Rounded 1c"; 
	line-height: 1.5em;
	margin-bottom: 15px;
}


/* SP */
@media all and (max-width: 1150px) {
	h2{
		background-size: auto 60px;
		font-size: 3rem;
		width: 50%;
		margin-bottom: 50px;
		padding: 75px 0 40px;
	}
}

@media only screen and (max-width: 768px){
	h2{
		background-size: auto 60px;
		font-size: 3rem;
		width: 80%;
		margin-bottom: 30px;
		padding: 75px 0 40px;
	}
	
	#top_yourtown h2{
		height: 40px;
	}
	
	
}


/* btn
/* ------------------------------------------------------------------------- */
a.basic_btn {
	background-color: #2c2e4a;
	display: block;
	max-width: 500px;
	margin: 30px auto;
	padding: 15px;
	color: #fff;
	text-align: center;
	border-radius: 3px;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
}

a.basic_btn:after {
	content: "";
	display: inline-block;
	width: 54px;
	height: 21px;
	background: url("image/icon_arrow.png") no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 10px;
	top: 32%;
}


/* PC */
@media all and (min-width: 769px){	
	a.basic_btn:hover {
		background: #fff;
		border: 1px solid #2c2e4a;
		color: #2c2e4a;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	
	a.basic_btn:hover:after {
		content: "";
		display: inline-block;
		width: 54px;
		height: 21px;
		background: url("image/icon_arrow_blue.png") no-repeat;
		background-size: contain;
		vertical-align: middle;
		position: absolute;
		right: 10px;
		top: 32%;
	}

}

/* SP */
@media all and (min-width: 769px){
	a.basic_btn {
		width: auto;
	}
}

@media only screen and (max-width: 768px){
	a.basic_btn{
		width: 100%;
	}
	
	a.basic_btn:hover {
		background: #2c2e4a;
		color: #fff;
	}
}


/* ------------------------------------------------------------------------- */
/* toppage
/* ------------------------------------------------------------------------- */

/* top_common
/* ------------------------------------------------------------------------- */

.f_container{
	display:flex;
	flex-diretion: row;
	width: 100%;
	height:auto;
}

.f_item1{
	width: 45%;
	margin-right: 5%;
}

.f_item2{
	position: relative;
	width: 50%;
}

.f_item2 img{
	width: 100%;
	height: auto;	
}

.f_item2 p{
	font-size: 15rem;
	font-family: 'Bebas Neue', cursive;
}


/* SP */
@media all and (max-width: 1150px) {
	.f_item2 p{
		font-size: 12rem;
	}
}

@media all and (max-width: 768px) {

	.f_container{
		display:block;
	}
	.f_item1{
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.f_item2{
		width: 100%;
	}
	.f_item2 img{
		width: 100%;
	}
	.f_item2 p{
		font-size: 10rem;
	}
}


/* top_logistics
/* ------------------------------------------------------------------------- */
section#top_logistics {
	background: -moz-linear-gradient(bottom left, #ffa200, #ffe000); 
	background: -webkit-linear-gradient(bottom left, #ffa200, #ffe000); 
	background: linear-gradient(to top right, #ffa200, #ffe000); 
}

#top_logistics .f_item2 p{
		position: absolute;
		bottom: -140px;
		right: -30px;
		color: #2c2e4a;	
	}


/* SP */
@media all and (max-width: 1150px) {
	#top_logistics .f_item2 p{
		position: absolute;
		bottom: -100px;
		right: -10px;
		color: #2c2e4a;	
	}
}

@media all and (max-width: 875px) {
	#top_logistics .f_item2 p{
		position: absolute;
		bottom: -30px;
		right: -10px;
		font-size: 11rem;
		color: #2c2e4a;	
	}
}

@media all and (max-width: 768px) {	
	#top_logistics .f_item2 p{
		position: absolute;
		bottom: -80px;
		right: 0;
		font-size: 10rem;
		color: #2c2e4a;	
	}
}


/* top_group
/* ------------------------------------------------------------------------- */
section#top_group {
	background: #f3f3e3; 
}

#top_group .f_item1{order: 2;}
#top_group .f_item2{order: 1;}

#top_group .f_item1{
	width: 45%;
	margin-left: 5%;
	margin-right: 0;
}


#top_group .f_item1 a img{
	width: 100%;
	margin-top: 20px;
}

#top_group .f_item2 p{
	position: absolute;
	top: -380px;
	left: -20px;
	color: #fac11f;
}

#top_group .f_container_work{
	width: 100%;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;	
	margin: 130px 0 50px;
}

#top_group .f_item_work{
	width: 48%;
	background-color: #fff;
	margin-bottom: 60px;
	padding: 30px;
	position: relative;
}

#top_group .f_item_contents{
	position: absolute;
	top: -25px;
	padding-right: 30px;
}

#top_group img.work_title{
	width: 70%;
	height: auto;
}

#top_group p.work_img{
	width: 100%;
	text-align: center;
	
}

#top_group p.text_height{
	min-height: 59px;
}

#top_group .f_container_btn{
	width: 100%;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 10px;
}

#top_group a.f_item_btn{
	width: 32%;
	height: 54px;
	background-color: #2c2e4a;
	display: block;
	margin: 20px auto 5px;
	padding-top: 20px;
	color: #fff;
	border-radius: 3px;
	position: relative;
	text-decoration: none;
	line-height: 1.3rem;
	transition: all  0.3s ease;
}

#top_group a.lines_2{
	padding-top: 15px;
}

#top_group a.f_item_btn:after{
	content: "";
	display: inline-block;
	width: 15px;
	background: url("image/icon_gaibu_orange.png") no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 5px;
	top: 32%;
}

#top_group a.nolink{
	pointer-events: none;
}

#top_group a.nolink:after{
	background: none;
}




/* PC */
@media all and (min-width: 769px){
	#top_group a.f_item_btn:hover {
		background: #fff;
		border: 1px solid #2c2e4a;
		color: #2c2e4a;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}	
	
	#top_group .f_item1 a:hover{
		opacity: 0.7;
	}
}

/* SP */
@media all and (max-width: 1150px) {
	#top_group .f_item2 p{
		position: absolute;
		top: -300px;
		left: 5px;
	}
	
	#top_group .f_container_btn{
		width: 100%;
		display:block;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: stretch;
	}
	
	#top_group a.f_item_btn{
		width: 100%;
		margin: 5px auto;
	}
	
	br.pc_only{
		display: none;
	}
	
	#top_group a.lines_2{
		padding-top: 20px;
	}

}

@media all and (min-width:600px) and ( max-width:768px) {
    /*　画面サイズが600pxから780pxまではここを読み込む　*/
	#top_group img.work_title{
		width: 60%;
		height: auto;
	}

}

@media all and (max-width: 599px) {
	#top_group img.work_title{
		width: 85%;
		height: auto;
	}

}

@media all and (max-width: 768px) {

	section#top_group {
		padding-bottom: 0;
	}
	#top_group .f_container{
		display:block;
	}
	#top_group .f_item1{
		width: 100%;
		margin-left: 0;
	}
	#top_group .f_item2 img{
		width: 100%;
	}
	#top_group .f_item2 p{
		position: absolute;
		top: inherit;
		left: inherit;
		bottom: -80px;
		right: 0;
	}
	
	#top_group .f_container_work{
		width: 100%;
		display: block;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: stretch;	
		margin: 70px 0 50px;
	}

	#top_group .f_item_work{
		width: 100%;
		background-color: #fff;
		margin-bottom: 60px;
		padding: 30px;
		position: relative;
	}
	
	#top_group a.f_item_btn{
		width: 100%;
	}
	
	#top_group a.f_item_btn:hover {
		background: #2c2e4a;
		color: #fff;
	}
	
	#top_group .f_item_contents{
		position: absolute;
		top: -20px;
		padding-right: 30px;
	}	
	
}




/* top_member
/* ------------------------------------------------------------------------- */

#top_member .big_title{
	position: relative;
	
}

#top_member .big_title p{
	position: absolute;
	top: -170px;
	right: 0;
	color: #fac11f;	
	font-size: 15rem;
	font-family: 'Bebas Neue', cursive;
}

#top_member .f_container_btn{
	width: 100%;
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin-top: 10px;
}

#top_member a.f_item_btn{
	width: 15%;
	height: 54px;
	background-color: #2c2e4a;
	display: block;
	margin: 20px auto 5px;
	padding-top: 20px;
	color: #fff;
	border-radius: 3px;
	position: relative;
	text-decoration: none;
	line-height: 1.3rem;
	transition: all  0.3s ease;
}

#top_member a.lines_2{
	padding-top: 15px;
}

#top_member a.f_item_btn:after{
	content: "";
	display: inline-block;
	width: 20px;
	background: url("image/icon_arrow_down.png") no-repeat;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	right: 5px;
	top: 32%;
}


.corp{
	margin-bottom: 50px;
}

a .corp_about p{
	color: #000000;
}

a .corp_about p.hp_link{
	text-align: right;
}

a .corp_about p.hp_link img{
	width: 15px;
}

.corp_about{
	background-color: #fac11f;
	padding: 20px 25px;
	margin: 50px 0;
}

.corp_about:hover{
	background-color: #fccd48;
}

.interview{
	display:flex;
	flex-diretion: row;
	width: 100%;
	height:auto;
	padding-bottom: 50px;
	margin-bottom: 50px;
}

.border{
	border-bottom: 1px solid #fac11f;
}

.interview_txt{
	width: 670px;
	margin-left: 5%;
}

.interview_txt .q{
	color: #2c2e4a;
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 15px;
}

.interview_txt .q span{
	color: #fac11f;
}

.interview_txt .a{
	margin-left: 25px;
	margin-bottom: 20px;
}

.interview_img{
	position: relative;
	width: 368px;
}

.interview_img img{
	width: 100%;
	height: auto;	
}

.interview_img p{
	font-size: 15rem;
	font-family: 'Bebas Neue', cursive;
}

/* PC */
@media all and (min-width: 769px){
	#top_member a.f_item_btn:hover {
		background: #fff;
		border: 1px solid #2c2e4a;
		color: #2c2e4a;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}	
	
}

/* SP */
@media all and (max-width: 1150px) {
	.interview_img p{
		font-size: 12rem;
	}
	
	#top_member .big_title p{
		position: absolute;
		top: -150px;
		right: 0;
		font-size: 12rem !important;
	}
	
	#top_member .f_container_btn{
		width: 100%;
		display:flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: stretch;
	}
	
	#top_member a.f_item_btn{
		width: 30%;
		margin: 5px auto;
	}
	
	#top_member a.lines_2{
		padding-top: 20px;
	}
}

@media all and (max-width: 768px) {

	#top_member .big_title p{
		display: none;
	}
	
	.corp{
		padding-top: 10px;
	}
	
	.interview{
		display:block;
		padding-bottom: 0;
	}
	.interview_txt{
		width: 100%;
		margin-left: 0;
	}
	.interview_txt .q{
		margin-top: 15px;
	}
	.interview_txt .a{
		margin-left: 0;
	}
	.interview_img{
		width: 100%;
		text-align: center;
	}
	.interview_img img{
		width: 90%;
	}
	.interview_img p{
		font-size: 10rem;
	}
	#top_member .f_container_btn{
		width: 100%;
		display:flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: stretch;
	}
	
	#top_member a.f_item_btn{
		width: 48%;
		margin: 5px auto;
	}
	#top_member a.lines_2{
		padding-top: 20px;
	}
}




/* top_yourtown
/* ------------------------------------------------------------------------- */
section#top_yourtown{
	text-align: center;
}

section#top_yourtown p.subtitle{
	color:#fac11f;
	font-size: 3rem;
	margin-bottom: 30px;
	font-family: 'Bebas Neue', cursive;
	letter-spacing: 3px;
}

section#top_yourtown img{
	width: 100%;
}

/*SVG animation Style*/
section#top_yourtown #logicom_town{
	position: relative;
	padding-top:100%;
}


section#top_yourtown svg{
	position: absolute;
	top:0;
	left:0;
}


section#top_yourtown #logicom_town .clickbox{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	transform: translate(0,-50%);
	background-color: rgba(255,255,255,1);
	width: 100%;
	max-width: 600px;
	z-index: 2;
}

section#top_yourtown #logicom_town .clickbox .f_item_work{
	width: 100%;
	background-color: #fff;
	padding: 30px;
	position: relative;
}

section#top_yourtown #logicom_town .clickbox .btn_close{
	position: absolute;
	top: 15px;
	right: 15px;
}

section#top_yourtown #logicom_town .clickbox .btn_close img{
	width: 45px;
}

section#top_yourtown #logicom_town .clickbox .f_item_contents{
	text-align: left;
}

section#top_yourtown #logicom_town .clickbox img.work_title{
	width: 70%;
	height: auto;
	text-align: left;
}

section#top_yourtown #logicom_town .clickbox p.work_img{
	width: 100%;
	text-align: center;
	
}

section#top_yourtown #logicom_town .clickbox{
	transition: 0.5s ;
	overflow: hidden;
	width:0px;
}

section#top_yourtown #logicom_town .clickbox .f_item_work{
	overflow-x: : hidden;
}

section#top_yourtown #logicom_town .clickbox[data-clickbox-disp="off"]{
	display: none;
}

section#top_yourtown #logicom_town .clickbox[data-clickbox-disp="on"]{
	display: block;
}



/* PC */
@media all and (min-width: 769px){
	
	section#top_yourtown{
		padding: 120px 0 150px;
	}
	
}

/* SP */
@media only screen and (max-width: 1150px){
	section#top_yourtown{
		padding: 50px 0 80px;
	}
	
}

@media only screen and (max-width: 768px){
	section#top_yourtown{
		padding: 30px 0;
	}
	
}



/* top_recruit
/* ------------------------------------------------------------------------- */
section#top_recruit{
	text-align: center;
}

/* PC */
@media all and (min-width: 769px){
	
	section#top_recruit a img{
		width: calc(100% - 200px);
		transition: all 0.5s;
	}
	section#top_recruit a img:hover{
		box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
		transform: translateY(-10px);
		transition-duration: 0.5s;
	}
}

/* SP */
@media only screen and (max-width: 1150px){
	section#top_recruit a img{
		width: calc(100% - 200px);
	}
}
	
@media only screen and (max-width: 768px){
	section#top_recruit{
		padding: 0px 0 30px;
	}
	section#top_recruit a img{
		width: calc(100% - 10px);
	}
}




/* ------------------------------------------------------------------------- */
/* footer
/* ------------------------------------------------------------------------- */

/* link_logicomgroup
/* ------------------------------------------------------------------------- */
footer .link_logicomgroup{
	background-color: #ddd;
	padding: 30px 0;
}

footer .link_logicomgroup a img{
	display: inline-block;
	width: 32%;
	height: auto;
	margin: 0.5%;
	text-align: center;	
}

/* PC */
@media all and (min-width: 769px){	
	footer .link_logicomgroup a:hover{
		opacity: 0.7;
	}
}

/* SP */
@media only screen and (max-width: 768px){
	
	footer .link_logicomgroup a img{
		display: inline-block;
		width: 47%;
		height: auto;
		margin: 1%;
		text-align: center;	
	}
	
	
}


/* copyright
/* ------------------------------------------------------------------------- */
footer .copyright{
	background-color: #2c2e4a;
	color: #fff;
	text-align: center;
	padding: 15px 0; 
}


/* footer_menu
/* ------------------------------------------------------------------------- */

footer .inner{
	text-align: center;
}

footer ul.ul_footer_menu{
	text-align: center;
	list-style: none;
	padding: 40px 0;
}

footer ul.ul_footer_menu li{
	display: inline-block;
	margin-right:20px;
	padding-left:20px;
}

footer ul.ul_footer_menu li+li{
	border-left:1px solid #999;
}

footer ul.ul_footer_menu li a{
	color: #2c2e4a;
}


/* PC */
@media all and (min-width: 769px){	
	footer ul.ul_footer_menu li a:hover{
		color: #fac11f;
	}
	
}

/* SP */

@media only screen and (max-width: 1150px){
	footer ul.ul_footer_menu li{
		margin-bottom:7px;
	}
}

@media only screen and (max-width: 768px){
	footer ul.ul_footer_menu{
		padding: 20px 0;
	}
	
	footer ul.ul_footer_menu li{
		font-size: 1.3rem;
		margin-bottom:7px;
	}

}


/* pagetop
/* ------------------------------------------------------------------------- */
.pagetop a.pagetop {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 100;
    display: block;
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    background: url(image/btn_pagetop.png) no-repeat center center;
}

.pagetop a.top_yourtown {
    position: fixed;
    right: 20px;
    bottom: 90px;/*bottom + height + 10*/
    z-index: 100;
    display: block;
    width: 50px;
    height: 215px;
    text-indent: -9999px;
    background: url(image/btn_map.png) no-repeat center center;
}


/* SP */

@media only screen and (max-width: 1150px){
	.pagetop a.top_yourtown{
		position: fixed;
    	bottom: 90px;/*bottom + height + 10*/
		width: 50px;
    	height: 144px;
		background: url(image/btn_map_sp.png) no-repeat center center;
	}
}

@media only screen and (max-width: 768px){
	.pagetop a.pagetop {
		right: 0;
	}
	
	.pagetop a.top_yourtown {
	    right: 0;
	}
}