@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,body{
  height: 100%;/*高さを100%にして描画エリアをとる*/
}

body{
	color: #040000;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}

a{
	text-decoration: none;
}

a:hover{
	opacity: 0.8;
}

p,li{
	line-height:2.0;
}

.sp{
	display: none!important;
}

.annotation{
	padding-left:1em;
	text-indent:-1em;
}

.wrapper{
	width: 100%;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
}




/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼Header▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

header{
    /*はじめの高さを設定*/
	width:100%;
	color:#fff;
	text-align: center;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 8000;
}

/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
header.HeightMin{
	position: fixed;
	z-index: 8000;
	animation: DownAnime 0.5s forwards;
	background:rgba(30,30,30,0.9);
}

@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-170px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

.HeightMin #top_logo{
	width: calc(100vw / 8);
}

.hamburger-menu{
	display: none;
}

#top_logo{
	width: calc(100vw / 6);
	margin-top: calc(100vw / 120);
	margin-bottom: calc(100vw / 120);
	margin-left: 30px;
}

#top_logo img{
	width: 100%;
}

h1{
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	font-size: calc(100vw / 100);
	line-height: 0.1;
}

.gnav {
	display: flex;
	list-style: none;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	margin-right: 30px;
}

.gnav li {
    text-align: center;
    font-size: clamp(14px, 1vw, 15px);
	margin-left: 30px;
}

.gnav li a {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.12em;
	white-space: nowrap;
}

.gnav li .btn_contact {
	cursor:pointer;
	border:none;
	position:relative;
	transition: all 0.3s ease 0s;
}

.gnav li .btn_contact a {
    color: #fff;
    font-size: 15px;
    background-color: #5b6dd7;
    padding: 10px 32px;
    border-radius: 25px;
    border: 2px solid #5b6dd7;
}




/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼Movie▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

#top_movie{
	width: 100%;
	margin-bottom: calc(100vw / 15);
	position: relative;
}

#top_movie video{
	width: 100%;
}

#top_movie h2{
	position: absolute;
	color: #fff;
	top: 35%;
	font-size: calc(100vw / 20);
	left: 5%;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 1.7!important;
}

#top_movie h2 span{
	font-size: calc(100vw / 45);
	display: block;
}

#top_movie img{
	position: absolute;
	top: 20%;
	width: calc(100vw / 3.5);
	left: 60%;
}


/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼Paricle▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/


canvas{
	display: block;
	vertical-align: bottom;
}
/* ---- particles.js container ---- */

#particles-js{
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}


/*========= スクロールダウンのためのCSS ===============*/

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  left:50%;
  bottom:10px;
    /*全体の高さ*/
  height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
  position: absolute;
  left:-15px;
  top: -15px;
    /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

/*アニメーション描画用*/
canvas{
	position:absolute;/*親のブロックを基準にして相対位置に配置する*/
	/*位置指定*/
	top:0;
	right:0;
	z-index:-1;/*重ね順を-1に　※1以上だとほかのコンテンツの上に被さってしまいます*/
}

.main_ttl{
	font-family: "ocr-b-std", monospace;
	font-weight: 400;
	font-style: normal;
	font-size: 60px;
	text-align: center;
	letter-spacing: 0.02em;
}

.main_h2{
	text-align: center;
	font-size: 18px;
	margin-bottom: 50px;
}



#top_philosophy{
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	animation-delay: 1.0s;
	opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(20px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}




/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼サービス▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

.service_box{
	width: 360px;
}

.service_box img{
	margin-bottom: 30px;
}

.service_number{
	background-color:#3a4e94;
	color: #fff;
	font-family: "ocr-b-std", monospace;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	font-size: 30px;
	border-radius: 50px;
	width: 100px;
	height: 100px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 30px;
	margin-bottom: 20px;
}

.service_box h3{
	font-size: 21px;
	text-align: center;
	margin-bottom: 20px;
}

.service_box p{
	font-size: 16px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}



/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ワンストップ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

#onestop_bg{
	background-color: #3a4e94;
	padding-top: 80px;
	padding-bottom: 80px;
	position: relative;
	margin-bottom: 100px;
	z-index: -1;
}

#onestop_img{
	position: absolute;
	top: -50px;
	width: 50%;
	overflow-x: hidden;
	right: 50%;
}

#onestop_right{
	margin-left: 55%;
	margin-right: 50px;
}

#onestop_right h2{
	color: #fff;
	font-size: 27px;
	margin-bottom: 20px;
}

#onestop_right img{
	margin-bottom: 30px;
}

#onestop_right p{
	color: #fff;
	font-size: 16px;
	margin-bottom: 30px;
}

