.hero .container {
  align-items: center;
  padding: 128px 10%;
  gap: 80px;
}

.hero-title-area {
  max-width: 600px;
  margin-bottom: 40px;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.47;
}

h2 {
  margin-bottom: 16px;
}

.hero-image {
  max-width: 524px;
}

.clierl-problem {
  height: 340px;
  margin-bottom: 128px;
}

.problem-image {
  width: 50%;
}

.problem-list {
  width: 50%;
  padding: 40px 24px;
  background-color: var(--color-accent);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
}

.problem-list h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.problem-list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.problem-list ul li p {
  position: relative;
  margin-left: 32px;
}

.problem-list ul li p::before {
  position: absolute;
  top: 0;
  left: -32px;
  content: '';
  width: 32px;
  height: 32px;
  background-image: url('../../img/check.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.clierl-detail {
  max-width: 800px;
  margin: 0 auto;
}

.clierl-description {
  margin-bottom: 48px;
}

.clierl-description h2 {
  margin-bottom: 40px;
}

.clierl-logo {
  max-width: 400px;
  margin: 0 auto 48px;
}

.clierl h2 {
  text-align: center;
}

.clierl-use h4 {
  margin-bottom:16px;
}

.clierl-use ul {
  gap: 16px;
}

.clierl-use ul img {
  aspect-ratio: 3 / 2;
  height: auto;
}

.clierl-use-content ul {
  margin-top: 8px;
}

.clierl-use-content ul li {
  list-style: disc;
  margin-left: 16px;
}

.performance-title {
  max-width: 800px;
  margin: 0 auto 128px;
}

.performance h2 {
  text-align: center;
}

.performance-content {
  max-width: 800px;
  margin: 0 auto;
}

.performance-content ul {
  padding: 16px;
  width: 100%;
  max-width: fit-content;
  background-color: var(--color-main);
  color: var(--color-white);
  position: relative;
}

.performance-content ul.element-02 {
  margin-left: auto;
}

.performance-content li {
  list-style: disc;
  margin-inline: 24px;
}

.performance-content ul::after {
  position: absolute;
  content: '';
  height: 1px;
  background-color: var(--color-main);
  z-index: -1;
}

.performance-content ul.element-01::after {
  bottom: -80px;
  right: -60px;
  width: 300px;
  transform:rotate(45deg);
}
.performance-content ul.element-02::after {
  bottom: 100px;
  right: 156px;
  width: 100px;
  transform:rotate(50deg);
}

.performance-image {
  max-width: 360px;
  margin: 40px auto;
  background-color: var(--color-base);
}

.type-title {
  width: fit-content;
  max-width: 800px;
  margin: 0 auto 80px;
}

.type h2,
.type h3 {
  text-align: center;
}

.type h3 {
  margin-bottom: 32px;
  font-size: 1.5rem;
}

.type h4 {
  color: var(--color-main);
}

.type-features img {
  max-width: 400px;
}

.type ul {
  gap: 16px;
}

.type-features {
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  max-width: 800px;
}

.type-features div {
  flex: 1;
}

.type-thickness img {
  max-width: 800px;
  margin: 0 auto 40px;
}


.value h2 {
  text-align: center;
  text-wrap: balance;
}

.value p {
  text-align: center;
}

.value img {
  max-width: 800px;
  margin: 80px auto 0;
}

.contact .container {
  max-width: 800px;
  margin: auto;
}

.contact .container .content > div {
  text-align: center;
}

.contact a {
  color: blue;
  text-decoration: underline;
}


@media (max-width: 1080px) {
  .hero .container {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .hero .container {
    padding: 128px 40px;
  }

  .hero-image {
    max-width: 324px;
  }

  .clierl-problem {
    flex-direction: column;
    height: auto;
  }

  .problem-image {
    width: 100%;
  }

  .problem-list {
    width: 100%;
  }

  .clierl-use-content {
    flex-direction: column;
  }

  .clierl-use-content ul {
    margin-top: 0;
}

  .clierl-use-content > li {
    display: flex;
    gap: 24px;
  }

  .clierl-use-content li img {
    width: 33%;
  }

  .type-features {
    flex-direction: column;
    gap: 80px;
  }

  .value img {
    max-width: 100%;
    height: auto;
  }

}



@media (max-width: 480px) {
  .hero .container {
    padding: 32px 16px;
    gap: 40px;
  }

  h1 {
    font-size: 1.7rem;
    line-height: 1.65;
  }

  .hero-image {
    max-width: 220px;
  }

  .performance-content ul.element-01::after {
    right: 16px;
  }

  .performance-content ul.element-02::after {
    right: 16px;
  }

  .value h2 {
    text-align: left;
    text-wrap: initial;
  }

  .value p {
    text-align: left;
  }

  .contact .container .content > div {
    text-align: left;
  }

}
