@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
.fv_wrap {
  position: relative;
	height: 75vh;
	overflow: hidden;
}

.fv_wrap video{
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 3;
	width: 100%;
}
@media (max-width: 768px) {
  .fv_wrap video {
    height: 75vh;
	width: auto;
  }
}

@media (max-width: 767px) {
  .fv_wrap .fv_img {
    height: 60vh;
  }
}
@media (max-width: 767px) {
  .fv_wrap .fv_img img {
    height: 60vh;
    width: auto;
    object-fit: cover;
  }
}
.fv_wrap img {
  width: 100%;
}

section{
	position: relative;
	z-index: 1;
}
.fv_wrap .fv_text {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 3rem;
  /*width: 45%;*/
	width: 40%;
  display: table;
	z-index: 4;
}

@media (max-width: 1199px) {
  .fv_wrap .fv_text {
    left: 24px;
	  width: 45%;
  }
}
@media (max-width: 767px) {
  .fv_wrap .fv_text {
    left: 1rem;
    /*width: calc(70% - 2rem);*/
	width: calc(85% - 2rem);
  }
}
.fv_wrap .fv_scroll {
  position: absolute;
  bottom: 0;
	right: 12rem;
	z-index: 4;
	
}

@media (max-width: 1199px) {
  .fv_wrap .fv_scroll {
    right: 24px;
	
  }
}
.fv_wrap .fv_scroll:before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100px;
  background-color: #fff;
  animation: scrollBar 3000ms both infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
  .fv_wrap .fv_scroll:before {
    height: 75px;
  }
}
span.scroll_text {
  position: absolute;
  top: -150px;
  left: 8px;
  right: 0;
  margin: auto;
  color: #fff;
  transform: rotate(90deg);
  transform-origin: top left;
  width: 45px;
  line-height: 1;
	display: none;
}

@media (max-width: 767px) {
  span.scroll_text {
    top: -120px;
  }
}
@keyframes scrollBar {
  0% {
    transform: scaleY(0);
    transform-origin: 0 0;
  }
  45% {
    transform: scaleY(1);
    transform-origin: 0 0;
  }
  46% {
    transform: scaleY(1);
    transform-origin: 0 100%;
  }
  91%, 100% {
    transform: scaleY(0);
    transform-origin: 0 100%;
  }
}
.sec_fv_news {
  background: #f8f8f8;
}

.sec_fv_news .sec_news_wrap {
  padding: 2rem 0;
  display: flex;
}

@media (max-width: 767px) {
  .sec_fv_news .sec_news_wrap {
    padding: 1rem 0;
    display: block;
  }
}
.sec_fv_news .sec_news_title {
  font-weight: bold;
  padding-right: 3rem;
  border-right: 1px solid #000;
}

@media (max-width: 767px) {
  .sec_fv_news .sec_news_title {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #000;
    display: table;
    padding-bottom: 0.5rem;
  }
}
.sec_fv_news .sec_news_text_wrap {
  margin-left: 3rem;
  width: calc(100% - 96px - 3rem);
  opacity: 0;
}
.sec_fv_news .sec_news_text_wrap.slick-slider {
  opacity: 1;
}

@media (max-width: 767px) {
  .sec_fv_news .sec_news_text_wrap {
    margin: 1rem 0 0;
    width: 100%;
  }
}
.sec_fv_news .sec_news_item a {
  text-decoration: none;
}

.sec_fv_news .sec_news_item_title {
  margin-left: 3rem;
}

@media (max-width: 767px) {
  .sec_fv_news .sec_news_item_title {
    display: block;
    margin-left: 0;
  }
}
.sec_business {
  padding: 5rem 0 4rem;
	background-color: #ffffff;
}

