@charset "UTF-8";

/*********共通********/

body{
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0px;
}

ul {
    margin: 0px;
    padding-inline-start: 0px;
}




/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 599px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}



/*********headerメニュー********/
.header {
	z-index: 9999;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	background: none;
}
.header.fixed {
}
.header__inner {
	padding: 25px 50px;
}

@media only screen and (max-width: 599px) {
  .header__inner {
    padding: 2vw 2vw;
  }
}

.header__logo {
	width: 140px;
	position: relative;
	z-index: 9999;
}

@media only screen and (max-width: 599px) {
  .header__logo {
    width: 23vw;
  }
}

.header__logo > a {
  display: block;
}

.header__logo > a > img {
  display: block;
}

.header__menu {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  box-sizing: border-box;
  cursor: pointer;
	z-index: 9999;
}

@media only screen and (max-width: 599px) {
  .header__menu {
    right: 4vw;
    width: 8vw;
    height: 8vw;
    border-width: 1px;
  }
}

.header__menu .border {
  position: absolute;
  left: 21.5px;
  top: 27px;
  width: 14px;
  height: 2px;
  background-color: #595757;
}

@media only screen and (max-width: 599px) {
  .header__menu .border {
    left: 2.86667vw;
    top: 3.6vw;
    width: 1.86667vw;
    height: 1px;
  }
}

.header__menu .border:nth-child(2) {
  transform: translateY(-6px);
}

@media only screen and (max-width: 599px) {
  .header__menu .border:nth-child(2) {
    transform: translateY(-0.8vw);
  }
}

.header__menu .border:nth-child(3) {
  transform: translateY(6px);
}

@media only screen and (max-width: 599px) {
  .header__menu .border:nth-child(3) {
    transform: translateY(0.8vw);
  }
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
	position: absolute;
	width: 30px;
	height: 30px;
	top: -3px;
	left: 50%;
	margin-left: -10px;
}

@media only screen and (max-width: 599px) {
	.menu-trigger {
	position: absolute;
	width: 60px;
    height: 60px;
	top: 20px;
	left: 50%;
	margin-left: -30px;
	}
}



.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
}

.menuactive span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 14px;
  height: 2px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
@media only screen and (max-width: 599px) {
	.menu-trigger span:nth-of-type(1) {
	  top: 0;
	}
	.menu-trigger span:nth-of-type(2) {
	  top: 29px;
	  height: 3px;
	}
	.menu-trigger span:nth-of-type(3) {
	  bottom: 0;
	}  
	.menu-trigger.menuactive span:nth-of-type(1) {
	  -webkit-transform: translateY(14px) rotate(-45deg);
	  transform: translateY(14px) rotate(-45deg);
	   background-color: #000 !important;
	   	  top: -4px;
	     height: 2px!important; 
	}
	.menu-trigger.menuactive span:nth-of-type(2) {
	  -webkit-transform: translateY(0) rotate(45deg);
	  transform: translateY(0) rotate(45deg);
	  background-color: #000 !important;	
	     height: 2px!important; 
	}
	.menu-trigger.menuactive span:nth-of-type(3) {
	opacity: 0;
	  }

}


.menu-trigger.menuactive {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.menu-trigger.menuactive span:nth-of-type(1) {
  -webkit-transform: translateY(14px) rotate(-45deg);
  transform: translateY(14px) rotate(-45deg);
   background-color: #000 !important;
}
.menu-trigger.menuactive span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  background-color: #000 !important;	
     height: 2px!important; 
}
.menu-trigger.menuactive span:nth-of-type(3) {
opacity: 0;
  }
@media only screen and (max-width: 599px) {
	 .menu-trigger {
		 top:0px;
	}
	.menu-trigger span {
		position: absolute;
		height: 3px;
	}
}
@media only screen and (max-width: 599px) {
  .menu-trigger {
	top: 0%;
    width: 20px;
    height: 20px;
		margin-left: -6px;
	}
	.menu-trigger span {
		position: absolute;
		height: 1px;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 10px;
    height: 1px;
	}
	.menu-trigger.active span:nth-of-type(1) {
		transform: translateY(4px) rotate(-45deg);
	}
}
.header nav {
	position: fixed;
	top: 0;
	left: 0;
	transition: all 0.3s;
	opacity: 0;
	z-index: 1000;
}
.header nav.open {
	opacity:1; 
}

