*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  text-transform: capitalize;
  line-height: 1.8;
  color: #3a2e27;
  background-color: #fbf3d9;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

h1,
h2,
h3 {
  font-family: "Shippori Mincho", serif;
  color: #5c3d2e;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #a47551;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0.8rem 4rem;
  background-color: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(164, 117, 81, 0.2);
}
@media (max-width: 768px) {
  .header {
    padding: 0.8rem 1.6rem;
  }
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.header__logo:hover .header__logo-main {
  color: #f5d471;
}

.header__logo-main {
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  color: #5c3d2e;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.header__logo-sub {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.1rem;
  color: #a47551;
  letter-spacing: 0.06em;
}

.header__nav {
  display: flex;
  gap: 4rem;
}
@media (max-width: 768px) {
  .header__nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: #fffdf8;
    border-bottom: 1px solid rgba(164, 117, 81, 0.2);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, visibility 0.35s ease;
  }
  .header__nav.is-open {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}

.header__nav-item {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  color: #3a2e27;
  transition: color 0.3s ease;
}
.header__nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background-color: #f5d471;
  transition: width 0.3s ease;
}
.header__nav-item:hover, .header__nav-item.is-active {
  color: #5c3d2e;
}
.header__nav-item:hover::after, .header__nav-item.is-active::after {
  width: 100%;
}
@media (max-width: 768px) {
  .header__nav-item {
    padding: 1.6rem 4rem;
    width: 100%;
  }
  .header__nav-item::after {
    display: none;
  }
  .header__nav-item.is-active {
    background-color: #fbf3d9;
  }
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}
.header__menu-btn span {
  height: 3px;
  background-color: #5c3d2e;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.header__menu-btn.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__menu-btn.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__menu-btn.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 768px) {
  .header__menu-btn {
    display: flex;
  }
}

.footer {
  padding: 6.4rem 4rem 4rem;
  background-color: #5c3d2e;
  color: #fbf3d9;
  text-align: center;
}

.footer__logo {
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}

.footer__nav-item {
  font-size: 1.4rem;
  opacity: 0.85;
}
.footer__nav-item:hover {
  opacity: 1;
  color: #f5d471;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}

.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(251, 243, 217, 0.12);
  color: #fbf3d9;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.footer__sns-link:hover {
  background-color: #f5d471;
  color: #5c3d2e;
}

.footer__copyright {
  font-size: 1.2rem;
  opacity: 0.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.6rem 4rem;
  border-radius: 999px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn--primary {
  background-color: #f5d471;
  color: #5c3d2e;
  box-shadow: 0 8px 24px rgba(92, 61, 46, 0.08);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(92, 61, 46, 0.14);
}

.btn--outline {
  background-color: transparent;
  color: #5c3d2e;
  border: 2px solid #a47551;
  transition: background-color 0.6s ease, color 0.6s ease, border-color 0.6s ease;
}
.btn--outline:hover {
  background-color: #a47551;
  color: #fffdf8;
}

.hand-circle {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hand-underline {
  position: relative;
  display: inline-block;
}
.hand-underline::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: -0.1em;
  width: 104%;
  height: 0.2em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M2 6 Q50 2 100 5 T198 4' stroke='%23F2C94C' stroke-width='3.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
}
.section-divider::before, .section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(164, 117, 81, 0.3);
}

.section-divider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f5d471;
  margin: 0 1.6rem;
}

