
@charset "UTF-8";

/* 共通部分
--------------------------------------- */
html {
	font-size: 100%;
}
body{
		font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
		line-height: 1.7;
		color: #432;
}
a {
	text-decoration: none;
}
img {
	max-width: 100%;	
}	

/* HEADER
--------------------------------------- */
.page-header	{
	height:115px;
	width:100%;
	background-color:white;
	position:fixed;
	top:0;
	z-index: 1;
}
@media screen and (max-width: 1000px) {
.page-header {
    	height: 51px;
	width: 100%;
	background-color:white;
	position:fixed;
	top:0;
	z-index: 1;
	
  }
}

.logo {
	width: 118px;
	margin-top: 8.8px;
	margin-left: 10px;
	position:fixed;
}
@media screen and (max-width: 1000px) {
.logo {
	width: 45px;
	margin-top: 6px;
	margin-left: 10px;
	position:fixed;  
	}
}



/* Nav
-----------------------------------------*/
.Nav {
  margin-top: 51px;
  border-top: solid 1px #FFF;
  float: right;
}
@media screen and (max-width: 1000px) {
  .Nav {
  position: relative;
  border-top:none;
  float: none;
  }
}
.Nav .navbtn {
  display: none;
}
@media screen and (max-width: 1000px) {
  .Nav .navbtn {
    display: block;
    position: absolute;
    top: -45px;
    right: 5px;
  }
}
@media screen and (max-width: 1000px) {
  .Nav .navbtn a,
  .Nav .navbtn a.close {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
  }
  .Nav .navbtn a::before,
  .Nav .navbtn a.close::before {
    position: absolute;
    top:10px;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #171c61;
   transition: .2s;
  }
  .Nav .navbtn a.open::before {
    top:19px;
    transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  }
  .Nav .navbtn a::after,
  .Nav .navbtn a.close::after {
    position: absolute;
    bottom:10px;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #E60012;
    transition: .2s;
  }
  .Nav .navbtn a.open::after {
    bottom:18px;
    transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  }
}
@media screen and (max-width: 1000px) {
  .Nav .navbtn a.open {
  }
}
 
@media screen and (max-width: 1000px) {
  .Nav .navbtn a span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  .Nav .navbtn a span::after,
  .Nav .navbtn a.close span::after {
    position: absolute;
    top:18px;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #171c61;
  }
  .Nav .navbtn a.open span::after {
    display: none;
  }
}
.Nav ul.close {
  display: none;
  border-top: solid 1px #F5F4F0;
}
.Nav > ul {
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (max-width: 1000px) {
  .Nav > ul {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background-color: #FFF;
    height: calc( 100vh - 51px );
  }
}
.Nav > ul > li {
  position: relative;
  font-size: 15px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .Nav > ul > li {
    display: block;
    border-bottom: solid 1px #dddddd;
  }
}
.Nav > ul > li a {
  display: block;
  position: relative;
  text-decoration: none;
  padding: 19px 15px;
  font-size: 15px;
  color: #333;
  background-color: #fff;
  z-index: 2;
}
.Nav > ul > li.parent > a {
  padding-right:25px;
}
.Nav > ul > li.parent > a::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 6px;
    height: 6px;
    margin: -6px 0 0 0;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
@media screen and (max-width: 1000px) {
.Nav > ul > li.parent.open > a::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
}
@media screen and (max-width: 1000px) {
  .Nav > ul > li.parent.open {
    border-bottom: none;
  }
}
  .Nav > ul > li.parent.open > a{
    color: #FFF;
  }
  .Nav > ul > li.parent.open > a::after {
  background: #171c61;
  -webkit-transform: scale(1);
  transform: scale(1);
}
@media screen and (max-width: 1000px) {
  .Nav > ul > li.parent.open > a {
    color: #FFF;
  }
}
 
.Nav > ul > li a:hover {
  color: #fff;
}
.Nav > ul > li a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.Nav > ul > li a,
.Nav > ul > li a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.Nav > ul > li a::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
}
.Nav > ul > li a:hover::after {
  background: #171c61;
  -webkit-transform: scale(1);
  transform: scale(1);
}
 
/* 2階層 */
.Nav > ul > li > ul {
  display: none;
  position: absolute;
  top: 53px;
  left: 0;
  width: auto;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9;
}
 
@media screen and (max-width: 1000px) {
  .Nav > ul > li > ul {
    background-color: #fbfbfb;
    position: static;
  }
}
 
.Nav > ul > li > ul li {
  white-space: nowrap;
}
 
