@charset "utf-8";

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}

.hero .blob-1 {
  width: 360px;
  height: 360px;
  background: var(--lemon);
  top: -80px;
  right: -80px;
  opacity: 0.28;
}

.hero .blob-2 {
  width: 260px;
  height: 260px;
  background: var(--lemon-mid);
  bottom: -40px;
  left: -40px;
  opacity: 0.22;
}

.hero .blob-3 {
  display: none;
}

.sunflower-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.sunflower-deco img {
  width: 100%;
  height: auto;
  display: block;
}

.hero .sunflower-deco.sf-1 {
  width: 240px;
  left: 72px;
  bottom: 200px;
  opacity: 0.6;
}

.hero .sunflower-deco.sf-2 {
  width: 140px;
  right: 96px;
  bottom: 70px;
  opacity: 0.5;
}

.hero-inner { position: relative; z-index: 1; }

.hero-greeting {
  font-family: 'Caveat', cursive;
  font-size: 3.2rem;
  color: var(--yellow);
  margin-bottom: 12px;
  opacity: 0;
  animation: popIn 0.6s ease forwards 0.2s;
}

.hero-name {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  opacity: 0;
  animation: popIn 0.6s ease forwards 0.4s;
}

.hero-name .highlight { position: relative; display: inline-block; }
.hero-name .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: -4px; right: -4px;
  height: 12px;
  background: var(--lemon);
  border-radius: 6px;
  z-index: -1;
  transform: rotate(-1deg);
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: popIn 0.6s ease forwards 0.6s;
}

.brSp {
  display: none;
}

.hero-message {
  font-size: 1.4rem;
  line-height: 2.2;
  color: var(--brown);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: popIn 0.6s ease forwards 0.8s;
}

.hero .hero-cta {
  opacity: 0;
  animation: popIn 0.6s ease forwards 1s;
}

@media screen and (max-width: 780px) {
  .hero {
    padding: 120px 32px 40px;
  }
  
  .hero .blob-1 {
    width: 200px;
    height: 200px;
  }

  .hero .blob-2 {
    width: 180px;
    height: 180px;
  }

  .hero .blob-3 {
    width: 100px;
    height: 100px;
  }

  .sunflower-deco {
    width: 100px;
    height: 100px;
  }

  .hero .sunflower-deco.sf-1 {
    width: 115px;
    left: -20px;
    bottom: 16px;
    opacity: 0.3;
  }

  .hero .sunflower-deco.sf-2 {
    display: none;
  }

  .hero-greeting  {
    font-size: 2.4rem;
  }

  .hero-name {
    font-size: 3rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .brSp {
    display: block;
  }

  .hero-message {
    line-height: 1.5;
    margin: 0 auto 20px;
  }
}

/* ===========================
   MARQUEE
   =========================== */
.marquee-wrap {
  overflow: hidden;
  padding: 14px 0;
  background: rgba(243, 216, 107, 0.45);
  margin: 0 0 56px;
  border-top: 1px solid rgba(185, 133, 18, 0.12);
  border-bottom: 1px solid rgba(185, 133, 18, 0.12);
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
  width: max-content;
  align-items: baseline;        /* 追加：大小の文字を下揃え */
}

.marquee-item {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--yellow-deep);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 大小交互 */
.marquee-item:nth-child(odd) {
  font-size: 2.4rem;
  font-weight: 300;
}

/* 区切り */
.marquee-item::after {
  content: '—';
  font-size: 1.4rem;
  color: var(--yellow-deep);
  opacity: 0.3;
}

/* キャッチコピー（特別扱い） */
.marquee-catch {
  font-family: 'Caveat', cursive;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.05em;
  text-transform: none;       
}

/* ===========================
   SECTION COMMON
   =========================== */
section { padding: 80px 64px; position: relative; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--lemon-mid);
  border-radius: 1px;
}

.section-heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.section-sub {
  font-size: 1.4rem;
  color: var(--text-light);
  line-height: 2;
  max-width: 560px;
  margin-bottom: 48px;
}

.marker {
  background: linear-gradient(transparent 60%, var(--lemon) 60%);
  padding: 0 2px;
}

@media screen and (max-width: 780px) {
  section {
    padding: 40px 32px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-sub {
    line-height: 1.5;
    margin-bottom: 32px;
  }
}

/* ===========================
   WORKS
   =========================== */
.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.work-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(232, 185, 35, 0.1);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px var(--shadow);
}

.work-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.work-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(243, 216, 107, 0.35) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.work-card.featured .work-thumb { 
  aspect-ratio: auto; min-height: 320px; 
}

.work-thumb .work-img {
  width: 75%;
  display: block;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.work-thumb .work-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 8px 32px rgba(91, 70, 50, 0.1);
}

.work-card:hover .work-thumb .work-img {
  transform: scale(1.05);
}

.work-body { padding: 28px; }


.work-title {
  font-size: 1.6rem;
  font-weight: 700; 
  margin-bottom: 4px; 
}

.work-title-en {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 14px;
}

.work-summary {
  font-size: 1.4rem; 
  line-height: 1.9; 
  color: var(--brown-light); 
  margin-bottom: 16px; 
}

