@charset "utf-8";
/* CSS Document */

/*--------------------
基本設定
---------------------*/

body {
	margin:0;
	padding:0;
	font-size:15px;
	color: #fff;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	background-repeat:repeat;
	background-color:#333;
	line-height:1.6em;
	position: relative;
}
@media screen and (max-width: 800px) {
  body {
  }
}

ul , li , h1 , h2 , h3 ,h4 , h5 , h6 , table , tr , td , img , p , a , div , form , dl , dt , dd {
	margin:0;
	padding:0;
}

#wrap {
	
}
@media screen and (max-width: 800px) {
  #wrap {
  }
}

a {
	color: #fff;
	border:none;
	text-decoration:underline;
	background-repeat:no-repeat;
	outline:none;
}

a:link{
	color: #fff;
	border:none;
	text-decoration:underline;
	background-repeat:no-repeat;
}

a:visited {
	color: #fff;
	text-decoration: underline;
}
a:hover {
	color: #fff;
	text-decoration:none;
}

ul , li {
	list-style-type:none;
}

img {
	border:0;
	max-width:100%;
}

a:hover img {
/*	opacity:0.9;
	filter: alpha(opacity=90);
	-ms-filter: "alpha( opacity=90 )";
	background: #fff;*/
}


table {
	border-collapse:collapse;
}

h1 , h2 {
	letter-spacing: 0.1em;
}

h1 , h2 , h3 , h4 , h5 , h6 {
	font-weight: normal;
}

p {
	line-height:2em;
}


@media screen and (max-width: 640px) {
  iframe {
	  max-width: 100%;
  }
}

::selection {
    background-color: #111;
	color:#FFF;
}
::-moz-selection {
    background-color: #111;
	color:#FFF;
}


.font_en {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    letter-spacing:0.5px;
}


/*--------------------
clearfix
---------------------*/

.clearfix {
    /**zoom: 1;*/
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/*--------------------
汎用設定
---------------------*/

br.clear {
	clear:both;
}

img.border {
	padding:2px;
	border:solid 1px #333;
}

a.noborder {
	text-decoration:none;
}

span.ajust {
	text-indent:-9999px;
}

span.red {
	color:#ff0000;
}

span.bold {
	font-weight:bold;
}

span.bold2 {
	font-weight:bold;
	font-size:14px;
}

span.red_bold {
	font-weight:bold;
	color:#e21212;
}

span.red_bold2 {
	font-weight:bold;
	color:#e21212;
	font-size:14px;
}

span.bg {
	background-color:#000;
	color:#FFF;
	margin-left:3px;
	margin-right:3px;
}

span.bg2 {
	background-color:#e21212;
	color:#FFF;
	margin-left:3px;
	margin-right:3px;
}

.sp_only {
	display: none;
}
@media screen and (max-width: 640px) {
  .sp_only {
	  display: block;
  }
}

.pc_only {
	display: block;
}
@media screen and (max-width: 800px) {
  .pc_only {
	  display: none;
  }
}

/* loading */
#top_loading{
  	position:fixed;
  	top:0;
  	left:0;
  	right:0;
  	bottom:0;
  	background-color:#fff;
  	z-index:1000000;
  	box-sizing: border-box;
}

#top_loading::before {
	content: '';
	position: absolute;
  	top:0;
  	left:0;
  	right:0;
  	bottom:0;
	margin: auto;
	background-color: #ddd;
	width: 10%;
	height: 20px;
	transform: rotate(135deg);
}
@media screen and (max-width: 800px) {
  #top_loading::before {
	  width: 50%;
  }
}

#top_loading::after {
	content: '';
	position: absolute;
  	top:0px;
  	left:0;
  	right:0px;
  	bottom:0;
	margin: auto;
	background-color: #333;
	width: 10%;
	height: 20px;
	transform: rotate(135deg); 
}
@media screen and (max-width: 800px) {
  #top_loading::after {
	  width: 50%;
  }
}

#top_loading {
	-webkit-animation: byeShutter 2.5s forwards;
	animation: byeShutter 2.5s forwards;
}
#top_loading::after {
 	-webkit-animation: shutterOpen 2.5s forwards;
    animation: shutterOpen 2.5s forwards;
}

