@charset "utf-8";

#mainvisual .content h1 {
  font-size: 2rem;
}

#mainvisual .content h1 span {
  font-size: 1rem;
}

/* コンセプト */
#concept {
  background: #fff;
  background-image: url(../images/monochrome01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}
#concept .concept-box {
  margin: 0 auto;
  padding: 32px;
  background: #7b7b7b41;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 10px;
}

#concept .products-title p,
#concept .products-title h2 {
  color: #fff;
}

#concept h3 {
  text-align: center;
  color: #fff;
}
#concept p {
  margin-top: 40px;
  color: #fff;
}

/* about-私について- */
#about {
  background: #ecece6;
  padding: 80px 0;
}

#about p {
  margin-bottom: 32px;
}

#about h3 {
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 16px;
}

#about h3 span {
  font-size: 0.8rem;
}

#about .name {
  display: flex;
  justify-content: center;
  gap: 32px;
}

#about .name .img-box,
#about .name .name-box {
  width: 50%;
}

#about .name .img-box {
  text-align: end;
}

#about .name img {
  width: 300px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

#about .name .name-box {
  padding: 32px;
}

#about .profile-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 1rem;
}

#about .profile-table th,
#about .profile-table td {
  padding: 20px 15px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: top;
}

#about .profile-table th {
  width: 140px;
  font-weight: 600;
  white-space: nowrap;
}

.products-title {
  text-align: center;
  margin-bottom: 60px;
}

.products-title p {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  color: #2c2c2c;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.products-title p::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #2c2c2c;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.products-title p {
  font-size: 1rem;
  color: #666;
  letter-spacing: 0.05em;
}

.products-title {
  text-align: center;
  margin-bottom: 60px;
}

.products-title p {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.products-title h2 {
  font-size: 1rem;
  font-weight: normal;
  color: #555;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.about-img {
  width: 40%;
}

.about-img img {
  width: 100%;
  border-radius: 10px;
}

.about-text {
  width: 60%;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.about-text h3 span {
  font-size: 1rem;
}

.about-text p {
  line-height: 2;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #concept p {
    margin-top: 24px;
  }
  #about .profile-table th,
  #about .profile-table td {
    padding: 16px 0px;
  }

  #about .profile-table th {
    width: 120px;
  }

  .about-content {
    flex-direction: column;
  }

  .about-img,
  .about-text {
    width: 100%;
  }

  #about .name {
    flex-direction: column;
    padding: 0 20px;
  }

  #about .name .img-box,
  #about .name .name-box {
    width: 100%;
  }

  #about .name .img-box {
    text-align: center;
  }

  #about .name .name-box {
    padding: 32px 0;
  }
}

/* --- SKILL --- */
#skill {
  padding: 80px 0;
  background-color: #f7f7f7;
}

#skill .products-title h2,
#skill .products-title p {
  color: #333;
}

#skill .products-title h2::after {
  background-color: #333;
}
/* .skill h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.skill p {
  line-height: 1.8;
} */

.skill-container {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 0 20px;
}

.skill-list,
.skill-chart {
  width: 50%;
}

.skill-list .skill-item {
  margin-bottom: 25px;
}

.skill-list h3,
.skill-chart h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ddd;
}
.skill-chart h3 span {
  font-size: 0.9rem;
}

.skill-list p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.skill-chart ul {
  list-style: none;
  padding-top: 10px;
}

.skill-chart li {
  margin-bottom: 20px;
}

.skill-chart .skill-name {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.skill-chart .bar-container {
  width: 100%;
  height: 22px;
  background-color: #e0e0e0;
  border-radius: 11px;
  overflow: hidden;
}

.skill-chart .bar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  border-radius: 11px;
  width: 0;
  transition: width 1.5s 0.3s ease-out;
}

.products-title {
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .skill-container {
    flex-direction: column;
    gap: 50px;
  }

  .skill-list,
  .skill-chart {
    width: 100%;
  }

  .skill-list .skill-item {
    margin-bottom: 16px;
  }
}
