#products {
  .products_container {
    max-width: 1000px;
    align-items: flex-start;

    aside.aside2 {
      width: 235px;
      order: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
      @media only screen and (max-width: 619px) {
        gap: 0;
        width: 100%;
      }
      > ul {
        display: flex;
        margin: 0;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: stretch;
        @media only screen and (max-width: 619px) {
          width: calc(100% / 1);
        }
        li {
          font-size: 120%;
          font-weight: bold;
          background-color: var(--color-gray1);
          color: white;
          position: relative;
          list-style: none;
          border: solid 2px var(--color-gray2);
          @media only screen and (max-width: 619px) {
            font-size: 100%;
            border: solid 1px var(--color-gray2);
          }
          a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            color: var(--color-black);
            text-decoration: none;
            @media only screen and (max-width: 619px) {
              color: var(--color-green2);
            }
            &:after {
              content: "";
              display: block;
              width: 7px;
              height: 7px;
              border-top: solid 2px var(--color-black);
              border-right: solid 2px var(--color-black);
              transform: rotate(45deg);
            }
          }
          &.active {
            background-color: var(--color-green1);
            a {
              color: white;
              &:after {
                border-top: solid 2px white;
                border-right: solid 2px white;
              }
            }
          }
        }
      }
      dl {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 20px;
        @media only screen and (max-width: 619px) {
          flex-direction: row;
          gap: 0;
        }
        > div {
          @media only screen and (max-width: 619px) {
            width: calc(100% / 2);
          }
        }
        > a {
          border: solid 1px;
          padding: 20px;
          font-size: 120%;
          color: #323232;
          font-weight: bold;
          text-decoration: none;
        }
      }
      #all {
        cursor: pointer;
        font-size: 120%;
        dt {
          font-weight: bold;
          padding: 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          position: relative;
          color: white;
          background-color: var(--color-gray2);
          &:after {
            content: "";
            display: block;
            width: 7px;
            height: 7px;
            border-top: solid 2px white;
            border-right: solid 2px white;
            transform: rotate(45deg);
          }
          @media only screen and (max-width: 619px) {
            font-size: 80%;
          }
          &.active {
            background-color: var(--color-green2);
            color: white;
            @media only screen and (max-width: 619px) {
              &:after {
                border-top: solid 2px white;
                border-right: solid 2px white;
              }
            }
          }
        }
      }
      #intro,
      #strength,
      #use,
      #func {
        cursor: pointer;
        font-size: 120%;
        dt {
          font-weight: bold;
          padding: 20px;
          background-color: var(--color-gray2);
          color: white;
          display: flex;
          justify-content: space-between;
          align-items: center;
          position: relative;
          @media only screen and (max-width: 619px) {
            font-size: 80%;
          }
          &:after {
            content: "";
            display: block;
            background-color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
          }
          &:before {
            content: "";
            display: block;
            background: linear-gradient(
              45deg,
              var(--color-gray2) 50%,
              transparent 50%
            );
            width: 10px;
            height: 10px;
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translate(-50%, -75%) rotate(-45deg);
          }
          &.toggleArrow {
            &:before {
              background: linear-gradient(
                45deg,
                var(--color-green2) 50%,
                transparent 50%
              );
              transform: translate(-50%, -25%) rotate(135deg);
            }
          }
        }
        dd {
          display: none;
          color: white;
          &.active {
            display: block;
            @media only screen and (max-width: 619px) {
              display: none;
            }
          }
          ul {
            li {
              margin-bottom: 1px;
              background-color: #afafaf;
              display: flex;
              justify-content: space-between;
              align-items: center;
              position: relative;
              padding: 10px;
              &.active {
                background-color: var(--color-gray2);
              }
              &:after {
                content: "";
                display: block;
                border-top: solid 2px white;
                border-right: solid 2px white;
                width: 7px;
                height: 7px;
                position: absolute;
                right: 10px;
                z-index: 2;
                transform: rotate(45deg);
              }
            }
            &.anc {
              li {
                padding: 0;
                a {
                  position: relative;
                  z-index: 2;
                  padding: 10px;
                  color: var(--color-white);
                  text-decoration: none;
                  width: 100%;
                }
              }
            }
          }
        }
        &.active {
          dt.active {
            background-color: var(--color-green2);
          }
          dd ul li.active {
            background-color: var(--color-green2);
          }
        }
      }
      #other {
        font-size: 120%;
        dt {
          font-weight: bold;
          padding: 10px;
          text-align: center;
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        @media only screen and (max-width: 619px) {
          cursor: pointer;
          dt {
            font-weight: bold;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            color: var(--color-green2);
            border: solid 2px var(--color-green2);
            border-left: none;
            &:after {
              content: "";
              display: block;
              width: 7px;
              height: 7px;
              border-top: solid 2px var(--color-green2);
              border-right: solid 2px var(--color-green2);
              transform: rotate(45deg);
            }
            &.active {
              color: white;
              background-color: var(--color-green2);
              &:after {
                border-top: solid 2px white;
                border-right: solid 2px white;
              }
            }
            @media only screen and (max-width: 619px) {
              font-size: 80%;
            }
          }
        }

        dd ul {
          margin: 0;
          padding: 10px 0;
          display: flex;
          flex-direction: column;
          gap: 10px;
          @media only screen and (max-width: 619px) {
            display: none;
          }
          li {
            padding: 2px 20px;
            list-style: none;
            display: flex;
            gap: 10px;
            a {
              color: var(--color-black);
              text-decoration: none;
              width: 100%;
              &:before {
                content: "-";
              }
            }
            &.active {
              background-color: #f9e7e9;
              a {
                font-weight: bold;
                color: #c30d23;
                &:before {
                  font-weight: bold;
                  color: #c30d23;
                }
              }
            }
          }
        }
        &.active {
          dt.active {
            @media only screen and (max-width: 619px) {
              color: white;
              background-color: var(--color-green2);
            }
          }
        }
      }
      .sp_data {
        width: 100%;
        display: none;
        @media only screen and (max-width: 619px) {
          display: block;
        }
        ul {
          display: flex;
          flex-wrap: wrap;
          gap: 0 20px;
          @media only screen and (max-width: 619px) {
            padding: 20px 0;
          }
          li {
            list-style: none;
            cursor: pointer;
            padding: 5px 0;
            display: flex;
            gap: 10px;
            &:before {
              content: "■";
              font-weight: bold;
            }
            a {
              color: var(--color-black);
              width: 100%;
              text-decoration: none;
            }
            &.active {
              color: #c30d23;
              font-weight: bold;
              a {
                color: inherit;
                font-weight: inherit;
                &:before {
                  color: inherit;
                  font-weight: inherit;
                }
              }
            }
          }
        }
      }
      #all {
        order: 0;
      }
      #use {
        order: 1;
      }
      #func {
        order: 2;
      }
      #other {
        order: 3;
      }
      #prod {
        font-size: 120%;
        dt {
          font-weight: bold;
          color: white;
          display: flex;
          justify-content: space-between;
          align-items: center;
          position: relative;
          background-color: var(--color-gray1);
          border: solid 2px var(--color-black);
          @media only screen and (max-width: 619px) {
            font-size: 80%;
            border: solid 1px var(--color-black);
          }
          a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            color: var(--color-black);
            text-decoration: none;
            width: 100%;
            @media only screen and (max-width: 619px) {
              color: var(--color-green2);
            }
            &:after {
              content: "";
              display: block;
              width: 7px;
              height: 7px;
              border-top: solid 2px var(--color-black);
              border-right: solid 2px var(--color-black);
              transform: rotate(45deg);
            }
          }
        }
      }
      .sp_data {
        order: 4;
      }
      @media only screen and (max-width: 619px) {
        #all {
          order: 0;
        }
        #use {
          order: 2;
        }
        #func {
          order: 3;
        }
        #other {
          order: 1;
        }
        .addr {
          order: 10;
        }
        .sp_data {
          order: 4;
        }
      }
      dt {
        border: solid 1px var(--color-gray2);
      }
      .addr {
        @media only screen and (max-width: 619px) {
          display: none;
        }
        padding: 20px 20px;
        > span {
          display: block;
          border: solid 1px;
          text-align: center;
          font-weight: bold;
          font-size: 100%;
          padding: 2px;
          margin-bottom: 10px;
          @media only screen and (max-width: 619px) {
            font-size: 100%;
            margin-bottom: 5px;
          }
        }
        p {
          display: flex;
          flex-wrap: wrap;
          font-size: 120%;
          flex-direction: column;
          @media only screen and (max-width: 619px) {
            flex-direction: row;
            font-size: 100%;
            gap: 10px;
          }
          &.tel {
            border-top: dashed 1px;
            margin-top: 10px;
            padding-top: 10px;
          }
        }
      }
    }
    article {
      position: relative;

      &.search {
        .ht_1 {
          margin-bottom: 30px;
        }
        .loading {
          text-align: center;
          padding: 50px 0;
        }
        .search_lists {
          display: flex;
          justify-content: center;
          flex-direction: column;
          gap: 20px;
          width: 600px;
          padding-bottom: 50px;
          margin: 0 auto auto;
          list-style: none;
          @media only screen and (max-width: 619px) {
            width: 100%;
          }
          li {
            display: none;
            background-color: var(--color-green0);
            padding: 20px;
            border-radius: 10px;
            position: relative;
            z-index: 1;
            overflow-y: hidden;
            @media only screen and (max-width: 619px) {
              padding: 10px;
            }
            &:after {
              content: "";
              display: block;
              width: 40px;
              height: 150px;
              background-color: var(--color-green2);
              position: absolute;
              top: 0;
              right: 0;
              @media only screen and (max-width: 619px) {
                width: 30px;
              }
            }
            a {
              position: relative;
              z-index: 2;
              display: flex;
              justify-content: space-between;
              align-items: center;
              gap: 20px;
              cursor: pointer;
              text-decoration: none;
              width: 100%;
              span {
                &.thumb {
                  img {
                    width: 150px;
                    @media only screen and (max-width: 619px) {
                      max-width: 100px;
                    }
                  }
                }
                &.name {
                  font-size: 120%;
                  font-weight: bold;
                  width: calc(100% - 150px - 30px);
                  @media only screen and (max-width: 619px) {
                    font-size: 100%;
                  }
                }
              }
              &:after {
                content: "";
                text-align: right;
                border-top: solid 3px white;
                border-right: solid 3px white;
                display: block;
                width: 12px;
                height: 12px;
                transform: translate(25%, 25%) scale(0.7, 1) rotate(45deg);
                @media only screen and (max-width: 619px) {
                  transform: translate(0%, 25%) scale(0.7, 1) rotate(45deg);
                }
              }
            }
          }
        }
      }
      .t2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: auto auto 0;
        gap: 30px;
        @media only screen and (max-width: 619px) {
          gap: 10px;
          margin-bottom: 50px;
        }
        li {
          position: relative;
          width: calc(100% / 2 - 15px);
          list-style: none;
          margin: 0;
          @media only screen and (max-width: 619px) {
            width: 100%;
          }
          a {
            display: block;
            text-decoration: none;
            position: relative;
            text-align: center;
            font-weight: bold;
            letter-spacing: 0.5rem;
            overflow: hidden;
            @media only screen and (max-width: 619px) {
              font-size: 80%;
            }
            img {
              display: block;
              width: 100%;
              height: auto;
              object-fit: cover;
              aspect-ratio: 3/1;
              position: relative;
              z-index: 1;
              transition: 0.5s transform ease;
            }
            &:before {
              content: "";
              display: block;
              width: 100%;
              height: 100%;
              aspect-ratio: 3/1;
              position: absolute;
              z-index: 2;
              background-color: rgba(0, 0, 0, 0.3);
            }
            span {
              position: relative;
              z-index: 3;
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              color: white;
              font-size: 140%;
              display: flex;
              flex-wrap: wrap;
              justify-content: center;
              flex-direction: column;
              align-items: center;
              gap: 10px;
              width: 100%;
              &:after {
                content: "VIEW MORE >";
                display: block;
                padding: 2px 20px;
                font-family: "DIN Engschrift";
                font-size: 100%;
                color: var(--color-green2);
                letter-spacing: 0.2rem;
                white-space: nowrap;
                background-color: rgba(255, 255, 255, 0.7);
                border: solid 1px rgba(255, 255, 255, 0.7);
                width: initial;
              }
            }
            &:hover {
              img {
                transform: scale(1.05);
              }
              span {
                &:after {
                  color: white;
                  background-color: var(--color-green2);
                  border: solid 1px white;
                }
              }
            }
          }
        }
      }

      /* 下線の見出し */
      .midashi {
        display: block;
        color: var(--color-green2);
        margin-bottom: 20px;
        padding-bottom: 10px;
        font-size: 1.3em;
        font-weight: bold;
        border-bottom: solid 1px black;
        letter-spacing: 0.5rem;
      }

      .komidashi {
        display: block;
        font-weight: bold;
        font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
          "メイリオ", Meiryo, sans-serif;
        font-size: 1.1em;
        padding-bottom: 15px;
        @media only screen and (max-width: 619px) {
          white-space: nowrap;
        }
      }

      .bold {
        font-weight: bold;
      }

      .black {
        color: black;
      }
    }
  }
}