#onestop_btn{
	color: #fff;
	text-align: center;
	border: solid 1px #fff;
	display: inline-block;
}

#onestop_btn a{
	color: #fff;
	padding: 15px 80px;
	display: block;
}





/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼動画制作カテゴリー▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

.category_btn{
	border: solid 1px #3a4e94;
	width: 32%;
	text-align: center;
	padding: 30px;
	margin-bottom: 30px;
	border-radius: 10px;
}

.category_btn_blank{
	width: 32%;
	text-align: center;
	padding: 20px;
}

.category_btn:nth-child(even){
	background-color: #f0f1f7;
}

.category_btn h3{
	color: #3a4e94;
	font-size: 18px;
}




/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼FLOW▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

.gray_bg{
	background:rgba(150,150,150,0.2);
	padding-top: 80px;
	padding-bottom: 80px;
	position: relative;
	z-index: -1;
}

.flow_block{
	background-color: #fff;
	margin-bottom: 60px;
	text-align: center;
	position: relative;
	width: 100%;
	padding-bottom: 30px;
	padding-top: 80px;
}

.flow_number{
	background-color:#3a4e94;
	color: #fff;
	font-family: "ocr-b-std", monospace;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	font-size: 24px;
	border-radius: 50px;
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 30px;
	margin-bottom: 20px;
	position: absolute;
	top: -15px;
	left: calc(50% - 40px);
}

.flow_block h3{
	font-size: 21px;
	margin-bottom: 20px;
}

.flow_block::after{
	content: url("../images/flow_arrow.svg");
	width: 30px;
	height: 16px;
	position: absolute;
	left: calc(50% - 15px);
	bottom: -30px;
}

.flow_block:last-child::after{
	content: none;
}

#flow_bg1,#flow_bg3,#flow_bg5{
	background-position: right;
	background-repeat: no-repeat;
	background-size: contain;
}

#flow_bg2,#flow_bg4,#flow_bg6{
	background-position: left;
	background-repeat: no-repeat;
	background-size: contain;
}

#flow_bg1{
	background-image: url("../images/flow_img_01.webp");
}

#flow_bg2{
	background-image: url("../images/flow_img_02.webp");
}

#flow_bg3{
	background-image: url("../images/flow_img_03.webp");
}

#flow_bg4{
	background-image: url("../images/flow_img_04.webp");
}

#flow_bg5{
	background-image: url("../images/flow_img_05.webp");
}

#flow_bg6{
	background-image: url("../images/flow_img_06.webp");
}





/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼FAQ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/

.cp_qa{
	margin-bottom: 80px;
}

.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 25px 0;
}

.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}

/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6em;
	position: relative;
	display: block;
	cursor: pointer;
}

.cp_qa .cp_actab label td{
	padding-top: 20px;
	padding-left: 50px;
}

.cp_actab label:hover{
	opacity: 0.8;
}

.cp_qa .cp_actab td {
	font-size: 21px;
	font-weight: 500;
	color: #333;
	vertical-align: middle!important;
}

.cp_qa .cp_actab label:hover {
	transition: all 0.3s;
}

/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
	font-size: 3em;
	font-weight: 300;
	line-height: 0.5em;
	color: #3a4e94;
	position: absolute;
	top: 20px;
	left: 0;
	content: '+';
	display: inline-block;
	width: 1em;
	height: 1em;
	-webkit-transition: transform 0.4s;
	        transition: transform 0.4s;
}

/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	position: relative;
	overflow: hidden;
	max-height: 0;
	transition: all 0.3s 0.0s ease;
	background-color: #fff;
}

.cp_qa .cp_actab .cp_actab-content p {
	margin: 1em 1em 1em 0;
	font-size: 18px;
}

/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	padding: 20px;
	max-height: 70em;
	margin-top: 15px;
}

/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
	border-radius: 0.5em 0.5em 0 0;
}

/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	-webkit-transform-origin: 30% 30%;
	transform-origin: 30% 30%;
}

.cp_actab p{
	line-height: 1.7;
}



/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼企業情報▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/


#company_table{
	width: 100%;
	border-spacing: 0;
	margin-bottom: 100px;
}

#company_table th{
	width: 30%;
	padding: 15px 30px;
	background-color: #eee;
	border: solid 1px #999;
}

#company_table td{
	width: 70%;
	padding: 15px 30px;
	border: solid 1px #999;
}

#company_map{
	margin-bottom: 120px;
}

#company_map iframe{
	width: 100%;
	height: calc(100vw / 2.5);
}



/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼お問い合わせ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/


#formWrap {
	width:100%;
	margin:0 auto;
	line-height:400%;
}

