/* mini reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
  background: #f8f7f5;
}

.header {
  text-align: center;
  padding: 80px 20px;
  background: #eeeaee;
}


section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

h1 {
  color: #a3a8c9;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #d6a8b8;
}

.works {
  background: #ffffff;
}

/* Worksカード化 */
.work-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.work-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(163,168,201,0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(163,168,201,0.28);
}

.work-item h3 {
  font-size: 15px;
  color: #333;
  margin-top: 16px;
}

.work-item p {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.header-icon {
  width: 72px;
  margin-bottom: 20px;
  opacity: 0.75;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.about-icon {
  width: 120px;
  border-radius: 50%;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 6px 16px rgba(214,168,184,0.35);
}

@media screen and (max-width: 768px) {
  .about-inner {
    flex-direction: column;
    text-align: center;
  }
}

.work-item img {
  margin-bottom: 32px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .work-list {
    grid-template-columns: 1fr;
  }
}

.footer {
  text-align: center;
  padding: 24px 0;
}

#contact {
  text-align: center;
  padding: 80px 20px;
}


#contact a {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  border-radius: 999px;
  background: #eeeaee;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

#contact a:hover {
  background: #e1dde1;
}

.contact-button {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  border-radius: 999px;
  background: #eeeaee;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  .contact-button {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  border-radius: 999px;
  background: #eeeaee;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-button:hover {
  background: #e1dde1;
  transform: translateY(-2px);
}

}

.contact-button:hover {
  background: #e1dde1;
  transform: translateY(-2px);
}

.header .contact-button {
  margin-top: 32px;
}

.contact-button {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  background-color: #ffffff;
  color: #a3a8c9;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(163,168,201,0.25);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-button:hover {
  background-color: #e7e5ef;
  transform: translateY(-2px);
}

.header {
  text-align: center;
}

#contact {
  text-align: center;
}

.footer {
  text-align: center;
  padding: 40px 20px;
}
