@charset "UTF-8";
body {
  color: #282828;
  font-size: 16px;
  font-family: "M PLUS 1", sans-serif;
  line-height: 1.5;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.main {
  padding-top: 80px;
}

img {
  width: 100%;
}

.bg-gray {
  background-color: #F9F9F9;
}

.bg-tile {
  background-image: url(../img/sdgs-bg.jpg);
  background-repeat: repeat;
}

.bg-paper {
  background-image: url(../img/bg-sdgs-page.jpg);
}

.inner {
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.btn-container {
  text-align: center;
}

.btn-container-right {
  text-align: right;
}

.btn {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  padding: 10px 0;
  color: #fff;
  cursor: pointer;
}
.btn--primary {
  width: 200px;
  background-color: #FABE01;
  padding: 15px;
}
.btn--sub {
  background-color: #FABE01;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 160px;
}

.section {
  padding: 90px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}
.section__head {
  text-align: center;
  margin-bottom: 96px;
}
@media (max-width: 767px) {
  .section__head {
    margin-bottom: 40px;
  }
}
.section__title {
  font-size: 36px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-align: center;
  line-height: 1;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 28px;
  }
}
.section__sub-title {
  font-family: "Roboto", sans-serif;
  color: #FABE01;
  position: relative;
  font-size: 12px;
}
.section__sub-title::before {
  content: "ー";
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section__sub-title::after {
  content: "ー";
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.page-top {
  height: 300px;
  position: relative;
}
@media (max-width: 767px) {
  .page-top {
    height: 200px;
  }
}
.page-top figure {
  height: 100%;
}
.page-top figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-top__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .page-top__title {
    font-size: 32px;
  }
}

[data-fadein] {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
[data-fadein].is-over {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header {
  height: 80px;
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}
.header__inner {
  padding: 0 20px;
  max-width: 1740px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
.header__logo {
  height: 50px;
  width: 120px;
}
.header__logo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__nav .nav-list .item {
  margin-right: 32px;
}
.header .hamburger {
  height: 32px;
  width: 40px;
  position: relative;
  display: none;
}
@media (max-width: 767px) {
  .header .hamburger {
    display: block;
  }
}
.header .hamburger span {
  display: inline-block;
  height: 2px;
  width: 100%;
  background-color: #282828;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .hamburger span:nth-of-type(1) {
  top: 0;
}
.header .hamburger span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header .hamburger span:nth-of-type(3) {
  bottom: 0;
}
.header .hamburger[aria-expanded=true] span:nth-last-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 15px;
}
.header .hamburger[aria-expanded=true] span:nth-last-of-type(2) {
  opacity: 0;
}
.header .hamburger[aria-expanded=true] span:nth-last-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 15px;
}

.sp-menu {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  height: 100vh;
  width: 100vw;
  padding-top: 80px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sp-menu .sp-menu-list {
  padding: 0 40px;
}
.sp-menu .sp-menu-list .menu {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
.sp-menu .sp-menu-list .menu a {
  position: relative;
}
.sp-menu .sp-menu-list .menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FABE01;
}

.is-drawer-active .sp-menu {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.fv {
  position: relative;
  padding-top: 144px;
  margin-bottom: 40px;
}
@media (max-width: 1080px) {
  .fv {
    padding-top: 3vw;
    margin-bottom: 0;
  }
}
.fv__img {
  max-width: 1220px;
  position: absolute;
  right: 0;
  top: 0;
}
.fv__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1080px) {
  .fv__img {
    width: 77.78%;
    height: 500px;
  }
}
.fv__bg {
  height: 560px;
  max-width: 1000px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 190, 1)), to(rgb(255, 229, 0)));
  background: linear-gradient(90deg, rgb(250, 190, 1) 0%, rgb(255, 229, 0) 100%);
}
@media (max-width: 1080px) {
  .fv__bg {
    width: 69.44%;
    height: 550px;
  }
}
.fv__text {
  position: absolute;
  top: 289px;
  left: 249px;
  font-size: 62px;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1080px) {
  .fv__text {
    font-size: 48px;
    top: 200px;
    left: 10vw;
  }
}

.top-about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .top-about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top-about__info {
  line-height: 2.5;
  width: 500px;
}
@media (max-width: 1200px) {
  .top-about__info {
    width: 100%;
  }
}
.top-about__text {
  margin-bottom: 64px;
}
.top-about__img {
  width: 600px;
}
@media (max-width: 1200px) {
  .top-about__img {
    width: 70%;
    margin: 0 auto 40px auto;
  }
}
@media (max-width: 767px) {
  .top-about__img {
    width: 100%;
  }
}

.top-service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 1080px) {
  .top-service__list {
    display: block;
  }
}
.top-service__item {
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  padding: 20px 25px;
  width: 30%;
}
@media (max-width: 1080px) {
  .top-service__item {
    width: 100%;
    margin-bottom: 40px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 4px solid rgba(250, 190, 1, 0.6);
  }
}
.top-service__item h3 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .top-service__item h3 {
    font-size: 20px;
  }
}
.top-service__item figure {
  width: 170px;
  height: 170px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.top-service__item p {
  line-height: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  margin-bottom: 30px;
}
.top-service__item .btn {
  width: 160px;
}

.center-bg {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 1080px) {
  .center-bg {
    height: 250px;
  }
}

.top-sdgs__img {
  width: 70%;
  margin: 0 auto 40px auto;
}
@media (max-width: 1080px) {
  .top-sdgs__img {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .top-sdgs__img {
    width: 100%;
  }
}
.top-sdgs__text {
  line-height: 2;
  margin-bottom: 80px;
  width: 70%;
  margin: 0 auto 80px auto;
}
@media (max-width: 767px) {
  .top-sdgs__text {
    width: 100%;
  }
}
.top-sdgs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.top-sdgs__list .item {
  width: 400px;
}
@media (max-width: 1080px) {
  .top-sdgs__list .item {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .top-sdgs__list .item {
    width: 100%;
    margin-bottom: 64px;
  }
}
.top-sdgs__list .item figure {
  width: 50%;
  margin: 0 auto 64px auto;
}
@media (max-width: 767px) {
  .top-sdgs__list .item figure {
    margin: 0 auto 32px auto;
    width: 30%;
  }
}
.top-sdgs__list .item h4 {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}
.top-sdgs__list .item p {
  line-height: 1.5;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .top-sdgs__list .item .btn-container-right {
    text-align: center;
  }
}
.top-sdgs__list .item .btn-sdgs {
  position: relative;
  font-weight: 700;
  font-size: 18px;
}
.top-sdgs__list .item .btn-sdgs::after {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.top-sdgs__list .item .btn-sdgs--yellow::after {
  background-color: #FABD00;
}
.top-sdgs__list .item .btn-sdgs--green::after {
  background-color: #407936;
}

.access__map {
  width: 100%;
  margin-bottom: 48px;
}
.access__addr {
  text-align: center;
}

.contact {
  height: 250px;
}
.contact__inner {
  position: relative;
}
.contact__img {
  height: 250px;
}
.contact__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact .bg-orange {
  background-color: rgba(255, 122, 0, 0.85);
  height: 250px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.contact__info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}
.contact__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .contact__title {
    font-size: 28px;
  }
}
.contact__text {
  margin-bottom: 32px;
}
.contact__btn {
  display: inline-block;
  width: 300px;
  padding: 8px 0;
  background-color: #fff;
  color: #282828;
  border-radius: 20px;
  cursor: pointer;
}

.footer {
  height: 60px;
  background-color: #FABE01;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer p {
  font-size: 12px;
}

.about__text {
  width: 70%;
  margin: 0 auto 120px auto;
}
@media (max-width: 767px) {
  .about__text {
    width: 100%;
    margin: 0 auto 64px auto;
  }
}
.about__title {
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
@media (max-width: 767px) {
  .about__title {
    margin-left: 20px;
  }
}
.about__title::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 30px;
  width: 5px;
  background-color: #FABE01;
}
.about dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.about dl dt {
  width: 25%;
  padding: 60px 0;
  border-bottom: 2px solid #d9d9d9;
}
.about dl dd {
  width: 75%;
  padding: 60px 0;
  border-bottom: 2px solid #d9d9d9;
}

.service__item {
  position: relative;
  margin-bottom: 120px;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service__item .target{
  position: absolute;
  top: 50%;
  transform: translateY(-50vh);
}
@media (max-width: 860px) {
  .service__item {
    display: block;
  }
}
@media (max-width: 767px) {
  .service__item {
    margin-bottom: 64px;
  }
}
.service__item .img {
  width: 50%;
}
@media (max-width: 860px) {
  .service__item .img {
    width: 100%;
    margin-bottom: 40px;
  }
}
.service__item .info {
  width: 50%;
  padding-top: 80px;
}
@media (max-width: 1080px) {
  .service__item .info {
    padding-top: 0px;
  }
}
@media (max-width: 860px) {
  .service__item .info {
    width: 100%;
  }
}
.service__item .info .title {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  text-align: center;
  margin-bottom: 69px;
  position: relative;
}
.service__item .info .title::before {
  content: "";
  width: 25%;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 860px) {
  .service__item .info .title::before {
    display: none;
  }
}
.service__item .info .title::after {
  content: "";
  height: 4px;
  width: 200px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(232, 214, 52)), to(rgb(78, 221, 55)));
  background: linear-gradient(90deg, rgb(232, 214, 52) 0%, rgb(78, 221, 55) 100%);
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.service__item .info .text {
  width: 80%;
  margin: 0 auto;
}
.service__item.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-right: 0;
}
.service__item.reverse .info .title::before {
  right: 0;
  left: auto;
}

.sdgs__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .sdgs__head {
    display: block;
  }
}
.sdgs__img {
  width: 200px;
}
@media (max-width: 767px) {
  .sdgs__img {
    margin: 0 auto;
    margin-bottom: 32px;
  }
}
.sdgs__info {
  width: 70%;
}
@media (max-width: 767px) {
  .sdgs__info {
    width: 100%;
  }
}
.sdgs__info .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .sdgs__info .title {
    text-align: center;
  }
}
.sdgs__list .item {
  padding: 40px 3vw;
  width: 100%;
  border: 5px solid #FABD00;
  position: relative;
  margin-bottom: 64px;
}
.sdgs__list .item--dotted {
  border: 5px dotted #FABD00;
}
.sdgs__list .item .num {
  background-color: #FABD00;
  color: #fff;
  font-weight: 700;
  padding: 4px 24px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-20%, -50%);
          transform: translate(-20%, -50%);
}
.sdgs__list.sdgs13 .item {
  border: 5px solid #407936;
}
.sdgs__list.sdgs13 .item--dotted {
  border: 5px dotted #407936;
}
.sdgs__list.sdgs13 .item .num {
  background-color: #407936;
}

.contact-form__inner {
  max-width: 800px;
}
.contact-form__text {
  margin-bottom: 64px;
}

.form-item {
  margin-bottom: 40px;
}

.Form-Item-Label {
  position: relative;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-left: 15px;
}
.Form-Item-Label::before {
  content: "";
  width: 5px;
  height: 20px;
  background-color: #FABE01;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.wpcf7-text {
  background-color: #F9F9F6;
  height: 50px;
  width: 100%;
  border: 1px solid #666666;
  border-radius: 5px;
  padding: 5px 10px;
}

.wpcf7-textarea {
  border-radius: 5px;
  width: 100%;
  background-color: #F9F9F6;
  border: 1px solid #666666;
  padding: 5px 10px;
}

.wpcf7-submit {
  background-color: #ff7a00;
  color: #fff;
  width: 140px;
  height: 60px;
  text-align: center;
  margin-left: auto;
  display: block;
}/*# sourceMappingURL=style.css.map */