WEB PARTS

ダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

ダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

ダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

Nice!
COPY

ダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

ダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

ダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

ダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキストダミーテキスト

Nice!
COPY
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.about {
  background: #dde5da;
}

.about .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}

.about .inner .item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 1fr;
      grid-template-columns: 25% 1fr;
  margin-bottom: 80px;
}

@media only screen and (max-width: 600px) {
  .about .inner .item {
    -ms-grid-columns: 15% 1fr;
        grid-template-columns: 15% 1fr;
    margin-bottom: 40px;
  }
}

.about .inner .item .img_box {
  background: #eee;
  width: 100%;
  height: 100%;
}

.about .inner .item .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 10px 10px 20px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 20px -10px rgba(0, 0, 0, 0.2);
}

.about .inner .item .txt_box {
  padding: 40px;
}

@media only screen and (max-width: 600px) {
  .about .inner .item .txt_box {
    padding: 20px;
  }
}

.about .inner .item .txt_box h2 img {
  width: 80%;
}

@media only screen and (max-width: 600px) {
  .about .inner .item .txt_box h2 img {
    width: 100%;
  }
}

.about .inner .item .txt_box h3 {
  padding: 2em 0 0.5em;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: #e05a61;
}

@media only screen and (max-width: 600px) {
  .about .inner .item .txt_box h3 {
    font-size: 20px;
  }
}

.about .inner .item .txt_box p {
  color: #0b0d0d;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0.5em;
}

@media only screen and (max-width: 600px) {
  .about .inner .item .txt_box p {
    font-size: 15px;
  }
}

.about .inner ul.img_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 600px) {
  .about .inner ul.img_list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.about .inner ul.img_list li img {
  width: 100%;
  -webkit-box-shadow: 10px 10px 20px -10px rgba(0, 0, 0, 0.2);
          box-shadow: 10px 10px 20px -10px rgba(0, 0, 0, 0.2);
}
/*# sourceMappingURL=style.css.map */
Nice!
COPY
* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

.about {
  background: #dde5da;
  .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
    .item {
      display: grid;
      grid-template-columns: 25% 1fr;
      margin-bottom: 80px;
      @media only screen and (max-width: 600px) {
        grid-template-columns: 15% 1fr;
        margin-bottom: 40px;
      }
      .img_box {
        background: #eee;
        width: 100%;
        height: 100%;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          box-shadow: 10px 10px 20px -10px rgba(#000, 0.2);
        }
      }
      .txt_box {
        padding: 40px;
        @media only screen and (max-width: 600px) {
          padding: 20px;
        }
        h2 {
          img {
            width: 80%;
            @media only screen and (max-width: 600px) {
              width: 100%;
            }
          }
        }
        h3 {
          padding: 2em 0 0.5em;
          font-size: 30px;
          font-weight: 700;
          line-height: 1.4;
          color: #e05a61;
          @media only screen and (max-width: 600px) {
            font-size: 20px;
          }
        }
        p {
          color: #0b0d0d;
          font-weight: 600;
          font-size: 18px;
          margin-bottom: 0.5em;
          @media only screen and (max-width: 600px) {
            font-size: 15px;
          }
        }
      }
    }
    ul.img_list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      @media only screen and (max-width: 600px) {
        grid-template-columns: repeat(2, 1fr);
      }
      li {
        img {
          width: 100%;
          box-shadow: 10px 10px 20px -10px rgba(#000, 0.2);
        }
      }
    }
  }
}
Nice!
COPY