@charset "utf-8";

/*==============================================
| 共通指定
==============================================*/
html {
  font-size: 62.5%;
}

body {
  background: #fff;
  font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #111;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

dl {
  margin: 0;
}

a,
a:hover {
  text-decoration: none;
  color: #111;
  transition: all .2s ease;
}

a img {
  transition: all .2s ease;
}

a:hover img {
  opacity: .7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/*==============================================
| レイアウト共通
==============================================*/
/* .wrapper-all {
  padding-bottom: 92px;
} */

.main-wrapper {
  overflow: hidden;
}

.common-sec {
  position: relative;
  padding: 60px 15px 80px 15px;
}

.contents-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contents-inner.narrow {
  max-width: 1080px;
}

.contents-inner>div:nth-child(n+2),
.contents-inner>p:nth-child(n+2) {
  margin-top: 40px;
}

@media print,
(min-width: 768px) {
  .common-sec {
    padding: 80px 15px 100px 15px;
  }

  .contents-inner>div:nth-child(n+2),
  .contents-inner>p:nth-child(n+2) {
    margin-top: 60px;
  }

}

/*==============================================
| テキスト共通
==============================================*/
h2,
h3 {
  font-weight: bold;
}

.sec-title {
  position: relative;
  padding: 0 0 54px 0;
  margin: 0 0 40px 0;
  font-weight: bold;
  font-size: 2.8rem;
  text-align: center;
}

.sec-title::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/*セクション別*/
.about-sec .sec-title {
  color: #61B500;
}

.about-sec .sec-title::before {
  content: url(../images/dots-green.svg);
}

.aim-sec .sec-title {
  color: #FBB03B;
}

.aim-sec .sec-title::before {
  content: url(../images/dots-yellow.svg);
}

@media print,
(min-width: 768px) {
  .sec-title {
    padding: 0 0 60px 0;
    margin: 0 0 60px 0;
  }
}

/*==============================================
| 共通パーツ
==============================================*/
.comment-box h3 {
  padding: 10px 15px;
  margin: 0;
  color: #fff;
  border-radius: 8px 8px 0 0;
}

.comment-box p {
  padding: 10px 15px;
  border: 1px solid #61B500;
  background: #fff;
  border-radius: 0 0 8px 8px;
}

.about-sec .comment-box h3 {
  background: #61B500;
}

/*セクション別*/
.aim-sec p {
  border-color: #FBB03B;
}

.aim-sec .comment-box h3 {
  background: #FBB03B;
}

@media print,
(min-width: 768px) {
  .comment-box h3 {
    padding: 10px 20px;
  }

  .comment-box p {
    padding: 20px;
  }
}

.related-link-button a {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 20px 10px 0;
  border-top: 1px solid #091336;
  border-bottom: 1px solid #091336;
  color: #091336;
  font-weight: bold;
}

.related-link-button a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #091336;
  border-right: 1px solid #091336;
}


/*==============================================
| リンク
==============================================*/
.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24
}

.external-link {
  position: relative;
  display: inline-block;
  padding: 0 0 0 1.4em;
}

.external-link::before {
  font-family: "Material Symbols Outlined";
  content: "\e89e";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}

/*==============================================
| リスト
==============================================*/
.common-list li {
  position: relative;
  padding: 0 0 0 1em;
}

.common-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 50%;
  background: #091336;
}

.common-list li:nth-child(n+2) {
  margin: 4px 0 0 0;
}

.caution-list li {
  padding: 0 0 0 1.2em;
  color: #D11515;
}

.caution-list li::before {
  content: "※";
  background: none;
  top: 0;
}

/*==============================================
| メインビジュアル
==============================================*/
.mv-sec {
  text-align: center;
}

h1 {
  margin: 0;
}

.mv-sec img {
  width: 100%;
}

/*==============================================
| ページナビ
==============================================*/
.nav-sec {
  padding: 0 15px;
  background: #E2F2D1;
}

