@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*----------------------------------------------------
  メイン
----------------------------------------------------*/
.main-wrap {
  padding: 2rem;
}
@media screen and (max-width: 767.98px) {
  .main-wrap {
    padding: 6.5rem 0 2rem;
    height: auto;
  }
}
.main-wrap .container {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .container {
    height: auto;
    display: block;
  }
}
.main-wrap .container .text-area {
  font-weight: 700;
  width: 50%;
  align-self: center;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .container .text-area {
    margin-left: 0;
    width: 100%;
    align-self: auto;
  }
}
@media screen and (max-width: 575.98px) {
  .main-wrap .container .text-area {
    width: auto;
  }
}
.main-wrap .image-canvas {
  position: absolute;
  max-width: 40vw;
  width: 100%;
  height: calc(100% - 120px);
  z-index: 0;
  top: 10%;
  left: 55%;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas {
    max-width: none;
    position: static;
    padding: 0;
    height: auto;
    margin-top: 2rem;
  }
}
.main-wrap .image-canvas img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas img {
    margin-bottom: 1rem;
    position: static;
    display: block;
  }
}

/*----------------------------------------------------
  コンテンツ
----------------------------------------------------*/
.index-block {
  border: 2px solid #D9D4CC;
  padding: 3rem 5rem;
  border-radius: 1rem;
  width: 690px;
  max-width: 100%;
  margin: 8rem auto 0;
}
.index-block .index-block-title {
  font-size: 2rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1.4;
}
.index-block ul {
  list-style: none;
  padding-left: 0;
}
.index-block ul li {
  margin-bottom: 1em;
  font-size: 1.8rem;
  display: flex;
}
.index-block ul li:last-child {
  margin-bottom: 0;
}
.index-block ul li span {
  color: #C94A4A;
  padding-right: 1em;
}
.index-block ul li a {
  color: #555;
  text-decoration: none;
}

.sdgs-title {
  display: flex;
}
.sdgs-title .number {
  color: #C94A4A;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 4.8rem;
  padding-right: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .sdgs-title .number {
    font-size: 4rem;
  }
}
@media screen and (max-width: 575.98px) {
  .sdgs-title .number {
    font-size: 3.2rem;
    padding-right: 1.2rem;
  }
}
.sdgs-title .contents-title {
  flex: 1;
}

.sdgs-mokuhyou {
  color: #4A6FA8;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2rem;
  margin-top: 2rem;
}

ul.sdgs-icon-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 2rem -1rem;
}
ul.sdgs-icon-list li {
  flex: 0 0 calc(150px + 2rem);
  padding-left: 1rem;
  padding-right: 1rem;
}
@media screen and (max-width: 767.98px) {
  ul.sdgs-icon-list li {
    flex-basis: calc(100px + 2rem);
  }
}
@media screen and (max-width: 575.98px) {
  ul.sdgs-icon-list li {
    flex-basis: 33.3333%;
  }
}
ul.sdgs-icon-list li img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2rem;
}

.section-wrap .button-area {
  justify-content: normal;
}

.section-wrap p {
  font-size: 1.6rem;
}

/*----------------------------------------------------
  モーダル
----------------------------------------------------*/
/*モーダル*/
.modal-scroll {
  overflow: visible;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: none;
}
.modal-scroll::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-scroll .modal-back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.modal-scroll .modal-wrap {
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 3;
  width: calc(100% - 4rem);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #FAF7F2;
  max-width: 980px;
  border-radius: 1.5rem;
  padding: 3rem;
}
@media screen and (max-width: 767.98px) {
  .modal-scroll .modal-wrap {
    padding: 1.5rem;
  }
}
.modal-scroll .modal-close {
  position: fixed;
  top: -50px;
  right: 0;
  background: none;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.modal-scroll .modal-close::before, .modal-scroll .modal-close::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}
.modal-scroll .modal-close::before {
  transform: rotate(45deg);
}
.modal-scroll .modal-close::after {
  transform: rotate(-45deg);
}
.modal-scroll .modal-area {
  border-radius: 5px;
  padding: 1rem;
  height: 100%;
  min-height: 250px;
  display: none;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .modal-scroll .modal-area {
    min-height: auto;
  }
}
.modal-scroll .modal-area .contents-title {
  margin-bottom: 0.5em;
}
.modal-scroll .modal-area p {
  margin-bottom: 1.5em;
}
.modal-scroll .modal-area p:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=sdgs.css.map */