@charset "utf-8";
/* CSS Document */

.main_area{
	padding: 0;
	position: relative;
}

.main_content{
	padding-top: 0 !important;
}

#top .wrap {
		padding: 100px 20px 130px;
	}

/* video */

.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 180px);
}
.video {
  position: absolute;
  top: 0;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* overlay */

/*.overlay::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
}*/

/* text */

.name_box {
  position: absolute;
	top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
	justify-content: center;
	height: 100%;
}

.top_name{
	width: calc(100% / 2);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 40px;
	font-weight: bold;
	color: #fff;
	text-shadow: 1px 2px 5px rgba(0,0,0,0.2);
	letter-spacing: 0.2em;
}

.top_name:hover{
	background: rgba(0, 0, 0, 0.3);
}

.bnr_area{
	padding: 5px;
	background-color: #f4f1ec;
	margin: 5px auto;
}

.bnr_box{
	max-width: 1380px;
	border: solid 1px #C8C8C8;
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding: 5px;
}

.bnr_text{
	display: flex;
	align-items: center;
	padding-left: 12%;
	background: url("../images/bnr.png") no-repeat right 0;
	height: 148px;
	width: 100%;
}

.bnr_text:hover{
	opacity: 0.5;
}

.bnr_text p{
	font-size: 28px;
	font-weight: bold;
}

#top h1 {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  padding: 0 50px;
  text-align: center;
  color: #fff;
}

#top h2{
	text-align: center;
}

#top h2.h2_mb{
	margin-bottom: 60px;
}

#top .material-icons-round{
	padding-right: 8px;
	vertical-align: middle;
	font-size: 28px;
}

#top .news_area li:nth-child(4){
	display: none;
}

#top .main_arrow_right {
  position: relative;
}

#top .main_arrow_right::after { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50px;
  width: 15px;    /* くの字を山なりに見た時、左側の長さ */
  height: 15px;   /* くの字を山なりに見た時、右側の長さ */
  border-top: 3px solid #FFF;     /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 3px solid #FFF;   /* くの字を山なりに見た時、右側の太さと色 */
  transform: rotate(45deg);    /* くの字の向き */
	filter: drop-shadow(3px 3px 8px #666);
}

#top .bnr_arrow_right {
  position: relative;
  padding-right: 20px;
}

#top .bnr_arrow_right::after { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -80px;
  width: 8px;    /* くの字を山なりに見た時、左側の長さ */
  height: 8px;   /* くの字を山なりに見た時、右側の長さ */
  border-top: 2px solid #333;     /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 2px solid #333;   /* くの字を山なりに見た時、右側の太さと色 */
  transform: rotate(45deg);    /* くの字の向き */
}

/*====================================================
グローバルナビゲーション TOP
====================================================*/


#g-nav_top{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background-image: linear-gradient(130deg, rgba(255, 233, 219, 1), rgba(255, 245, 230, 1));
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav_top.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav_top.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
	min-width: 1300px;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav_top .nav_logo{
		position: absolute;
		top: 10px;
		left: 20px;
	}
	
	#g-nav_top .nav_logo img{
		width: 100%;
		max-width: 88px !important;
	}

/*ナビゲーション*/
#g-nav_top ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	padding: 0;
}

#g-nav_top.panelactive ul {
    display: flex;
	justify-content: center;
	width: 100%;
	max-width: 1200px;
	flex-wrap: nowrap;
}

/*リストのレイアウト設定*/

#g-nav_top li{
	padding: 50px 0 30px;
}

#g-nav_top li:first-child{
	padding: 50px 0;
	border-right: solid 1px #fff;
}

#g-nav_top li .box_l{
	display: flex;
	flex-wrap: wrap;
}

#g-nav_top li .box_l .item_l_a,#g-nav_top li .box_l .item_l_b{
	width: calc(50% - 80px);
	margin-right: 80px;
}

#g-nav_top li .box_l .item_l_c{
	width: 50%;
	margin-top: 70px;
}

#g-nav_top li .box_r{
	display: flex;
	flex-wrap: wrap;
	padding-left: 70px;
}

#g-nav_top li .box_r .item_r_a{
	width: 100%;
}

#g-nav_top li .box_r .item_r_b{
	margin-top: 50px;
}

#g-nav_top li .box_detail{
	display: flex;
	flex-wrap: wrap;
}

#g-nav_top li .box_detail_sp{
	display: block;
}

#g-nav_top li .box_detail .item_detail_a{
	margin-right: 70px;
}

#g-nav_top li a{
	text-decoration: none;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 16px;
	padding-bottom: 20px;
}

#g-nav_top li a.red_tit{
	color: #1991c6;
	font-weight: bold;
	font-size: 20px;
	padding-bottom: 30px;
}

#g-nav_top li a.black_tit{
	font-weight: bold;
	font-size: 18px;
}

#g-nav_top li a span{
	font-weight: bold;
	color: #666666;
}