.sec_business .sec_business_cont {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.sec_business .sec_business_cont .img {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.sec_business .sec_business_cont .img img {
  transition: 0.5s;
}
.sec_business .sec_business_cont .img .sub_text {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: table;
  width: 80%;
  z-index: 1;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .sec_business .sec_business_cont .img .sub_text {
    width: 90%;
  }
}
.sec_business .sec_business_cont .img .sub_text a {
  display: block;
  color: #fff;
  padding: 2px 0 2px 15px;
  position: relative;
}
.sec_business .sec_business_cont .img .sub_text a.bz_img{
	padding-left: 0;
}
.sec_business .sec_business_cont .img .sub_text a:not(:last-child) {
  margin-bottom: 5px;
}
.sec_business .sec_business_cont .img .sub_text a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sec_business .sec_business_cont .img .sub_text a.bz_img:before {
	border:none;
}
.sec_business .sec_business_cont .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.sec_business .sec_business_cont .img:hover img {
  transform: scale(1.2);
}

.sec_business .sec_business_cont .img:hover .bz_img img {
  transform: scale(1);
}
.sec_business .sec_business_cont .img:hover::after {
  background: rgba(0, 0, 0, 0.8);
}
.sec_business .sec_business_cont .img:hover .sub_text {
  opacity: 1;
}

.sec_business .sec_business_cont .item {
  width: 31%;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
	.sec_business .sec_business_cont .img.fadein .sub_text{
		opacity: 1;
	}
	.sec_business .sec_business_cont .img.fadein:after{
		background: rgba(0, 0, 0, 0.8);
	}
}
@media (max-width: 767px) {
  .sec_business .sec_business_cont .item {
    /*width: 48%;*/
	width: 100%;
    margin-bottom: 2rem;
  }
}
.sec_business .sec_business_cont .title {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.sec_business .sec_business_cont .text {
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
	font-size: 0.9375rem;
}

.palla_wrap {
  padding-top: 37.5%;
}
.video_fix{
	overflow: hidden;
	position: relative;
}

.palla_wrap video{
	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    min-width: 100vw;
    min-height: 100vh;
    width: 100%;
    height: auto;
    /*z-index: 0;*/
}

.video_fix .video_top{
	opacity: 0;
}

.video_fix.show .video_top{
	opacity: 1;
}

@media (max-width: 767px) {
  .palla_wrap {
    padding-top: 0;
	  width: auto;
    height: 100vh;
  }
	.palla_wrap video{
		left: 50%;
		top: 50%;
		transform: translate(-50%,-50%);
		width: auto;
		height: 100vh;
	}
}
.palla_wrap1 {
  /*background: url(../img/top/palla_img1.jpg) center center/cover no-repeat;
  background-attachment: fixed;*/
}

@media (max-width: 767px) {
  .palla_wrap1 {
    background-attachment: scroll;
  }
}
.palla_wrap2 {
  padding-top: 41.6666%;
  /*background: url(../img/top/palla_img2.jpg) center center/cover no-repeat;
  background-attachment: fixed;*/
}

@media (max-width: 767px) {
  .palla_wrap2 {
    background-attachment: scroll;
  }
}
.palla_wrap3 {
  padding-top: 42.7083%;
  /*background: url(../img/top/palla_img3.jpg) center center/cover no-repeat;
  background-attachment: fixed;*/
}

@media (max-width: 767px) {
  .palla_wrap3 {
    background-attachment: scroll;
  }
}
.catch_copy_wrap {
  padding: 6rem 0;
  text-align: center;
}

.catch_copy_wrap .catch_copy {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

@media (max-width: 1199px) {
  .catch_copy_wrap .catch_copy {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .catch_copy_wrap .catch_copy {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .catch_copy_wrap .catch_copy {
    font-size: 20px;
  }
}
.catch_copy_wrap .catch_copy .big {
  font-size: 90px;
}

@media (max-width: 1199px) {
  .catch_copy_wrap .catch_copy .big {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .catch_copy_wrap .catch_copy .big {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .catch_copy_wrap .catch_copy .big {
    font-size: 40px;
  }
}
.catch_copy_wrap .catch_copy .bg_black {
  color: #fff;
  background: #000;
  display: inline-block;
  padding: 0 1rem;
  margin: 0 1rem;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .catch_copy_wrap .catch_copy .bg_black {
    margin-top: 1rem;
  }
}
.sec_about .sec_about_bg {
  text-align: center;
  color: #fff;
	text-shadow: 1px 1px 4px #333;
  padding: 6rem 0;
  background: url(../img/top/about_main.jpg) center center/cover no-repeat;
}

.sec_about .title.en {
  color: #fff;
}

.sec_about .title.en::after {
  background: #fff;
}

.sec_about .sec_about_text {
  margin-top: 3rem;
}

.sec_about .sec_about_btn {
  margin-top: 4rem;
}

.sec_about .sec_about_cont_wrap {
  padding: 6rem 0;
background-color: #ffffff;
}

.sec_about .sec_about_cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sec_about .sec_about_cont .item {
  /*width: 32%;*/
	width: 48%;
  margin-bottom: 3rem;
}

.sec_about .sec_about_cont .item a:hover {
  opacity: 1;
}

.sec_about .sec_about_cont .item .img {
  position: relative;
}

@media (max-width: 767px) {
  .sec_about .sec_about_cont .item {
    width: 48%;
  }
}
.sec_about .sec_about_cont .title {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.sec_about .sec_about_cont .text {
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

.sec_pickup {
  padding: 6rem 0 5rem;
	background-color:#ffffff;
}

.sec_pickup .sec_pickup_cont {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec_pickup .sec_pickup_cont .item {
  position: relative;
  width: 49%;
  margin-bottom: 1.5rem;
}
.sec_pickup .sec_pickup_cont .item img {
  width: 100%;
  display: block;
}

@media (max-width: 767px) {
  .sec_pickup .sec_pickup_cont .item {
    width: 100%;
  }
}
.sec_think {
  padding: 6rem 0;
  background: #f8f8f8;
}

.sec_think .sec_think_cont {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.sec_think .sec_think_cont .item {
  width: 24%;
}

@media (max-width: 767px) {
  .sec_think .sec_think_cont .item {
    width: 48%;
    margin-bottom: 3rem;
  }
}
.sec_think .sec_think_cont .title {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.sec_think .sec_think_cont .text {
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

.sec_think .sdgs_wrap {
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .sec_think .sdgs_wrap {
    margin-top: 3rem;
  }
}
.sec_career {
  text-align: center;
  color: #fff;
  padding: 6rem 0;
  background: url(../img/top/career_img.jpg) center center/cover no-repeat;
}

.sec_career .title.en {
  color: #fff;
}

.sec_career .title.en::after {
  background: #fff;
}

.sec_career .sec_career_subtitle {
  margin-top: 3rem;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 2;
}

.sec_career .sec_career_text {
  line-height: 2;
  margin-top: 2rem;
}

.sec_career .sec_career_btn {
  margin-top: 4rem;
}

.sec_news {
  padding: 6rem 0;
	background-color: #ffffff;
}

.sec_news .sec_news_cont .sec_news_tab {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.sec_news .sec_news_cont .sec_news_tab_item {
  color: #7a7a7a;
  padding: 0 2rem;
  position: relative;
  cursor: pointer;
}

@media (max-width: 767px) {
  .sec_news .sec_news_cont .sec_news_tab_item {
    padding: 0 1rem;
  }
}
.sec_news .sec_news_cont .sec_news_tab_item.active {
  color: #000;
}

.sec_news .sec_news_cont .sec_news_tab_item2,
.sec_news .sec_news_cont .sec_news_tab_item3,
.sec_news .sec_news_cont .sec_news_tab_item4{
  padding: 0 2rem 0 3rem;
}

@media (max-width: 767px) {
  .sec_news .sec_news_cont .sec_news_tab_item2,
  .sec_news .sec_news_cont .sec_news_tab_item3,
.sec_news .sec_news_cont .sec_news_tab_item4{
    padding: 0 1rem 0 2rem;
  }
}
.sec_news .sec_news_cont .sec_news_tab_item2:before,
.sec_news .sec_news_cont .sec_news_tab_item3:before,
.sec_news .sec_news_cont .sec_news_tab_item4:before{
  content: "";
  position: absolute;
  transform: rotate(120deg);
  transform-origin: center;
  display: block;
  width: 20px;
  height: 1px;
  border-top: 1px solid #333;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.sec_news .sec_news_panel {
  margin-top: 4rem;
  display: none;
}

.sec_news .sec_news_panel.active {
  display: block;
}

.sec_news .sec_news_panel .item {
  padding: 1.7rem;
  border-top: 1px solid #7a7a7a;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .sec_news .sec_news_panel .item {
    padding: 1rem;
  }
}
.sec_news .sec_news_panel .item:nth-last-child(2) {
  border-bottom: 1px solid #7a7a7a;
}

.sec_news .sec_news_panel .item .date {
  color: #888888;
  display: inline-block;
  min-width: 130px;
}

.sec_news .sec_news_panel .item .cat {
  color: #fff;
  background: #7a7a7a;
  width: 180px;
  text-align: center;
}

.sec_news .sec_news_panel .item .text {
  margin-left: 2rem;
  color: #272727;
  width: calc(100% - 130px - 180px - 2rem);
}

@media (max-width: 991px) {
  .sec_news .sec_news_panel .item .text {
    margin-left: 1rem;
    width: calc(100% - 130px - 180px - 1rem);
  }
}
@media (max-width: 767px) {
  .sec_news .sec_news_panel .item .text {
    width: 100%;
    margin: 1rem 0 0;
  }
}
.sec_news .sec_news_btn_bg_gray {
  margin-top: 4rem;
}

.sec_voice {
  padding: 6rem 0;
	background-color: #ffffff;
}

.sec_voice .sec_voice_text {
  margin-top: 4rem;
  text-align: center;
  font-weight: bold;
}

.sec_voice .sec_voice_cont {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .sec_voice .sec_voice_cont {
    margin-top: 3rem;
  }
}
.sec_voice .sec_voice_cont_item_wrap {
  width: 100%;
}

@media (max-width: 767px) {
  .sec_voice .sec_voice_cont_item_wrap {
    width: 100%;
  }
}
.sec_voice .sec_voice_movie_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .sec_voice .sec_voice_movie_wrap {
    display: flex;
  }
}

.sec_voice .sec_voice_cont_item {
  padding: 3rem;
  border: 2px solid #000;
  border-top: 6px solid #000;
}

@media (max-width: 767px) {
  .sec_voice .sec_voice_cont_item {
    padding: 1rem;
  }
}
.sec_voice .sec_voice_cont_item_title {
  font-weight: bold;
  font-size: 24px;
	margin-bottom: 30px;
}

.sec_voice .btn_bg_gray {
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .sec_voice .btn_bg_gray {
    margin-top: 2rem;
  }
}
.sec_voice .sec_voice_cont_item_wrap2 .sec_voice_movie {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  width: 48%;
}
@media (max-width: 767px) {
  .sec_voice .sec_voice_cont_item_wrap2 .sec_voice_movie {
    width: 100%;
  }
}

.sec_voice .sec_voice_cont_item_wrap2 .img, .sec_voice .sec_voice_cont_item_wrap2 .movie {
  width: 23.5%;
	
}

@media (max-width: 767px) {
	.sec_voice .sec_voice_cont_item_wrap2 .img, .sec_voice .sec_voice_cont_item_wrap2 .movie {
  width: 48%;
	
}
}

.sec_voice .img img{
	border: #C9C9C9 1px solid;
}

.sec_voice .img p{
	margin-top: 5px;
	margin-bottom: 30px;
}

.sec_contact {
  padding: 6rem 0 8rem;
  background: #f8f8f8;
  text-align: center;
}

.sec_contact .sec_contact_text {
  font-weight: bold;
  margin-top: 3rem;
}

.sec_contact .sec_contact_cont {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec_contact .sec_contact_cont .item {
  width: 24%;
  margin-bottom: 4rem;
}

@media (max-width: 767px) {
  .sec_contact .sec_contact_cont .item {
    width: 48%;
    margin-bottom: 2rem;
  }
}
.sec_contact .sec_contact_cont .item:nth-child(1) .img {
  width: 88px;
}

.sec_contact .sec_contact_cont .item:nth-child(2) .img {
  width: 94px;
}

.sec_contact .sec_contact_cont .item:nth-child(3) .img {
  width: 96px;
}

.sec_contact .sec_contact_cont .item:nth-child(4) .img {
  width: 106px;
}

.sec_contact .sec_contact_cont .item:nth-child(5) .img {
  width: 94px;
}

.sec_contact .sec_contact_cont .item:nth-child(6) .img {
  width: 88px;
}

.sec_contact .sec_contact_cont .item:nth-child(7) .img {
  width: 94px;
}

.sec_contact .sec_contact_cont .item:nth-child(8) .img {
  width: 92px;
}

.sec_contact .sec_contact_cont .img {
  margin: 0 auto;
}

.sec_contact .btn_black {
  margin-top: 1rem;
}

.site-footer-title:after, .sub-section-title:after, h3:after {
  content: none;
}

.layer_box {
  position: absolute;
  margin: 0;
  top: 3%;
  left: 2%;
  width: 96%;
  height: 94%;
}

.layer_outline::after,
.layer_outline::before,
.layer_outline span::after,
.layer_outline span::before {
  background-color: #ffffff;
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

.layer_outline::after {
  width: 0;
  height: 1px;
  top: 0px;
  left: 0px;
}

.layer_outline::before {
  width: 0;
  height: 1px;
  right: 0px;
  bottom: 0px;
}

.layer_outline span::after {
  width: 1px;
  height: 0;
  left: 0px;
  bottom: 0px;
}

.layer_outline span::before {
  width: 1px;
  height: 0;
  top: 0px;
  right: 0px;
}

.sec_about .sec_about_cont .item .img:hover .layer_outline:before {
  width: 100%;
}

.sec_about .sec_about_cont .item .img:hover .layer_outline:after {
  width: 100%;
}

.sec_about .sec_about_cont .item .img:hover .layer_outline span:before {
  height: 100%;
}

.sec_about .sec_about_cont .item .img:hover .layer_outline span:after {
  height: 100%;
}

.sec_pickup .sec_pickup_cont .item a:hover {
  opacity: 1;
}

.sec_pickup .sec_pickup_cont .item:hover .layer_outline:before {
  width: 100%;
}

.sec_pickup .sec_pickup_cont .item:hover .layer_outline:after {
  width: 100%;
}

.sec_pickup .sec_pickup_cont .item:hover .layer_outline span:before {
  height: 100%;
}

.sec_pickup .sec_pickup_cont .item:hover .layer_outline span:after {
  height: 100%;
}

.item_pc:first-child{
	margin-bottom: 0.8rem;
}
/*
.sec_business .sec_business_cont .item_pc .img{
	height: 120px;
}
.item_pc .img img{
	position: absolute;
	top: -150px;
}
*/