@keyframes byeShutter {
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen {
  0% {
    width: 0;
	height: 20px;
  }
  30% {
    width: 2%;
  }
  100% {
    width: 10%;
  }
}
@media screen and (max-width: 800px) {
  @keyframes shutterOpen {
	    0% {
		    width: 0;
			height: 20px;
		  }
		  30% {
		    width: 10%;
		  }
		  100% {
		    width: 50%;
		  }
  }
}

/* fade */

.scroll_fadein {
	opacity: 0;
	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px);
	    -webkit-transition: 0.8s 0s ease-in-out;
	        transition: 0.8s 0s ease-in-out;
}
.scroll_fadein2 {
	
	opacity: 0;
	transform: translateY(-40px); 
	-webkit-transform: translateY(-40px);
	    -webkit-transition: 0.8s 2.0s ease-in-out;
	        transition: 0.8s 2.0s ease-in-out;
}
@media screen and (max-width: 800px) {
  .scroll_fadein2 {
	  transform: translateX(0px); 
	  -webkit-transform: translateX(0px);
	  transform: translateY(40px); 
	  -webkit-transform: translateY(40px);
  }
}

.scroll_fadein3 {
	opacity: 0;
	transform: translateX(-40px); 
	-webkit-transform: translateX(-40px);
	    -webkit-transition: 0.8s 1.0s ease-in-out;
	        transition: 0.8s 1.0s ease-in-out;
}
.scroll_fadein4 {
	
	opacity: 0;
	transform: translateX(40px); 
	-webkit-transform: translateX(40px);
	    -webkit-transition: 1.5s 1s ease-in-out;
	        transition: 1.5s 1s ease-in-out;
}
@media screen and (max-width: 800px) {
  .scroll_fadein4 {
	  transform: translateX(0px); 
	  -webkit-transform: translateX(0px);
	  transform: translateY(40px); 
	  -webkit-transform: translateY(40px);
  }
}

.scroll_fadein5 {
	opacity: 0;
	transform: translate(0,0px); 
	-webkit-transform: translate(0,0px);
	    -webkit-transition: 0.8s 0s ease-in-out;
	        transition: 0.8s 0s ease-in-out;
}

.fadein_mv{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}

/*--------------------
header
---------------------*/


header {
	width:100%;
	height:140px;
	box-sizing: border-box;
	padding:40px 40px 40px 40px;
	position: fixed;
	top:0;
	left:0;
	z-index:100000;
}
@media screen and (max-width: 1210px) {
  header {
	  height:60px;
  }
}



header nav {
	width:80%;
	margin:auto;
	position: absolute;
	top:40px;
	right:40px;
	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
@media screen and (max-width: 800px) {
  header nav {
	  width:96%;
	  left:2%;
	  top:10px;
	  height:60px;
  }
}

div#logo {
	width:80px;
	height:60px;
	text-indent: -9999px;
	z-index: 10000;
}
@media screen and (max-width: 1210px) {
  div#logo {
	width:80px;
	height:60px;
  }
}
@media screen and (max-width: 800px) {
  div#logo {
	position: absolute;
	top:10px;
	left:0;
	right:0;
	bottom:0;
	margin: auto;
	width:60px;
	height:45px;
  }
}


div#logo a {
	display:block;
	width:80px;
	height:60px;
	text-indent:-9999px;
	overflow:hidden;
	background-image:url(../images/logo.png);
	background-size:100% auto;
	background-position: 0px 0px;
	-webkit-transition: 0.4s 0s ease-in-out;
	transition: 0.4s 0s ease-in-out;
}
@media screen and (max-width: 800px) {
  div#logo a {
	width:60px;
	height:45px;
  }
}

div#logo a:hover {
	opacity: 0.6;
}


header nav ul {
	width:100%;
	padding-top:20px;
	text-align: right;
	font-size:0;
}
@media screen and (max-width: 800px) {
  header nav ul {
	  display: none
  }
}



header nav ul li {
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	font-size:18px;
	position: relative;
}
@media screen and (max-width: 800px) {
  header nav ul li {
  }
}