.formTable{
	width:100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	border-collapse:collapse;
	margin-bottom: 30px;
}

.formTable input{
	cursor: pointer!important;
}

.formTable td,.formTable th{
	padding:10px;
}

.formTable th{
	width: 30%;
	max-width: 300px;
	font-weight:normal;
	text-align:left;
	vertical-align: middle;
}

.formTable td{
	width: 100%;
	max-width: 700px;
}

.formTable input,.formTable select{
	width: 100%;
	max-width: 700px;
	background-color: #eee;
	height: 50px;
	-webkit-appearance: none;
	border-color: #eee; border-width: 1px;
	font-size: 16px;
	padding-left: 15px;
}

.formTable textarea{
	width: 100%;
	max-width: 700px;
	background-color: #eee;
	-webkit-appearance: none;
	border-color: #eee;
	border-width: 1px;
	font-size: 16px;
	padding-left: 15px;
}

.red{
	color: #ff0000;
	font-size: 80%;
	margin-top: -10px;
	vertical-align: super;
}

.red2{
	color: #ff0000;
}

#submit_btn{
	width: 250px;
	font-size: 16px;
	color: #fff;
	padding: 20px;
	background-color: #5b6dd7;
	border-radius: 5px;
	-webkit-appearance: none;
	border-color: #008CCE; border-width: 1px;
	margin-bottom: 30px;
	margin-top: 20px;
	margin-right: 20px;
	cursor: pointer;
}

#reset_btn{
	width: 250px;
	font-size: 16px;
	color: #fff;
	padding: 20px;
	background-color: #999;
	border-radius: 5px;
	-webkit-appearance: none;
	border-color: #999; border-width: 1px;
	margin-bottom: 30px;
	margin-top: 20px;
	margin-left: 20px;
	cursor: pointer;
}

#submit_btn:hover,#reset_btn:hover{
	opacity: 0.9;
}

.ppcy {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 120px;
	margin-top: 80px;
	width: 100%;
}

.ppcy h2 {
	font-size: 27px;
	margin-bottom: 10px;
	text-align: center;
}

.ppcy .txtBoxWrap {
	border: 1px solid #585757;
	height: 290px;
	overflow: auto;
	padding: 20px;
}

.ppcy .txtBoxWrap p{
	font-size: 90%;
	line-height: 1.5;
}





/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼Footer▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/


footer{
	background-color: #3a4e94;
	padding-top: 60px;
	padding-bottom: 100px;
}

#footer_logo{
	width: calc(100vw / 7);
	margin-top: calc(100vw / 120);
	margin-bottom: calc(100vw / 120);
}

#footer_logo img{
	width: 100%;
}

footer .gnav {
	margin-right: 0px;
}



/*▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼TOPに戻る▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼*/


#page-top a {
	background-color: #5b6dd7;
	color: #fff;
	padding: 10px;
	position: fixed;
	right:20px;
	bottom:20px;
	border-radius:5px;
	text-align: center;
}




/*---------------------SHOVIEコーナー----------------------*/

#shovie_bg{
	background-color: #333;
	padding-bottom: 80px;
	padding-top: 60px;
	margin-bottom: 100px;
}

#shovie_top{
	display: flex;
	width: 100%;
	margin-bottom: 30px;
}

#shovie_top img{
	margin-left: -100px;
	margin-top: -120px;
	width: 50%;
}

#shovie_top h2{
	color: #ffc103;
	font-size: 27px;
	margin-left: 60px;
}

#shovie_top h2 span{
	font-size: 84px;
	font-weight: 600;
}

#shovie_bg p{
	color: #ffc103;
}

.shovie_3box{
	color: #ffc103;
	background-color: #5c502a;
	width: 32%;
	padding: 20px;
	text-align: center;
	margin-bottom: 20px;
}

#shovie_linkage{
	background-color: #ffc103;
	padding: 20px 50px;
	margin-bottom: 50px;
}

#shovie_linkage p{
	font-size: 24px;
	font-weight: 600;
	color: #333;
}

#shovie_linkage img{
	width: 330px;
}

.shovie_btn{
	color: #fff;
	text-align: center;
	font-weight: 600;
	width: 30%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 5px;
	margin-bottom: 20px;
	position: relative;
	border: solid 1px #ffc103;
}

.shovie_btn a{
	color: #ffc103;
	display: block;
	padding: 20px;
}

.shovie_btn::after{
	content: "";
	background-image: url("../images/btn_right_arrow_yellow.svg");
	background-repeat: no-repeat;
	width: 8px;
	height: 12px;
	position: absolute;
	right: 10px;
	top: calc(50% - 6px);
}