@charset "utf-8";

/********** Noto Sans JP 読み込み **********/
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

/********** パソコンで見たときは"pcOnly"のclassがついた画像が表示される **********/
.pcOnly { display: block !important; }
.spOnly { display: none !important; }
.spOnly-2  { display: none !important; }

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

/********** width:539pxまでで見たときは"spOnly-2"のclassがついた画像が表示される **********/
@media only screen and (max-width: 539px) {
  .pcOnly { display: none !important; }
  .spOnly  { display: block !important; }
  .spOnly-2  { display: block !important; }
}



/********** リセット **********/
html, body {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  vertical-align:baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  /* ベースのフォントサイズを10pxとする */
  font-size: 62.5%;
  font-family: 'Noto Sans JP', sans-serif;
}

body {
  font-size: 1.6rem;
}

h1 {
  font-weight: 900;
  margin: 0;
}

h2 {
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0;
  margin-block: 0;
}

h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0;
}

p {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.5;
}

div {
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover,
a:active {
  text-decoration: none;
}



/********** ヘッダー **********/
#ts_top {
  width: 100%;
  height: 148px;
  background-color: #47a0e3;
  display: flex;
  align-items: center;
  margin-bottom: 2%;
}
@media only screen and (max-width:767px) {
  #ts_top {
    margin-bottom: 0;
    height: auto;
    padding-top: 5%;
    padding-bottom: 5%;
  }
}

.header_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  display: flex;
  align-items: center;
}
.header_container.flex-box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:767px) {
  .header_container {
    max-width: 767px;
    padding-left: 6%;
  }
}

.header_logo-01 {
  width: 270px;
  height: auto;
}
.header_logo-01 img {
  width: 100%;
}
@media only screen and (max-width:767px) {
  .header_logo-01 {
    max-width: 260px;
    width: 50%;
    height: auto;
  }
}

.g-nav_container {
  margin-right: 40px;
}



/********** ナビゲーションのためのCSS **********/
body.fixed {
  position: fixed;/* バーガーメニューオープン中にメインコンテンツを固定 */
  width: 100%;
  height: 100%;
  left: 0;
}

#g-nav {
	z-index: 999;
	width: 100%;
}

.g-nav-list-container {
	display: flex;
  justify-content: flex-end;
	padding-top: 6%;
}

.g-nav-list-container li a {
	color: #fff;
  transition: .4s;
}
.g-nav-list-container li a:hover {
	color:  #ffff00;
  font-weight: 900;
}

.g-nav-list-container li:not(:first-of-type) {
  margin-left: 2em;
}
@media only screen and (max-width: 767px) {
  .g-nav-list-container li:not(:first-of-type) {
    margin-left: 0;
  }
}

.g-nav-list-container li {
  font-size: 18px;
  position: relative;
}

.g-nav-list-container li:not(:first-of-type)::before {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 80%;
  position: absolute;
  top: 50%;
  left: -1.2em;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .g-nav-list-container li:not(:first-of-type)::before {
    content: none;
  }
}


/* SP版のグローバルナビ */
@media only screen and (max-width: 767px) {
  .g-nav_container {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow-x: hidden;
  }

	#g-nav {
 	  /* ナビのスタート位置と形状 */
    position: relative;
 	  left: 100%;
 	  width: 100%;
    background-color: rgba(0,0,0,0.9);
    transition: .6s all;
    height: 100vh;
 	}

	/* アクティブクラスがついたら位置を0に */
	#g-nav.panelactive {
    position: fixed;/* メニューをスクロールさせない */
    left: 0;
    height: 100vh;
	}

	/* ナビゲーション */
	#g-nav ul {
	  /* ナビゲーション天地中央揃え */
	  position: absolute;
	  z-index: 999;
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%,-50%);
	}

	/* リストのレイアウト設定 */
	.g-nav-list-container {
		flex-direction: column;
	}

	#g-nav li {
	  list-style: none;
	  text-align: center;
    white-space: nowrap;
	}
  #g-nav li:not(:last-of-type) {
	  margin-bottom: 3em;
	}

	#g-nav li a {
		font-size: min(6vw,22pt);
	  color: #fff;
	  text-decoration: none;
	  text-transform: uppercase;
	  letter-spacing: 0.1em;
	  font-weight: bold;
	}



	/********** ボタンのためのCSS **********/
	.openbtn1 {
    position: absolute;
	  z-index: 9999;
	  right: 5%;
	  cursor: pointer;
	  width: 12vw;
	  height: 12vw;
	}

	/* ×に変化 */
	.openbtn1 span {
	  display: inline-block;
	  transition: all .4s;
	  position: absolute;
	  left: 50%;
		transform: translateX(-50%);
	  height: 2px;
	  border-radius: 2px;
	  background-color: #fff;
	  width: 100%;
	 }

	.openbtn1 span:nth-of-type(1) {
 	  top: calc(30% - 2px);
 	}

 	.openbtn1 span:nth-of-type(2) {
 	  top: 50%;
		transform: translate(-50%,-50%);
 	}

 	.openbtn1 span:nth-of-type(3) {
 	  top: 70%;
 	}

	.openbtn1.open span:nth-of-type(1) {
	  top: 50%;
	  left: 50%;
	  transform: translate(-50%,-50%) rotate(-45deg);
	  width: 80%;
	}

	.openbtn1.open span:nth-of-type(2) {
	  opacity: 0;
	}

	.openbtn1.open span:nth-of-type(3){
		top: 50%;
	  left: 50%;
	  transform: translate(-50%,-50%) rotate(45deg);
	  width: 80%;
	}
}



