@charset "utf-8";
/*=================================
　index.htmlのcss
===================================*/
.environment-img {
  object-position: 50% 20%;
}

/*=================================
　h1　見出しデザイン
===================================*/
h1 {
  margin-top: 6rem;
  grid-column: 2 / 3;
  position: relative;
  padding: 1.5rem;
  text-align: center;
}

h1 span {
  margin-top: 0.6rem;
  display: block;
}

h1:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: var(--accent-red);
}

/*=================================
　environmental_guideline.htmlのcss
===================================*/
.graph-paper-design {
  /*方眼紙風*/
  padding: 1rem 0.5rem; /*内側余白*/
  background-image: linear-gradient(0deg, transparent 19px, var(--border-light) 20px),
    linear-gradient(90deg, transparent 19px, var(--border-light) 20px);
  background-size: 20px 20px;
}

/*アコーディオン全体*/
.environment-accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}

ul.environment-accordion-area li:hover {
  color: var(--text-black) !important;
}

.environment-accordion-area li {
  margin: 10px 0;
}

.environment-accordion-area section {
  border: 1px solid var(--border-light);
}

/*アコーディオンタイトル*/
.environment-accordion-area .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}

/*アイコンの＋と×*/
.environment-accordion-area .title::before,
.environment-accordion-area .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--text-black);
}

.environment-accordion-area .title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}

.environment-accordion-area .title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.environment-accordion-area .title.close::before {
  transform: rotate(45deg);
}

