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

/* 各CSSの読み込み */
@import url("top.css");
@import url("company.css");
@import url("works.css");
@import url("form.css");
/* 色のカスタムプロパティ */
:root {
  --font-color: white;
  --base-color: #555555;
  --main-color: #333333;
  --accent-color: #9999FF;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-thumb {
  background: #4F4F4F;
}
a {
	color: white;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
hr {
	border-style: solid 1px;
	border-color: #636363;
}
/*------------ 
レスポンシブ共通
------------*/
.container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
/* inline-blockの中央揃え */
.inlineblock_center {
	text-align: center;
}
/* 縦線 */
.v_line_fix {
  margin-left: 50%;
  width: 1px;
  height: 7vw;
  background-color: white;
}
/* 背景画像 */
#back_img {
	position: fixed;
	z-index: -100;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 70%;
	max-height: 70%;
	opacity: 0.1;
}
/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.slider {
  	display: -ms-grid;
  	overflow: hidden;
}
/*----------------------------*/

.slider_wrap {
  	display: flex;
  	overflow: hidden;
	padding: 0;
	margin: 0;
}

.slider_list {
  	display: flex;
  	list-style: none;
	padding: 0;
	margin: 0;
	padding-left: 0px;
	padding-right: 0px;
}

.slider_list--left{
	animation :infinity-scroll-left 95s infinite linear 0.5s both;
	font-size: 0;
	padding: 0;
	margin: 0;
	padding-left: 0px;
	padding-right: 0px;
}

.slider_item img{
   width: 99%;
}
.headline {
	display: inline-block;
	font-size: 200%;
	letter-spacing: 5px;
	border-bottom: 1px solid;
	padding-bottom: 10px;
	line-height: 90%;
}
.headline font {
	font-size: 50%;
	letter-spacing: normal;
}
/* メイン */
#main {
	width: 100%;
	margin: 0 auto;
	display: inline-block;
}
/* ページタイトル文字 */
#main #page_title p {
	margin: 0;
	padding: 0;
	position: absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}
