﻿

/* title-area
---------------------------------------- */

.title-area {
  position: relative;
  width: 100%;
  height: 350px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.title-area {
  /* background-image: url("../img/bg-title.jpg"); */
  background-image: url("../image/bg_title-1.jpg");
}

.title-area > .topicpath-area {
  position: absolute;
  top: 20px;
  left: 20px;
}

.title-area > .topicpath-area > .topicpath-list > .topicpath-item {
  display: inline-block;
  position: relative;
}

.title-area > .topicpath-area > .topicpath-list > .topicpath-item:before {
  content: "＞";
  color: #fff;
}

.title-area
  > .topicpath-area
  > .topicpath-list
  > .topicpath-item:first-of-type:before {
  content: none;
}

.title-area > .topicpath-area > .topicpath-list > .topicpath-item > a,
.title-area > .topicpath-area > .topicpath-list > .topicpath-item span {
  color: #fff;
  font-size: 1.6rem;
}

.title-area > .topicpath-area > .topicpath-list > .topicpath-item > a {
  text-decoration: underline;
}

.title-area > .inner-area {
  position: relative;
  height: 350px;
}

.title-area > .inner-area > .page-title {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .title-area {
    height: 46.66667vw;
  }

  .title-area > .topicpath-area {
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.66667vw;
  }

  .title-area > .topicpath-area > .topicpath-list > .topicpath-item:before {
    font-size: 2.66667vw;
  }

  .title-area > .topicpath-area > .topicpath-list > .topicpath-item > a,
  .title-area > .topicpath-area > .topicpath-list > .topicpath-item span {
    font-size: 2.66667vw;
  }

  .title-area > .inner-area {
    height: 46.66667vw;
  }

  .title-area > .inner-area > .page-title {
    padding: 0 4vw;
    font-size: 5.33333vw;
  }
}

/* content-area
---------------------------------------- */

.content-area {
  padding: 100px 0 60px 0;
  background: #f0f0e4;
}
.inner-area {
  /*width: 1120px;*/
}

.content-area .inner-area {
  width: 1120px;
}

.content-area > .inner-area > *:first-child {
  margin-top: 0 !important;
}

/*大見出し*/
.content-area .template-heading1 {
  margin: 1em 0;
  padding-bottom: 0.5em;
  font-weight: normal;
  font-size: 3.2rem;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E",
    "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  border-bottom: 1px dotted #000;
}
.content-area .template-heading1__sub-text {
  margin-left: 1em;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/*中見出し*/
.content-area .template-heading2 {
  margin: 1em 0;
  font-size: 2.2rem;
  line-height: 1.875;
}
.content-area .template-heading2__sub-text {
  margin-left: 1em;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
/*小見出し*/
.content-area .template-heading3 {
  margin: 1em 0;
  line-height: 1.875;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.content-area .template-heading3--text-blue {
  color: #4961ad;
  border-bottom: solid 2px #4961ad;
}
/*アコーディオン*/
.template-accordion {
}
.template-accordion__header {
  background: #005b3a;
  color: #ffffff;
  padding: 1em 0;
  position: relative;
}
.template-accordion__arrow {
  transform: rotateZ(0deg);
  display: block;
  position: absolute;
  width: 1px;
  height: 30px;
  background: #fff;
  top: 0;
  right: 20px;
  bottom: 0;
  left: auto;
  margin: auto;
  transition: 0.25s ease;
}
.template-accordion__header.active .template-accordion__arrow {
  transform: rotateZ(180deg);
}
.template-accordion__arrow:after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 40%;
  background: #fff;
  bottom: 0;
  right: 0;
  transform: rotateZ(40deg);
  transform-origin: bottom;
}
.template-accordion__sub-text {
  background: #ffffff;
  color: #000;
  padding: 0.2em 0.5em;
  position: relative;
  margin: 0 30px 0 0;
}
.template-accordion__sub-text:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: solid 15px transparent;
  border-right: solid 15px transparent;
  border-bottom: solid 15px transparent;
  border-left: solid 15px #ffffff;
  position: absolute;
  top: 0;
  right: auto;
  left: 100%;
  bottom: 0;
  margin: auto;
}
.template-accordion__content {
}
/*本文*/
.content-area p,
.content-area .template-paragraph {
  margin: 1em 0;
 
}
.content-area .template-paragraph--text-small {
  
}
.content-area .template-paragraph--text-large {
  
}
.template-paragraph--text-bold {
 
}
/*箇条書きテキスト*/
.content-area .template-unordered-list {
  list-style-type: disc;
  padding-left: 1.5em;
}
/*テキストリンク*/
.content-area .template-alink {
  color: #005b3a;
  text-decoration: underline;
}
.content-area .template-alink--pdf:after {
  content: "";
  background: url("../image/pdf-icon.png") no-repeat scroll 0 0;
  width: 17px;
  height: 17px;
  margin: 0 5px;
  display: inline-block;
}
/*注釈テキスト*/
.template-note {
  padding-left: 2em;
}
.template-note__bullet {
  width: 2em;
  margin-left: -2em;
  float: left;
}

.template-table {
  margin: 1em 0;
}
.template-table thead tr th {
  background-color: #005b3a;
  color: #fff;
  padding: 1em;
}
.template-table ttr:nth-child(odd) td {
  background: #ffffff;
  padding: 1em;
}
.template-table ttr:nth-child(even) td {
  background: #f5f5ec;
  padding: 1em;
}

/*画像配置*/
.template-image-right {
  float: right;
  margin: 0 0 2em 2em;
}
.template-image-left {
  float: left;
  margin: 0 2em 2em 0;
}
.template-image-center {
  clear: both;
  display: block;
  margin: 2em auto;
}

/*表*/
.template-table {
  width: 100%;
  margin-top: 1em;
  border-collapse: collapse;
}

.template-table thead th {
  text-align: center;
}

.template-table th,
.template-table td {
  padding: 1em;
  vertical-align: top;
  text-align: left;
}

.template-table thead {
  background: #005b3a;
}

.template-table thead th,
.template-table thead td {
  color: #fff;
  font-weight: bold;
}

.template-table tbody > tr:nth-of-type(odd) {
  background: #fff;
}

.template-table tbody > tr:nth-of-type(even) {
  background: #f5f5ec;
}

/*SDGsアイコン*/
.content-area .activity-area {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}

.content-area .activity-area > .area-title {
  margin-right: 20px;
  font-size: 1.8rem;
}

.content-area .activity-area > .area-title:after {
    content: " ▼";
}

.content-area .activity-area > .activity-list {
 
}

.content-area .activity-area > .activity-list > .activity-item {
  width: 80px;
  height: 80px;
  vertical-align: top;
  margin: 5px 5px;
}

.activity-list > .activity-item.item1 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-1.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item2 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-2.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item3 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-3.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item4 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-4.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item5 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-5.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item6 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-6.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item7 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-7.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item8 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-8.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item9 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-9.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item10 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-10.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item11 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-11.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item12 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-12.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item13 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-13.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item14 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-14.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item15 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-15.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item16 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-16.jpg") center center no-repeat;
  background-size: contain;
}

.activity-list > .activity-item.item17 {
  background: url("https://www.jsda.or.jp/sdgs/common/img/icn_activity-17.jpg") center center no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 3.8vw;
  }
  .body-area {
    min-width: auto;
    min-width: initial;
  }

  .body-area .inner-area {
    width: 100%;
  }
  .content-area {
    padding: 10.66667vw 4vw;
  }

  /*大見出し*/
  .content-area .template-heading1 {
    font-size: 4.26667vw;
    border-bottom: 0.26667vw dotted #000;
  }
  .content-area .template-heading1__sub-text {
    font-size: 0.75em;
  }
  /*中見出し*/
  .content-area .template-heading2 {
    font-size: 4vw;
  }
  .content-area .template-heading2__sub-text {
    font-size: 0.75em;
  }
  /*小見出し*/
  .content-area .template-heading3 {
    font-size: 4vw;
  }
  .content-area .template-heading3--text-blue {
  }
  /*本文*/
  .content-area .template-paragraph {
    font-size: 1em;
  }
  .content-area .template-paragraph--text-small {
    font-size: 0.8em;
  }
  .content-area .template-paragraph--text-large {
    font-size: 1.2em;
  }
  .template-paragraph--text-bold {
  }
  /*箇条書きテキスト*/
  .content-area .template-unordered-list {
  }
  /*テキストリンク*/
  .content-area .template-alink {
    word-break: break-all;
  }
  .content-area .template-alink--pdf:after {
    width: 17px;
    height: 17px;
    margin: 0 5px;
  }
  /*注釈テキスト*/
  .template-note {
  }
  .template-note__bullet {
  }

  /*画像配置*/
  .template-image-right {
    float: none;
    clear: both;
    display: block;
    margin: 2em auto;
  }
  .template-image-left {
    float: none;
    clear: both;
    display: block;
    margin: 2em auto;
  }
  .template-image-center {
    clear: both;
    display: block;
    margin: 2em auto;
  }

  /*SDGsアイコン*/
  .content-area .activity-area {
    margin-top: 5.33333vw;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .content-area .activity-area > .area-title {
    width: 100%;
    margin-right: 0;
    font-size: 3.73333vw;
  }

  .content-area .activity-area > .area-title:after {
    content: " ▼";
  }

  .content-area .activity-area > .activity-list {
    width: 100%;
    height: auto;
    margin-top: 1.33333vw;
  }

  .content-area .activity-area > .activity-list > .activity-item {
    width: 13.33333vw;
    height: 13.33333vw;
    margin-top: 0.66667vw;
  }
}

/*2019/12/27追記*/
/****1*****/

.content-area .img-box-wh{ 
	background:#fff;
	margin-top: 1em;
}

.content-area .img-wid{
	max-width:1000px;
	margin:0 auto;
	padding:50px 10px;
	box-sizing:border-box;
}

.content-area .img-wid2{
	max-width:1040px;
	margin:0 auto;
	padding:40px 10px;
	box-sizing:border-box;
}

.content-area .img-wid ul{
	margin-top:10px;
	overflow:hidden;
}

.content-area .img-wid ul li{
	float:left;
	width:32%;
	margin-right:2%;
}

.content-area .img-wid ul li:last-child{
	margin-right:0;
}
.content-area .template-unordered-list li{
	margin-top:1.5rem;
}

.inner-area .template-heading2{ /* add -.inner-area */
	margin: 2em 0 1em;
}

@media screen and (max-width: 768px) {
	.content-area .img-wid{
			padding:20px 10px;
	}
	.content-area .img-wid2{
			padding:20px 10px;
	}
}

/****2***/
.content-area .template-note li{
	line-height: 1.875;
	margin-top:5px;
	font-size: 1.2rem;
}

.template-accordion{ 
	margin-top:50px;
}

.template-accordion__content{
	padding-top:20px;
}

.link-list{
	margin-top:5px;
}
.link-list a{
	line-height: 1.875;
	color:#005b3a;
	text-decoration: underline;
}

@media screen and (max-width: 768px) {
	.article2 .template-accordion{ 
		margin-top:30px;
	}
}

.title-area > .topicpath-area{ 
	z-index:1;
}




/** versatile ***/
.maTop1{
	margin-top: 1em;
}
.maTop2{
	margin-top: 2em;
}
.maTop3{
	margin-top: 3em;
}

.maBottom1{
	margin-bottom: 1em;
}
.maBottom2{
	margin-bottom: 2em;
}
.maBottom3{
	margin-bottom: 3em;
}