.Nav > ul > li > ul li a {
  position: relative;
  padding: 12px 27px 12px 27px;
}
@media screen and (max-width: 1000px) {
  .Nav > ul > li > ul li a {
    border-bottom: solid 1px #dddddd;
    background-color: #FFFFFF;
  }
}
.Nav > ul > li > ul li a::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 6px;
    height: 6px;
    margin: -6px 0 0 0;
    border-top: solid 2px #e60012;
    border-right: solid 2px #e60012;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.Nav > ul > li > ul li a:hover {
  text-decoration: underline;
}
 
@media screen and (max-width: 1000px) {
  .Nav > ul > li > ul li a:hover {
    background-color: #FFF;
  }
}
 
.Nav > ul > li > ul li ul li a {
  padding-left: 42px;
}
.Nav > ul > li > ul li ul li a::before {
    left: 20px;
}


#globalFooter {
    margin-top: 75px;
    background: #242424;
}
@media screen and (max-width: 767px) {
#globalFooter {
    margin-top: 40px;
    background: #242424;
	}
}


#globalFooter .copyrightArea {
    background: #fff;
    padding: 12.5px 0;
    text-align: center
}
#footlogo {
	position:relative;
	width:175px;
	float:left;
	margin: 1% 0% 1% 10%;	
}

@media screen and (max-width: 1000px) {
#footlogo {
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	position:relative;
	width:100px;
	float:left;
	}
}
@media screen and (max-width: 1000px) {
#footlogo {
	margin-top: 15px;
	margin-left: 15px;
	position:relative;
	width:150px;
	float:left;
	}
}

@media screen and (max-width: 480px) {
#footlogo {
	margin-top: 15px;
	margin-left: 15px;
	position:relative;
	width:100px;
	float:left;
	}
}
#footcompinfo {
	position:relative;
	width:20%;
	float:left;
	margin: 1% 0% 1% 1%;
	color:#FFFFFF;
	font-size:13px;
}
@media screen and (max-width: 1000px) {
	#footcompinfo {
	width: 30%;
	position:relative;
	margin-left: 3%;
	color: #FFFFFF;
	font-size: 13px;
	}
}

@media screen and (max-width: 480px) {
	#footcompinfo {
	width: 65%;
	position:relative;
	margin: 3% 0% 3% 3%;
	color: #FFFFFF;
	font-size: 12px;
	}
}

.linkSet {
	display: flex;
	width:30%;
	font-size: 13px;
}
@media screen and (max-width: 1024px) {
.linkSet {
	display: flex;	
	margin: 3% 0% 3% 3%;
	font-size: 10px;
	}
}

@media screen and (max-width: 768px) {
.linkSet {
	display: none;
	}
}

.linkUnit  {
	margin: 3% 0% 5% 5%;
}
.linkUnit a {
		color: #FFF;
		font-size: 13px;
}
.childLink a {
	color: #777;
	font-size: 13px;
}
@media screen and (max-width: 1024px) {
.childLink a {
	color: #777;
	font-size: 11px;
	}
}
ul {
  list-style: none;
}

/*========= スクロールダウンのためのCSS ===============*/

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  left:50%;
  bottom:50px;
    /*全体の高さ*/
  height:150px;
}
@media screen and (max-width: 768px) {
.scrolldown1 {
	display: none;
	}
}


/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
  position: absolute;
  left:-25px;
  top: -35px;
    /*テキストの形状*/
  color: #171c61;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
  content: "";
    /*描画位置*/
  position: absolute;
  top: 0;
    /*線の形状*/
  width: 1px;
  height: 50px;
  background: #171c61;
    /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:160px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}





/* PANEL
--------------------------------------- */

#panelArea {
	margin-left: auto;
	margin-right: auto;	
	background-repeat: no-repeat;
}
.video-container {
	position: relative;
	overflow: hidden;
}

video {
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}
@media screen and (max-width: 1000px) {
video {
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
	width: 100%;
	margin-top: 50px;
	left: 0;
	}
}

.pageSet {
	position: relative;
	background-size: cover;
	margin-top: 50px;
}
@media screen and (max-width: 767px) {
.pageSet {
	position: relative;
	background-size: cover;
	margin-top: 30px;
	}
}








/* COPY
--------------------------------------- */

.copy {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	margin-top: 70px;
	margin-bottom: 70px;
	padding: 0 20px;
}
@media screen and (max-width: 767px) {
.copy {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 0 20px;
	}
}



/* NEWS
--------------------------------------- */
.news_title {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	margin-top: 0px;
}
@media screen and (max-width: 767px) {
.news_title {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	margin-top: 10px;
	}
}
.news_title >img {
	width: auto;
}