.tag-label {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: #f5d471;
  color: #5c3d2e;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  border-radius: 8px;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__eyebrow,
.hero__title,
.hero__lead,
.hero__actions {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
}

.hero__eyebrow {
  animation-delay: 0.1s;
}

.hero__title {
  animation-delay: 0.25s;
}

.hero__lead {
  animation-delay: 0.45s;
}

.hero__actions {
  animation-delay: 0.6s;
}

.hero__overlay {
  opacity: 0;
  animation: heroFadeUp 0.9s ease forwards;
  animation-delay: 0.05s;
}

.page-banner__title,
.page-banner__sub {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards;
}

.page-banner__title {
  animation-delay: 0.1s;
}

.page-banner__sub {
  animation-delay: 0.3s;
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery__item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.gallery__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow,
  .hero__title,
  .hero__lead,
  .hero__actions,
  .hero__overlay,
  .page-banner__title,
  .page-banner__sub {
    opacity: 1;
    animation: none;
  }
  .gallery__item,
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .header__menu-btn span,
  .header__nav {
    transition: none;
  }
}
.no-js .gallery__item,
.no-js .fade-in {
  opacity: 1;
  transform: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hero {
    min-height: 520px;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 460px;
  }
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 253, 248, 0.95) 0%, rgba(255, 253, 248, 0.85) 32%, rgba(255, 253, 248, 0.35) 46%, rgba(255, 253, 248, 0) 62%);
}
@media (max-width: 768px) {
  .hero__overlay {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.92) 0%, rgba(255, 253, 248, 0.7) 55%, rgba(255, 253, 248, 0.25) 100%);
  }
}

.hero__text {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
  padding: 9.6rem 6.4rem;
}
@media (max-width: 1024px) {
  .hero__text {
    padding: 6.4rem 4rem;
  }
}
@media (max-width: 768px) {
  .hero__text {
    max-width: 100%;
    padding: 4rem 1.6rem;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #a47551;
  letter-spacing: 0.1em;
  margin-bottom: 1.6rem;
}

.hero__title {
  font-size: clamp(2.6rem, 3.6vw, 4.8rem);
  color: #5c3d2e;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 3.2rem;
  }
}

.hero__title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero__title .hand-underline::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'%3E%3Cpath d='M2 6 Q50 2 100 5 T198 4' stroke='%23F2C94C' stroke-width='3.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hero__lead {
  font-size: 1.8rem;
  color: #3a2e27;
  margin-bottom: 4rem;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 1.6rem;
}
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }
}

.works {
  padding-top: 9.6rem;
}

.gallery--page-top {
  padding-top: 6.4rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 6.4rem;
}

.section-heading__title {
  font-size: 3.2rem;
  margin-bottom: 0.8rem;
}

.section-heading__sub {
  font-size: 1.4rem;
  color: #a47551;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1.6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem 9.6rem;
}
@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    padding: 0 1.6rem 6.4rem;
  }
}
@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
}

.gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.gallery__item--tall {
  grid-row: span 2;
}
.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 480px) {
  .gallery__item--tall, .gallery__item--large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__image {
  transform: scale(1.06);
}

.gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem;
  background: linear-gradient(to top, rgba(92, 61, 46, 0.75), transparent);
  color: #fffdf8;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
}

.works__more {
  text-align: center;
  padding-bottom: 9.6rem;
}

.profile {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 9.6rem;
}
@media (max-width: 768px) {
  .profile {
    padding-bottom: 6.4rem;
  }
}

.profile__hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  margin-bottom: 6.4rem;
}
@media (max-width: 768px) {
  .profile__hero {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .profile__hero {
    height: 220px;
  }
}

.profile__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
}

.profile__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(92, 61, 46, 0.72) 0%, rgba(92, 61, 46, 0.3) 40%, rgba(92, 61, 46, 0) 70%);
}

.profile__hero-text {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  right: 4rem;
}

.profile__name {
  font-size: 3.2rem;
  color: #fffdf8;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.profile__role {
  font-size: 1.4rem;
  color: rgba(251, 243, 217, 0.85);
  letter-spacing: 0.1em;
}

.profile__content {
  padding: 0 4rem;
}
@media (max-width: 768px) {
  .profile__content {
    padding: 0 1.6rem;
  }
}

.profile__bio {
  margin-bottom: 4rem;
}
.profile__bio p {
  margin-bottom: 1.6rem;
}