header nav ul li:last-child {
	margin-left:100px;
}

header nav ul li a {
	text-align: left;
	display: block;
	padding:0 20px 0 20px;
	-webkit-transition: 0.4s 0s ease-in-out;
	transition: 0.4s 0s ease-in-out;
	position: relative;
	box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  header nav ul li a {
  }
}


header nav ul li a:hover {
	opacity: 0.6;
}

header nav ul li a:link {
	text-decoration: none;
}




#header_menu {
	width:60px;
	height:60px;
	margin:0px 0px 0px 0px;
	position: absolute;
	top:0;
	right:0;
	margin:auto;
	display: none;
}
@media screen and (max-width: 800px) {
  #header_menu {
	  display: block;
	  position: absolute;
	  top:6px;
	  left:0px;
	  right:auto;
	  bottom:auto;
	  z-index:1;
  }
}

#header_menu a {
	width:60px;
	height:60px;
	position: relative;
	
}
@media screen and (max-width: 800px) {
  #header_menu a {
	  width:60px;
	  height:60px;
  }
}


#header_menu a span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 20%;
    width: 50%;
    height: 1px;
  background: #fff;
  }


#header_menu a span:nth-of-type(1) {
  top:20px; 
}

#header_menu a span:nth-of-type(2) {
  top:30px;
  width: 40%;
}




/* OPEN / CLOSE BTNS */

.menu-btn {
    z-index: 1000000;
}

.menu-btn a {
    display: inline-block;
    text-decoration: none;
    /* safari hack */
}



/* OVERLAY */

.overlay {
    position: fixed;
    top: 0;
    z-index: 100000;
    display: none;
    overflow: auto;
    width: 100%;
    height: 100vh;
    background: #222;
    background-position: center center;
    background-size: cover;
}

.overlay .close_box {
	padding:15px 0 0 10px;
}

.overlay .close {
	width: 60px;
    height: 60px;
	display: none;
	position: relative;
}
@media screen and (max-width: 800px) {
  .overlay .close {
	  display: block;
  }
}
@media screen and (max-width: 640px) {
  .overlay .close {
  }
}

.overlay .close span{
    display: inline-block;
    position: absolute;
    left: 20%;
    width: 50%;
    height: 1px;
  background: #fff;
  }

.overlay .close span:nth-of-type(1) {
    top: 18px;
    left: 20%;
    transform: translateY(6px) rotate(-135deg);
    width: 50%;
}

.overlay .close span:nth-of-type(2){
    top: 30px;
    left: 20%;
    transform: translateY(-6px) rotate(135deg);
    width: 50%;
}

.overlay .menu {
    margin: 0px auto 0% 0;
    width: 100%;
    height: 100vh;
    background: #222;
    
	opacity: 0;
	position: relative;
}
@media screen and (max-width: 800px) {
  .overlay .menu {
	  width:100%;
	  transform: translateY(0%);
	  transition: .5s linear;
  }
}

.is-open .menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: .3s linear;
}

.overlay .menu .box {
	position: absolute;
	/*top:29%;
	left:10%;*/
	height:400px;
	padding-top:15px;
	top:20%;
	left:40%;
}
@media screen and (max-width: 800px) {
  .overlay .menu .box {
	  width:70%;
	  position: static;
	  box-sizing: border-box;
	  padding:30% 0px 20px 0px;
	  margin:0 auto;
	  height:auto;
  }
}

.overlay .menu ul {
}
@media screen and (min-width: 800px) {
  .overlay .menu ul {
  }
}

.overlay .menu ul li {
    list-style: none;
	 letter-spacing: 2px;
	 font-weight:normal;
	 text-align: left;
	 margin-bottom:20px;
}

@media screen and (min-width: 640px) {
  .overlay .menu ul li {
	 	margin-bottom:5px;
  }
}

.overlay .menu ul li a {
    padding: 20px 0;
    font-size: 18px;
    color:#fff;
    text-decoration: none;
	font-weight:normal;
	display: block;
	position: relative;
	
}
@media screen and (min-width: 800px) {
  .overlay .menu ul li a {
    	font-size: 15px;
    	display: block;
    	padding: 15px 0;
  }
}
@media screen and (max-width: 800px) {
  .overlay .menu ul li a {
    	display: block;
    	padding: 15px 0;
  }
}