@media screen and (max-width: 767px) {
.news_title >img {
	width: 80px;
	}
}

.news {
	position: relative;
	padding: 10px 0;
}
@media screen and (max-width: 767px) {
.news {
	position: relative;
	padding: 0 0;
	}
}

.news_inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 20px 20px;
	margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
.news_inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 20px 0px;
	margin-bottom: 30px;
	}
}

.news_body {
	width: 100%;
	position: relative;
	padding:0;
}
.news_title {
	position: relative:
	display: inline-block;
}
.news_list {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 20px;
}
.news_body table {
	width: 100%;
	border-top: 1px solid #e60012;
}
table {
	border-collapse: collapse;
}
tr {
	display: table-row;
	vertical-align: inherit;
	border-color: inherit;
}
th {
	display: table-cell;
	vertical-align: inherit;
}
.news_body th {
	white-space: nowrap;
}
.news_body th {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #e60012;
}
.news_body td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #e60012;
}

span.data {
	font-fmily:'Robot',sans-serif;
	font-weight: 400;
	color: #999999;
}
span.tag {
	font-size: 11px;
	color: #FFF;
	background: #999999;
	display: inline-block;
	margin-left: 15px;
	box-sizing: boderbox;
	width: 70px;
	padding: 0 5px;
	text-align: center;
	height: 20px;
	line-height: 20px;
}
@media screen and (max-width: 767px) {
span.tag {
	font-size: 11px;
	color: #FFF;
	background: #999999;
	display: inline-block;
	margin-left: 32px;
	box-sizing: boderbox;
	width: 70px;
	padding: 0px;
	text-align: center;
	height: 20px;
	line-height: 20px;
	}
}

@media screen and (max-width: 767px) {
.news_body th {
	width: 120px;
	}	
}
@media screen and (max-width: 767px) {
.news_body td {
	width: auto;
	white-space: inherit;
	font-size: 14px;
}
.news_body td {
	width: auto;
	white-space: inherit;
	font-size: 14px;
}


.news_body th {
	padding: 15px 0px 15px 15px;	
}

.news_body td {
	padding: 15px;
	border-bottom: 1px solid #e60012;
	}
}

.news_body td a { 
	color: #e60012;
	display: block; text-decoration: none; 
}

.news_body td a:hover { 
	color: #feaeb4;
}


/* ABOUT1
--------------------------------------- */

.About1 {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	color: #000;
	padding: 0 15px;
}
.about1_az {
	margin-bottom: 30px;
}

.az_text {
	margin: 16px auto;
	text-align: left;
	display: block;
	max-width: 665px;
	padding: 0 20px;
	font-size: 18px;
}
@media screen and (max-width: 767px) {
.az_text {
	margin: 16px auto;
	text-align: left;
	display: block;
	max-width: 665px;
	padding: 0 20px;
	font-size: 16px;
	}
}

.about1_body_right {
	margin-top: -20px;
	margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
.about1_body_right {
	margin-top: 0px;
	margin-bottom: 20px;
	}
}


.About2 {
	max-width: 2500px;
}
.grid2 {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	margin-bottom: 50px;
	margin: 0 30px;
	text-align: center;
}

@media screen and (max-width: 767px) {
.grid2 {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	margin-bottom: 30px;
	margin: 0 20px;
	text-align: center;
	}
}

.item > img{
	width: 100%;
	margin-bottom: -12%;
}
.item p img {
	width: 60%;
	margin-top: -30%;
}
@media screen and (max-width: 767px) {
.item > img{
	width: 100%;
	margin-bottom: -14%;
}
.item p img {
	width: 60%;
	margin-top: -30%;
	}
}

.grid2 a:hover {
	opacity: 0.5;
}

#clear {
	clear:both
}

/*========= レイアウトのためのCSS ===============*/

.wrapper1{
  overflow: hidden;
}



/*==================================================
ふわっ
===================================*/


/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}


/*========= レイアウトのためのCSS ===============*/

.wrapper2{
  overflow: hidden;
}


/*==================================================
ふわっ
===================================*/


/* fadeIn */

.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger{
    opacity: 0;
}


.flex{
  display:flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.box{
 margin: 0 20px;
}
@media screen and (max-width: 1050px) {
.box{
 margin: 20px auto;
}
}
@media screen and (max-width: 767px) {
.box{
 margin: 10px 20px;
}
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/


/*==================================================
ふわっ
===================================*/

.fadeUp3 {
animation-name:fadeUp3Anime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUp3Anime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUp3Trigger{
    opacity: 0;
}