/********** main全体 **********/
#ts_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media only screen and (max-width:767px) {
  #ts_wrap {
    padding: 0;
    position: relative;
    z-index: 998;
  }
  #ts_wrap_inner {
    padding: 0 8%;
  }
}



/********** タイトル **********/
#ts_tit {
  padding: 0;
  margin-bottom: 5%;
}

#ts_tit .sdgoals__logo {
  max-width: 680px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2%;
}

#ts_tit .icon__container {
  max-width: 976px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7%;
}
@media only screen and (max-width:767px) {
  #ts_tit .icon__container {
    padding: 0 4%;
  }
}


#ts_tit .ts_kv.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
  column-gap: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 9%;
}
#ts_tit .ts_kv.flex .sdgs__icon {
  width: 146px;
}
@media only screen and (max-width:767px) {
  #ts_tit .ts_kv.flex {
    row-gap: 3VW;
    column-gap: 3VW;
  }
  #ts_tit .ts_kv.flex .sdgs__icon {
    width: 30%;
    /* min-width: 130px; */
  }
}

#ts_tit .sdgs__map {
  width: 235px;
}
@media only screen and (max-width:767px) {
  #ts_tit .sdgs__map {
    max-width: 235px;
    width: 60%;
  }
}

#ts_tit .ts_heading {
  font-size: min(3.8vw , 3.2rem);
  text-align: center;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  position: relative;
}
#ts_tit .ts_heading::after {
  content: "";
  background-color: #000;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0.6em;
  left: 0;
}
@media only screen and (max-width:767px) {
  #ts_tit .ts_heading {
    font-size: min(6vw , 2.5rem);
    line-height: 1.5;
  }
}

#ts_tit .ts_btn {
  background-color: #47A0E3;
  padding: 2em;
}
#ts_tit .ts_btn .btn__txt {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media only screen and (max-width:767px) {
  #ts_tit .ts_btn {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8%;
    padding: 1em;
  }
  #ts_tit .ts_btn .btn__txt {
    font-size: 3.6vw;
  }
}

#ts_tit .ts_tit_container {
  padding: 0 4%;
  margin-bottom: 7%;
}
@media only screen and (max-width:767px) {
  #ts_tit .ts_tit_container {
    padding-left: max(5%,20px);
  }
}






.ts_kv_txt {
  text-align: center;
}
@media only screen and (max-width:767px) {
  .ts_kv_txt {
    font-size: min(5vw,1.8rem);
    margin-bottom: 10%;
  }
}

@media only screen and (max-width:767px) {
  .ts_tit_h3 {
    font-size: min(6.67vw,2.5rem);
    position: absolute;
    top:50%;
    transform: translateY(-50%);
  }
}



/********** コンテンツ **********/
.ts_content {
  margin-bottom: 3em;
  width: 100%;
}


/* 見出し */
.ts_heading {
  width: 100%;
  padding: 1em 1.2em 1em;
  margin-bottom: 2em;
  height: 74px;
}
.ts_heading.ts_color_brown {
  color: #754c24;
  position: relative;
  border-bottom: 1px solid #754c24;
  border-left: 10px solid #754c24;
}
.ts_heading.ts_color_green {
  color: #39b54a;
  position: relative;
  border-bottom: 1px solid #39b54a;
  border-left: 10px solid #39b54a;
}
.ts_heading.ts_color_black {
  color: #000;
  position: relative;
  border-bottom: 1px solid #000;
  border-left: 10px solid #000;
}
.ts_heading.ts_color_black.flex-box {
  display: flex;
  padding-top: 0;
  padding-bottom: 1px;
}
.ts_heading.ts_color_red {
  color: #c1272d;
  position: relative;
  border-bottom: 1px solid #c1272d;
  border-left: 10px solid #c1272d;
}
@media only screen and (max-width:539px) {
  .ts_heading {
    line-height: 1.7;
    height: min(25vw,110px);
  }
  .ts_heading.ts_color_black.flex-box {
    align-items: center;
  }
}

