@import url("global.css");
@import url("https://fonts.googleapis.com/css2?family=Damion&family=EB+Garamond:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@200;400;500;600;700;900&display=swap");
#titlearea .pagetitle {
  background-image: url("../sdgs/img/main.jpg");
}

.lead {
  border-bottom: 1px solid rgba(0, 125, 195, 0.2);
  padding: 30px 50px;
}
.lead > p {
  font-size: 17px;
  font-weight: 400;
}

.first_block .item {
  display: flex;
  align-items: center;
  padding: 40px 20px;
  border-bottom: 1px solid rgba(0, 125, 195, 0.2);
}
.first_block .item .r_content {
  order: 2;
  width: 500px;
  flex-shrink: 0;
  margin: 0 50px 0 70px;
}
.first_block .item .r_content .icons {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1px;
  width: 100%;
}
.first_block .item .r_content .icons li {
  width: 16.6666666667%;
  padding: 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.first_block .item .text {
  order: 1;
}
.first_block .item .text h3 {
  color: #007DC3;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 20px;
}
.first_block .item .text > p {
  padding: 0 10px;
  text-align: justify;
  font-weight: 400;
  font-size: 17px;
}

.second_block {
  margin: 200px 0 50px;
}
.second_block h2 {
  font-size: 35px;
  font-weight: 900;
  color: #007DC3;
  text-align: center;
  margin-bottom: 50px;
}
.second_block .item {
  background-color: rgba(0, 125, 195, 0.05);
  padding: 50px 0;
}
.second_block .item:nth-of-type(2) {
  background-color: #FFF;
}
.second_block .item:nth-of-type(2) .wrapper {
  flex-direction: row;
}
.second_block .item:nth-of-type(2) .ph {
  margin: 0 0 0 40px;
}
.second_block .item .wrapper {
  max-width: 1200px;
  display: flex;
  flex-direction: row-reverse;
}
.second_block .item dl {
  width: 100%;
}
.second_block .item dl dt {
  width: 300px;
  line-height: 50px;
  text-align: center;
  background-color: #007DC3;
  color: #FFF;
  font-size: 22px;
  font-weight: 900;
}
.second_block .item dl dd {
  padding: 20px;
}
.second_block .item dl dd + dd {
  border-top: 1px solid rgba(0, 125, 195, 0.2);
}
.second_block .item dl dd .text {
  flex-shrink: 0;
}
.second_block .item dl dd .text .mintitle {
  color: #007DC3;
  font-size: 18px;
}
.second_block .item dl dd .text ul {
  margin: 10px 10px 0;
}
.second_block .item dl dd .text ul li {
  padding-left: 20px;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
}
.second_block .item dl dd .text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: #007DC3;
}
.second_block .item dl dd .text ul li + li {
  margin-top: 5px;
}
.second_block .item dl dd .icons {
  margin-top: 15px;
}
.second_block .item dl dd .icons img {
  width: 86px;
  margin: 1px 0 0 1px;
}
.second_block .item .ph {
  flex-shrink: 0;
  width: 460px;
  margin-right: 40px;
}

.csr_link {
  text-align: center;
}
.csr_link > p {
  color: #007DC3;
  font-size: 25px;
  font-weight: 900;
}
.csr_link .linkbtn {
  margin-top: 15px;
}
.csr_link .linkbtn a {
  display: inline-block;
  background-color: #F99F3E;
  font-size: 18px;
  line-height: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  padding: 0 30px;
  font-weight: bold;
  color: #FFF;
}
.csr_link .linkbtn a::after {
  content: "\f08e";
  display: inline-block;
  margin-left: 10px;
  vertical-align: 2px;
  font-family: "Font Awesome 6 free", "Font Awesome 6 Brands";
  font-size: 16px;
}
.csr_link .linkbtn a:hover {
  background-color: rgba(249, 159, 62, 0.7);
}

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-1 ( 1280px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1280px) {
  .lead {
    padding: 20px 40px 30px;
  }

  .first_block .item {
    padding: 35px 15px;
  }
  .first_block .item .r_content {
    width: 40%;
    margin: 0 0 0 50px;
  }
  .first_block .item .text h3 {
    font-size: 21px;
    margin-bottom: 15px;
  }

  .second_block {
    margin: 170px 0 50px;
  }
  .second_block .item dl dt {
    font-size: 21px;
  }
  .second_block .item dl dd {
    padding: 20px 15px;
  }
  .second_block .item dl dd .text ul {
    margin: 10px 5px 0;
  }
  .second_block .item dl dd .icons img {
    width: 86px;
  }
  .second_block .item .ph {
    width: 40%;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  .lead {
    padding: 15px 20px 25px;
  }
  .lead > p {
    font-size: 16px;
  }

  .first_block .item {
    display: block;
    padding: 40px 20px;
  }
  .first_block .item .r_content {
    width: auto;
    max-width: 500px;
    margin: 0 auto 20px;
  }
  .first_block .item .text h3 {
    text-align: center;
  }
  .first_block .item .text > p {
    font-size: 16px;
  }

  .second_block {
    margin: 120px 0 40px;
  }
  .second_block h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .second_block .item {
    padding: 40px 0;
  }
  .second_block .item:nth-of-type(2) .ph {
    margin: 0 auto;
  }
  .second_block .item .wrapper {
    display: block;
  }
  .second_block .item dl {
    width: 100%;
  }
  .second_block .item dl dt {
    width: 100%;
  }
  .second_block .item dl dd {
    padding: 30px 15px;
    text-align: center;
  }
  .second_block .item dl dd .text {
    flex-shrink: 0;
  }
  .second_block .item dl dd .text ul li {
    display: inline-block;
  }
  .second_block .item .ph {
    max-width: 600px;
    height: 220px;
    width: auto;
    margin: 0 auto;
  }

  .csr_link > p {
    font-size: 22px;
  }
  .csr_link .linkbtn {
    margin-top: 15px;
  }
  .csr_link .linkbtn a {
    font-size: 16px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  .lead {
    padding: 10px 15px 15px;
  }

  .first_block .item {
    padding: 40px 20px;
  }
  .first_block .item .r_content {
    margin: 0 20px 15px;
  }
  .first_block .item .text h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .first_block .item .text > p {
    padding: 0;
  }

  .second_block {
    margin: 80px 0 30px;
  }
  .second_block h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .second_block .item {
    padding: 35px 0;
  }
  .second_block .item dl dt {
    line-height: 46px;
    font-size: 18px;
  }
  .second_block .item dl dd {
    padding: 20px 5px;
    text-align: justify;
  }
  .second_block .item dl dd .text .mintitle {
    font-size: 16px;
    letter-spacing: 0;
  }
  .second_block .item dl dd .text ul {
    margin: 5px 0 0;
  }
  .second_block .item dl dd .text ul li {
    display: block;
    padding-left: 14px;
    font-size: 13px;
  }
  .second_block .item dl dd .text ul li::before {
    top: 7px;
    width: 8px;
    height: 8px;
  }
  .second_block .item dl dd .icons {
    text-align: center;
  }
  .second_block .item dl dd .icons img {
    width: 20%;
  }
  .second_block .item .ph {
    height: 140px;
  }

  .csr_link > p {
    font-size: 20px;
  }
  .csr_link .linkbtn {
    margin-top: 10px;
  }
  .csr_link .linkbtn a {
    font-size: 16px;
    line-height: 36px;
  }
  .csr_link .linkbtn a::after {
    margin-left: 7px;
    vertical-align: 2px;
    font-size: 14px;
  }
}