.overlay .menu ul li a:after {
  position: absolute;
    background: #fff;
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    left: 0%;
    bottom: 4px;
    transition: all 0.4s;
}

.overlay .menu ul li a:hover:after {
  width: 100%;
}



/*--------------------
footer
---------------------*/

footer {
	background-color: #fff;
	color:#333;
	position: relative;
}


footer #footer_wrap {
    width: min(90%, 1400px);
	margin: 0 auto;
	padding:120px 0px 60px 0px;
	box-sizing: border-box;
	font-size:0;
}
@media screen and (max-width: 800px) {
  footer #footer_wrap {
	  padding:80px 0px 20px 0px;
  }
}


footer #footer_wrap #footer_contact {
	margin:0 0 100px 0;
}
@media screen and (max-width: 800px) {
  footer #footer_wrap #footer_contact {
	  margin:0 0 60px 0;
  }
}

footer #footer_wrap #footer_contact a {
	font-size:60px;
	line-height:1.4em;
	color:#333;
	text-decoration: none;
	display: inline-block;
	background-image: url(../images/contact_arrow.png);
	background-position: 94% center;
	background-size: 24px auto;
	background-repeat: no-repeat;
	padding-right:80px;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
@media screen and (max-width: 800px) {
  footer #footer_wrap #footer_contact a {
	  font-size:36px;
	  background-size: 18px auto;
  }
}

footer #footer_wrap #footer_contact a:hover {
	opacity: 0.8;
}

footer #footer_wrap #footer_adress {
	font-size:14px;
	color:#333;
	line-height:2em;
	margin:0 0 60px 0;
}
@media screen and (max-width: 800px) {
  footer #footer_wrap #footer_adress {
	  margin:0 0 40px 0;
  }
}


footer #footer_wrap #footer_menu {
	display: inline-block;
	width:70%;
}

footer #footer_wrap #footer_menu ul li {
	padding:10px 30px 10px 0;
	font-size:14px;
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	position: relative;
}
@media screen and (max-width: 800px) {
  footer #footer_wrap #footer_menu ul li {
	  font-size:12px;
	  padding:10px 20px 10px 0px;
	  text-align: left;
  }
}



footer #footer_wrap #footer_menu ul li a {
	color:#333;
	text-decoration: none;
	display: block;
}

footer #footer_wrap #footer_menu ul li a:hover {
	text-decoration: underline;
}

footer #copyright {
	display: inline-block;
	width:30%;
	font-size:14px;
	color:#333;
	padding:0px 0px 40px 0px;
	text-align: right;
}
@media screen and (max-width: 800px) {
  footer #copyright {
		font-size:14px;
		padding:40px 0px 0px 0px;
		width:100%;
		text-align: left;
  }
}

/*--------------------
section
---------------------*/


/* section */

section {
    width: 100%;
    padding: 100px 0px 100px 0px;
}
@media all and (max-width: 800px) {
    section {
        padding: 60px 0 60px 0;
    }
}

.top_section {
    padding: 0px 0px 60px 0px;
}

.section_nopadding {
    padding: 0px 0px 0px 0px;
}


/* コンテンツボックス */

.contents {
    width: min(90%, 1400px);
    margin: 0 auto;
}





/*--------------------
ページ　見出し
---------------------*/

.title_center {
	text-align: center;
	margin:0 0 80px 0;
}
@media screen and (max-width: 800px) {
 .title_center {
	margin:0 0 40px 0;
  }
}

.title_center .english_subtitle {
	font-size:11px;
	margin:0 0 10px 0;
}
@media screen and (max-width: 800px) {
 .title_center .english_subtitle {
	margin:0 0 5px 0;
  }
}

.title_center h2 {
	font-size:24px;
	line-height:1.6em;
}
@media screen and (max-width: 800px) {
 .title_center h2 {
	font-size:22px;
  }
}
@media screen and (max-width: 640px) {
 .title_center h2 {
	font-size:20px;
  }
}




