@charset "utf-8";

/* 目的から探す */
/*-----------------------------------------------------------*/
.purpose_bg {
  background-color: #EBFFEC;
  padding: 0 0 15px; 
}

.purpose {
  padding: 0 0 32px;
  max-width: 925px;
  display: block;
  margin: 0 auto;
}

.purpose_group_title {
  background-color: #46a48e;
  color: #fff;
  font-size: 27px;
  font-weight: bold;
  margin: 2rem 0 0;
  padding: .4rem 0;
  text-align: center;
}

.purpose_group_title img {
  padding-left: .25rem;
  vertical-align: middle;
  max-width: 27px;
}

.purpose_title {
  border-bottom: solid 2px #198F72;
  color: #4B4B4B;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 2rem 0 0;
  text-align: center;
  /* text-shadow: 1.5px 1.5px 0 rgba(0, 0, 0, 0.25); */
}

.purpose_btn_group {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  max-width: 925px;
}

.purpose_btn {
  align-items: center;
  background-color: #fff;
  border: solid 1px #198F72;
  display: flex;
  gap: 0 12px;
  margin: 8px;
  text-decoration: none;
  height: 80px;
  width: 289px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.purpose_btn:hover {
  background-color: #ffec9f;
  box-shadow: 1px 1px #25947A, 1px -1px #25947A, -1px 1px #25947A, -1px -1px #25947A;
}

.purpose_btn img {
  padding-left: 12px;
}

.purpose_btn span {
  color: #285943;
  font-size: 16px;
  font-weight: bold;
}

.purpose_btn span:last-child {
  color: #4B4B4B;
  display: block;
  font-size: 11px;
  font-weight: 400;
}

.purpose_btn_group_second {
  background-color: #fff;
  border: solid 1px #e0e0e0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px auto 0;
  max-width: 905px;
}

/* 目的別小さいテキストリンク */
.purpose_btn_small {
  align-items: center;
  display: flex;
  gap: 0 12px;
  justify-content: center;
  margin: 6px 0;
  text-decoration: none;
  height: 20px;
  width: 289px;
}

.purpose_btn_small:hover {
  color: #285943;
  text-decoration: underline;
}

.purpose_btn_small span {
  color: #285943;
  font-size: 14px;
}


/* リサイクルお役立ち情報 */
.info_bg {
  background-color: #ffefb0;
  padding: 0 0 15px; 
}
.info {
  display: block;
  margin: 0 auto;
  max-width: 925px;
  padding: 15px 0 10px;
}
.info_title {
  background-color: #BCA54A;
  color: #fff;
  font-size: 27px;
  font-weight: bold;
  margin: 0;
  padding: .3rem 0;
  text-align: center;
}
.info_title img {
  max-width: 24px;
  padding: 0 0 .25rem .4rem;
  vertical-align: middle;
}
.info_btn_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.info_btn {
  align-items: center;
  background-color: #fff;
  border-radius: 18px;
  display: flex;
  gap: 0 10px;
  margin: 8px;
  text-decoration: none;
  height: 65px;
  width: 215px;
}

.info_btn:hover {
  border: solid 1px #25947A;
  box-sizing: border-box;
  box-shadow: 1px 1px #fff, 1px -1px #fff, -1px 1px #fff, -1px -1px #fff;
  color: #26957b;
  text-decoration: underline;
}
.info_btn img {
  padding-left: 16px;
}
.info_btn span {
  color: #285943;
  font-size: 14px;
  font-weight: bold;
}

/* お役立ちの下 */
.list_link {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 900px;
  height: 60px;
}

.link_text {
  color: #198F72;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  text-decoration: none;
}

.link_text:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.link_text:before {
  content: "> ";
}


@media screen and (max-width: 968px) {
  .purpose_btn {
    width: 100%;
  }
  .info_btn {
    margin: 8px auto;
    width: 90%;
  }
}