/* サブタイトル */
.sub_title {
	font-size: 110%;
	line-height: 80%;
}
.sub_title hr {
	border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%,  rgba(255,255,255,1) 50%, rgba(255,255,255,0.1) 100%);
}
/* フッター */
footer {
	margin-top: auto;
}
#footer {
	width: 100%;
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
}
#footer #footer_bk {
	width: 100%;	
	bottom: 0;
	padding: 0;
	margin: 0;
	vertical-align: bottom;
}
#footer #footer_contents {
	position: absolute;
	width: 65%;
 	top: 0;
  	left:  0;
   	right:  0;
	margin: 0 auto;
}
/* フッター ロゴ */
#footer #logo_a_links img {
	margin-top: 3%;
	width: 30%;
	float: left;
}
/* フッター ページリンク */
#footer ul {
	margin-top: 3%;
	float: right;
	font-size: 0;
	width: 55%;
}
/* フッター ページリンクリスト */
#footer ul li {
	list-style: none;
	text-align: center;
	display: inline-block;
	width: 24%;
	font-weight: normal;
	font-size: 1.1vw;
	border-left: 1px solid white;
}
/* フッター  */
#footer #info {
	font-size: 90%;
}
/* フッター  */
#footer #info #insta_link img {
	width: 5%;
	float: left;
	margin-right: 1%;
}
/* フッター copyright */
#footer #copyright {
	text-align: right;
	margin-right: 2%;
}
/* ページトップへ戻る */
#page-top{
	z-index: 100;
	cursor : pointer;
	position: fixed;
	max-width: 8%;
	bottom: 5%;
	right: 5%;
}
#page-top img{
	width: 100%;
}
/*------------ 
スマホ
------------*/	
@media only screen and (max-width : 834px ){
	.sp_delete {
		display: none;
	}
	/* 全体 */
	body {
		width: 100%;
		height: 100%;
		margin: 0 auto;
		font-family: 'Noto Serif JP', serif;
		font-size: 12px;
		color: var(--font-color);
		background-color: #000000;
	}
	/* ルート表示 */
	#header #header_root {
		height: 2.4vw;
		display: inline-block;
		margin-bottom: 10px;
	}
	/* ルート表示背景 */
	#header #header_root img {
		position: absolute;
		top: 0;
		width: 100%;
	}
	/* ルート表示 */
	#header #header_root font {
		position: absolute;
		padding-top: 2.4vw;
		left: 1%;
	}
	.navToggle {
		position: fixed;
		top: 1%;
		right: 0;
		width: 40px;
		height: 35px;
		cursor: pointer;
		z-index: 110;
		color: white;
		transition: background 0.3s;
		text-align: center;
	}
	.navToggle:hover {
		transition: background 0.3s;
	}
	.navToggle span {
		position: absolute;    /* .navToggleに対して */
		width: 30px;
		border-bottom: solid 3px white;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
		left: 5px;
	}
	.navToggle span:nth-child(1) {
		top: 7px;
	}
	.navToggle span:nth-child(2) {
		top: 16px;
	}
	.navToggle span:nth-child(3) {
		top: 25px;
	}
	/* 最初のspanをマイナス45度に */
	.navToggle.active span:nth-child(1) {
		top: 18px;
		left: 5px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	/* 2番目と3番目のspanを45度に */
	.navToggle.active span:nth-child(2), .navToggle.active span:nth-child(3) {
		top: 18px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	/* サイトマップ */
	.sitemap {
		z-index: 100;
		position: fixed;
		top: 0;
		text-align: center;
		transform: translateY(-130%);
		transition: all 0.6s;
		width: 100%;
	}
	.sitemap ul {
		list-style: none;
		background: var(--base-color);
		margin: 0 auto;
		padding: 0;
		width: 100%;
	}
	.sitemap ul span{
		background-color: var(--base-color);
		height: 45px;
		width: 100%;
		display: inline-block;
	}
	.sitemap ul a li:last-child {
		padding-bottom: 0;
		border-bottom: none;
	}
	.sitemap ul a {
		text-decoration: none;
		transition: all 0.3s linear;
		height: 40px;
		font-size: 130%;
		padding-top: 2%;
		border-top: 1px dotted #333;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.sitemap ul a:hover {
		color: white;
		transition: background 0.3s;
		background-color: var(--main-color);
	}
	.sitemap ul a img{
		height: 30px;
	}
	.sitemap.active {
		transform: translateY(0%);
	}
	.slider_item {
	  width: calc(100vw / 3);
	}
	.link_banner_copy_box {
		display: inline;
		padding-top: 3px;
		padding-bottom: 5px;
		padding-left: 15px;
		padding-right: 15px;
		background:rgba(0,101,255,0.7);
	}
	/* ページタイトル */
	#main #page_title {
		position: relative;
		text-align: center;
		margin-top: 8%;
		margin-bottom: 4%;
	}
	/* ページタイトル画像背景色 */
	#main #page_title #page_tile_bk {
		display: inline-block;
		background-color: white;
		width: 100%;
	}
	/* ページタイトル画像 */
	#main #page_title #page_tile_bk img {
		display: block;
		width: 100%;
		height: 80px;
		object-fit: cover;
		background-color: white;
		opacity: 0.5;
	}
	/* メインコンテンツ */
	#main #main_contents {
		width: 100%;
		margin: 0 auto;
	}
	/* フッター ロゴ＆会社名 */
	#footer #logo_a_links {
		display: none;
	}
}
/*------------ 
PC
------------*/	
@media only screen and (min-width : 835px ){
	.pc_delete {
		display: none;
	}
	.link_banner_copy_box {
		display: inline;
		padding-top: 4px;
		padding-bottom: 4px;
		padding-left: 15px;
		padding-right: 15px;
		background:rgba(0,101,255,0.7);
	}
	/* 全体 */
	body {
		width: 100%;
		height: 100%;
		margin: 0 auto;
		font-family: "游明朝";
		font-weight: lighter;
		font-size: 20px;
		color: var(--font-color);
		background-color: #000000;
	}
	/* 通常ヘッダー */
	#basic_sitemap {
		display: inline-block;
		width: 100%;
		margin: 0 auto;
		margin-top: 1%;
		background-color: aq;
		padding-bottom: 1.1%;
		border-bottom: 1px solid white;
	}
	/* サイトマップ */
	#basic_sitemap #basic_logo {
		float: left;
		margin-left: 18%;
		width: 20%;
	}
	/* サイトマップ */
	#basic_sitemap .sitemap {
		float: right;
		margin-right: 15.6%;
		width: 40%;
	}
	#basic_sitemap .sitemap  img {
		margin-top: 2%;
	}
	/* ヘッダー サイトマップ */
	#basic_sitemap .sitemap  ul {
		padding-top: 1.9%;
		font-size: 0;
		margin: 0 auto;
	}
	/* ヘッダー サイトマップリスト */
	#basic_sitemap .sitemap  ul li {
		list-style: none;
		text-align: left;
		display: inline-block;
		width: 20%;
		font-weight: normal;
		padding-right: 2%;
		padding-left: 2%;
		border-left: 1px solid white;
	}
	/* ヘッダー サイトマップリスト 縦線重複回避 */
	#basic_sitemap .sitemap  ul li+ li {
		border-left: 0;
		border-right: 1px solid white;
	}
		/* ヘッダー サイトマップリスト */
	#basic_sitemap .sitemap  ul li img {
		width: 100%;
	}
	/* ルート表示 */
	#header #header_root {
		height: 2.4vw;
	}
	/* ルート表示背景 */
	#header #header_root img {
		top: 0;
		width: 100%;
	}
	/* ルート表示 */
	#header #header_root font {
		position: absolute;
		top: 0.45vw;
		left: 18%;
		font-size: 80%;
	}
	.slider_item {
	  width: calc(100vw / 5);
	}
	/* ページタイトル */
	#main #page_title {
		position: relative;
		text-align: center;
		margin-top: 4%;
		margin-bottom: 2%;
	}
	/* ページタイトル画像背景色 */
	#main #page_title #page_tile_bk {
		display: inline-block;
		background-color: white;
		width: 65%;
		height: 150px;
	}
	/* メインコンテンツ */
	#main #main_contents {
		width: 65%;
		margin: 0 auto;
	}
	/* フッター ロゴ＆会社名 */
	#footer #logo_a_links {
		display: inline-block;
		width: 100%;
		margin-bottom: 2%;
	}
}