.section_title {
	margin:0 0 60px 0;
}

.section_title .section_title_box {
	display: inline-block;
	vertical-align: top;
	margin-right:5px;
}

.section_title .section_title_box h2 {
	font-size:50px;
	line-height:1.2em;
	color:#ff0000;
	margin:0 0 10px 0;
}
@media screen and (max-width: 640px) {
 .section_title .section_title_box h2 {
	 font-size: 34px;
	 line-height:1.2em;
  }
}

.section_title .section_title_box h3 {
	font-size:20px;
}
@media screen and (max-width: 640px) {
 .section_title .section_title_box h3 {
	
  }
}

.section_title .caption {
	display: inline-block;
	vertical-align: top;
	padding-top:18px;
}

.section_title .caption p {
	font-size:16px;
}

/*--------------------
トップページ
---------------------*/

/* ボタンのスタイル */
.btn {
	position: absolute;
	top:40%;
	right:5%;
	z-index: 10000;
	padding-top:30%;
	padding-bottom:100px;
	width:350px;
	
	
}
/*
@media screen and (max-width: 800px) {
  .btn {
	  top:60%;
	  right:0;
	  width:100%;
	  height:36%;
	  overflow-y: scroll;
	  box-sizing: border-box;
	  padding:10px 5% 10px 5%;
  }
}*/
@media screen and (max-width: 800px) {
  .btn {
	  top:25%;
	  right:0;
	  width:100%;
	  height:86%;
	  box-sizing: border-box;
	  padding:200px 5% 3000px 5%;
  }
}

.bg-change {
	margin:0 0 0px 0;
    background-size: cover;
	color:#999;
	font-size:12px;
	position: relative;
	padding:2px 3rem 2px 0;
	white-space: nowrap;
    transition: 0.4s 0.1s ease;
	-webkit-transition: 0.4s 0.1s ease;
}
@media screen and (max-width: 800px) {
  .bg-change {
    transition: 0.4s 0.1s ease;
	-webkit-transition: 0.4s 0.1s ease;
	pointer-events: none;
	padding:10px 3rem 10px 0;
  }
}

@media screen and (max-width: 800px) {
  .sp-menu .bg-change {
	  opacity: 0.4;
  }
}


.bg-change:hover {
	cursor: pointer;
	color:#FFF;
	padding-left:10px;
	opacity: 1 !important;
}
@media screen and (max-width: 800px) {
  .bg-change:hover {
	  color:inherit !important;
	  cursor: default;
	  opacity:0.2 !important;
	padding-left:0px;
  }
}