.work-process { 
  background: var(--cream); 
  border-radius: 10px; 
  padding: 16px; 
  margin-bottom: 16px; 
}

.work-process-label { 
  font-size: 1rem; 
  font-weight: 500; 
  color: var(--yellow); 
  margin-bottom: 8px; 
}

.process-steps { 
  display: flex; 
  align-items: center; 
  gap: 6px; 
  flex-wrap: wrap;
}

.process-step { 
  font-size: 1rem; 
  color: var(--brown); 
  background: var(--card); 
  padding: 4px 10px; 
  border-radius: 14px; 
}

.process-arrow { 
  color: var(--lemon-mid); 
  font-size: 1rem; 
}

.work-tags-row { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 6px; 
}

.work-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--yellow);
  text-decoration: none;
  transition: gap 0.3s;
}

.work-link:hover { gap: 14px; }

/* sub */
.subWork {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px 20px;
}

.work-card.sub {
  background: var(--card);
  display: block;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease; 
  max-width: 350px;
  grid-template-columns: 1.2fr 1fr;
}

.work-card,
.work-card.sub {
  border-radius: 16px;
  border: 1px solid rgba(74, 56, 40, 0.08);
  box-shadow: 0 10px 32px rgba(74, 56, 40, 0.06);
}

.sub-thumb {
  aspect-ratio: auto;
  background: linear-gradient(135deg, rgba(243, 216, 107, 0.35) 0%, var(--cream) 100%);
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 10px;
}

.work-card.sub .sub-thumb { 
  aspect-ratio: auto; 
  min-height: 220px; 
}

.sub-thumb .sub-img {
  width: 75%;
  display: block;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.sub-img {
  display: block;
  text-decoration: none;
  transition: transform 0.4s ease;
}

.sub-thumb .sub-img img {
  object-fit: contain;
  width: 100%;
  max-height: 20vw;
  border-radius: 5px;
}

@media screen and (max-width: 780px) {
  .works-grid {
    grid-template-columns: 1fr;
  }

  .work-card.featured { 
    grid-column: auto; 
    grid-template-columns: 1fr; 
  }

  .work-thumb .work-img {
    width: 90%;
  }

  .work-thumb .work-img img {
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(91, 70, 50, 0.1);
  }

  .work-card:hover .work-thumb .work-img {
    transform: none;
  }

  .work-title {
    font-size: 1.4rem;
  }

  .work-card.sub {
    grid-column: auto;
    grid-template-columns: 1fr;
    display: block;
  }

  .sub-thumb .sub-img img {
    object-fit: contain;
    width: 100%;
    height: 50vw;
    max-height: none;
    border-radius: 10px;
  }
}

/* ===========================
   ABOUT
   =========================== */
#about {
  background: var(--warm-white);
  border-radius: 24px;
  margin: 0 32px 64px;
}

.about-compact {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}

.catchphrase {
  margin-bottom: 32px;
}

.catchphrase-en {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 6px;
}

.catchphrase-ja {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.catchphrase-body {
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--brown);
  font-weight: 300;
  margin-bottom: 20px;
  text-align: left;
}

.about-photo-sm {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-photo-sm img {
  border-radius: 20px;
}

.brPc {
  display: none;
}

.skill-chips { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  margin-bottom: 28px; 
}

.skill-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 2px solid rgba(232, 185, 35, 0.12);
  border-radius: 16px;
  padding: 14px 20px;
  flex: 1;
  min-width: 180px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skill-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

.chip-icon { 
  font-size: 1.4rem; 
}

.chip-text { 
  display: flex; 
  flex-direction: 
  column; gap: 2px; 
}

.chip-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chip-detail { 
  font-size: 1rem; 
  color: var(--text-light); 
}

.about-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(232, 185, 35, 0.2);
  border: none;
  cursor: pointer;
}

.about-more:hover {
  background: var(--yellow-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 185, 35, 0.3);
}

.about-more img { 
  width: 20px; 
  height: 20px; 
}

@media screen and (max-width:780px) {
  #about {
    margin:0 12px 32px;
  }

  .about-compact {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    display: block;
  }

  .about-photo-sm {
    max-width: 300px;
    margin: 0 auto;
  }

  .about-compact-body {
    margin-top: 20px;
  }

  .brPc {
    display: block;
  }

  .about-compact-desc {
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .skill-chip {
    justify-content: center;
  }

}

/* ===========================
   CONTACT
   =========================== */
.contact-area {
  text-align: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.contact-area > .blob {
  width: 400px; 
  height: 400px;
  background: var(--lemon);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
}

.contact-inner { position: relative; z-index: 1; }
.contact-emoji { font-size: 3rem; margin-bottom: 16px; }

.contact-area h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-area p {
  font-size: 1.4rem;
  color: var(--brown-light);
  line-height: 2;
  margin-bottom: 40px;
}

.contact-buttons { 
  display: flex; 
  justify-content: center; 
  gap: 16px;
  flex-wrap: wrap; 
}



@media screen and (max-width: 780px) {
  .contact-area { 
    padding: 72px 24px;
  }

  .contact-area h2 {
    font-size: 2rem;
  }

  .contact-area p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