.nav-sec nav {
  position: relative;
  margin-top: -10px;
  padding: 15px;
  background: #fff;
  border: 3px solid #fcc800;
  border-radius: 8px;
}

.nav-sec nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-sec nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #707070;
  text-decoration: underline;
}

.nav-sec nav ul li a img {
  padding: 0 0 0 4px;
  width: 24px;
}

@media screen and (max-width: 767px) {
  .nav-sec nav ul li {
    width: 100%;
  }

  .nav-sec nav ul li:nth-child(n+2) {
    margin: 10px 0 0 0;
  }

}

@media print,
(min-width: 768px) {
  .nav-sec nav {
    position: relative;
    margin-top: -16px;
  }

  .nav-sec nav ul li {
    width: 23.5%;
  }

  .nav-sec nav ul li:nth-child(n+2) {
    margin: 0 0 0 1%;
  }

  .nav-sec nav ul li a {
    letter-spacing: -.03em;
  }

}


/*==============================================
| ケミリサSENDAIとは
==============================================*/
.about-sec {
  background: #E2F2D1;
}

.about-pj {
  text-align: center;
}

.pj-name {
  display: inline-block;
  width: 100%;
  max-width: 580px;
  padding: 10px 10px 6px 10px;
  border-radius: 8px;
  background: #fff;
}

.about-pj>p {
  margin: 20px 0 0 0;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  /* .about-sec {
    padding-top: 100px;
  } */
}

@media print,
(min-width: 768px) {
  /* .about-sec {
    padding-top: 100px;
  } */

  .pj-name {
    padding: 16px 10px 12px 10px;
  }

  .about-pj>p {
    font-size: 2.4rem;
  }
}

/*==============================================
| アンバサダー
==============================================*/
.ambassador-box {
  padding-top: 60px;
  border-top: 1px solid #61B500;
}

.ambassador-box>div:nth-child(n+4) {
  margin: 30px 0 0 0;
}

.ambassador-box h3 {
  position: relative;
  margin: 0 0 30px 0;
  padding: 0 0 0 14px;
  font-size: 2rem;
}

.ambassador-box h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #61B500;
}

@media print,
(min-width: 768px) {
  .ambassador-box h3 {
    font-size: 2.4rem;
  }

  .ambassador-box h3::before {
    height: 24px;
    top: 4px;
  }
}

.ambassador-box h4 {
  margin: 50px 0 20px 0;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
}

@media print,
(min-width: 768px) {
  .ambassador-box h4 {
    font-size: 2.8rem;
  }
}

.ambassador-photo {
  text-align: center;
}

.ambassador-photo img {
  border-radius: 8px;
}

.ambassador-profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 15px;
  background: #fff;
  border-radius: 8px;
}

.ambassador-profile h5 {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  color: #61B500;
  font-weight: bold;
}

.ambassador-profile h5 span {
  font-size: 70%;
}

@media screen and (max-width: 767px) {
  .ambassador-profile>div {
    width: 100%;
  }

  .ambassador-profile>div:nth-child(n+2) {
    margin: 20px 0 0 0;
  }

  .ambassador-profile p {
    font-size: 1.4rem;
    line-height: 1.5;
  }

}

@media print,
(min-width: 768px) {

  .ambassador-profile {
    padding: 30px 40px;
  }

  .ambassador-profile>div {
    width: 48%;
    position: relative;
  }

  .ambassador-profile>div:first-child::before {
    content: "";
    display: block;
    width: 4%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -4%;
    border-right: 2px dotted #61B500;
  }

  .ambassador-profile h5 {
    font-size: 2rem;
  }
}

/*==============================================
| プラスチックの完全循環
==============================================*/
.recycle-sec {
  padding-top: 80px;
  background: url(../images/bg-stadium.png), linear-gradient(180deg, transparent 0%, rgba(152, 242, 255, .3) 100%);
  background-repeat: no-repeat, no-repeat;
  background-size: contain, cover;
}

