@charset "UTF-8";

/* ======================================================
 * top/style.css
====================================================== */


/* keyvisual
========================================== */
.l-keyvisual {
  background-image: url(/assetm/assets/images/top/keyvisual_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 720px;
  overflow: hidden;
  padding-inline: 60px;
}
.l-keyvisual__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.l-keyvisual h1 {
  font-size: 4.6rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1;
}
.l-keyvisual h1 span {
  background: #333;
  color: #fff;
  display: inline-block;
  transition: 0.4s ease-in-out;
  padding: 11px 12px;
  position: relative;
  z-index: 0;
}
.l-keyvisual h1 span:before {
  background: #fff;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s ease-in-out;
  width: 0;
  z-index: -1;
}
.l-keyvisual h1 span:nth-of-type(n+2) {
  margin-top: 44px;
}
.l-keyvisual.is-active h1 span {
  color: #333;
}
.l-keyvisual.is-active h1 span:before {
  width: 100%;
}
/* PC */
@media screen and (min-width: 769px) {
  .l-keyvisual__inner {
    margin-inline: auto;
    max-width: 1040px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .l-keyvisual {
    background-image: url(/assetm/assets/images/top/keyvisual_bg_sp.png);
    height: 440px;
    padding-inline: 20px;
  }
  .l-keyvisual__inner {
    justify-content: center;
  }
  .l-keyvisual h1 {
    font-size: 2rem;
  }
  .l-keyvisual h1 span {
    padding: 7px 6px;
  }
  .l-keyvisual h1 span:nth-of-type(n+2) {
    margin-top: 24px;
  }
}



/* section
========================================== */
.l-section {
  position: relative;
  z-index: 0;
}
.l-section__title {
  font-weight: bold;
  line-height: 1.1;
}
.l-section__title .maintext {
	font-family: var(--font-inter);
  font-size: 6rem;
  letter-spacing: 0.1em;
}
.l-section__title .subtext {
  display: block;
  font-size: 3rem;
  margin-top: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .l-section__title .maintext {
    font-size: 4rem;
  }
  .l-section__title .subtext {
    font-size: 1.8rem;
    margin-top: 16px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .l-section__title .maintext {
    font-size: 3.2rem;
  }
  .l-section__title .subtext {
    font-size: 1.8rem;
    margin-top: 10px;
  }
}



/* news
========================================== */
#news {
  background-image: url(/assetm/assets/images/top/news_bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 120px;
}
#news .p-news-contentsBlock {
  margin-top: 20px;
}
#news .p-news-contentsBlock .text-summary {
  line-height: 2.25;
}
#news .p-news-contentsBlock .list-news {
  margin-top: 50px;
}
#news .p-news-contentsBlock .list-news > li {
  border-bottom: 1px solid #333;
  font-weight: bold;
  padding-bottom: 26px;
}
#news .p-news-contentsBlock .list-news > li:nth-of-type(n+2) {
  margin-top: 26px;
}
#news .p-news-contentsBlock .list-news > li .text-update {
  color: #005BAC;
	font-family: var(--font-inter);
}
/* PC */
@media screen and (min-width: 769px) {
  #news .p-news-contentsBlock .list-news > li {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #news .p-news-contentsBlock .list-news > li .text-update {
    width: 160px;
  }
  #news .p-news-contentsBlock .list-news > li .text-title {
    width: calc(100% - 160px);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  #news {
    background-image: url(/assetm/assets/images/top/news_bg_sp.png);
    padding: 40px;
  }
  #news .p-news-contentsBlock {
    margin-top: 14px;
  }
  #news .p-news-contentsBlock .text-summary {
    line-height: 2;
  }
  #news .p-news-contentsBlock .list-news {
    margin-top: 24px;
  }
  #news .p-news-contentsBlock .list-news > li {
    padding-bottom: 16px;
  }
  #news .p-news-contentsBlock .list-news > li:nth-of-type(n+2) {
    margin-top: 16px;
  }
  #news .p-news-contentsBlock .list-news > li .text-title {
    margin-top: 10px;
  }
}



