@charset "UTF-8";
/**************************
    Datails ページ専用スタイル
***************************/
/* --- ファーストビュー --- */
.detail-fv {
  background-color: rgba(239, 195, 189, 0.08);
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid rgba(239, 195, 189, 0.5);
}
.detail-fv .breadcrumb-list {
  padding-top: 0;
  width: 100%;
  flex-basis: 100%;
  font-size: 0.82rem;
}
.detail-fv__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.detail-fv__info {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.detail-fv__category {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-terracotta);
}
.detail-fv__title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-choco);
  line-height: 1.2;
  margin: 0;
}
.detail-fv__subtitle {
  font-size: 0.9rem;
  color: var(--color-choco-lt);
  line-height: 1.6;
  margin: 0;
}
.detail-fv__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.2rem;
}
.detail-fv__meta span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-choco-lt);
  background-color: rgba(200, 172, 172, 0.12);
  border: 1px solid rgba(200, 172, 172, 0.4);
  border-radius: 2px;
  padding: 0.18rem 0.55rem;
}
.detail-fv__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-terracotta);
  text-decoration: none;
  border-bottom: 1.5px solid var(--color-terracotta);
  padding-bottom: 2px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.3rem;
  transition: gap 0.25s ease, opacity 0.25s ease;
}
.detail-fv__link:hover {
  opacity: 0.65;
  gap: 0.75rem;
}
.detail-fv__link i {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}
.detail-fv__link:hover i {
  transform: translateX(3px);
}
.detail-fv__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 2px 8px rgba(91, 74, 70, 0.08), 0 8px 24px rgba(91, 74, 70, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.detail-fv__image--banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  border: 1px solid rgba(200, 172, 172, 0.25);
  padding: 1.5rem;
}
.detail-fv__image--banner img {
  max-width: 660px;
  width: 100%;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .detail-fv {
    padding: 3.5rem 0 3rem;
  }
  .detail-fv:not(.detail-fv--banner) .detail-fv__inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 3.5rem;
  }
  .detail-fv__info {
    gap: 0.9rem;
    flex: 1;
    min-width: 0;
  }
  .detail-fv__title {
    font-size: 2.6rem;
  }
  .detail-fv__image {
    flex: 1;
    min-width: 0;
  }
}
@media (min-width: 1100px) {
  .detail-fv {
    padding: 4.5rem 0 4rem;
  }
  .detail-fv__title {
    font-size: 3rem;
  }
}
/* --- メインコンテンツ全体 --- */
.container {
  width: min(92%, 1166px);
  margin: 0 auto;
}

.work-details {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  max-width: 1166px;
  margin: 0;
}

/* --- 各セクション --- */
.detail-section {
  padding-bottom: 2.5rem;
}
.detail-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.detail-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  position: relative;
  padding-left: 1.5rem;
}
.detail-section h2::before {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 0;
  width: 0;
  height: 0;
  border-left: solid 13px transparent;
  border-bottom: solid 13px var(--color-peach);
}
.detail-section h2::after {
  position: absolute;
  content: "";
  bottom: -4px;
  left: 8px;
  width: calc(100% - 8px);
  border-bottom: solid 3px var(--color-peach);
}
.detail-section h4 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-choco);
  padding-left: 0.7rem;
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
  border-left: 3px solid var(--color-peach);
}
.detail-section h4:first-child {
  margin-top: 0;
}

.detail-content {
  line-height: 1.85;
  padding: 0 0 0 0.8rem;
}
.detail-content p {
  margin-bottom: 0.7rem;
  padding-left: 0.4rem;
  font-size: 0.93rem;
}

.project-info {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
}
.project-info dt {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-choco);
  padding: 0.55rem 0;
  border-bottom: 1px dotted rgba(200, 172, 172, 0.45);
}
.project-info dd {
  font-size: 0.9rem;
  padding: 0.55rem 0 0.55rem 0.8rem;
  border-bottom: 1px dotted rgba(200, 172, 172, 0.45);
  margin: 0;
}
.project-info dt:last-of-type,
.project-info dd:last-of-type {
  border-bottom: none;
}

.tools-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tools-list li {
  margin-bottom: 0.3rem;
  font-size: 0.88rem;
  padding-left: 1.5rem;
  position: relative;
}
.tools-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-peach);
  font-weight: 700;
}

.project-link {
  color: var(--color-terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(212, 154, 143, 0.5);
  transition: opacity 0.3s ease, text-decoration-color 0.3s ease;
}
.project-link:hover {
  opacity: 0.7;
  color: var(--color-terracotta);
  text-decoration-color: var(--color-terracotta);
}/*# sourceMappingURL=details.css.map */