@charset "UTF-8";
@import "common.pc.css";

/* ---------------------------------------------------------
	CSS Document header
--------------------------------------------------------- */

#wrapper {
	padding-top: 0;
}

#header {
	display: none;
	top: -110px;
	transition: .6s;
}

#header.active {
	top: 0;
}

/* ---------------------------------------------------------
	CSS Document visual
--------------------------------------------------------- */

#visual {
	height: 100vh;
	overflow: hidden;
	margin-bottom: 80px;
	font-size: 0;
	position: relative;
}

.covervid-wrapper {
	width: 100%;
padding-top: 0;
text-align: center;
background:#000;
}
#video {
  background-attachment: fixed; // 中央揃えになるように、fixed。
  background-position: center center; // positionも中央に。
  background-size: cover; // 画面サイズに応じてサイズを可変するように設定。
  left: 0;
  // 以下、画面いっぱいにするためのCSS設定
  min-height: 100%;
  min-height: 100vh;
  min-width: 100%;
  min-width: 100vw;
  // wrapperのサイズに応じて、leftの位置をjQueryで指定するため、positionはabsoluteにします。
  position: absolute;
  top: 0;
  // z-indexは調整してください。
  z-index: 1;
opacity:0.7;
}

#visual:before {
	content: '';
	width: 180px;
	height: 180px;
	background: url(../images/f_logo.png) no-repeat 0 0;
	background-size:contain;
	position: absolute;
	top: 0;
	left: 0;
	z-index:5;
}

#visual ul {
	line-height: 1;
	position: absolute;
	top: 0;
	right: 5%;
}

#visual li {
	display: inline-block;
	vertical-align: top;
	margin-left: 45px;
	line-height: 110px;
}

#visual li a {
	display: block;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
	position: relative;
}

#visual li a:hover {
	color: #1fa50a;
}

#visual h2 {
	font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Noto Serif JP", serif;
	font-weight: 600;
	font-size: 60px;
	color: #fff;
	z-index:50;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}

/* ---------------------------------------------------------
	CSS Document about
--------------------------------------------------------- */

#about {
	margin-bottom: 90px;
}

#about .container {
	position: relative;
	z-index: 0;
}

#about .container:before {
	content: '';
	width: 211px;
	height: 100%;
	background: url(../top/left.png) no-repeat left;
	position: absolute;
	top: 0;
	left: -90px;
	z-index: -1;
}

#about .container:after {
	content: '';
	width: 197px;
	height: 100%;
	background: url(../top/right.png) no-repeat right;
	position: absolute;
	top: 0;
	right: -80px;
	z-index: -1;
}

#about p {
	display: inline-block;
	vertical-align: top;
	text-align: left;
	line-height: 44px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

#about p span {
	display: block;
	margin: 0 40px;
}

/* ---------------------------------------------------------
	CSS Document top
--------------------------------------------------------- */

.top .container {
	min-height: 600px;
	margin-bottom: 190px;
	position: relative;
	z-index: 0;
}

.top h2 {
	margin-bottom: 40px;
}

.top .copy_30 {
	margin-bottom: 25px;
}

.top .w330 {
	width: 330px;
	margin-bottom: 40px;
	text-align: left;
	letter-spacing: 3px;
}

.top figure {
	width: 890px;
	position: absolute;
	top: 30px;
	left: 500px;
	z-index: 0;
}

.top figure:before {
	height: 100%;
}

.top li a {
	display: inline-block;
	vertical-align: top;
	width: 290px;
	height: 50px;
	padding-left: 10px;
	border-radius: 50px;
	background: #1fa50a;
	text-decoration: none;
	text-align: center;
	letter-spacing: 10px;
	line-height: 50px;
	color: #fff;
}

.top li a:hover {
	opacity: 0.7;
}

/* ---------------------------------------------------------
	CSS Document greeting
--------------------------------------------------------- */

#greeting {
	position: relative;
	z-index: 0;
}

#greeting:after {
	content: '';
	width: calc(50% - 500px);
	height: 220px;
	background: #f2f2f2 url(../images/bg.png) top / 3px auto;
	position: absolute;
	top: -220px;
	left: 0;
	z-index: -1;
}

#greeting .w470 {
	width: 470px;
	margin-left: auto;
}

#greeting.top figure {
	left: -460px;
}

/* ---------------------------------------------------------
	CSS Document department
--------------------------------------------------------- */

#department {
	position: relative;
	z-index: 0;
}

#department:after {
	content: '';
	width: calc(50% - 500px);
	height: 220px;
	background: #f2f2f2 url(../images/bg.png) top / 3px auto;
	position: absolute;
	top: -220px;
	right: 0;
	z-index: -1;
}


.news {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(255,255,255,0.9);
    width: 550px;
}
.news dl {
    color: black;
    text-align: left;
    padding: 35px 40px;
}
.news dl dt {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}
.news dl dd {
    font-size: 0.9rem;
    line-height: 1.5rem;
}