/* company
========================================== */
#company {
  background-image: url(/assetm/assets/images/top/company_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fff;
}
#company:before {
  background: #333;
  content: "";
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
#company .p-company-contentsBlock .text-summary {
  font-weight: bold;
  line-height: 2.25;
  margin-top: 34px;
}
#company .p-company-contentsBlock__image a {
  display: block;
}
/* PC */
@media screen and (min-width: 769px) {
  #company .p-company-contentsBlock {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  #company .p-company-contentsBlock__text {
    width: 37.78%;
  }
  #company .p-company-contentsBlock__image {
    overflow: hidden;
    position: relative;
    width: 54.75%;
  }
  #company .p-company-contentsBlock__image a img {
    transition: 0.3s ease-in-out;
  }
  #company .p-company-contentsBlock__image a:hover {
    opacity: 1;
  }
  #company .p-company-contentsBlock__image a:hover img {
    transform: scale(1.4,1.4);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  #company {
    background-image: url(/assetm/assets/images/top/company_bg_sp.png);
    padding: 40px;
    color: #fff;
  }
  #company .p-company-contentsBlock .text-summary {
    line-height: 2;
    margin-top: 22px;
  }
  #company .p-company-contentsBlock__image a {
    display: block;
  }
  #company .p-company-contentsBlock__image {
    margin-top: 40px;
  }
}




/* business
========================================== */
#business {
  background-image: url(/assetm/assets/images/top/business_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
  color: #fff;
}
#business:before {
  background: #333;
  content: "";
  height: 100%;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
#business .p-business-movieBlock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 100%;
  width: 100%;
  z-index: -2;
}
#business .p-business-movieBlock video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
#business .p-business-contentsBlock {
  margin-top: 34px;
}
#business .p-business-contentsBlock .text-summary {
  font-weight: bold;
  line-height: 2.25;
}
/* PC */
@media screen and (min-width: 769px) {
  #business {
    text-align: center;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  #business {
    background-image: url(/assetm/assets/images/top/business_bg_sp.png);
    padding: 80px 40px;
  }
  #business .p-business-contentsBlock {
    margin-top: 22px;
  }
  #business .p-business-contentsBlock .text-summary {
    line-height: 2;
  }
  #business .p-business-contentsBlock .c-button {
    margin-top: 34px;
  }
}




/* sustainability
========================================== */
#sustainability {
  padding-top: 100px;
  padding-bottom: 100px;
}
#sustainability .p-sustainability-linkBlock {
  height: 320px;
  overflow: hidden;
}
#sustainability .p-sustainability-linkBlock > a {
  color: #fff;
  display: block;
  height: 100%;
  padding: 65px 250px 65px 100px;
  position: relative;
  z-index: 0;
}
#sustainability .p-sustainability-linkBlock > a:before,
#sustainability .p-sustainability-linkBlock > a:after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#sustainability .p-sustainability-linkBlock > a:before {
  background: #333;
  opacity: 0.6;
  z-index: -1;
}
#sustainability .p-sustainability-linkBlock > a:after {
  background-image: url(/assetm/assets/images/top/sustainability_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 0.3s ease-in-out;
  z-index: -2;
}
#sustainability .p-sustainability-linkBlock .icon-arrow {
  border: 1px solid #fff;
  border-radius: 50%;
  height: 80px;
  position: absolute;
  transition: 0.3s ease-in-out;
  width: 80px;
  z-index: 1;
}
#sustainability .p-sustainability-linkBlock .icon-arrow:before {
	background-image: url(/assetm/assets/images/common/icon_arrow_right_white.svg);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 100% auto;
	content: "";
	height: 14px;
	position: absolute;
	top: 50%;
  left: 50%;
	transform: translate(-50%,-50%);
  transition: 0.3s ease-in-out;
	width: 28px;
}
/* PC */
@media screen and (min-width: 769px) {
  #sustainability .l-section__inner {
    max-width: 1200px;
  }
  #sustainability .p-sustainability-linkBlock > a:hover {
    opacity: 1;
  }
  #sustainability .p-sustainability-linkBlock > a:hover:after  {
    transform: scale(1.15,1.15);
  }
  #sustainability .p-sustainability-linkBlock .icon-arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 120px;
  }
  #sustainability .p-sustainability-linkBlock > a:hover .icon-arrow {
    background: #fff;
  }
  #sustainability .p-sustainability-linkBlock > a:hover .icon-arrow:before {
    background-image: url(/assetm/assets/images/common/icon_arrow_right_black.svg);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  #sustainability {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  #sustainability .p-sustainability-linkBlock {
    height: 152px;
  }
  #sustainability .p-sustainability-linkBlock > a {
    padding: 24px 20px;
  }
  #sustainability .p-sustainability-linkBlock > a:after {
    background-image: url(/assetm/assets/images/top/sustainability_bg_sp.png);
  }
  #sustainability .p-sustainability-linkBlock .icon-arrow {
    height: 48px;
    bottom: 22px;
    right: 22px;
    width: 48px;
  }
  #sustainability .p-sustainability-linkBlock .icon-arrow:before {
    height: 11px;
    width: 22px;
  }
}