@charset "utf-8";

/****************************************
          index.html トップページ
*****************************************/

/* idx_head */
.idx_head {
	padding-top: 20px;
}
.idx_head .wrapper {
  display: flex;
	justify-content: center;
  flex-wrap: wrap;
	align-items: center;
}
/* h1 */
.idx_head h1 {
	width: 31%;
}
.idx_head h1 img {
  max-width: 320px;
	width: 100%;
	height: auto;
}
/* teamunicef_copy */
.idx_head .teamunicef_copy {
	width: 69%;
	padding: 40px 0;
}
.idx_head .teamunicef_copy p {
  padding-left: 30px;
  color:#000;
	font-size: 3.6rem;
	font-weight: bold;
}

@media screen and (max-width: 669px) {
  .idx_head h1 {
  	width: 100%;
  }
  .idx_head .teamunicef_copy {
  	width: 100%;
  	padding: 20px 0;
  }
  .idx_head .teamunicef_copy p {
  	font-size: 2.8rem;
  }
}

/* idx_lead */
.idx_lead {
  margin-top: 50px;
}
.idx_lead .idx_lead_txt {
  margin-bottom: 2em;
  font-size: 1.8rem;
}

/* idx_movie */
.idx_movie {
  width: 100%;
  margin-top: 50px;
}
.idx_movie video {
  width: 100%;
  height: auto;
}

/* idx_team */
.idx_team {
  margin-top: 50px;
}
.idx_team ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}
.idx_team ul li {
  width: calc((100% - 30px) / 2);
}
.idx_team ul li a {
  display: block;
  border-radius: 6px;
  border: 2px solid #000;
  padding: 20px;
  text-align: center;
}
.idx_team ul li a img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 669px) {
  .idx_team ul li {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* idx_childinsport */
.idx_childinsport {
  margin-top: 50px;
}
.idx_childinsport a {
  color: #000;
}
.idx_childinsport a:hover {
  text-decoration: none;
}
.idx_childinsport a:hover .idx_childinsport_inner {
  opacity: 0.8;
}
.idx_childinsport .idx_childinsport_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 6px;
  /* border: 10px solid #000; */
  background-color: #eee;
  padding: 20px;
}
.idx_childinsport .idx_childinsport_inner .idx_childinsport_img {
  width: 20%;
  margin: 0;
}
  .idx_childinsport .idx_childinsport_inner .idx_childinsport_img img {
    width: 100%;
    height: auto;
  }
.idx_childinsport .idx_childinsport_inner .idx_childinsport_txt {
  width: 80%;
  padding: 0 4%;
}

@media screen and (max-width: 669px) {
  .idx_childinsport .idx_childinsport_inner .idx_childinsport_img {
    width: 40%;
    margin: 0 auto;
  }
  .idx_childinsport .idx_childinsport_inner .idx_childinsport_txt {
    width: 100%;
    padding: 20px 0 0;
  }
}

/* idx_related */
.idx_related {
  margin-top: 50px;
}

/* related_list_thumb */
.related_list_thumb {
	list-style: none;
  padding: 0;
}
.related_list_thumb li {
	padding: 16px 10px;
}
.related_list_thumb li:nth-child(odd) {
  background-color: #eee;
}
.related_list_thumb li a {
  display: flex;
  justify-content: space-between;
}
.related_list_thumb li .related_list_pic {
  width: 22%;
}
  .related_list_thumb li .related_list_pic img {
    width: 100%;
    height: auto;
  }
.related_list_thumb li .related_list_txt {
  width: 76%;
}