.ts_img_box.ts_five-trees {
  width: 116px;
  margin-right: 1.5em;
}
.ts_img_box.ts_five-trees img {
  width: 100%;
}

.ts_txt_box.ts_five-trees {
  padding-top: 1em;
}
@media only screen and (max-width:767px) {
  .ts_txt_box.ts_five-trees {
    padding-top: 0;
  }
  .ts_txt_box.ts_five-trees h3 {
    line-height: 1.4;
  }
}

/* 内容　*/
.ts_explanation_container {
  display: flex;
  margin-bottom: 1em;
}
@media only screen and (max-width:767px) {
  .ts_explanation_container {
    flex-direction: column;
  }
}

#ts_townPlanning .ts_explanation_container {
  margin-bottom: 2em;
}
@media only screen and (max-width:767px) {
  #ts_townPlanning .ts_explanation_container,
  #ts_human-development  .ts_explanation_container {
    margin-bottom: 3em;
  }
}


/* インスタ　*/
.ts_sdgs_insta_box.flex-box {
  display: flex;
  align-items: center;
  border: 1px solid #47a0e3;
  width: 100%;
  padding: 15px;
}
@media only screen and (max-width:767px) {
  .ts_sdgs_insta_box.flex-box {
    flex-direction: column;
  }
}

.ts_insta_icon_box {
  margin-right: 12px;
  width: 53px;
}
.ts_insta_icon_box img {
  width: 100%;
}
@media only screen and (max-width:767px) {
  .ts_insta_icon_box {
    margin: 0.5em 0;
  }
}

.ts_insta_txt p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.ts_insta_txt p a {
  color: #47a0e3;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width:767px) {
  .ts_insta_txt p {
    font-size: min(3.6vw,1.6rem);
    text-align: center;
  }
  .ts_insta_txt p a {
    font-size: min(3.6vw,1.6rem);
  }
}


/* SDGsアイコン */
.ts_sdgs_icon {
  width: 142px;
  margin-right: 1.8em;
  flex-shrink: 0;
}
@media only screen and (max-width:767px) {
  .ts_sdgs_icon {
     margin: 0 auto 0.5em;
  }
}

#ts_sdgs_12 .ts_sdgs_cont_box.flex-box{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width:767px) {
  #ts_sdgs_12 .ts_sdgs_cont_box.flex-box{
    flex-direction: column;
    align-items: center;
    margin-bottom: 3em;
  }
}

#ts_sdgs_07 .ts_sdgs_cont_box.flex-box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

#ts_sdgs_11 .ts_sdgs_cont_box.flex-box{
  width: 100%;
}

#ts_sdgs_05 .ts_sdgs_cont_box.flex-box{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width:767px) {
  #ts_sdgs_05 .ts_sdgs_cont_box.flex-box{
    flex-direction: column;
    align-items: center;
  }
}

.ts_sdgs_txt_box {
  margin-bottom: 1.5em;
  width: 100%;
}
@media only screen and (max-width:767px) {
  #ts_sdgs_12 .ts_sdgs_txt_box,
  #ts_sdgs_05 .ts_sdgs_txt_box {
    margin-bottom: 0;
  }
}

.ts_sdgs_txt {
  line-height: 1.6;
  margin-bottom: 0.5em;
}

#ts_sdgs_15 .ts_detail_ul {
  margin-bottom: 2em;
}

.ts_detail_ul {
  column-gap: 1em;/* リストが横並びの時に1文字分スペースを開ける */
}
@media only screen and (max-width:767px) {
  .ts_detail_ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1em;
  }
}

.ts_detail_li,
.ts_detail_li_star {
  font-size: 1.6rem;
  margin-bottom: 0.3em;
  padding-left: 1em;
  text-indent: -1em;

  column-gap: 1em;
}
.ts_detail_li::before {
  content: "●";
}
.ts_detail_li_star::before {
  content: "★";
}
.ts_detail_ul.SDGs_color_12 .ts_detail_li::before {
  color: #d39200;
}
.ts_detail_ul.SDGs_color_07 .ts_detail_li::before {
  color: #fabd00;
}
.ts_detail_ul.SDGs_color_11 .ts_detail_li::before {
  color: #f5a200;
}
.ts_detail_ul.SDGs_color_15 .ts_detail_li::before {
  color: #28a838;
}
.ts_detail_ul.SDGs_color_17 .ts_detail_li::before {
  color: #003067;
}
.ts_detail_ul.SDGs_color_05 .ts_detail_li::before {
  color: #e83819;
}
.ts_detail_ul.SDGs_color_08 .ts_detail_li::before {
  color: #970b31;
}

