@charset "UTF-8";
/* ----------------------------
 import css
---------------------------- */ 
@import url("common.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap');
body{
font-family: "Avenir" , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto ,"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",  "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}
/*=============================================================
#base
=============================================================*/
body,html{
width: 100%;
min-width:1200px;
}
body {
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
	font-size: 1em;
	line-height: 1.8em;
	color: #333333;
	text-align: left;
	text-size-adjust: 100%;
}
a:active {
	color: #0000FF;
	text-decoration: underline;
}
a:visited {
	color: #66F;
	text-decoration: underline;
}
a:link {
	color: #0000FF;
	text-decoration: underline;
}
a:hover {
	color: #00F;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
    opacity: 0.9;
}
#container {
	margin-right:auto;
	margin-left:auto;
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	width: 100%;
}
a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
	color: #000;
}
.hd {
display: none;
}
.body {
width: 1200px;
margin: 0 auto;
}
.drawerfixed {
    overflow: auto;
    height: 100%;
}
/*=============================================================
タイトル
=============================================================*/
.title{
padding: 50px 0;
text-align: center;
}
h1,h2,h3,h5,h6,h7,h8{
font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
font-weight: 300;
}
/* mainimagelogo */
h1{
font-size: 50px;
color: #fff;
padding-top: 30px;
}
/* title */
h2{
font-size: 36px;
}
h2 span{
background-image: linear-gradient(90deg, #143e99, #86c6b3);
background-repeat: no-repeat;
background-position: bottom;
background-size: 100% 8px;
padding-bottom: 0.5em; /* 下方向の余白調整箇所 */
}
h2.tate{
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
text-align: left;
line-height: 2.5em;
margin: 0 auto;
}
h2.tate span {
background-image: linear-gradient(180deg, #143e99, #86c6b3);
background-repeat: no-repeat;
background-position: right bottom;
background-size: 8px 100%;
padding-right: 0.6em; /* 下方向の余白調整箇所 */
}
h3{
font-size: 36px;
}
h3.tate{
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
text-align: left;
line-height: 2.5em;
margin: 0;
}
h3.tate span {
background-image: linear-gradient(180deg, #143e99, #86c6b3);
background-repeat: no-repeat;
background-position: right bottom;
background-size: 8px 100%;
padding-right: 0.6em; /* 下方向の余白調整箇所 */
}
/* グレー文字 */
h4{
font-size: 20px;
font-weight: 600;
color: #999;
text-align: left;
display: flex;
align-items: center;
padding-bottom: 40px;
}
h4::after {
content: "";
height: 1px;
flex-grow: 1;
background-color: #999;
margin-left: 1rem;
}
/* 採用情報 */
h5{
font-size: 24px;
text-align: left;
line-height: 1.8em;
}
/* footerlogo */
h6{
font-size: 30px;
text-align: left;
}
/* pagetitle */
h7{
font-size: 40px;
color: #fff;
}
/*=============================================================
ボタン
=============================================================*/
.btn a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 200px;
    padding: 10px 25px;
    color: #333333;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}
.btn a:before {
    position: absolute;
    bottom: 0px;
    left: 50%;
    content: '';
    width: 100%;
    height: 3px;
    background: #86c6b3;
    transform: translateX(-50%);
}
.btn a:after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background: #143e99;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.btn a:hover {
    opacity: 1;
}
.btn a:hover:after {
    transform: scale(1, 1);
}
/*=============================================================
#header
=============================================================*/
#header {
width: 100%;
margin: 0 auto;
z-index: 1000!important;
}
#header .left ul.header_menu{
display: flex;
position: fixed;
top: 0;
}
#header .left a.top {
text-decoration: none;
background:#143e99;
display: block;
width: 80px;
height: 80px;
padding: 0.5em;
box-sizing: border-box;
-webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
#header .right {
position: fixed;
bottom: 0;
right: 0;
}
#header .right a.contact {
text-decoration: none;
background:#86c6b3;
display: block;
width: 80px;
height: 80px;
padding: 1.4em 0.5em;
box-sizing: border-box;
-webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
#header a:hover{
opacity: 0.8;
}
/*=============================================================
#mainimage
=============================================================*/
#mainimage {
width: 100%;
height: 100vh;
position: relative;
overflow: hidden;
z-index: -10;
}
#mainimage video{
position: absolute;
width: 100%;
height:100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1000;
object-fit: cover;
}
#mainimage .copy {
position: absolute;
top: 47%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit- transform: translateY(-50%) translateX(-50%);
}
/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:10px;
  left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
  position: absolute;
  left:10px;
  bottom:10px;
    /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
  width:10px;
  height:10px;
  border-radius: 50%;
  background:#eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
  100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  left:0;
    /*線の形状*/
  width:2px;
  height: 50px;
  background:#eee;
}

/*=============================================================
#FOOTER
=============================================================*/
#footer {
width: 100%;
background-color: #808080;
padding: 30px 0;
}
#footer .footer_box {
margin: 0 auto;
max-width: 1200px;
display: flex;
justify-content: space-between;
padding: 30px 0 60px;
}
#footer .footer_box .left .logo{
display: flex;
align-items: center;
text-align: left;
}
#footer .footer_box .left .logo a{
text-decoration: none;
padding-bottom: 10px;
color: #fff;
}
#footer .footer_box .right {
padding-top: 15px;
}
#footer .footer_nav ul {
display: flex;
}
#footer .footer_nav ul li:not(last-child){
padding-right: 1em;
color: #fff;
}
#footer .footer_nav ul li a{
color: #fff;
text-decoration: none;
font-size: 16px;
font-weight: 600;
}
#footer .footer_nav ul li a:hover{
text-decoration: underline;
}
#footer p.copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 150%;
	color: #fff;
}