.environment-accordion-area .title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.environment-accordion-area .box {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

.pos-top-10::before {
  top: 20px !important;
}

.creation-time {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.revision-time {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.section-content.fadeUpTrigger.justify-items_left {
  justify-items: left;
}

.sign {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: -1rem;
  justify-content: flex-end;
}

@media (max-width: 575px) {
  .creation-time {
    align-items: flex-end;
  }

  .sign {
    flex-direction: column;
  }
}

.sign img {
  max-width: 240px;
}

/*=================================
　テーブルcss
===================================*/
table.commendation th,
table.commendation td {
  vertical-align: middle;
}

table.commendation th {
  padding: 20px 8px !important;
  background: var(--bg-gray-light);
}

table.commendation td {
  padding: 20px 48px !important;
  text-align: left;
}

table.commendation th {
  width: 35%;
}

td.year-td {
  width: 20%;
  background: var(--bg-gray-light);
}

td.award-td {
  width: 45%;
}

@media screen and (max-width: 991px) {
  table.commendation th {
    width: 100%;
    display: inline-block;
  }

  td.year-td {
    width: 40%;
    display: inline-block;
  }

  td.award-td {
    width: 60%;
    display: inline-block;
  }
}

@media screen and (max-width: 575px) {
  table.commendation th {
    width: 100%;
    display: inline-block;
  }

  td.year-td {
    width: 100%;
    text-align: center !important;
    display: inline-block;
  }

  td.award-td {
    width: 100%;
    text-align: center !important;
    display: inline-block;
  }
}

/*=================================
　environmental_work.htmlのcss
===================================*/
.environment-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 16px;
}

.green-curtains-img {
  object-fit: cover;
  height: 320px;
}

.dss-building-zoom-img {
  object-fit: cover;
  width: 100%;
  height: 320px;
}

.dss-building-pull-img {
  object-fit: cover;
  width: 100%;
  height: 320px;
}

.environment-img-grid img,
.freon-img,
.environment-presentation-img {
  border-radius: 45px;
}

.freon-img,
.environment-presentation-img {
  height: 320px;
  object-fit: cover;
}

ol.blue-list {
  counter-reset: number; /*数字をリセット*/
  list-style-type: none !important; /*数字を一旦消す*/
  padding: 0.5em;
  background: #f5faff;
}

ol.blue-list > li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

ol.blue-list > li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #5c9ee7;
  color: white;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-weight: bold;
  font-size: 0.9375rem;
  border-radius: 50%;
  left: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  line-height: 1.5625rem;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

ol.blue-list p {
  margin-bottom: 0;
  padding-left: 0.8rem;
}

.goya_blue-box {
  padding: 0.5rem 1rem;
  border: double 5px #4ec4d3;
}

/*=================================
　goyaグリッドのcss
===================================*/
.goya {
  display: grid;
  grid-template:
    "logo . head head head . ." 100px
    ". . . . . . ." 16px
    "p p p p p . img1" auto
    ". . . . . . img1" 32px
    ". . . . . . img1" auto
    "blue-box blue-box blue-box blue-box blue-box . img1" auto
    ". . . . . . ." 32px
    "img2 img2 img2 . img3 . img4" auto
    / auto 16px auto 16px auto 16px 240px;
}

.goya::before {
  content: "";
  grid-area: logo;
  background-image: url(../img/environment/2654223.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 140px;
  height: 100px;
}

.goya h2 {
  grid-area: head;
  align-self: center;
}

.goya p {
  grid-area: p;
  align-self: center;
}

.goya_blue-box {
  grid-area: blue-box;
}

.goya_img1 {
  grid-area: img1;
}

.goya_img2 {
  grid-area: img2;
}

.goya_img3 {
  grid-area: img3;
}

.goya_img4 {
  grid-area: img4;
}

@media (max-width: 767px) {
  .goya {
    grid-template:
      "logo . head" auto
      ". . ." 16px
      "p p p" auto
      ". . ." 16px
      "blue-box blue-box blue-box" auto
      ". . ." 16px
      "img1 img1 img1" auto
      ". . ." 16px
      "img2 img2 img2" auto
      ". . ." 16px
      "img3 img3 img3" auto
      ". . ." 16px
      "img4 img4 img4" auto
      / 100px 16px 1fr;
    align-items: center;
  }

  .goya::before {
    width: 100px;
    height: 80px;
  }

  .goya_img2 {
    justify-self: center;
  }

  .goya_img3 {
    justify-self: center;
  }

  .goya_img4 {
    justify-self: center;
  }
}

/*=================================
　淀川2工場清掃グリッドのcss
===================================*/
.yodogawa {
  display: grid;
  grid-template:
    "head head head head head head head" auto
    ". . . . . . ." 16px
    "before . clean . after . garbage" auto
    "before-img1 before-arrow1 clean-img clean-arrow after-img1 after-arrow1 garbage-img" auto
    ". . . . . . garbage-img" 16px
    "before-img2 before-arrow2 before-arrow2 before-arrow2 after-img2 after-arrow2 garbage-img" auto
    ". . . . . . ." 32px
    "himawari himawari himawari himawari himawari himawari himawari" auto
    / 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: center;
}

.yodogawa::before {
  content: "";
  grid-area: himawari;
  background-image: url(../img/environment/25362302.png);
  background-repeat: no-repeat;
  background-size: 100%;
  height: 160px;
  background-position: center;
}

.yodogawa .head {
  grid-area: head;
  display: grid;
  grid-auto-flow: column;
  column-gap: 16px;
  grid-template-columns: 140px auto;
  align-items: center;
}

.clean-before {
  grid-area: before;
  justify-self: center;
}

.clean-before-img1 {
  grid-area: before-img1;
  display: grid;
}

.arrow {
  display: inline-block;
  background: #ff0000;
}

.short-arrow {
  width: 50px;
  height: 73.5px;
  clip-path: polygon(
    0 31%,
    26.5% 31%,
    26.5% 0,
    100% 50%,
    26.5% 100%,
    26.5% 69%,
    0 69%
  );
}

.long-arrow {
  width: 150px;
  height: 73.5px;
  clip-path: polygon(
    0 31%,
    75.5% 31%,
    75.5% 0,
    100% 50%,
    75.5% 100%,
    75.5% 69%,
    0 69%
  );
}

.before-arrow1 {
  grid-area: before-arrow1;
}

.before-arrow2 {
  grid-area: before-arrow2;
  justify-self: center;
}

.clean-arrow {
  grid-area: clean-arrow;
}

.after-arrow1 {
  grid-area: after-arrow1;
}

.after-arrow2 {
  grid-area: after-arrow2;
}

.clean-before-img2 {
  grid-area: before-img2;
}

.clean {
  grid-area: clean;
  justify-self: center;
}

.clean-img {
  grid-area: clean-img;
}

.clean-after {
  grid-area: after;
  justify-self: center;
}

.clean-after-img1 {
  grid-area: after-img1;
}

.clean-after-img2 {
  grid-area: after-img2;
}

.garbage {
  grid-area: garbage;
  justify-self: center;
}

.garbage-img {
  grid-area: garbage-img;
}

@media (max-width: 767px) {
  .yodogawa {
    grid-template:
      "head head head" auto
      ". . ." 16px
      "before before before" auto
      ". . ." 16px
      "before-img1 . before-img2" auto
      "before-arrow1 . ." 32px
      "clean clean clean" auto
      ". . ." 16px
      "clean-img . before-arrow2" auto
      "clean-arrow . before-arrow2" 32px
      "after after after" auto
      ". . ." 16px
      "after-img1 . after-img2" auto
      "after-arrow1 . after-arrow2" 32px
      "garbage garbage garbage" auto
      ". . ." 16px
      "garbage-img garbage-img garbage-img" auto
      ". . ." 32px
      "himawari himawari himawari" auto
      / 1fr 32px 1fr;
    align-items: center;
    justify-items: center;
  }

  .yodogawa .head {
    grid-template-columns: 100px auto;
  }

  .short-arrow {
    width: 73.5px;
    height: 50px;
    clip-path: polygon(
      0 26.5%,
      31% 26.5%,
      31% 0,
      69% 0,
      69% 26.5%,
      100% 26.5%,
      50% 100%
    );
  }

  .long-arrow {
    width: 73.5px;
    height: 150px;
    clip-path: polygon(
      0 75.5%,
      31% 75.5%,
      31% 0,
      69% 0,
      69% 75.5%,
      100% 75.5%,
      50% 100%
    );
  }

  .yodogawa::before {
    width: 100%;
    height: 100px;
  }
}

@media (max-width: 575px) {
  .yodogawa::before {
    height: 50px;
  }
}

/*=================================
　6/19地域清掃グリッドのcss
===================================*/
.local {
  display: grid;
  grid-template:
    "houki . head head head head head" auto
    ". . . . . . ." 32px
    "cleanup1 cleanup1 cleanup1 . cleanup2 . cleanup3" auto
    ". . . . . . ." 32px
    "throw . local-results local-results local-results local-results local-results" auto
    / auto 32px auto 32px auto 32px auto;
}

.local > h2 {
  grid-area: head;
  align-self: center;
}

.local::before {
  content: "";
  grid-area: houki;
  background-image: url(../img/environment/282313.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 140px;
  height: 180px;
  background-position: center;
}

.local::after {
  content: "";
  grid-area: throw;
  background-image: url(../img/environment/369298.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 140px;
  height: 180px;
  background-position: center;
}

.community-cleanupimg1 {
  grid-area: cleanup1;
}

.community-cleanupimg2 {
  grid-area: cleanup2;
}

.community-cleanupimg3 {
  grid-area: cleanup3;
}

.local-results {
  grid-area: local-results;
  background-color: #ffffcc;
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
}

.local-results h2 {
  grid-area: local-results;
  color: #ff9900;
  align-self: center;
  justify-self: center;
}

@media (max-width: 767px) {
  .local {
    grid-template:
      "houki . head" auto
      ". . ." 16px
      "cleanup1 cleanup1 cleanup1" auto
      ". . ." 16px
      "cleanup2 cleanup2 cleanup2" auto
      ". . ." 16px
      "cleanup3 cleanup3 cleanup3" auto
      ". . ." 16px
      "local-results local-results local-results" auto
      / auto 16px auto;
    justify-items: center;
  }

  .local::before {
    width: 100px;
  }

  .local::after {
    display: none;
  }
}

/*=================================
　6/26地域清掃グリッドのcss
===================================*/
.local626 {
  display: grid;
  grid-template:
    "local626-text local626-text local626-text local626-text local626-text" auto
    "local626-p local626-p local626-p . ." auto
    ". . . . ." 32px
    "weeding2 . weeding3 . weeding4" auto
    / 1fr 32px 1fr 32px 1fr;
}

.local626-text {
  grid-area: local626-text;
  display: grid;
  grid-template:
    "sprout . head" auto
    / 140px 32px 1fr;
}

.local626-text h2 {
  grid-area: head;
  align-self: center;
}

.local626 p {
  grid-area: local626-p;
}

.sprout {
  grid-area: sprout;
}

.weeding-img2 {
  width: 100%;
  grid-area: weeding2;
}

.weeding-img3 {
  width: 100%;
  grid-area: weeding3;
}

.weeding-img4 {
  width: 100%;
  grid-area: weeding4;
}

@media (max-width: 767px) {
  .local626 {
    grid-template:
      "local626-text local626-text local626-text" auto
      ". . ." 16px
      "local626-p local626-p local626-p" auto
      ". . ." 16px
      "weeding2 weeding2 weeding2" auto
      ". . ." 16px
      "weeding3 weeding3 weeding3" auto
      ". . ." 16px
      "weeding4 weeding4 weeding4" auto
      / 1fr 32px 1fr;
  }

  .local626-text {
    grid-template:
      "sprout . head" auto
      / 100px 32px 1fr;
  }

  .local626::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .local626::before {
    height: 50px;
  }
}

/*=================================
　摂津市環境基金グリッドのcss
===================================*/
.environment-fund {
  display: grid;
  grid-auto-flow: row;
  row-gap: 32px;
}

.environment-fund-img {
  justify-self: center;
  display: grid;
  grid-auto-flow: column;
  column-gap: 32px;
}

.environment-fund-img img {
  width: 120px;
  align-self: center;
}

.environment-fund-hp {
  justify-self: center;
}
