@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Lato:wght@400;700&family=Oswald:wght@700&display=swap');
html,body{
  font-family: "Lato", "Noto Sans JP", "Hiragino Sans" , "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "游ゴシック Medium", YuGothic, YuGothicM, sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #333;
	line-height: 1.9;
	letter-spacing: 0.08em;
}
header,footer,div,section,article,nav,a,p,span,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,img,dl,dt,dd,form,input,textarea{ box-sizing: border-box; }
::selection { background: #ddd; }
::-moz-selection { background: #ddd; }
a,a img{
  color: #777;
  transition: opacity 0.3s;
  text-decoration: none;
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer */
  -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
  -webkit-user-select: none; /* Chrome, Safari, and Opera */
  -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}
a:hover,a:hover img{ opacity: 0.7;cursor: pointer; }
img,picture{
	max-width: 100%;
	display: block;
}
.clear{ clear: both; }
.overflow{ overflow: hidden; }




body{ padding-top: 8rem; }


nav{
  width: 100%;
  height: 8rem;
  background: #fff;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;

  display: flex;
  align-items: center;
}
nav .wrap{
  width: calc(100% - 22rem);
  display: flex;
  align-items: center;
  padding: 0 4rem;
}
nav .wrap a.logo{
  display: block;
  max-width: 16rem;
  max-height: 6rem;
}
nav .wrap a.logo img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
nav .wrap .discription{
  width: calc(100% - 16rem);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #555;
  padding-left: 3rem;
}
nav a.nav-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22rem;
  height: 100%;
  padding: 0 1rem;
  background: #555;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}
nav a.nav-btn span{
  max-width: calc(100% - 3.4rem);
}
nav a.nav-btn::after{
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../images/arrow-right.svg) center center no-repeat;
  background-size: contain;
  margin-left: 1rem;
}


/* nav付加クラス　*/
nav.transform{
  position: fixed;
  animation: nav-anime 0.3s;
}
@keyframes nav-anime {
  from {
  transform: translateY(-100%);
  opacity: 1;
  }
  to {
  transform: translateY(0);
  opacity: 1;
  }
}


.fv{
  width: 100%;
  height: calc(100vh - 8rem);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}
.fv::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/fv-grid.png) rgba(0,0,0,0.6);
  background-size: 0.7rem auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.fv img.fv-bg{
  width: 100%;
  height: calc(100vh - 8rem);
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.fv .content{
  position: relative;
  z-index: 2;
}
.fv .h1-top{
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.fv h1{
  font-size: 5rem;
}
.fv .scroll{
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 3.8rem;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.fv .scroll::before,
.fv .scroll::after{
  content: "";
  display: block;
  width: 1px;
  position: absolute;
  left: 50%;
  margin-left: -0.5px;
}
.fv .scroll::before{
  background: rgba(255,255,255,0.4);
  height: 3rem;
  bottom: 0;
}
.fv .scroll::after{
  height: 2rem;
  background: rgba(255,255,255,1);
  animation: scroll 2s infinite;
}
@keyframes scroll {
  from {
    bottom: 1rem;
    opacity: 0;
  }
  30%{ opacity: 1; }
  to {
    bottom: -2rem;
  }
}


.h-1{
  font-size: 3.6rem;
  text-align: center;
  padding-bottom: 2.4rem;
  margin-bottom: 4rem;
  position: relative;
}
.h-1::before{
  content: "";
  display: block;
  width: 3.2rem;
  height: 2px;
  background: #999;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.h-1-top{
  font-size: 1.4rem;
  font-weight: 700;
  color: #999;
  text-align: center;
  margin-bottom: 0.2em;
}


.txt-swiper{
  width: 100%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}
.txt-swiper:first-child{
  left: 0;
  top: 6rem;
}
.txt-swiper:last-child{
  left: 0;
  bottom: 6rem;
}
.txt-swiper .swiper-slide{
  width: auto;
  font-size: 16rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.8;
  color: #F8F8F8;
  margin-right: 0.5em;
}
.txt-swiper:last-child .swiper-slide{
  transform: translateX(-50%);
}


.sec-1{
  text-align: center;
  padding: 16rem 0;
  position: relative;
}
.sec-1 .content{
  position: relative;
  z-index: 1;
}
.sec-1 img.sec-1-img{
  width: 16rem;
  margin: 0 auto 4rem;
}
.sec-1 .h-1{
  padding-bottom: 4rem;
}
.sec-1 p{
  line-height: 2.1;
}


.sec-2{
  background: #F8F8F8;
  padding: 12rem 0 16rem;
}
.sec-2 .h-1{
  margin-bottom: 8rem;
}
ul.sdgs-li > li{
  display: block;
  position: relative;
}
ul.sdgs-li > li + li{
  margin-top: 12rem;
}
ul.sdgs-li li .content{
  display: flex;
  align-items: center;
  min-height: 53rem;
}
ul.sdgs-li li:nth-child(2n) .content{
  justify-content: flex-end;
}
ul.sdgs-li li img.img{
  width: 50%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 0;
}
ul.sdgs-li li:nth-child(2n-1) img.img{
  border-radius: 1rem 0 0 1rem;
  right: 0;
}
ul.sdgs-li li:nth-child(2n) img.img{
  border-radius: 0 1rem 1rem 0;
  left: 0;
}
ul.sdgs-li li .txt{
  width: 45.6rem;
}
ul.sdgs-li li h3{
  font-size: 2.8rem;
  padding-bottom: 1.6rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px dashed #999;
}
ul.sdgs-li li h3::before{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 0.2rem;
  background: #333;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
ul.sdgs-li li:nth-child(1) h3::before{ content: "01"; }
ul.sdgs-li li:nth-child(2) h3::before{ content: "02"; }
ul.sdgs-li li:nth-child(3) h3::before{ content: "03"; }
ul.sdgs-li li:nth-child(4) h3::before{ content: "04"; }

ul.sdgs-li li .box{
  background: #fff;
  border: 0.6rem solid #F4F4F4;
  border-radius: 0.5rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  padding: 5.4rem 2.2rem 2.2rem;
  margin-top: 5rem;
  position: relative;
}
ul.sdgs-li li .box h4{
  display: inline-block;
  background: #F4F4F4;
  padding: 0 0.9em;
  line-height: 3.6rem;
  border-radius: 0 0 0.5rem 0;
  font-weight: 700;
  position: absolute;
  left: -0.6rem;
  top: -0.6rem;
}
ul.sdgs-li li .box ul.sdgs-icon{
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.sdgs-li li .box ul.sdgs-icon li{
  display: block;
  width: 7.8rem;
}
ul.sdgs-li li .box ul.sdgs-icon li + li{
  margin-left: 1.6rem;
}


.sec-3{
  padding: 12rem 0 16rem;
  position: relative;
}
.sec-3 .content{
  position: relative;
  z-index: 1;
}
.sec-3 .h-1{
  margin-bottom: 5.5rem;
}
.sec-3 img.sec-3-img{
  max-width: 75rem;
  max-height: 46.7rem;
  width: auto;
  height: auto;
  border-radius: 1rem;
  margin: 0 auto 6.5rem;
}
.sec-3 .wrap-1{
  text-align: center;
  font-weight: 700;
  margin-bottom: 6.5rem;
}
.sec-3 .wrap-1 .company{
  font-size: 1.4rem;
  color: #999;
}
.sec-3 .wrap-1 .wrap-2{
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.7;
}
.sec-3 .wrap-1 .wrap-2 .position{
  font-size: 1.8rem;
  margin-right: 0.9em;
}
.sec-3 .wrap-1 .wrap-2 .name{
  font-size: 3.2rem;
}
.sec-3 h3{
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 4rem;
}
.sec-3 p{
  display: block;
  width: 75rem;
  font-size: 1.4rem;
  margin: 0 auto;
}


ul.link-li{
  width: 36rem;
  margin: 12rem auto 0;
}
ul.link-li li{
  display: block;
}
ul.link-li li + li{
  margin-top: 1.6rem;
}
ul.link-li li a{
  display: block;
  width: 100%;
  padding: 2rem 7rem 2rem 2.4rem;
  border-radius: 0.5rem;
  background: #999;
  color: #fff;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
}
ul.link-li li a::before{
  content: "";
  display: block;
  width: 2.4rem;
  height: 100%;
  background: url(../images/arrow-right.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  right: 2.4rem;
  top: 0;
}


footer{
  background: #555;
  color: #fff;
  text-align: center;
  padding: 3rem 0;
}
footer a{ color: #fff; }

footer .copy{
  font-size: 1.2rem;
}




/*　PC
------------------------------------------------------------------------------------------------*/
@media (min-width: 769px){
.sp{ display: none !important; }

html{ font-size: 10px; }
body{ font-size: 1.6rem; }

.content{
  width: 100%;
	max-width: 114rem;
  padding: 0 5rem;
	margin: 0 auto;
}




/*　タブレット
------------------------------------------------------------------------------------------------*/
@media (max-width: 1140px){

html{ font-size: 0.877vw; }




}/*　タブレットここまで */
}/*　PCここまで */




/*　スマホ
------------------------------------------------------------------------------------------------*/
@media (max-width: 768px){
.pc{ display: none !important; }

html{ font-size: 2.6vw; }
body{ font-size: 1.6rem; }

.content{
	width: 100%;
	padding: 0 2.4rem;
}


body{ padding-top: 6.4rem; }


nav{
  height: 6.4rem;
}
nav .wrap{
  width: calc(100% - 13rem);
  display: block;
  padding: 0 1.9rem;
}
nav .wrap a.logo{
  max-width: 9.7rem;
  max-height: 3.6rem;
}
nav .wrap .discription{
  width: 100%;
  font-size: 0.7rem;
  padding: 0.6rem 0 0;
}
nav a.nav-btn{
  width: 13rem;
  padding: 0 1.2rem;
  font-size: 1.2rem;
}
nav a.nav-btn span{
  max-width: calc(100% - 2.3rem);
}
nav a.nav-btn::after{
  width: 1.9rem;
  height: 1.9rem;
  margin-left: 0.4rem;
}


.fv{
  height: calc(100vh - 6.4rem);
}
.fv img.fv-bg{
  height: calc(100vh - 6.4rem);
}
.fv .h1-top{
  font-size: 2.4rem;
}
.fv h1{
  font-size: 4.2rem;
}


.h-1{
  font-size: 2.8rem;
}


.txt-swiper:first-child{
  top: 4rem;
}
.txt-swiper:last-child{
  bottom: 4rem;
}
.txt-swiper .swiper-slide{
  font-size: 7.5rem;
}


.sec-1{
  text-align: left;
  padding: 8rem 0;
}
.sec-1 img.sec-1-img{
  width: 12rem;
  margin: 0 auto 3rem;
}
.sec-1 .h-1{
  font-size: 2.4rem;
  padding-bottom: 3.2rem;
  text-align: left;
}
.sec-1 p{
  line-height: 2.1;
}


.sec-2{
  padding: 5.5rem 0 8rem;
}
.sec-2 .h-1{
  margin-bottom: 5rem;
}
ul.sdgs-li li .content{
  display: block;
  min-height: unset;
}
ul.sdgs-li > li + li{
  margin-top: 10rem;
}
ul.sdgs-li li img.img{
  width: calc(100% - 2.4rem);
  height: 20.4rem;
  position: unset;
  margin-bottom: 2.4rem;
}
ul.sdgs-li li:nth-child(2n-1) img.img{
  margin-left: auto;
}
ul.sdgs-li li:nth-child(2n) img.img{
  margin-right: auto;
}
ul.sdgs-li li .txt{
  width: 100%;
}
ul.sdgs-li li h3{
  font-size: 2.3rem;
  padding: 0 0 1.8rem 4.4rem;
  margin-bottom: 2rem;
  position: relative;
}
ul.sdgs-li li h3::before{
  width: 3.2rem;
  height: 3.2rem;
  font-size: 2.1rem;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  top: 0;
}
ul.sdgs-li li .box{
  padding: 4.6rem 1rem 1.8rem;
  margin-top: 3rem;
}
ul.sdgs-li li .box ul.sdgs-icon li{
  width: 6.4rem;
}
ul.sdgs-li li .box ul.sdgs-icon li + li{
  margin-left: 1.2rem;
}


.sec-3{
  padding: 8rem 0;
}
.sec-3 .h-1{
  margin-bottom: 4rem;
}
.sec-3 img.sec-3-img{
  max-width: 100%;
  max-height: 20.4rem;
  margin: 0 auto 4rem;
}
.sec-3 .wrap-1{
  margin-bottom: 5rem;
}
.sec-3 .wrap-1 .company{
  font-size: 1.4rem;
  margin-bottom: 0.6em;
}
.sec-3 .wrap-1 .wrap-2{
  display: block;
}
.sec-3 .wrap-1 .wrap-2 .position{
  font-size: 1.8rem;
  margin-right: 0;
}
.sec-3 .wrap-1 .wrap-2 .name{
  font-size: 3.2rem;
}
.sec-3 h3{
  font-size: 2.3rem;
  text-align: left;
  margin-bottom: 3rem;
}
.sec-3 p{
  width: 100%;
  font-size: 1.6rem;
}


ul.link-li{
  width: 100%;
  margin: 8rem auto 0;
}


footer{
  padding: 2.4rem 0;
}




}/*　スマホここまで */