#g-nav_top li a span.text_gray_border {
  display: flex;
  align-items: center;
}
#g-nav_top li a span.text_gray_border:before {
  border-top: 2px solid #D9D9D9;
  content: "";
  width: 5px; 
	margin-right: 10px;
}

/* オレンジ矢印 ＞　*/
#g-nav_top li a.a_arrow_ore {
position: relative;
padding-right: 15px;
text-decoration: none;
width: fit-content; 
}

#g-nav_top li a.a_arrow_ore::after {
 content: '';
 display: block;
 width: 4px; /* 矢印の大きさの指定 */
 height: 4px; /* 矢印の大きさの指定 */
 border-top: 2px solid #1991c6; /* 矢印の太さの指定 */
 border-left: 2px solid #1991c6; /* 矢印の太さの指定 */
}
 
#g-nav_top li a.a_arrow_ore--right::after {
 transform: rotate(135deg); /* 矢印の角度の指定 */
 position: absolute; /* 矢印の位置の指定 */
 left: 240px; /* 矢印の位置の指定 */
 top: 9px; /* 矢印の位置の指定 */
 }

/* 黒矢印　＞ */
#g-nav_top li a.a_arrow {
position: relative;
padding-right: 15px;
text-decoration: none;
	width: fit-content;
}

#g-nav_top li a.a_arrow::after {
 content: '';
 display: block;
 width: 4px; /* 矢印の大きさの指定 */
 height: 4px; /* 矢印の大きさの指定 */
 border-top: 2px solid #666; /* 矢印の太さの指定 */
 border-left: 2px solid #666; /* 矢印の太さの指定 */
}
 
#g-nav_top li a.a_arrow--right::after {
 transform: rotate(135deg); /* 矢印の角度の指定 */
 position: absolute; /* 矢印の位置の指定 */
 right: 0; /* 矢印の位置の指定 */
 top: 9px; /* 矢印の位置の指定 */
 }

#g-nav_top li .media_guide_btn{
	max-width: 225px;
	margin: 10px 0 0;
}


/*====================================================
ギミック
====================================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(50px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
	 animation-timing-function: ease-out;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeUpTrigger,.fadeInTrigger{
    opacity: 0;
}

.news_box{
	 opacity: 0;
}

.delay-time05s{  
  animation-delay: 0.5s;
}

.delay-time1s{  
  animation-delay: 1s;
}

/*====================================================
ローディング
====================================================*/

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999999;
  text-align:center;
  color:#333;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:100%;
}

#splash-logo p{
  display: inline-block;
 padding: 0 15px;
  font-size:38px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
}

#splash-logo p.red_text{
  color:#1991c6;
}



/*========= 画面遷移のためのCSS ===============*/

body.appear{
    background:#fff;/*画面を開いた後の背景色を指定*/
}

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2{
  display:block;
}

/*右に消えるエリア*/
body.appear .splashbg1{
  animation-name:PageAnime;
  animation-duration:0.5s;
  animation-timing-function:ease-in-out;
  animation-fill-mode:forwards;
    content: "";
    position:fixed;
  z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
  left:50%;
    transform: scaleX(1);
        background-color: #ebf8fd;/*伸びる背景色の設定*/
}

@keyframes PageAnime{
  0% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

/*左に消えるエリア*/
body.appear .splashbg2{
  animation-name:PageAnime2;
  animation-duration:0.5s;
  animation-timing-function:ease-in-out;
  animation-fill-mode:forwards;
    content: "";
    position:fixed;
  z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
  right:50%;
    transform: scaleX(1);
        background-color: #ebf8fd;/*伸びる背景色の設定*/
}

@keyframes PageAnime2{
  0% {
    transform-origin:right;
    transform:scaleX(1);
  }

  50% {
    transform-origin:left;
  }
  100% {
    transform-origin:left;
    transform:scaleX(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#wrapper{
  opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper{
  animation-name:PageAnimeAppear;
  animation-duration:0.6s;
  animation-delay:0.2s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

.delay-time02{
animation-delay: 0.3s;
}

.delay-time03{
animation-delay: 0.6s;
}



/*====================================================

ここからスマホ

====================================================*/

@media screen and (max-width: 768px) {
	#top .news_area li:nth-child(4){
	display: inline;
}
	
	#news li.news_link {
    padding-top: 40px;
    text-align: center;
}
	
	#news li.news_box:nth-child(n+3) {
    margin-top: 40px;
}
	
	#top .wrap {
		padding: 40px 20px 60px;
	}
	
	#top .innar {
    width: 100%;
}
	
	#top h2.h2_mb {
    margin-bottom: 40px;
}
	
	.main_area{
		position: relative;
	}
	
	.h_logo{
		position: absolute;
		top:10px;
		left:10px;
		z-index: 1;
	}
	
	.name_box {
  position: absolute;
	top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: flex;
		flex-wrap: wrap;
		flex-direction: column;
	justify-content: center;
	height: 100%;
}