.bg-change  .info {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.bg-change span {
}

.bg-change .name {
	width:50%;
}

.bg-change .business {
}

.bg-change .number {
	width:3rem;
	text-align: right;
	position: absolute;
	right:0;
	top:0;
}
@media screen and (max-width: 800px) {
  .bg-change .number {
	  top:10px;
  }
}

.current {
	color:#fff;
	opacity: 1 !important;
}


/* コンテンツのスタイル */
.wrapper {
    width: 100%;
    height: 100%;
}
.contents_img {
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.contents_img:before {
	content:'';
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    width: 100vw;
    height: 100vh;
    transition: 0.4s 0.1s linear;
	-webkit-transition: 0.4s 0.1s linear;
}
@media screen and (max-width: 800px) {
  .contents_img:before {
    transition: 0.4s 0.1s linear;
	-webkit-transition: 0.4s 0.1s linear;
  }
}

/*--------------------
about
---------------------*/

@media screen and (max-width: 800px) {
  .about_top {
	  padding-top:80px;
  }
}


#page_visual {
	width:100%;
	height:100vh;
	background-size: cover;
	background-position: center center;
}

.page_subtitle {
	display: inline-block;
	width:20%;
	vertical-align: top;
	margin:0 0 20px 0;
}
@media screen and (max-width: 800px) {
  .page_subtitle {
    width:100%;
	margin:0 0 20px 0;
  }
}

.page_subtitle h2 {
	font-size:18px;
}

.page_subtitle h2 .sub {
	display: block;
	font-size:14px;
	color:#666;
}

.border_subtitle {
	border-bottom:solid 1px #666;
	width:100%;
	padding:0 0 20px 0;
	margin:0 0 60px 0;
}
@media screen and (max-width: 800px) {
  .border_subtitle {
	margin:0 0 40px 0;
  }
}

.text_cont {
	display: inline-block;
	width:75%;
	vertical-align: top;
}
@media screen and (max-width: 800px) {
  .text_cont {
    width:100%;
	margin:20px 0 40px 0;
  }
}

.text_cont h3 {
	font-size:18px;
	margin:0 0 20px 0;
}

.service_list {
	
}

.service_list ul {
	
}

.service_list ul li {
	padding:60px 0 60px 0;
	border-bottom:solid 1px #666;
	font-size:0;
}
@media screen and (max-width: 800px) {
  .service_list ul li {
    padding:40px 0 40px 0;
  }
}

.service_list ul li:last-child {
	border-bottom:none;
}

.service_list ul li .left_text {
	font-size:14px;
	display: inline-block;
	vertical-align: top;
	width:50%;
	box-sizing: border-box;
	padding:0 5% 0 0;
}
@media screen and (max-width: 800px) {
  .service_list ul li .left_text {
    width:100%;
	margin:0 0 40px 0;
  }
}

.service_list ul li .left_text h3 {
	font-size:18px;
	margin:0 0 20px 0;
}

.service_list ul li .left_text p, .recruit_text p {
	margin:0 0 60px 0;
}
@media screen and (max-width: 800px) {
  .service_list ul li .left_text p, .recruit_text p {
	margin:0 0 40px 0;
  }
}

.button {
	display: inline-block;
	position: relative;
}

.button a {
	display: block;
	background-color: #FFF;
	color:#111;
	border-radius: 100px;
	text-align: left;
	padding:8px 70px 8px 30px;
	font-weight: bold;
	text-decoration: none;
	border:solid 2px #FFF;
	box-sizing: border-box;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.button a:hover {
	background-color: transparent;
	border:solid 2px #111;
	color:#FFF;
}

.button a span.arrow {
	display: block;
	width:16px;
	height:12px;
	position: absolute;
	top:38%;
	right:10%;
	background-image: url(../images/button_arrow.png);
	background-size: 16px auto;
}

.button a:hover span.arrow {
	background-position: -0px -12px;
}

.service_list ul li .right_text {
	font-size:14px;
	display: inline-block;
	vertical-align: top;
	width:50%;
}
@media screen and (max-width: 800px) {
  .service_list ul li .right_text {
    width:100%;
	margin:0 0 0px 0;
  }
}

.service_list ul li .right_text a {
	display: block;
}

.service_list ul li .right_text .photo_wrap {
	position: relative;
	width:100%;
	padding-top:70%;
}

.service_list ul li .right_text .photo_box {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	padding-top:70%;
	background-size: cover;
	background-position: center center;
	filter: blur(1px); 
}

.service_list ul li .right_text .service_logo {
	position: absolute;
	top:42%;
	left:0;
	right:0;
	bottom:0;
	margin:auto;
	width:100%;
	filter: blur(0px);
	text-align: center;
}


.service_list ul li .right_text .service_logo img {
	max-width:200px;
	max-height:100px;
}

.service_list ul li .right_text .logo_workkit img {
}

.service_list ul li .right_text .logo_storepalette img {
}

.service_list ul li .right_text .logo_bakeru img {
	max-width:300px;
}

.company_outline {
	
}

.company_outline table {
	width:100%;
}

.company_outline table tr {
	
}
@media screen and (max-width: 800px) {
  .company_outline table tr {
	  display: block;
  }
}

.company_outline table tr th {
	text-align: left;
	padding:15px 10px 15px 0;
	width:30%;
	vertical-align: top;
	font-weight:normal;
}
@media screen and (max-width: 800px) {
  .company_outline table tr th {
	  display: block;
	  padding:10px 0 10px 0;
	  width:100%;
	  color:#999;
  }
}

.company_outline table tr td {
	text-align: left;
	padding:15px 0 15px 0;
	vertical-align: top;
}
@media screen and (max-width: 800px) {
  .company_outline table tr td {
	  display: block;
	  padding:0px 0 30px 0px;
	  width:100%;
	  box-sizing: border-box;
  }
}

.client_list {
	margin:0 0 20px 0;
}
@media screen and (max-width: 800px) {
  .client_list {
	margin:0 0 40px 0;
  }
}

.client_list ul {
	
}

.client_list ul li {
	display: inline-block;
}

.client_list ul li img {
	
}


.client_list div {
  padding-right: 10rem;
}

.client_list .slick-slide {
	margin-left:40px;
	margin-right:40px;
	padding-right:0;
}
@media screen and (max-width: 1000px) {
  .client_list .slick-slide {
	margin-left:20px;
	margin-right:20px;
  }
}
@media screen and (max-width: 800px) {
  .client_list .slick-slide {
	margin-left:10px;
	margin-right:10px;
  }
}

.client_list .list_item {
}
@media screen and (max-width: 1300px) {
  .client_list .list_item {
  }
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-cloned {
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list
{
    background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    bottom: -50px;

    display: block;

    width: 46px;
    height: 46px;
    padding: 0;

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}



@media all and (max-width: 1300px) {
    .slick-prev, .slick-next {
		display: none !important;
    }
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    opacity: 1 !important;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1 !important;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: 1 !important;
}

.slick-prev:before,
.slick-next:before
{
}

.slick-prev
{
	z-index: 10000;
    right:180px;
    background-image: url(../images/slick_arrow.png);
    background-size: 92px auto;
    background-position: 0px 0px;
    opacity: 1 !important;
}
[dir='rtl'] .slick-prev
{
    right: 0px;
    left: auto;
}
.slick-prev:before
{
    content: '';
}
[dir='rtl'] .slick-prev:before
{
    content: '';
}

.slick-prev:hover, .slick-prev:focus {
	
    color: transparent;
    outline: none;
        
    background-image: url(../images/slick_arrow.png);
    background-size: 92px auto;
    background-position: -46px 0px;
    
    opacity: 1 !important;
}

.slick-next
{
    right: 120px;
    background-image: url(../images/slick_arrow.png);
    background-size: 92px auto;
    background-position: 0px -46px;
    opacity: 1 !important;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: 0px;
}
.slick-next:before
{
    content: '';
}
[dir='rtl'] .slick-next:before
{
    content: '';
}

.slick-next:hover, .slick-next:focus {
	
    color: transparent;
    outline: none;
        
    background-image: url(../images/slick_arrow.png);
    background-size: 92px auto;
    background-position: -46px -46px;
    
    opacity: 1 !important;
}



/* Dots */
.slick-dotted.slick-slider
{
}

.slick-dots
{
    position: absolute;
    bottom:25px;
    right:0px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 10px !important;
    height: 10px !important;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 10px;
    height: 10px;
    border-radius: 100%;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    background-color: #EEE;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
    
    background-color: #222;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 10px;
    height: 10px;

    content: '';
    text-align: center;

    color: #999;

    background-color: #eee;
    border-radius: 100%;
    
}
.slick-dots li.slick-active button:before
{
    content: '';
    color: #bbb;
    background-color: #bbb;
   width: 10px;
    height: 10px;
    border-radius: 100%;
    
}


.recruit_section {
	background-position: center center;
	background-size: cover;
}

.recruit_section .page_subtitle .sub {
	color:#FFF;
}

.recruit_section .border_subtitle {
	padding-bottom:40px;
	border-bottom:solid 1px #FFF;
}

.recruit_text {
	
}



/*--------------------
優先的に適用させる汎用css
---------------------*/

.fl	{ float:left; }
.fr	{ float:right; }
.cb	{ clear:both; }

.tl	{ text-align:left; }
.tc	{ text-align:center; }
.tr	{ text-align:right; }

/* font管理 */

.align_left {
    text-align: left !important;
}

.align_right {
    text-align: right !important;
}

.align_center {
    text-align: center !important;
}

.fsize60per {
    font-size: 60% !important;
}

.fsize70per {
    font-size: 70% !important;
}

.fsize80per {
    font-size: 80% !important;
}

.fsize90per {
    font-size: 90% !important;
}

.fsize100per {
    font-size: 100% !important;
}

.fsize110per {
    font-size: 110% !important;
}

.fsize120per {
    font-size: 120% !important;
}

.fsize130per {
    font-size: 130% !important;
}

.fsize140per {
    font-size: 140% !important;
}

/* 汎用margin */

.mt0 {margin-top: 0 !important;}
.mt5 {margin-top: 5px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt25 {margin-top: 25px !important;}
.mt30 {margin-top: 30px !important;}
.mt35 {margin-top: 35px !important;}
.mt40 {margin-top: 40px !important;}
.mt45 {margin-top: 45px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}
.mt80 {margin-top: 80px !important;}
.mt90 {margin-top: 90px !important;}
.mt100 {margin-top: 100px !important;}

.mb0 {margin-bottom: 0 !important;}
.mb5 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb25 {margin-bottom: 25px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb35 {margin-bottom: 35px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb45 {margin-bottom: 45px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb80 {margin-bottom: 80px !important;}
.mb90 {margin-bottom: 90px !important;}
.mb100 {margin-bottom: 100px !important;}

.mr0 {margin-right: 0 !important;}
.mr5 {margin-right: 5px !important;}
.mr10 {margin-right: 10px !important;}
.mr15 {margin-right: 15px !important;}
.mr20 {margin-right: 20px !important;}
.mr25 {margin-right: 25px !important;}
.mr30 {margin-right: 30px !important;}
.mr35 {margin-right: 35px !important;}
.mr40 {margin-right: 40px !important;}
.mr45 {margin-right: 45px !important;}
.mr50 {margin-right: 50px !important;}
.mr60 {margin-right: 60px !important;}
.mr70 {margin-right: 70px !important;}
.mr80 {margin-right: 80px !important;}
.mr90 {margin-right: 90px !important;}
.mr100 {margin-right: 100px !important;}

.ml0 {margin-left: 0 !important;}
.ml5 {margin-left: 5px !important;}
.ml10 {margin-left: 10px !important;}
.ml15 {margin-left: 15px !important;}
.ml20 {margin-left: 20px !important;}
.ml25 {margin-left: 25px !important;}
.ml30 {margin-left: 30px !important;}
.ml35 {margin-left: 35px !important;}
.ml40 {margin-left: 40px !important;}
.ml45 {margin-left: 45px !important;}
.ml50 {margin-left: 50px !important;}
.ml60 {margin-left: 60px !important;}
.ml70 {margin-left: 70px !important;}
.ml80 {margin-left: 80px !important;}
.ml90 {margin-left: 90px !important;}
.ml100 {margin-left: 100px !important;}

/* 汎用padding */
.pt0 {padding-top: 0 !important;}
.pt5 {padding-top: 5px !important;}
.pt10 {padding-top: 10px !important;}
.pt15 {padding-top: 15px !important;}
.pt20 {padding-top: 20px !important;}
.pt25 {padding-top: 25px !important;}
.pt30 {padding-top: 30px !important;}
.pt35 {padding-top: 35px !important;}
.pt40 {padding-top: 40px !important;}
.pt45 {padding-top: 45px !important;}
.pt50 {padding-top: 50px !important;}
.pt60 {padding-top: 60px !important;}
.pt70 {padding-top: 70px !important;}
.pt80 {padding-top: 80px !important;}
.pt90 {padding-top: 90px !important;}
.pt100 {padding-top: 100px !important;}

.pb0 {padding-bottom: 0 !important;}
.pb5 {padding-bottom: 5px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb15 {padding-bottom: 15px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb25 {padding-bottom: 25px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb35 {padding-bottom: 35px !important;}
.pb40 {padding-bottom: 40px !important;}
.pb45 {padding-bottom: 45px !important;}
.pb50 {padding-bottom: 50px !important;}
.pb60 {padding-bottom: 60px !important;}
.pb70 {padding-bottom: 70px !important;}
.pb80 {padding-bottom: 80px !important;}
.pb90 {padding-bottom: 90px !important;}
.pb100 {padding-bottom: 100px !important;}


