.ddrum-wrapper {
  font-size: 16px;
  line-height: 1.7;
  --red:#E02B20;
  --space:30px;
}

.ddrum-wrapper img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  object-fit: contain;
}

.ddrum-wrapper a {
  color:var(--red);
}

.ddrum-wrapper p + p {
  margin-top:1em;
}

.ddrum-wrapper > * + * {
  margin-top:50px;
}

.ddrum-wrapper h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 1px solid black;
  font-family: arial;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
  line-height: 1.4;
}

.ddrum-wrapper h2 span {
  font-size:1.5em;
  color:var(--red);
}

.ddrum-wrapper h2 + p {
  display: flex;
  justify-content: center;
}

.ddrum-header {
    display: grid;
    gap: var(--space);
}

.ddrum-header > div:last-child {
  padding:var(--space);
}

.ddrum-header > div:last-child > p:first-child {
  text-align:center;
  font-size:20px;
  color: var(--red);
  font-weight: bold;
}

.ddrum-cate-top {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../img/ddrum_about.jpg) center /100%;
}

.ddrum-cate-top > div:first-child {
  width:30%;
}

.ddrum-cate-top > div:last-child {
  flex:1;
  margin: var(--space);
}

ul.ddrum-products {
    display: flex;
    flex-wrap: wrap;
    gap: 50px var(--space);
    margin: 50px 0 17px;
}

ul.ddrum-products li {
  flex:1 1 40%;
  display:flex;
  justify-content:center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}

ul.ddrum-products li + li {
}

ul.ddrum-products li h3 {
    font-weight:bold;
    font-size:20px;
    margin-bottom:.5em;
}

ul.ddrum-products li h3:not(:has( a)),
ul.ddrum-products li h3 a {
  color: var(--red);
  text-align: center;
  border-bottom: 1px solid var(--red);
}

ul.ddrum-products li h3 a {
  display:block;
}


ul.ddrum-products li div:first-child {
    flex:1;
}

ul.ddrum-products li div:last-child {
    display: flex;gap: 20px;
}

ul.ddrum-products li div:last-child a {
    width: 300px;
    text-align: center;
}

ul.ddrum-products li div:last-child img {
    margin-bottom: .5em;
}

.ddrum-trigger ul.ddrum-products li div:last-child img {
    max-height: 250px;
}


.ddrum-snare ul.ddrum-products li div:last-child img {
    max-height: 160px;
}

.ddrum-products2 {
  display:flex;
  justify-content:flex-end;
}

.ddrum-products2 > div {
    display:flex;
    justify-content:center;
    width: 50%;
}

.ddrum-products2 li {
    list-style-type: disc;
    margin-left: 1.5em;
}

.ddrum-products2 li + li {
  margin-top:.3em;
}

.ddrum-large-link a {
    display: block;
    border: 1px solid var(--red);
    text-align: center;
    width: 450px;
    margin: 60px auto 80px;
    padding: 15px;
    box-sizing: border-box;
    color:var(--red);
    font-size:20px;
    transition:.2s;
}

.ddrum-large-link a:hover {
  background:var(--red);
  color:white;
  text-decoration:none;
}

.ddrum-others img {
    width: 690px;
    margin: var(--space) auto;
    display: block;
}


@media (max-width: 700px){
  .ddrum-wrapper {
    --space: 20px;
    font-size: 14px;
  }

  .ddrum-wrapper > * + * {
    margin-top: 30px;
  }

  .ddrum-wrapper h2 {
      font-size: 26px;
  }

  .ddrum-header > div:last-child > p:first-child {
      font-size: 17px;
      word-break: auto-phrase;
  }

  .ddrum-cate-top {
      flex-direction: column;
  }

  .ddrum-wrapper h2 {
      flex-direction: column;
      font-size: 18px;
      gap: 0;
      padding: 15px 10px;
      margin-bottom: 15px;
      word-break: auto-phrase;
      background: #e6e6e6;
      border-bottom: none;
  }

  .ddrum-cate-top > div:first-child {
      width: 100%;
      aspect-ratio: 10/8;
      overflow: hidden;
      display: grid;
      justify-content: center;
      align-content: center;
  }

  ul.ddrum-products {
      margin: calc(1.5 * var(--space)) var(--space) 10px;
      gap: 25px var(--space);
      flex-direction: column;
  }

  ul.ddrum-products li h3 {
      font-size: 16px;
      line-height: 1.4;
      padding-bottom: 0px;
  }

  ul.ddrum-products li h3:not(:has( a)), ul.ddrum-products li h3 a {
      padding-bottom: 10px;
      word-break: auto-phrase;
  }

  .ddrum-products2 > div {
      width: 100%;
  }

  .ddrum-large-link a {
      width: auto;
      margin: calc(2 * var(--space)) var(--space);
      font-size: 16px;
  }

  .ddrum-snare ul.ddrum-products li div:last-child img {
      max-height: 110px;
  }

  ul.ddrum-products li div:last-child a {
      width: auto;
      text-decoration: underline;
  }

  ul.ddrum-products li div:last-child img {
      max-height: 200px;
  }

  .ddrum-header {
      gap: 0;
      margin-bottom: -20px;
  }

  .ddrum-wrapper h2 + p {
      padding: 0 var(--space);
  }

}