/* 以下は詳細ページごとに切り分け  */
#products_rubber {
  /* トップページ */
  &.index {
    section {
      text-align: center;
      padding: 50px 0px;
      width: 900px;
      margin: auto;
      @media only screen and (max-width: 619px) {
        width: 100%;
      }
      ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        gap: 30px;
        @media only screen and (max-width: 619px) {
          gap: 10px;
        }
        li {
          width: calc(100% / 2 - 15px);
          list-style: none;
          margin: 0;
          overflow: hidden;
          @media only screen and (max-width: 619px) {
            width: 100%;
          }
          a {
            display: block;
            height: 100%;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            font-weight: bold;
            img {
              display: block;
              object-fit: cover;
              aspect-ratio: 5/2;
              position: relative;
              z-index: 1;
              width: 100%;
              height: auto;
              transition: 0.5s transform ease;
            }
            &:before {
              content: "";
              display: block;
              width: 100%;
              height: 100%;
              aspect-ratio: 5/2;
              position: absolute;
              top: 0;
              z-index: 2;
              background-color: rgba(0, 0, 0, 0.3);
            }
            span {
              position: relative;
              z-index: 3;
            }
            &:hover {
              img {
                transform: scale(1.05);
              }
            }
          }
        }
        &.t1 {
          li {
            a {
              span {
                padding: 10px 20px;
                background-color: var(--color-green2);
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                flex-direction: column;
                font-size: 140%;
                letter-spacing: 0.5rem;
                color: white;
                &:after {
                  content: "VIEW MORE >";
                  font-family: "DIN Engschrift";
                  font-size: 100%;
                  letter-spacing: 0.3rem;
                }
                @media only screen and (max-width: 619px) {
                  font-size: 100%;
                }
              }
            }
          }
        }
        &.t2,
        &.t3 {
          li {
            a {
              position: relative;
              span {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: white;
                font-size: 140%;
                letter-spacing: 0.5rem;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                flex-direction: column;
                gap: 10px;
                @media only screen and (max-width: 619px) {
                  font-size: 100%;
                }
                &:after {
                  content: "VIEW MORE >";
                  display: block;
                  width: 250px;
                  padding: 5px 20px;
                  font-family: "DIN Engschrift";
                  font-size: 100%;
                  letter-spacing: 0.2rem;
                  color: var(--color-green2);
                  background-color: rgba(255, 255, 255, 0.7);
                  border: solid 1px rgba(255, 255, 255, 0.7);
                  @media only screen and (max-width: 619px) {
                    max-width: 100%;
                  }
                }
              }
              &:hover {
                span {
                  &:after {
                    color: white;
                    border: solid 1px white;
                    background-color: var(--color-green2);
                  }
                }
              }
            }
          }
        }
        &.t3 {
          li {
            width: 100%;
            border: solid 1px;
            a {
              img {
                width: 100%;
                aspect-ratio: 4/1;
                @media only screen and (max-width: 619px) {
                  aspect-ratio: 2/1;
                }
              }
              &:before {
                aspect-ratio: 3/1;
              }
            }
          }
        }
      }
      h2 {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        margin-bottom: 30px;
        span {
          font-size: 140%;
          @media only screen and (max-width: 619px) {
            font-size: 100%;
          }
          &.font_dine {
            color: var(--color-green2);
            font-size: 200%;
            display: flex;
            flex-wrap: nowrap;
            justify-content: center;
            align-items: center;
            gap: 20px;
            @media only screen and (max-width: 619px) {
              font-size: 150%;
            }
            br {
              display: none;
              @media only screen and (max-width: 619px) {
                display: initial;
              }
            }
            &:before,
            &:after {
              content: "";
              display: block;
              width: 20px;
              height: 1px;
              background-color: var(--color-green2);
            }
          }
          + span {
            font-size: 80%;
            color: var(--color-green2);
            @media only screen and (max-width: 619px) {
              font-size: 70%;
            }
          }
        }
        &.h2_products {
          margin-bottom: 50px;
        }
      }
      .certain_range {
        border-top: solid 1px var(--color-green2);
        position: relative;
        @media only screen and (max-width: 619px) {
          padding-top: 50px;
        }
        &:before,
        &:after {
          content: "";
          display: block;
          width: 1px;
          height: 30px;
          background-color: var(--color-green2);
          @media only screen and (max-width: 619px) {
            position: absolute;
            top: 0px;
          }
        }
        &:after {
          position: absolute;
          top: 0;
          right: 0;
        }
        p {
          font-weight: bold;
          font-size: 150%;
          color: var(--color-green2);
          padding-bottom: 30px;
          @media only screen and (max-width: 619px) {
            font-size: 120%;
            text-align: left;
            padding: 0 20px 30px;
            br {
              display: none;
            }
          }
        }
      }
    }
  }

  /* シーリング材事業 */
  &.rubberseals {
    @media only screen and (max-width: 619px) {
      padding: 0 !important;
    }

    > div {
      @media only screen and (max-width: 619px) {
        padding: 0 20px;
      }
    }

    .exm {
      max-width: 700px;
      margin: auto;

      @media only screen and (max-width: 619px) {
        display: none;
      }

      > div {
        width: 700px;
      }
      .legend {
        display: inline-block;
        padding-bottom: 25px;

        span {
          color: #fc7c30;
          font-size: 1.5em;
        }
      }

      .komidashi {
        border-bottom: dotted gray 1px;
      }

      p {
        padding-top: 15px;
      }

      .car {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 20px;

        .img {
          position: relative;
          /*border: solid red 5px;*/
          width: 472px;
          min-width: 472px;
          filter: drop-shadow(2px 2px 4px gray);
          img {
            width: 100%;
          }
          span {
            position: absolute;
            right: 0;
            bottom: 0;
						transform: translate(-5px,-5px);
          }
        }

        > div {
          p {
            padding: 15px 0 0 10px !important;
          }
        }
      }

      .box {
        position: relative;
        padding-top: 30px;

        .facility {
          display: flex;
          justify-content: flex-end;
          align-items: start;
          gap: 20px;

          .img {
						position: relative;
            width: 260px;
						min-width: 260px;
            filter: drop-shadow(2px 2px 4px gray);
 span {
            position: absolute;
            right: 0;
            bottom: 0;
						transform: translate(-5px,-5px);
          }
          }

          > div {
            width: 352px;

            p {
              padding: 15px 0 0 10px !important;
            }
          }
        }

        .illust {
					position: relative;
          display: block;
          transform: translateY(-210px);
          margin-bottom: -210px;
          width: 100%;

					.text1 {
						position: absolute;
						left: 5px;
						bottom :65px;
					}

					.text2 {
						position: absolute;
						left: 39%;
						bottom :10px;
					}

					.text3 {
						position: absolute;
						right: 14%;
						bottom :13px;
						background-color:rgba(255, 255, 255, 0.4);
						text-shadow:1px 1px 0 white,-1px 1px 0 white,1px -1px 0 white,-1px -1px 0 white;
					}
        }

        .building {
          display: inline-block;
          width: 435px;

          p {
            /*padding-bottom: 30px;*/
						 padding: 15px 0 30px 10px !important;
          }
        }
      }
    }

    .exm2 {
      display: none;
      @media only screen and (max-width: 619px) {
        display: initial;
      }
      .legend {
        display: inline-block;
        span {
          color: #fc7c30;
          font-size: 1.5em;
        }
      }
      .komidashi {
        border-bottom: dotted 1px;
        padding-bottom: 5px !important;
        margin-bottom: 5px;
      }
      .car {
        position: relative;
        span {
          position: absolute;
          bottom: 0;
          right: 0;
          transform: translate(-30%, -30%);
        }
      }
      .facility {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-end;
        gap: 20px;
        position: relative;
        width: 80%;
        min-width: 250px;
        span {
          position: absolute;
          bottom: 0;
          right: 0;
          transform: translate(-60%, -60%);
        }
      }
      .building {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 10px 30px;
        span {
          &:nth-of-type(2) {
            transform: translateX(80%);
          }
        }
      }
    }

    .env {
      display: flex;
      align-items: flex-start;
      gap: 30px;
      @media only screen and (max-width: 619px) {
        flex-direction: column;
      }
      img {
        order: 2;
        @media only screen and (max-width: 619px) {
          width: 100%;
          order: 1;
        }
      }
      p {
        order: 1;
        @media only screen and (max-width: 619px) {
          order: 2;
        }
      }
    }
  }

  /* 床材・産業資材事業  */
  &.flooring_industrial_materials {
    .exm {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      gap: 30px;
      > div {
        display: flex;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
        @media only screen and (max-width: 619px) {
          flex-direction: column;
        }
        img {
          width: 30%;
          @media only screen and (max-width: 619px) {
            width: 100%;
          }
        }
        > div {
          width: 100%;
          .komidashi {
            border-bottom: dashed 1px;
          }
          p {
            padding-top: 10px;
          }
        }
      }
    }
    .env {
      display: flex;
      align-items: flex-start;
      gap: 30px;
      @media only screen and (max-width: 619px) {
        flex-direction: column;
      }
      img {
        order: 2;
        @media only screen and (max-width: 619px) {
          width: 100%;
          order: 1;
        }
      }
      p {
        order: 1;
        @media only screen and (max-width: 619px) {
          order: 2;
        }
      }
    }
  }

  /* メイン（製品画像とサマリー部分） */
  .main {
    padding-bottom: 60px;

    .img1 {
      display: block;
      width: 535px;
      margin: auto;
      padding: 0 0 25px 0;

      @media only screen and (max-width: 619px) {
        width: 100%;
      }
    }

    > span {
      display: block;
      padding: 0 0 25px 0;
      font-size: 1.6rem;
      color: var(--color-green2);
      font-weight: bold;
      letter-spacing: 0.3rem;
      text-align: center;
    }

    /* カタログ用の黒ボタン */
    .b_btn {
      display: block;
      position: relative;
      width: 395px;
      margin: auto;
      padding: 10px 20px;
      border-radius: 30px;
      background: #000;
      color: white;
      font-weight: bold;
      text-align: center;
      letter-spacing: 0.3rem;

      @media only screen and (max-width: 619px) {
        width: initial !important;
        max-width: 100% !important;
        padding: 10px 50px 10px 20px;
      }

      span {
        display: inline-block;
      }

      &:after {
        display: inline-block;
        content: "";
        position: absolute;
        top: 55%;
        right: 0;
        transform: translate(-30px, -50%);
        background-image: url(../images/products/plastics/bacteguard/arrow.png);
        background-size: 25px;
        background-repeat: no-repeat;
        width: 27px;
        height: 27px;
      }
    }
  }

  /* 特徴・機能 */
  .property {
    padding-bottom: 90px;

    > ul {
      display: flex;
      justify-content: start;
      flex-wrap: wrap;
      gap: 10px;
      margin-left: 0;
      padding-bottom: 20px;
      @media only screen and (max-width: 619px) {
        width: 100%;
        margin: auto;
      }

      @media only screen and (max-width: 370px) {
        justify-content: center;
      }

      li {
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100% / 5 - 28px);
        padding: 5px 10px;
        color: white;
        border-radius: 5px;
        list-style-type: none;
        background: var(--color-green2);
        text-align: center;

        @media only screen and (max-width: 619px) {
          width: calc(100% / 2 - 28px);
        }
      }
    }
  }

  /* 製品情報 */
  .product_info {
    dl {
      > div {
        padding-bottom: 40px;

        dt {
          padding-bottom: 30px;

          > div {
            padding-left: 1em;

            p {
              padding-bottom: 10px;
            }

            .note {
              /*font-size: 0.8em;*/
            }
          }
        }
      }
    }
  }

  /* 施工事例 */
  .works {
    padding: 0 0 95px 0 !important;
    display: block;

    ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 25px 0;
      margin-left: 0;

      @media only screen and (max-width: 619px) {
        gap: 30px 10px;
      }

      li {
        width: calc((100% - 40px) / 3);
        list-style-type: none;

        @media only screen and (max-width: 619px) {
          width: calc((100% - 10px) / 2) !important;
          /*min-width: 150px;*/
        }

        img {
          padding-bottom: 10px;

          @media only screen and (max-width: 619px) {
            padding-bottom: 5px !important;
          }
        }

        span {
          @media only screen and (max-width: 619px) {
            font-size: 0.8em;
          }
        }
      }
    }
  }

  /* ECサイト */
  .ec {
    padding: 0 0 95px 0 !important;

    ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-left: 0;
      gap: 10px;

      @media only screen and (max-width: 619px) {
      }

      li {
        width: calc(100% / 3 - 10px);
        list-style: none;

        @media only screen and (max-width: 619px) {
          width: 100%;
        }
        a {
          position: relative;
          display: block;
          background: var(--color-green2);
          padding: 20px;
          font-size: 1.2em;
          letter-spacing: 0.5rem;
          color: white;
          text-decoration: none;
          text-indent: -10px;

          @media only screen and (max-width: 619px) {
            text-indent: initial;
            font-size: 1em;
            padding: 20px;
            br {
              display: none;
            }
          }

          &:after {
            display: inline-block;
            content: "";
            position: absolute;
            top: 55%;
            right: 0;
            transform: translate(-20px, -50%);
            background-image: url(../images/products/rubber/arrow.png);
            background-size: 25px;
            background-repeat: no-repeat;
            width: 27px;
            height: 27px;
          }
        }
      }
    }
  }

  /* らくらくマット */
  &.rakuraku {
    @media only screen and (max-width: 619px) {
      padding: 0 !important;
    }

    > div {
      @media only screen and (max-width: 619px) {
        padding: 0 20px;
      }
    }

    .product_info {
      dl {
        > div {
          &.conts1 {
            dd {
              display: flex;
              justify-content: center;
              gap: 25px;
              div {
                display: block;
                width: 150px;
                text-align: center;
                @media only screen and (max-width: 619px) {
                  width: 100%;
                }
                img {
                  width: 100%;
                }
                span {
                  display: inline-block;
                }
              }
            }
          }

          &.conts2 {
            dd {
              display: flex;
              align-items: center;
              gap: 20px;

              @media only screen and (max-width: 619px) {
                flex-wrap: wrap;
              }

              > div {
                &.img1 {
                  width: 190px;
                  @media only screen and (max-width: 619px) {
                    width: calc(100% / 2 - 20px);
                  }
                }

                &.img2 {
                  width: 230px;
                  @media only screen and (max-width: 619px) {
                    width: calc(100% / 2);
                  }
                  > div {
                    position: relative;
                    display: block;
                    width: 170px;
                    border: solid 1px gray;
                    border-radius: 10px;
                    margin: 0 auto 20px auto;
                    padding: 15px 10px 10px 10px;

                    span {
                      position: absolute;
                      top: 0;
                      left: 50%;
                      transform: translate(-50%, -50%);
                      background: white;
                      font-weight: bold;
                    }
                  }
                }

                &.img3 {
                  width: 260px;
                  @media only screen and (max-width: 619px) {
                    width: 100%;
                  }
                  img {
                    @media only screen and (max-width: 619px) {
                      width: 260px;
                      display: block;
                      margin: auto;
                    }
                  }
                }
              }
            }
          }

          &.conts3 {
            dt {
              padding-bottom: 0 !important;
            }

            dd {
              .table_box {
                margin-bottom: 10px;

                @media only screen and (max-width: 619px) {
                  overflow-x: scroll;
                  max-width: 100%;
                }

                table {
                  width: 700px;
                  border-collapse: collapse;
                  border: 1px solid black;

                  tr {
                    text-align: center;
                    &:first-of-type {
                      border-bottom: 1px solid rgb(160 160 160);
                      background: var(--color-green0);
                    }
                    th,
                    td {
                      border: 1px solid rgb(160 160 160);
                      padding: 10px 20px;
                      text-align: center;
                    }

                    th {
                    }
                  }
                }
              }
            }
          }

          &:last-of-type {
            padding-bottom: 95px;
          }
        }
      }
    }
  }

  /* グラスマット */
  &.grass_mat {
    .property {
      p {
        padding-bottom: 30px;
      }

      > div {
        display: flex;
        gap: 30px;
        @media only screen and (max-width: 619px) {
          flex-wrap: wrap;
        }

        .img1 {
          width: 345px;

          @media only screen and (max-width: 619px) {
            width: 100%;
            max-width: 345px;
          }
        }

        .detail {
          border: solid 1px black;
          padding: 10px 20px;

          > span {
            display: inline-block;
            padding-bottom: 5px;
          }

          ul {
            margin-left: 0;

            li {
              list-style-type: none;
            }
          }
        }
      }
    }

    .product_info {
      dl {
        > div {
          padding-bottom: 60px;

          &.conts1 {
            dd {
              .conts_box {
                display: flex;
                align-items: center;
                gap: 20px;
                padding-bottom: 50px;
                @media only screen and (max-width: 619px) {
                  flex-wrap: wrap;
                  gap: 20px;
                }
                .img1 {
                  order: 1;
                  width: calc(100% / 3);
                  @media only screen and (max-width: 619px) {
                    width: calc(100% / 3 * 2 - 20px);
                  }
                  img {
                    width: 238px;
                    @media only screen and (max-width: 619px) {
                      width: 100%;
                    }
                  }
                }

                .img2 {
                  order: 2;
                  width: calc(100% / 3 * 1.5);
                  @media only screen and (max-width: 619px) {
                    order: 3;
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-wrap: wrap;
                  }
                  table {
                    th {
                      padding: 0;
                      white-space: nowrap;
                      padding: 0 10px;
                    }
                  }
                  > img {
                    max-width: 250px;
                    @media only screen and (max-width: 619px) {
                      width: 100%;
                    }
                  }
                }

                .img3 {
                  order: 3;
                  width: calc(100% / 3);
                  text-align: center;
                  max-width: 130px;
                  @media only screen and (max-width: 619px) {
                    order: 2;
                    width: calc(100% / 3 * 1 - 20px);
                  }
                }
              }
            }
          }

          &.conts2 {
            dt {
              padding: 0;
            }
            dd {
              display: flex;
              justify-content: center;
              gap: 25px;

              @media only screen and (max-width: 619px) {
                flex-wrap: wrap;
              }

              > div {
                width: 135px;
                text-align: center;

                @media only screen and (max-width: 619px) {
                  width: calc((100% - 50px) / 3);
                }

                img {
                  width: 100%;

                  @media only screen and (max-width: 619px) {
                    max-width: 135px;
                  }
                }

                span {
                  display: block;
                }
              }
            }
          }

          &.conts3 {
            dt {
            }

            dd {
              display: flex;
              justify-content: center;
              gap: 25px;

              img {
                width: 215px;

                @media only screen and (max-width: 619px) {
                }
              }
            }
          }

          &:last-of-type {
            padding-bottom: 95px;
          }
        }
      }
    }
  }

  /* スパイクマット */
  &.spike_mat {
    @media only screen and (max-width: 619px) {
      padding: 0 !important;
    }

    > div {
      @media only screen and (max-width: 619px) {
        padding: 0 20px;
      }
    }

    .product_info {
      dl {
        > div {
          padding-bottom: 35px;

          &.conts1 {
            dt {
              padding-bottom: 0 !important;
            }

            dd {
              @media only screen and (max-width: 619px) {
                overflow-x: scroll;
                max-width: 100%;
              }

              img {
                display: block;
                width: 700px;

                @media only screen and (max-width: 619px) {
                  max-width: initial;
                }
              }
            }
          }

          &.conts2 {
            dd {
              display: flex;
              justify-content: center;
              gap: 25px;

              > div {
                width: 150px;
                text-align: center;
                @media only screen and (max-width: 619px) {
                  /*width: 100%;*/
                  width: calc((100% - 20px) / 3);
                }
                img {
                }
              }
            }
          }

          &.conts3 {
            dt {
              padding-bottom: 0 !important;
            }

            dd {
              display: flex;
              justify-content: center;
              gap: 50px;

              @media only screen and (max-width: 619px) {
                flex-wrap: wrap;
                gap: 20px;
              }

              .img1 {
                width: 280px;

                @media only screen and (max-width: 619px) {
                  max-width: 280px;
                }
              }

              .img2 {
                width: 205px;

                @media only screen and (max-width: 619px) {
                  max-width: 205px;
                }
              }

              img {
                @media only screen and (max-width: 619px) {
                  width: calc((100% - 20px) / 2);
                }
              }
            }
          }

          &:last-of-type {
            padding-bottom: 95px;
          }
        }
      }
    }
  }

  /* DCマット */
  &.dc_mat {
    @media only screen and (max-width: 619px) {
      padding: 0 !important;
    }

    > div {
      @media only screen and (max-width: 619px) {
        padding: 0 20px;
      }
    }

    .property {
      img {
        width: 450px;

        @media only screen and (max-width: 619px) {
          width: 100%;
          max-width: 100%;
        }
      }
    }

    .product_info {
      dl {
        > div {
          padding-bottom: 60px;

          &.conts1 {
            dd {
              display: flex;
              justify-content: center;
              align-items: end;
              gap: 50px;

              @media only screen and (max-width: 619px) {
                flex-wrap: wrap;
                justify-content: center;
                gap: 50px 20px;
              }

              > div {
                span {
                  padding: 5px 20px;
                  border: solid 1px black;
                  display: inline-block;
                }

                &.img1 {
                  width: calc(100% / 4 * 2);
                  display: flex;
                  justify-content: center;
                  gap: 50px;
                  @media only screen and (max-width: 619px) {
                    width: 100%;
                  }
                  > div {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: center;
                    gap: 10px;
                    width: 50%;
                  }
                }

                &.img2 {
                  display: flex;
                  align-items: flex-start;
                  flex-wrap: wrap;
                  gap: 10px;
                  width: calc(100% / 3 * 1);
                  @media only screen and (max-width: 619px) {
                    width: 100%;
                    flex-direction: column;
                  }
                  img {
                    width: 100%;
                    max-width: 300px;
                  }
                }
              }
            }
          }

          &.conts2 {
            dt {
              padding-bottom: 0 !important;
            }
            dd {
              @media only screen and (max-width: 619px) {
                /*overflow-x: scroll;*/
                max-width: 100%;
              }

              img {
                width: 700px;

                @media only screen and (max-width: 619px) {
                  width: 700px !important;
                  max-width: initial;
                }
              }
            }
          }

          &.conts3 {
            dd {
              display: flex;
              justify-content: center;
              gap: 25px;
              @media only screen and (max-width: 619px) {
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 30px 25px;
              }
              > div {
                text-align: center;
                width: calc(100% / 6 - 25px);

                @media only screen and (max-width: 619px) {
                  width: calc(100% / 3 - 25px);
                }

                img {
                  display: block;

                  padding-bottom: 10px;
                }

                > span {
                  /*font-weight: bold;*/
                }
              }
            }
          }

          &:last-of-type {
            padding-bottom: 95px;
          }
        }
      }
    }
  }

  /* デュラフレックス　スポーツ */
  &.duraflex_sports {
    @media only screen and (max-width: 619px) {
      padding: 0 !important;
    }

    > div {
      @media only screen and (max-width: 619px) {
        padding: 0 20px;
      }
    }
    .product_info {
      dl {
        > div {
          &.conts1,
          &.conts2 {
            dt {
              padding-bottom: 0 !important;

              .komidashi {
                @media only screen and (max-width: 619px) {
                  white-space: initial !important;
                  /*border: solid red 5px;*/
                }
              }
            }

            dd {
              display: flex;
              align-items: flex-start;
              gap: 20px;

              @media only screen and (max-width: 619px) {
                flex-wrap: wrap;
              }

              .img1 {
                display: block;
                width: 180px;

                @media only screen and (max-width: 619px) {
                  width: 100%;
                  max-width: 180px;
                }
              }

              .table_box {
                margin-bottom: 10px;

                @media only screen and (max-width: 619px) {
                  overflow-x: scroll;
                  max-width: 100%;
                }

                table {
                  width: 500px;
                  border-collapse: collapse;
                  border: 1px solid black;

                  tr {
                    text-align: center;

                    &:first-of-type {
                      border-bottom: 1px solid rgb(160 160 160);
                      background: var(--color-green0);
                    }

                    th,
                    td {
                      border: 1px solid rgb(160 160 160);
                      padding: 10px;
                      text-align: center;
                    }

                    th {
                    }
                  }
                }
              }
            }
          }
          &.conts3 {
            dd {
              display: flex;
              align-items: center;
              gap: 20px;

              @media only screen and (max-width: 619px) {
                flex-wrap: wrap;
              }

              > div {
                /*@media only screen and (max-width: 619px) {
									display: flex;
									flex-wrap: nowrap;
									justify-content: center;
								}*/
                > div {
                  padding-bottom: 20px;

                  img {
                    display: block;
                    width: 180px;
                    height: auto;

                    &:first-of-type {
                    }
                  }
                }
              }

              .table_box {
                margin-bottom: 10px;

                @media only screen and (max-width: 619px) {
                  overflow-x: scroll;
                  max-width: 100%;
                }

                table {
                  width: 500px;
                  border-collapse: collapse;
                  border: 1px solid black;

                  tr {
                    text-align: center;

                    &:first-of-type {
                      border-bottom: 1px solid rgb(160 160 160);
                      background: var(--color-green0);
                    }

                    th,
                    td {
                      border: 1px solid rgb(160 160 160);
                      padding: 15px 10px;
                      text-align: center;
                    }

                    th {
                      white-space: nowrap;
                    }
                  }
                }
              }
            }
          }

          &.conts4 {
            p {
              padding-bottom: 10px;
            }

            .note {
              /*font-size: 0.8em;*/
            }
          }

          &:last-of-type {
            padding-bottom: 95px;
          }
        }
      }
    }
  }

  /* デュラフレックス　ロードパル */
  &.duraflex_roadpal {
    @media only screen and (max-width: 619px) {
      padding: 0 !important;
    }

    > div {
      @media only screen and (max-width: 619px) {
        padding: 0 20px;
      }
    }
    .product_info {
      dl {
        > div {
          &.conts1,
          &.conts2 {
            dd {
              display: flex;
              flex-wrap: wrap;
              gap: 30px;
              @media only screen and (max-width: 619px) {
                gap: 10px;
              }
              > div {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-items: flex-start;
                width: calc(100% / 2 - 30px);
                @media only screen and (max-width: 619px) {
                  width: 100%;
                  img {
                    max-width: 200px;
                  }
                }
                > div {
                  width: 100%;
                }
              }
            }
          }

          &.conts1 {
            dd {
              > div {
                > div {
                  padding: 0 0 0 60px;
                }
                > img {
                  width: 50%;
                  @media only screen and (max-width: 619px) {
                    width: 100%;
                  }
                }
                table {
                  .single {
                    position: relative;
                    &:before {
                      content: "";
                      position: absolute;
                      width: 10px;
                      height: 1px;
                      display: block;
                      border-top: solid 1px;
                      top: 12px;
                      left: -10px;
                    }
                  }
                  .wide {
                    position: relative;
                    vertical-align: middle;
                    &:before {
                      content: "";
                      position: absolute;
                      width: 10px;
                      height: 45px;
                      display: block;
                      border: solid 1px;
                      border-left: none;
                      top: 12px;
                      left: -10px;
                    }
                  }
                }
              }
            }
          }

          &.conts2 {
            dd {
              align-items: flex-start;
              gap: 30px;
              > div {
                > div {
                  width: 60%;
                  margin: auto;
                }
              }
              img {
                width: 60%;
                margin: auto;
              }
            }
          }

          &.conts3 {
            dd {
              ul {
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
                list-style: none;
                li {
                  width: calc(100% / 5 - 30px);
                  text-align: center;
                  @media only screen and (max-width: 619px) {
                    width: calc(100% / 3 - 30px);
                  }
                }
              }
            }
          }
        }
      }
    }

    .works {
      ul {
        @media only screen and (max-width: 619px) {
          gap: 10px !important;
        }

        li {
          @media only screen and (max-width: 619px) {
            width: calc((100% - 20px) / 2) !important;
          }
        }
      }
    }
  }

  /* デュラフレックス　パブリック */
  &.duraflex_public {
    @media only screen and (max-width: 619px) {
      padding: 0 !important;
    }

    > div {
      @media only screen and (max-width: 619px) {
        padding: 0 20px;
      }
    }

    .product_info {
      dl {
        > div {
          padding-bottom: 50px;

          &.conts1,
          &.conts2 {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            dt {
              min-width: 90px;
              padding-bottom: 0 !important;
              width: 100px;
              text-indent: -1.5rem;
              margin-left: 1.5rem;
              @media only screen and (max-width: 619px) {
                width: 100%;
                br {
                  display: none;
                }
              }
            }
            dd {
              width: calc(100% - 100px - 50px);
              @media only screen and (max-width: 619px) {
                width: 100%;
              }
            }
          }

          &.conts3 {
            dt {
              padding-bottom: 0 !important;
            }

            dd {
              /*@media only screen and (max-width: 619px) {
								overflow-x: scroll;
								max-width: 100%;
							}*/

              .table_box {
                margin-bottom: 10px;

                @media only screen and (max-width: 619px) {
                  overflow-x: scroll;
                  max-width: 100%;
                }

                table {
                  width: 700px;
                  border-collapse: collapse;
                  border: 1px solid black;

                  tr {
                    text-align: center;

                    &:first-of-type {
                      border-bottom: 1px solid rgb(160 160 160);
                      background: var(--color-green0);
                    }

                    th,
                    td {
                      position: relative;
                      border: 1px solid rgb(160 160 160);
                      padding: 10px;
                      text-align: center;
                    }

                    th {
                    }

                    td {
											vertical-align: middle;
                      &.img {
                        width: 211px;

                        img {
                          display: block;
                          position: absolute;
                          top: 50%;
                          left: 50%;
                          transform: translate(-50%, -50%);
                        }
                      }
                    }
                  }
                }
              }
            }
          }

          &.conts4 {
            dt {
              p {
                padding-bottom: 10px;
              }

              .note {
                /*font-size: 0.8em;*/
              }
            }

            dd {
              display: flex;
              justify-content: center;
              gap: 25px;
              padding-bottom: 95px;

              > div {
                text-align: center;

                img {
                  width: 155px;
                }
              }

              img {
                display: block;
                width: 365px;
                margin: auto;

                @media only screen and (max-width: 619px) {
                  width: 100%;
                  max-width: 365px;
                }
              }
            }
          }
        }
      }
    }
  }

  /* 製品紹介2（その他の製品写真部分） */
  .main2 {
    padding-bottom: 60px;
    .img1 {
      display: block;
      /*width: 700px;*/
      margin: auto;

      @media only screen and (max-width: 619px) {
        width: 100%;
      }
    }
  }

  /* 製品の特徴 */
  .point {
    padding-bottom: 120px;
    > div {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 30px;

      @media only screen and (max-width: 619px) {
        flex-wrap: wrap;
      }
      p {
        line-height: 2.3em;
        @media only screen and (max-width: 619px) {
          width: 100%;
        }
      }

      img {
        width: 294px;

        @media only screen and (max-width: 619px) {
          width: 100%;
          max-width: 294px;
        }
      }
    }
  }

  /* 住宅用ガスケット */
  &.gasket {
  }

  /* 住宅用遮音材 */
  &.sound_insulation {
    .main2 {
      img {
        width: 450px !important;

        @media only screen and (max-width: 619px) {
          width: 100%;
          max-width: 100%;
        }
      }
    }
  }

  /* その他シール材 */
  &.sheet_material {
    .main2 {
      img {
        width: 450px !important;

        @media only screen and (max-width: 619px) {
          width: 100%;
          max-width: 100%;
        }
      }
    }
  }

  /* 点字ブロック */
  &.braille_block {
    .main2 {
      img {
        width: 450px !important;

        @media only screen and (max-width: 619px) {
          width: 100%;
          max-width: 100%;
        }
      }
    }
  }

  /* 鉄道向け製品 */
  &.railway_suppilies {
    .point {
      > div {
        display: block !important;

        > div {
          display: flex;
          justify-content: center;

          @media only screen and (max-width: 619px) {
            flex-wrap: wrap;
          }
          img {
            width: calc(100% / 2);
            @media only screen and (max-width: 619px) {
              min-width: 100%;
            }
          }
        }
      }
    }
  }
}