.ts_detail_ul.SDGs_color_17.flex-box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.ts_detail_ul.SDGs_color_08.flex-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2em;
}

.ts_sdgs_05_container.flex-box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:767px) {
  .ts_sdgs_05_container.flex-box {
    flex-direction: column;
  }
}

.ts_sdgs_05_inner {
  width: 100%;
}

.ts_detail_ul.SDGs_color_05 {
  width: 100%;
  /* min-width: 320px; */
}



/* 内容画像　*/
.ts_sdgs_img_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#ts_sdgs_17 .ts_sdgs_img_container {
  margin-bottom: 2em;
}
.ts_sdgs_img_container img {
  width: 100%;
}
.ts_sdgs_img_container.ts_08 {
  column-gap: 1em;
}
@media only screen and (max-width:767px) {
  .ts_sdgs_img_container {
    flex-direction: column;
    align-items: center;
  }
}

.ts_sdgs_img_box {
  width: calc((100% - 2em) / 2);
}

.ts_sdgs_img_container-02.flex-box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .ts_sdgs_img_container-02.flex-box{
    flex-wrap: wrap;
  }
}

#ts_sdgs_12 .ts_sdgs_img_box-02 {
  width: 202px;
  flex-shrink: 0;
}
#ts_sdgs_12 .ts_sdgs_img_box-02 img {
  width: 100%;
}
@media only screen and (max-width:767px) {
  #ts_sdgs_12 .ts_sdgs_img_box-02 {
    width: calc((100% - 2%) / 2);
  }
}

@media only screen and (max-width:767px) {
  #ts_sdgs_07 .ts_sdgs_img_box-02 {
    width: calc((100% - 2%) / 2);
    margin-bottom: 0.5%;
  }
  #ts_sdgs_07 .ts_sdgs_img_box-02 img {
    width: 100%;
  }
}

.ts_sdgs_img_box.ts_05 {
  width: 100%;
  max-width: 334px;
}
.ts_sdgs_img_box.ts_05 img {
  width: 100%;
}
@media only screen and (max-width:767px) {
  .ts_sdgs_img_box.ts_05 {
    width: 70vw;
    max-width: none;
  }
}

@media only screen and (max-width:767px) {
  .ts_sdgs_img_box.ts_15,
  .ts_sdgs_img_box.ts_17,
  .ts_sdgs_img_box.ts_08 {
    width: 70vw;
  }
  .ts_sdgs_img_box.ts_15 img,
  .ts_sdgs_img_box.ts_17 img,
  .ts_sdgs_img_box.ts_08 img {
    width: 100%;
    height: 100%;
    max-height: initial;
  }
  .ts_sdgs_img_container>div:not(:last-of-type) {
    margin-bottom: 1em;
  }
}



/********** フッター **********/
#ts_bottom {
  width: 100%;
  height: 102px;
  background-color: #000;
}

.fotter_container {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fotter_container p {
  font-weight: 700;
  color: #fff;
  font-size: 0.9em;
  letter-spacing: 0.25em;
  text-align: center;
}
@media only screen and (max-width:767px) {
  .fotter_container p {
    font-size: 2vw;
    line-height: 1.5;
  }
}



/********** TOPへ戻るボタン **********/
#ts_page-top_btn {
  position: relative;
  z-index: 10000;
}

.ts_top_btn {
  width: 100%;
  max-width: 114px;
  position: fixed;
  bottom: 2em;
  right: 2em;
}
.ts_top_btn img {
  width: 100%;
}
@media only screen and (max-width:767px) {
  .ts_top_btn {
    width: 18vw;
    bottom: 1em;
    right: 1em;
  }
}



/********** SDGs kv SVG部分 **********/
.cls-1 {
  fill: #25a739;
}

.cls-2 {
  fill: #d7a600;
}

.cls-3 {
  fill: #c60f28;
}

.cls-4 {
  fill: #00973b;
}

.cls-5 {
  fill: #427935;
}

.cls-6 {
  fill: #fabd00;
}

.cls-7 {
  fill: #e83819;
}

.cls-8 {
  fill: #f5a200;
}

.cls-9 {
  fill: #0075ba;
}

.cls-10 {
  fill: #970b31;
}

.cls-11 {
  fill: #00a6d9;
}

.cls-12 {
  fill: #ed6a02;
}

.cls-13 {
  fill: #e5001e;
}

.cls-14 {
  fill: #dc007a;
}

.cls-15 {
  fill: #003067;
}

.cls-16 {
  fill: #d39200;
}

.cls-17 {
  fill: #004c88;
}

.cls-18 {
  fill: #fff;
}

.cls-19 {
  fill: #28a838;
}
