@charset "utf-8";
/* CSS Document */
/***********************************************************
	index.css
************************************************************/

/*=================================================
動画エリア
==================================================*/

.topvisualWap {
	padding-top: 0px;
	overflow: hidden;
	margin: 0;
}
.topvisualWap video {
	margin: 0;
	padding: 0;
	display: block;
}
/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
	.topvisualWap {
		padding-top: 0px;
	}
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
}

.topvisual{
  position: relative;
}
.top_mark{
  position: absolute;
  width: 80px;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}
/*******************************
	600px以下
********************************/
@media print, screen and (max-width: 600px) {
  .top_mark{
    width: 50px;
  }
}


/*******************************
	768px以上【tablet】
********************************/
@media print, screen and (min-width: 768px) {
  .top_mark{
    width: 100px;
  }
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1024px) {
  .top_mark{
    width: 120px;
  }
}
/*******************************
	1024px以上【PC】
********************************/
@media print, screen and (min-width: 1200px) {
  .top_mark{
    width: 150px;
  }
}
/*******************************
	1400px以上【PC】
********************************/
@media print, screen and (min-width: 1400px) {
  .top_mark{
    width: 200px;
  }
}





/*=====================================
    お知らせ
======================================*/
.sec01_bg{
  background-color: #ffffff;
}