.top_name{
	width: 100%;
	height: calc(100% / 2);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	font-weight: bold;
	color: #fff;
	text-shadow: 1px 2px 5px rgba(0,0,0,0.2);
	letter-spacing: 0.2em;
}
	
	
	.bnr_area {
    padding: 5px 0;
    background-color: #f4f1ec;
    margin: 5px auto;
}
	
	.bnr_box{
		margin: 0 5px;
	padding: 5px;
}
	
	.bnr_text{
	padding-left: 10px;
		height: 75px;
		background-size: contain;
		background-position: right;
}
	
	.bnr_text p {
    font-size: 17px;
    font-weight: bold;
		text-shadow:2px 2px 2px #FFF, -2px -2px 2px #FFF,
           -2px 2px 2px #FFF,  2px -2px 2px #FFF;
}
	
	#top .material-icons-round{
	padding-right: 5px;
	vertical-align: middle;
		font-size: 20px;
}
	
	#top .main_arrow_right::after { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 10px;    /* くの字を山なりに見た時、左側の長さ */
  height: 10px;   /* くの字を山なりに見た時、右側の長さ */
  border-top: 3px solid #FFF;     /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 3px solid #FFF;   /* くの字を山なりに見た時、右側の太さと色 */
  transform: rotate(45deg);    /* くの字の向き */
	filter: drop-shadow(3px 3px 8px #666);
}
	
	#top .bnr_arrow_right::after { /* くの字の表示設定 */
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  width: 5px;    /* くの字を山なりに見た時、左側の長さ */
  height: 5px;   /* くの字を山なりに見た時、右側の長さ */
  border-top: 2px solid #333;     /* くの字を山なりに見た時、左側の太さと色 */
  border-right: 2px solid #333;   /* くの字を山なりに見た時、右側の太さと色 */
  transform: rotate(45deg);    /* くの字の向き */
		box-shadow:0 0 5px #FFF;
}
	
	.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100vh - 107px);
}
	
	.video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
	
	/*====================================================
グローバルナビゲーション TOP
====================================================*/


#g-nav_top.panelactive #g-nav-list{
	    min-width: 100%;
}
	
	#g-nav_top .nav_logo{
		position: absolute;
		top: 20px;
		left: 20px;
	}
	
	#g-nav_top .nav_logo img{
		width: 100%;
		max-width: 75px !important;
	}
	
	#g-nav_top.panelactive ul {
	width: 90%;
	flex-wrap: wrap;
	justify-content: flex-start;
}
	
	#g-nav_top ul {
    top:0;
    left:20px;
    transform: none;
}
	
	#g-nav_top li {
    padding: 35px 0 0;
}
	
	#g-nav_top li a {
    font-size: 16px;
    padding-bottom: 10px;
}
	
	#g-nav_top li a.red_tit {
    padding-bottom: 20px;
}
	
	#g-nav_top li .box_l .item_l_a{
	width: 100%;
	margin-right: 0px;
		margin-bottom: 35px;
		margin-top: 10px;
}
	
	#g-nav_top li .box_l .item_l_b{
	width: 100%;
	margin-right: 0px;
		margin-bottom: 20px;
}

#g-nav_top li .box_l .item_l_c{
	width: 100%;
	margin-top: 0;
	margin-bottom: 20px;
}
	
	#g-nav_top li .box_l .item_l_a img{
		padding-bottom: 50px;
		width: 100%;
		max-width: 75px;
	}

#g-nav_top li .box_r{
	padding-left: 0px;
}

	
	#g-nav_top li:first-child {
    border-right: none;
		border-bottom: solid 1px #fff;
		padding:0;
}
	
	#g-nav_top li .box_r {
    padding-left: 0;
}
	
	#g-nav_top li .box_r .item_r_b {
    margin-top: 30px;
		margin-bottom: 50px;
}
	
	#g-nav_top li a{
	font-size: 14px;
	padding-bottom: 15px;
}

#g-nav_top li a.red_tit{
	font-size: 16px;
	padding-bottom: 20px;
}

#g-nav_top li a.black_tit{
	font-weight: bold;
	font-size: 16px;
}
	
	#g-nav_top li .box_detail_sp{
	display: flex;
	flex-wrap: wrap;
}
	
	#g-nav_top li .box_detail_sp .item_detail_a{
	margin-right: 80px;
}
	
/* オレンジ矢印 ＞　*/
	#g-nav_top li a.a_arrow_ore--right::after {
 left: 215px; /* 矢印の位置の指定 */
 top: 9px; /* 矢印の位置の指定 */
 }
	
	#g-nav_top li .media_guide_btn{
	max-width: 200px;
	margin: 10px 0 0;
}
	
	/*====================================================
ローディング
====================================================*/

/*========= ローディング画面のためのCSS ===============*/

#splash-logo p{
  display: block;
 padding: 10px 15px;
  font-size:34px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
}

	
	
	}

@media screen and (max-width: 420px) {
	.video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
	
	.video {
  position: absolute;
  top: 50%;
  left: 50%;
		height: 100%;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
	.main_area {
    background-image: linear-gradient(130deg, rgba(255, 233, 219, 1), rgba(255, 245, 230, 1));
}
	
}