.profile__story {
  margin-bottom: 4rem;
}

.profile__story-title {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.profile__story-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f5d471;
  flex-shrink: 0;
}

.profile__story-body {
  font-size: 1.6rem;
  line-height: 1.9;
}
.profile__story-body p {
  margin-bottom: 1.6rem;
}

.profile__qualifications {
  margin-top: 0.8rem;
}

.profile__qualifications-item {
  position: relative;
  padding-left: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.9;
}
.profile__qualifications-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #a47551;
}

.profile__hobby {
  margin-top: 4rem;
  padding: 2.4rem;
  background-color: #fffdf8;
  border-radius: 16px;
}

.profile__hobby-title {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.profile__hobby-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f5d471;
  flex-shrink: 0;
}

.profile__hobby-text {
  font-size: 1.6rem;
  line-height: 1.9;
}

.contact {
  max-width: 720px;
  margin: 0 auto;
  padding: 9.6rem 4rem;
  text-align: center;
}

.contact__lead {
  font-size: 1.8rem;
  color: #3a2e27;
  margin-bottom: 6.4rem;
}

.contact__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}
@media (max-width: 480px) {
  .contact__cards {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 4rem;
  background-color: #fffdf8;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(92, 61, 46, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(92, 61, 46, 0.14);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fbf3d9;
  color: #5c3d2e;
}

.contact-card__label {
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  color: #5c3d2e;
}

.contact-card__value {
  font-size: 1.4rem;
  text-transform: lowercase;
  color: #a47551;
  word-break: break-all;
}

.work-detail {
  max-width: 960px;
  margin: 0 auto;
  padding: 6.4rem 4rem 9.6rem;
}
@media (max-width: 768px) {
  .work-detail {
    padding: 4rem 1.6rem 6.4rem;
  }
}

.work-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: #a47551;
  margin-bottom: 4rem;
}
.work-detail__back:hover {
  color: #5c3d2e;
}

.work-detail__image-wrap {
  margin-bottom: 4rem;
}

.work-detail__image {
  width: auto;
  max-height: 640px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(92, 61, 46, 0.08);
}

.work-detail__header {
  margin-bottom: 4rem;
}

.work-detail__title {
  font-size: 3.2rem;
  margin-bottom: 0.8rem;
}

.work-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.work-detail__body {
  font-size: 1.6rem;
  line-height: 1.9;
}
.work-detail__body p {
  margin-bottom: 2.4rem;
}

.work-detail__info {
  margin-top: 4rem;
  padding: 2.4rem;
  background-color: #fffdf8;
  border-radius: 16px;
}

.work-detail__info-row {
  display: flex;
  gap: 1.6rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(164, 117, 81, 0.15);
}
.work-detail__info-row:last-child {
  border-bottom: none;
}

.work-detail__info-label {
  flex: 0 0 100px;
  font-size: 1.4rem;
  color: #a47551;
}

.work-detail__info-value {
  font-size: 1.4rem;
  text-transform: lowercase;
}

.work-detail__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 6.4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(164, 117, 81, 0.2);
}

.work-detail__nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 1.4rem;
  color: #5c3d2e;
  max-width: 45%;
}
.work-detail__nav-link:hover {
  color: #f5d471;
}

.work-detail__nav-link--next {
  text-align: right;
  margin-left: auto;
}

.work-detail__nav-label {
  font-size: 1.2rem;
  color: #a47551;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 4rem;
}
@media (max-width: 768px) {
  .container {
    padding-inline: 1.6rem;
  }
}

main {
  min-height: 60vh;
}

.page-banner {
  text-align: center;
  padding: 6.4rem 4rem;
  background-color: #fbf3d9;
}

.page-banner__title {
  font-size: 3.2rem;
}

.page-banner__sub {
  font-size: 1.4rem;
  color: #a47551;
  margin-top: 0.8rem;
}/*# sourceMappingURL=style.css.map */