.recycle-sec h2 {
  margin: 0 0 40px 0;
  text-align: center;
}

.recycle-message {
  font-weight: bold;
  font-size: 2rem;
  /* line-height: 1.4; */
}

.contents-inner>div.recycle-block {
  margin-top: 60px;
  padding: 30px 15px;
  background: rgba(255, 255, 255, .9);
  border-radius: 10px;
}

.recycle-block>div {
  max-width: 1080px;
  margin: 0 auto;
}

.recycle-block>div:nth-of-type(n+2) {
  margin-top: 40px;
}

.recycle-figure {
  max-width: 720px;
  margin: 0 auto;
}

.recycle-block h3 {
  position: relative;
  margin: 0 0 30px 0;
  padding: 0 0 0 14px;
  font-size: 2rem;
}

.recycle-block h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 0;
  background: #61B500;
}

.recycle-block p {
  margin: 10px 0;
}

.marker {
  font-weight: bold;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(252, 200, 0, .4) 60%, rgba(252, 200, 0, .4) 100%);
}

@media screen and (max-width: 767px) {
  .recycle-sec {
    background-size: 1100px, cover;
    background-position: top left;
  }
}

@media print,
(min-width: 768px) {
  .recycle-sec {
    padding-top: 140px;
  }

  .recycle-sec h2 {
    margin: 0 0 60px 0;
  }

  .recycle-message {
    font-size: 3.2rem;
  }

  .contents-inner>div.recycle-block {
    margin-top: 80px;
    padding: 60px 40px;
  }

  .recycle-block>div:nth-of-type(n+2) {
    margin-top: 60px;
  }

  .recycle-block h3 {
    font-size: 2.4rem;
  }

  .recycle-block h3::before {
    height: 24px;
    top: 4px;
  }
}

@media print,
(min-width: 1200px) {
  .recycle-message {
    text-align: center;
  }
}

.recycle-target>div:nth-child(n+2) {
  margin: 40px 0 0 0;
}

.recycle-target>div {
  position: relative;
  padding: 20px 15px;
  border: 2px solid #EF0008;
  border-radius: 10px;
}

.recycle-target h4 {
  position: absolute;
  top: -12px;
  left: 8px;
  font-weight: bold;
  font-size: 1.8rem;
}

.recycle-target h4 span {
  padding: 0 4px;
  background: #fff;
}

.recycle-target .recycle-ng h4 {
  color: #EF0008;
}

.recycle-target ul {
  margin: 30px 0 0 0;
}

.recycle-target ul li:nth-child(n+2) {
  margin: 30px 0 0 0;
}

.recycle-target li h5 {
  position: relative;
  padding: 0 0 0 30px;
  font-weight: bold;
  font-size: 2rem;
}

.recycle-target li h5::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 2px;
  left: 0;
  background: url(../images/icon-ng.svg) no-repeat center center/contain;
}

@media print,
(min-width: 768px) {
  .recycle-target>div {
    padding: 40px 30px;
  }

  .recycle-target h4 {
    left: 26px;
    font-size: 2rem;
  }

  .recycle-target ul {
    margin: 40px 0 0 0;
  }

  .recycle-target ul li:nth-child(n+2) {
    margin: 40px 0 0 0;
  }

  .recycle-target li h5 {
    padding: 0 0 0 40px;
    font-size: 2.8rem;
  }

  .recycle-target li h5::before {
    width: 32px;
    height: 32px;
    top: 2px;
  }
}

/*ベガフーズ*/
.vegafoods-list {
  margin: 30px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.vegafoods-list li {
  display: flex;
  align-items: center;
}

.vegafoods-list li:nth-child(n+2) {
  margin: 8px 0 0 0;
}

.vegafoods-list li span:first-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  margin: 0 4px 0 0;
  background: #a57360;
  color: #fff;
  border-radius: 50%;
}