nav.open .gNav{
	opacity:1; 
    width: 100vw;
    height: 100vh;
}
.header nav .gNav {
	background-color: #FFFFFF;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
}
.open .gNav{
	display: block!important;
}

.header nav .gNav ul {
	width: 100%;
	list-style: none;
	    top: 50%;
    position: absolute;
        transform: translateY(-50%);

}
.header nav .gNav li a {
	width: 100%;
	display: block;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	text-align: center;
	position: relative;
	text-decoration: none;
    color: #000;
    font-size: 150%;
    font-weight: 900;
    }

.header nav .gNav li a:hover {
	width: 100%;
	display: block;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	text-align: center;
	position: relative;
	text-decoration: underline;
    color: #000;
    font-size: 150%;
    font-weight: 900;
}

.header nav .gNav li a:after {
	content: "";
	position: absolute;
	right: 30px;
	background-size: 16px auto;
	background-repeat: no-repeat;
	width: 16px;
	height: 28px;

}

@media only screen and (max-width: 599px) {
	.header nav .gNav li a {
		width: 100%;
		display: block;
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 15px;
		text-align: center;
		position: relative;
		text-decoration: none;
	    color: #000;
	    font-size: 120%;
	    font-weight: 900;
	    margin-bottom: 0px;
	    }
	
	.header nav .gNav li a:hover {
		width: 100%;
		display: block;
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 15px;
		text-align: center;
		position: relative;
		text-decoration: underline;
	    color: #000;
	    font-size: 120%;
	    font-weight: 900;
	    margin-bottom: 0px;
		}
}


/*********本文ページ（トップ）********/
	.landscape_alert{
position: absolute;
    z-index: 10000;
    display: none;
height: 100vh;
	}

.landscape_alert img{
    object-fit: cover;	
	}

.fullPageScroll {
        width: 100%;
        height: 100vh;
        scroll-snap-points-y: repeat(100vh);
        -ms-scroll-snap-type: mandatory;
        -ms-scroll-snap-points-y: repeat(100vh);
        -webkit-scroll-snap-type: mandatory;
        -webkit-scroll-snap-points-y: repeat(100vh);
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
}

.section {
width: 100%;
height: 100vh;
padding: 0%;
scroll-snap-align: start;
}

@media only screen and (max-width: 599px) {
	.fullPageScroll {
	        width: 100%;
	        height: 100vh;
	        scroll-snap-points-y: repeat(100vh);
	        -ms-scroll-snap-type: mandatory;
	        -ms-scroll-snap-points-y: repeat(100vh);
	        -webkit-scroll-snap-type: mandatory;
	        -webkit-scroll-snap-points-y: repeat(100vh);
	        overflow-y: scroll;
	        -webkit-overflow-scrolling: touch;
	        height: calc(var(--vh, 1vh) * 100);
	}
	
	.section {
	width: 100%;
	height: 100vh;
	padding: 0%;
	scroll-snap-align: start;
	height: calc(var(--vh, 1vh) * 100);
	}

}


/*********トップページ（1枚目）********/

.section1 {
background-color: #f5f5f5;
}


.section1 .imageWrapper img{
display: block;
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;	
}

.top_image_left_area{
    position: absolute;
    z-index: 100;
    font-size: 16px;
    width: 50%;
    text-align: left;
    bottom: 40px;
    left: 60px;
}

.top_sdgs_logo{
margin-bottom: 20%;	
}

.top_sdgs_logo img{
width: 75%!important;
    object-fit: contain!important;
    height: auto!important;
}

.top_image_left_area .read{
    font-size: 17px;
    color: #fff;
    line-height: 34px;
    letter-spacing: 4px;
}

.top_copy_ttl{
    position: absolute;
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color:#fff;
    z-index: 100;
	top: 10%;
    right: 18%;
    font-size: 160%;
    letter-spacing: 8px;
}

@media only screen and (max-width: 1024px) {
.top_image_left_area{

    bottom: 65px;
}
}