.newsDivide{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.newsDivideLeft{
  width: 100%;
}
.newsDivideRight{
  width: 100%;
}
  .newsTitle {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.4;
    margin-top: 30px;
  }
  .newsTitle span {
    font-size: 1.6rem;
    display: block;
}
  .newsTitle span em{
    font-style: normal;
}

.newsArea {
  padding: 20px 10px 20px; /* 一貫したpaddingを設定 */
  position: relative; /* 必須: .newsmoreの絶対位置の基準 */
}
.newsArea .newsmore {
  position: absolute;
  bottom: 10px; /* 下から10pxの位置に */
  right: 10px; /* 右から10pxの位置に */
  font-size: 1.4rem;
  text-align: right; /* テキストを右揃えに */
}

/*-- お知らせ --*/
.newsArea .tab {
  list-style: none;
  overflow: hidden;
}
.newsArea .tab li {
  font-size: 1.2rem;
  float: left;
  box-sizing: border-box;
  margin-right: 1px;
  padding: 5px 10px;
  border-top: solid 1px #CCCCCC;
  border-left: solid 1px #CCCCCC;
  border-right: solid 1px #CCCCCC;
  background-color: #f8f8f8;
  cursor: pointer;
}
.newsArea .tab .is-active {
  background-color: #d6000f;
  color: #FFFFFF;
}

/*-- パネル --*/
.newsArea .panel {
  padding: 20px;
  background-color: #FFFFFF;
}
.newsArea .panel li {
  list-style: none;
}

.newsArea ul.news-list li,
.newsArea dl {
  background-image: url(../common/img/dot_line_bg.gif);
  background-repeat: repeat-x;
  background-position: left bottom;
  margin-bottom: 22px;
  padding-bottom: 22px;
  line-height: 1.6;
  font-size: 1.4rem;
}
.newsArea ul.news-list li{
  display: flex;
  flex-direction: column;
}
.newsArea ul.news-list li .timeDisp{
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.newsArea ul.news-list li span.date{
  display: inline-block;
  width: 126px;
}
.newsArea ul.news-list li span.category{
  display: inline-block;
  width: 100px;
}
.newsArea ul.news-list li span.category p{
   border: solid 1px #d6000f;
  font-size: 1.0rem;
  color: #d6000f;
  text-align: center;
  line-height: 1;
  padding: 4px 6px;
}
.newsArea ul.news-list li a{
  display: block;
  width: 100%;
}
.newsArea dl dt {
  width: auto; /* 自動幅 */
  float: none; /* 浮動解除 */
  clear: both; /* 前の浮動をクリア */
}

.newsArea dl dt:after {
  font-size: 1.0rem;
  color: #d6000f;
  text-align: center;
  padding: 1px 25px;
  line-height: 1;
  margin-left: 25px;
  box-sizing: border-box;
  border-radius: 0px;
  border: solid 1px #d6000f;
  vertical-align:middle;
}
.newsArea dl dt.news1::after { content: 'お知らせ'; }
.newsArea dl dt.news2::after { content: '採用情報'; }
.newsArea dl dt.news3::after { content: 'セミナー'; }
.newsArea dl dt.news4::after { content: 'プレスリリース'; }

.newsArea dl dd {
  margin-left: 0; /* マージン解除 */
}
.newsArea dl dd a {
  display: block;
}
/*--- リンク ---*/
.newsArea ul.news-list li a{
  margin-left: 25px;
  width: auto;
}
.newsArea ul.news-list li a:link,
.newsArea dl dd a:link {
	color: #333333;
	text-decoration: none;
}
.newsArea ul.news-list li a:visited,
.newsArea dl dd a:visited {
	color: #0062a9;
	text-decoration: none;
}
.newsArea ul.news-list li a:hover,
.newsArea ul.news-list li a:active,
.newsArea dl dd a:hover, 
.newsArea dl dd a:active {
	color: #e60012;
}




/*****************************************************
    768px以上【tablet】
******************************************************/
@media print, screen and (min-width: 768px) {
  .newsArea ul.news-list li{
    flex-direction: row;
  }
  .newsArea ul.news-list li .timeDisp{
    margin-bottom: 0px;
  }
  .newsArea ul.news-list li a{
    margin-left: 25px;
    display: block;
    width: 100%;
  }

  .newsArea .tab li {
    font-size: 1.4rem; /* タブのフォントサイズを大きく */
  }
  .newsArea dl dt {
    float: left; /* 左に浮動させる */
    width: 200px; /* 幅を固定 */
    clear: none; /* クリアを解除 */
  }
  .newsArea dl dd {
    margin-left: 230px; /* dtの幅+余白に合わせる */
  }

  .newsDivide{
    flex-direction: row;
  }
  .newsDivideLeft{
    width: 18%;
  }
  .newsDivideRight{
    width: 81%;
  }
    .newsTitle {
      font-size: 3.2rem;
      text-align: left;
      line-height: 1.4;
      margin-top: 30px;
    }
    .newsTitle span {
  }


}

/*****************************************************
    1024px以上【PC】
******************************************************/
@media print, screen and (min-width: 1024px) {
  .newsArea {
    max-width: 1200px;
    margin: 0 auto; /* 中央揃え */
    padding: 40px 45px 20px; /* 上記のpaddingをここで統合 */
  }
  .newsArea dl dt {
    /* 1024px以上でのdtのスタイルは768px以上の設定を継承 */
  }
  .newsArea dl dd {
    /* 1024px以上でのddのスタイルは768px以上の設定を継承 */
  }
}

/*
============================================
コンテンツリンクエリア　※未使用
============================================
*/
.linkAreaLeft,
.linkAeaRight{
  display: flex;
  justify-content: center;
}

.linkArea {
  padding: 20px 10px;
}
.linkArea a{
  text-decoration: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  display: block;
}

.linkArea .linkAreainnr {
	padding: 0 3vw;
}
.linkAreaImg01{
  background-image:url("../img/top_visual01.jpg");
  background-size:cover;
  background-position:center center;
  height: 400px;
  position: relative;
  margin-bottom: 120px;
}
.linkAreaImg02{
  background-image:url("../img/top_visual02.jpg");
  background-size:cover;
  background-position:center center; 
  height: 400px;
  position: relative;
  margin-bottom: 120px;
}

.linkAreaImg03{
  background-image:url("../img/top_visual03.jpg");
  background-size:cover;
  background-position:center center; 
  height: 400px;
  position: relative;
  margin-bottom: 120px;
}

.linkWap {
	width: 100%;
}

.linkInfo,
.linkInfo1,
.linkInfo2,
.linkInfo3{
  margin: 0px;
  padding: 30px 0px;
  background-color:rgba(255,255,255,1.00);
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0px;
  bottom:-30px;
  width: 100%;
}
.linkInfoLeft{
  text-align: center;
  align-self: center;
  width: 250px;
}
.linkInfoRight{
  text-align: center;
  align-self: center;
  flex-grow: 2;
}
.linkInfoMark{
  display: none;
}
.infoTitle{
  color:#333333;
  font-weight: bold;
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.infoTitleSub{
  color:#333333;
  font-weight: bold;
  font-size: 1.6rem;
}
.infoDevide{
}
.infoText{
  line-height: 1.6;
  font-size: 1.4rem;
  font-weight: bold;
}
.linkInfo a{
  color: #333333;
  display: block;
  border: 1px solid #FFFFFF;
  line-height: 1;
  font-size: 14px;
  padding: 14px 40px 10px;
  transition: 0.3s;
  text-align:center;
}
.linkArea a:link,
.linkArea a:visited{
  color: #333333;
}
.linkArea a:hover{
  color: #e60012;
}

.linkCover{
  background-color: rgba(0,0,0,0.00);
  height: 100%;
  transition: .8s;
}

/* タップしてくださいの表示位置 */
.tapPosition{
  position: absolute;
  top: -10px;
  left: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-color:rgba(0,0,0,0.70);
  padding: 20px 20px 10px;
}

  @media (any-hover: hover) {
    .linkInfoMark {
      transition: transform 0.5s;
    }
    .linkArea a:hover .linkInfoMark {
      transform: translateX(10px);
    }
    .linkArea a:hover .linkCover {
      background-color: rgba(0,0,0,0.20);
    }
  }   




/********************************************
	768px以上【tablet】
*********************************************/
@media print, screen and (min-width: 768px) {
	.linkArea {
    padding: 40px 25px 20px;
	}
  .linkAreaLeft{
    justify-content: flex-start;
  }
  .linkAeaRight{
    justify-content: flex-end;
  }
  .linkInfo,
  .linkInfo1,
  .linkInfo2,
  .linkInfo3{
    /*width: 70%;*/
	width: auto;
    flex-direction: row;
    bottom: 20px;
    left: 20px;
    padding: 30px 20px;
    outline: 1px solid;
    outline-color: #FFFFFF;
    outline-offset: 0px;
    transition: .3s;
}
  .linkArea a:hover .linkInfo,
  .linkArea a:hover .linkInfo1,
  .linkArea a:hover .linkInfo2,
  .linkArea a:hover .linkInfo3{
  animation: lightWhite .8s infinite;
}

  .linkInfoLeft{
    text-align: left;
	width: 300px;
  }
  .linkInfoRight{
    text-align: left;
  }
  .linkInfoMark{  
    display: inherit;
    text-align: center;
    align-self: center;
    width: 42px;
  }

}
@keyframes lightWhite {
  100% { 
    outline-color: transparent;
    outline-offset: 10px;
  }
}

/*******************************************
	1024px以上【PC】
*******************************************/
@media print, screen and (min-width: 1024px) {
	
  .linkArea {
    max-width: 1200px;
    margin: 0px auto;
    padding: 40px 45px 20px;
  }
  .linkWap {
	position: absolute;
	max-width: 1200px;
	right: 0;
 	left: 0;
    margin: 0 auto;
	bottom:20px;
  }

  .linkInfo{
    max-width: 360px;
	position: relative;
    /*bottom: 20px;
    left: 20px;*/
    box-shadow: 0px 0px 15px -15px #000;
  }
}
/*******************************************
	1220px以上【PC】
*******************************************/
@media print, screen and (min-width: 1220px) {
.linkInfo{
  padding-left: 50px;
  }
}




/*
============================================
サイトバナーエリア
============================================
*/
.site-banner-area {
  padding: 40px 0 0;
}

.site-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 calc(9px + 5vw);
  box-sizing: border-box;
}

.site-banner-link {
  flex: 1;
  display: block;
  transition: opacity 0.2s;
}

.site-banner-link img {
  width: 100%;
  height: auto;
  display: block;
}

.site-banner-link:hover {
  opacity: 0.8;
}

@media print, screen and (min-width: 641px) {
  .site-banner-inner {
    flex-direction: row;
    gap: 20px;
    padding: 0 calc(20px + (100vw - 40px) / 60);
  }
}

@media print, screen and (min-width: 1024px) {
  .site-banner-inner {
    max-width: 1240px;
    padding: 0 40px;
    margin: 0 auto;
  }
}

/*
============================================
事業紹介/会社情報/サステナビリティ ブロック
============================================
*/

.topcontsAreaImg01{
  background-image:url("../img/top_visual02.jpg");
  background-size:cover;
  background-position:center center; 
}
.topcontsAreaImg02{
  background-image:url("../img/top_visual03.jpg");
  background-size:cover;
  background-position:center center;
  margin-bottom: 50px;
}
.topcontsAreaImg03{
  background-image:url("../img/top_visual07.jpg");
  background-size:cover;
  background-position:center center; 
}

.topcontsArea {
  margin-top: 60px;
  padding: 20px 10px;
}
.topcontsArea .topcontsAreainnr {
	padding: 0 3vw;
}
.topcontsInfo{
  background-color: rgba(255,255,255,0.80);
  padding: 40px 0px;
  margin: 40px auto;
  width: 90%;
  text-align: center;
}
.topcontsInfoTitle{
  text-align: center;
  line-height: 1.4;
  padding: 0px 20px 20px;
  font-size: 1.7rem;
  font-weight: bold;
}
.topcontsInfoTitle span{
  display: block;
  color: #e60012;
  font-size: 1.4rem;
}
.topcontsInfoText{
  font-size: 1.4rem;
  padding: 0px 20px;
  margin: 20px 0px 40px;
}

.topcontsArea a:link,
.topcontsArea a:visited{
  color: #333333;
}
.topcontsArea a:hover{
  color: #e60012;
}

/********************************************
	768px以上【tablet】
*********************************************/
@media print, screen and (min-width: 768px) {
	.topcontsAreaImg02{
  		margin-bottom: 80px;
	}
	.topcontsArea {
    padding: 20px 25px;
	}
  .topcontsArea .topcontsAreainnr {
    padding: 0;
  }
  .topcontsInfo{
    width: 50%;
	margin: 40px 15px;
  }
  .topcontsInfoTitle{
    font-size: 2.2rem;
  }
  .topcontsInfoText{
    font-size: 1.6rem;
    padding: 0px 60px;
    margin: 20px 0px 40px;
  }
}
/*******************************************
	1024px以上【PC】
*******************************************/
@media print, screen and (min-width: 1024px) {
  .topcontsArea {
    max-width: 1200px;
    margin: 0px auto;
    padding: 40px 0px;
  }
}