.vegafoods-list li span:nth-of-type(2) {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .vegafoods-list li {
    width: 49%;
  }

  .vegafoods-list li:nth-child(n+2) {
    margin: 8px 0 0 0;
  }

  .vegafoods-list li span {
    font-size: 1.5rem;
  }

  .vegafoods-list li span:nth-of-type(2) {
    letter-spacing: -.03em;
  }
}

@media print,
(min-width: 768px) {
  .vegafoods-list li {
    width: 23.5%;
  }

  .vegafoods-list li:nth-child(n+5) {
    margin: 10px 0 0 0;
  }

  .vegafoods-list li span:nth-of-type(2) {
    font-size: 1.8rem;
  }

  .vegafoods-list li span:first-of-type {
    width: 24px;
    height: 24px;
    margin: 0 8px 0 0;
  }
}


/*==============================================
| ありたい姿
==============================================*/
.aim-sec {
  background: #FFF4CC;
}

.aim-block {
  padding: 20px 15px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}

.aim-block img {
  width: 100%;
  max-width: 720px;
}

.aim-message {
  font-weight: bold;
  font-size: 1.8rem;
}

@media print,
(min-width: 768px) {
  .aim-message {
    font-size: 2.4rem;
  }
}

/*==============================================
| プロジェクトパートナー
==============================================*/
.partner-sec {
  background: #f9f9f9;
}

.partner-sec h2 {
  margin: 0 0 30px 0;
  text-align: center;
  font-size: 1.8rem;
}

.partner-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.partner-list::before,
.partner-list::after {
  content: "";
  display: block;
  height: 0;
}

.partner-list::before {
  order: 1;
}

.partner-list li {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.partner-list li a {
  display: block;
}

.partner-list li a.no-link {
  pointer-events: none;
}

@media screen and (max-width: 767px) {

  .partner-list li,
  .partner-list::before,
  .partner-list::after {
    width: 48%;
  }

  .partner-list li:nth-child(n+3) {
    margin: 10px 0 0 0;
  }
}

@media print,
(min-width: 768px) {
  .partner-sec h2 {
    margin: 0 0 40px 0;
    font-size: 2.4rem;
  }

  .partner-list li,
  .partner-list::before,
  .partner-list::after {
    width: 24%;
  }

  .partner-list li:nth-child(n+5) {
    margin: 20px 0 0 0;
  }
}

/*==============================================
| お問い合わせ
==============================================*/
.contact-sec {
  background: #ECEDEE;
}

.contact-sec h2 {
  text-align: center;
}

.contact-block {
  padding: 30px 15px;
  max-width: 960px;
  border-radius: 10px;
  background: #fff;
}

.contact-block h3 {
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  font-size: 1.8rem;
  border-bottom: 1px solid #C1C6C8;
}

.contact-block p:nth-of-type(n+2) {
  margin: 10px 0 0 0;
}

@media print,
(min-width: 1200px) {
  .contact-block {
    margin: 60px auto 0 auto;
    padding: 30px 40px;
  }

  .contact-block h3 {
    font-size: 2.2rem;
  }
}


/*==============================================
| フッター
==============================================*/
footer {
  padding: 40px 0;
  background: #FBB03B;
}

.footer-inner {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1200px;
}

footer .button-box {
  margin: 0;
}

footer .button-box a {
  color: #fff;
  border-color: #fff;
}

footer .button-box a::before {
  border-color: #fff;
}

footer small {
  display: block;
  text-align: center;
  color: #fff;
}

.emb-box {
  margin: 30px 0 0 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  footer .button-box>div:nth-of-type(n+2) a {
    border-top: none;
  }
}

/*==============================================
| 固定ボタン
==============================================*/

/*トップに戻るボタン*/
.button-top {
  position: fixed;
  bottom: 60px;
  right: 10px;
  z-index: 6;
}

.button-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  opacity: .9;
}

@media print,
(min-width: 768px) {
  .button-top {
    right: 3%;
  }

  .button-top a {
    width: 60px;
    height: 60px;
  }

}