@media only screen and (max-width: 599px) {
	.top_copy_ttl{
    position: absolute;
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color:#fff;
    z-index: 100;
	top: 8%;
    right: 45%;
    font-size: 100%;
    letter-spacing: 4px;
	}
	.top_image_left_area{
	display: none!important;
	}
	.top_sdgsimg{
	position: absolute;
	  width: 50%!important;
	  bottom: 27vw!important;
   left: 50%!important;
    transform: translateX(-50%)!important;
	  margin: 0 auto;
	}
	
}

.top_sdgsimg{
position: absolute;
    z-index: 100;
    font-size: 16px;
    width: 22%;
bottom: 14%;
    right: 5%;
}

.top_sdgsimg img{
width: 100%!important;
    object-fit: contain!important;
    height: auto!important;
    
}

.section1 h1 {
position: absolute;
left: 0;
top: 28%;
width: 100%;
color: #ffffff;
text-align: center;
}

.section12 {
background-color: #fff;
position: relative;
}

.sp_sdgs_info{
	width:90%;
	color:#333333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    }

.sp_top_sdgs_logo{
	
}

.sp_top_sdgs_logo img{
width: 70%!important;
    object-fit: contain!important;
    height: auto!important;	
}

.sp_read{
    font-size: 80%;
    letter-spacing: 2px;
    line-height: 250%;
    margin-top: 20px;
}

/*********トップページ（topics）********/
.newstopic{
	display:flex;
}
.newstopics_ttlimg{
text-align: center;
    width: 30%;
	    margin: 5%;
}

.newstopics_ttlimg img{
	width: 200px;
}

.newstopics_area{
    width: 70%;	
    margin: 5%;
}
.newstopics_area ul{
	
}

.newtopics{
	margin-top: 0px!important;
}

.newtopics a{
	color:#f15a24!important;
}


.newstopics_area ul li{
border-bottom: 1px solid #000;
    background-image: url(https://tabio.pro/jp/sdgs/img/topics_more.png);
    list-style: none;
    background-repeat: no-repeat;
    background-position-y: 6px;
    margin-top: 10px;
    font-size: 15px;
    padding-bottom: 7px;
    background-size: 7px;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
}
.newstopics_area ul li a{
padding-left: 18px;
    color: #000;
    text-decoration: none;
}

.date{
	font-size:80%;
}

.topicsmore_btn{
    background-image: url(https://tabio.pro/jp/sdgs/img/topics_more.png);
    padding-bottom: 7px;
    background-size: 7px;
    background-repeat: no-repeat;
    background-position-y: 6px;
    float: right;
}

.topicsmore_btn a{
	padding-left: 18px;
	color: #000;
    text-decoration: none;
}

@media only screen and (max-width: 599px) {
	.newstopic{
		display:block;
	}
	.newstopics_ttlimg img{
	width: 170px;
	}
	.newstopics_area{
	    width: 90%;	
	    margin: 5%;
	    padding-bottom: 60px;
	}
	.newstopics_ttlimg{
	text-align: left;
	    width: 90%;
		margin: 5%;
	}
	.newstopics_area ul li{
		font-size: 12px;
	}	


}


/*********トップページ（2枚目）********/

.section2 {
background-color: #fff;
position: relative;
}

.imageWrapper{
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
}


.imageWrapper_3column{
width: 100%;
height: 100%;
overflow: hidden;
position: relative;
display: flex;
list-style: none;
}


.imageWrapper_3column li{
width: 100%;
    height: 100%;
    min-height: 0%;
    flex: 1 1 auto;
    position: relative;
    
}

.sdgs_menu{
position: absolute;
left: 0;
top: 50%;
width: 100%;
color: #ffffff;
text-align: center;
z-index: 1;    
}

.sdgs_menu img{
width: 60%!important;
    object-fit: contain!important;
    height: auto!important;  
    left: 20%;
}

.sdgs_menu p{
width: 82%;
color: #ffffff;
margin: 0 10%;
text-align: center;
z-index: 1;  
margin-top: 33%; 
font-weight: 500;
text-shadow: 0px 0px 15px rgba(0,0,0,0.5);
}

@media only screen and (max-width: 1024px) {
	.imageWrapper_3column{
	display: grid;
	}
	.sdgs_menu{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 95%;
    text-align: center;
	}
	.sdgs_menu p{
	font-size: 70%;
    line-height: 170%;
    margin-top: 18%;
	}
	.sdgs_menu p br{
		display: block;
	}
	.sdgs_menu img{
	width: 30%!important;
	    object-fit: contain!important;
	    height: auto!important;  
	    left: 50%;
    transform: translateX(-50%); 

	}
}

@media only screen and (max-width: 599px) {
	.imageWrapper_3column{
	display: grid;
	}
	.sdgs_menu{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%); 
    width: 95%;  
	}
	.sdgs_menu p{
	font-size: 70%;
    line-height: 200%;
    margin-top: 29%;
	}
	.sdgs_menu p br{
		display: none;
	}
	.sdgs_menu img{
	width: 100%!important;
	    object-fit: contain!important;
	    height: auto!important;  
		left: 50%;
    transform: translateX(-50%);
	}
	.sp_menuarrow{
		display: block!important;
		width: 100%;
    height: 20px;
    text-align: center;
	}
	.sp_menuarrow img{
	width: 10%!important;
    object-fit: contain!important;
    position: relative!important;
	margin-top: 10px;
   	}
}


.section2 img {
display: block;
position: absolute;
width: 100%;
height: 100%;
object-fit: cover;
}

.section2 h1 {
position: absolute;
left: 0;
top: 88%;
width: 100%;
color: #ffffff;
text-align: center;
}

.sp_menuarrow{
	display: none;
}

/*********トップページ（3枚目）********/


.section3 {
background-color: #fff;
position: relative;
}

.longsec{
	
}

@media only screen and (min-width: 600px) {
	.topmassage_area{
	    position: relative;
	    top: 50%;
	    left: 50%;
	    transform: translate(-50%, -50%);	
	}
}

.top_message{
    width: 100%;
    text-align: center;
    padding-top: 50px;
}

.top_message img{
	width: 75%!important;
    object-fit: contain!important;
    height: auto!important;
    margin-top: 50px;	
}
@media only screen and (max-width: 599px) {
	.longsec{
	height:170vh;
	}
	
	.topmassage_area{
	height: 100%;
	}
	.top_message{

	    padding-top: 0px;
	}

	.top_message img{
	    object-fit: contain!important;
	    height: auto!important;
	    margin-top: 0px;	
	}
	.section3 .innerScroll {
		width: 90%!important;
	    margin: 20px auto;
	    -webkit-overflow-scrolling: touch;
	    display: flex;
	}

	
	.whiteshadow{
position: relative;
    z-index: 150;
    width: 100%;
    height: 7%;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    bottom: 10%;
    display:block!important;
	}
	.whiteshadow img{
	margin: 0 auto;
	    position: relative;
	        top: 110%;
	        object-fit: contain!important;

	}
	.section3 .innerScroll p{
	    font-weight: 300;
	    letter-spacing: 2px;
	    font-size: 12px;
	    text-align: justify;
	    line-height: 20px;
	    
	}
	.tatescroll{

	}
	.tatescroll img{
		width: 15px!important;
	    object-fit: contain!important;
	}

}

.whiteshadow{
    display:none;
}

@media screen and (max-height:800px) {
.top_message img{
	width: 50%!important;
    margin-top: 5%!important;	

	}
.top_message{
    width: 100%;
    text-align: center;
    padding-top: 0;
}

.section3 .innerScroll {
    width: 80%!important;
    height: 60%;
    margin: 20px auto;
}

	
}

.section3 .innerScroll {
	width: 60%;
    height: 60%;
    margin: 20px auto;
}

.section3 .innerScroll p{
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 13px;
    text-align: justify;
    margin-top: 0px;
}


/*********トップページ（4枚目）********/

.section4 {
background-color: #f2f2f1;
padding: 0;
}



.top_whatssdgs{
    width: 100%;
    text-align: center;	
}

	.sdgsgoals{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
		
	}

@media only screen and (max-width: 1024px) {
	.top_whatssdgs img{
		width: 70%!important;
	    margin-top: 30px;	
	}
	.whatssdgs_txt_area {
	    width: 70%!important;
	}
	.whatssdgs_txt_area p {
	    font-weight: 400;
	    letter-spacing: 0px;
	    font-size: 15px;
	    text-align: justify;
	}
	
	.sdgstoha{
		    font-size: 150%!important;	
	}

}


@media only screen and (max-width: 599px) {
	.sdgsgoals{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
		
	}
	
	.top_whatssdgs{
		padding-top: 0%;
	}
	.top_whatssdgs img{
	width: 90%!important;

    margin-top: 0px!important;	
	}
	.whatssdgs_txt_area{
		width: 90%!important;
	}
	.whatssdgs_txt_area p{
	font-weight: 400;
	    letter-spacing: 2px;
	    font-size: 12px!important;
	    text-align: justify;
	    line-height: 180%;
	}
	.sdgstoha{
	font-weight: 500!important;
	    font-size: 100%!important;
	    margin-bottom: 0px;
		
	}
}

.top_whatssdgs img{
	width: 50%;
    object-fit: contain!important;
    height: auto!important;
    margin-top: 30px;	
}



.whatssdgs_txt_area{
	width: 50%;
    margin: 20px auto;	
}
.whatssdgs_txt_area p{
font-weight: 400;
    letter-spacing: 2px;
    font-size: 19px;
    text-align: justify;
}

.sdgstoha{
font-weight: 500!important;
	    font-size: 80%;
    margin-bottom: 0px;
	
}

@media screen and (max-height:800px) {
	
	.top_whatssdgs img {
    width: 45%;
    object-fit: contain!important;
    height: auto!important;
    margin-top: 30px;
	}
	
	.whatssdgs_txt_area {
    width: 70%;
    margin: 20px auto;
	}
	
	.sdgstoha{
	font-weight: 500!important;
	    font-size: 80%;
	margin-bottom: 0px;
	}
	.whatssdgs_txt_area p{
	font-weight: 400;
	    letter-spacing: 0px;
	    font-size: 14px;
	    text-align: justify;
	}
}

/*****ページネーション****/

.pagination {
position: fixed;
top: 50%;
right: 32px;
transform: translateY(-50%);
}

.pagination a {
display: block;
width: 12px;
height: 12px;
margin: 24px 0;
border-radius: 50%;
background-color: #fcfcfc;
transition: transform 0.2s;
border: 1px solid #dedede;
}

.pagination a.active {
transform: scale(1.5);
background-color: #5f5f5f;
}

@media only screen and (max-width: 1024px) {
	.pagination {
	position: fixed;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	}
	
	.pagination a {
	display: block;
	width: 12px;
	height: 12px;
	margin: 14px 0;
	border-radius: 50%;
	background-color: #fcfcfc;
	transition: transform 0.2s;
	border: 1px solid #dedede;
	}
	
	.pagination a.active {
	transform: scale(1.5);
	background-color: #5f5f5f;
	}
}

@media only screen and (max-width: 599px) {
	.pagination {
	position: fixed;
	top: 50%;
	right: 2%;
	transform: translateY(-50%);
	}
	
	.pagination a {
	display: block;
	width: 5px;
    height: 5px;
	margin: 10px 0;
	border-radius: 50%;
	background-color: #fcfcfc;
	transition: transform 0.2s;
	border: 1px solid #dedede;
	}
	
	.pagination a.active {
	transform: scale(1.5);
	background-color: #5f5f5f;
	}	
}



/*****コンテンツレイアウト****/


.center_image{
position: absolute;
    width: 60%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.center_image img{
	position: relative;
}

        
/* 小デバイス
==============================================*/
@media screen and (max-width:767.98px) {

.box_inner_1{
    height: 100vw;
    padding: 0%;
}

.center_image{
position: absolute;
    width: 100%;
    transform: translate(-0%, -0%);
    top: 0%;
    left: 0%;
}

.center_image img{
	position: relative;
}

.ttl_position_right{
position: relative;
    width: 200px;
    right: -5%;
    margin: 0 auto 0 0;
    z-index: auto;
    top: 300px;
}

.vertical_text{
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;	
}

.text_position_left{
margin: 0 auto 0 0;
    position: relative;
    width: 425px;
    bottom: -63%;
    left: 5%;
        }

}        