:root {
  --paper: #f4f1ec;
  --ink: #211f1d;
  --muted: #6a625b;
  --line: rgba(33, 31, 29, 0.16);
  --red: #a82127;
  --steel: #336b7d;
  --white: #fffdf9;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: "Lora", "Noto Sans JP", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

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

.anv-header {
  align-items: center;
  background: rgba(20, 19, 18, 0.92);
  color: var(--white);
  display: flex;
  gap: clamp(1rem, 3vw, 3rem);
  inset: 0 0 auto;
  min-height: 5.5rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.75rem);
  position: sticky;
  top: 0;
  z-index: 5;
}

.anv-brand {
  flex: 0 0 auto;
}

.anv-brand img {
  height: auto;
  width: clamp(8.8rem, 16vw, 13rem);
}

.anv-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 0.35rem clamp(0.85rem, 1.7vw, 1.7rem);
  justify-content: center;
}

.anv-nav a,
.anv-lang a {
  font-size: 0.84rem;
  text-decoration: none;
  text-transform: uppercase;
}

.anv-nav a[aria-current="page"] {
  color: #f0b3a9;
}

.anv-lang {
  display: flex;
  flex: 0 0 auto;
  gap: 0.55rem;
}

.anv-lang a {
  border: 1px solid rgba(255, 253, 249, 0.28);
  min-width: 2.35rem;
  padding: 0.42rem 0.55rem;
  text-align: center;
}

.anv-lang a[aria-current="true"] {
  background: var(--white);
  color: var(--ink);
}

.anv-hero {
  display: grid;
  min-height: min(79svh, 58rem);
  overflow: hidden;
  position: relative;
}

.anv-hero::after {
  background:
    linear-gradient(90deg, rgba(24, 20, 18, 0.9), rgba(24, 20, 18, 0.35)),
    linear-gradient(0deg, rgba(24, 20, 18, 0.18), transparent 48%);
  content: "";
  inset: 0;
  position: absolute;
}

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

.anv-hero__content {
  align-self: end;
  color: var(--white);
  max-width: 52rem;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 6.5rem);
  position: relative;
  z-index: 1;
}

.anv-kicker,
.anv-section__kicker {
  color: #e8c5bd;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.anv-hero h1 {
  font-family: "Lora", "Noto Sans JP", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(2.4rem, 6vw, 6.8rem);
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
}

.anv-hero__lead {
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.8;
  margin: clamp(1.3rem, 2vw, 2rem) 0 0;
  max-width: 40rem;
}

.anv-main {
  padding: clamp(3rem, 6vw, 6.5rem) 0;
}

.anv-section {
  margin: 0 auto clamp(3.5rem, 7vw, 7rem);
  max-width: 96rem;
  padding: 0 clamp(1.25rem, 6vw, 6.5rem);
}

.anv-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.anv-section h2 {
  font-family: "Lora", "Noto Sans JP", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(1.7rem, 3.25vw, 3.4rem);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}

.anv-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 2;
}

.anv-copy p {
  margin: 0 0 1rem;
}

.anv-list,
.anv-projects,
.anv-facts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.anv-list {
  display: grid;
  gap: 0;
}

.anv-list li {
  border-top: 1px solid var(--line);
  line-height: 1.6;
  padding: 1rem 0;
}

.anv-gallery {
  display: grid;
  gap: clamp(0.8rem, 1.5vw, 1.35rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.anv-shot {
  background: var(--white);
  margin: 0;
  min-height: 12rem;
  overflow: hidden;
}

.anv-shot img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.anv-shot:nth-child(1) {
  aspect-ratio: 1.4;
  grid-column: span 7;
}

.anv-shot:nth-child(2) {
  aspect-ratio: 1;
  grid-column: span 5;
}

.anv-shot:nth-child(3),
.anv-shot:nth-child(4) {
  aspect-ratio: 1.38;
  grid-column: span 6;
}

.anv-projects {
  display: grid;
  gap: 1rem;
}

.anv-project {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.6rem 1.4rem;
  grid-template-columns: 7rem minmax(0, 1fr);
  padding-top: 1.25rem;
}

.anv-project__year {
  color: var(--red);
  font-family: "Lora", "Noto Sans JP", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.7rem;
}

.anv-project h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  margin: 0 0 0.45rem;
}

.anv-project p,
.anv-facts dd {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.anv-panel {
  background: #ebe2d8;
  display: grid;
  gap: clamp(1.3rem, 2.5vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: clamp(1.25rem, 3vw, 3rem);
}

.anv-panel__media {
  aspect-ratio: 1.2;
  min-height: 17rem;
  overflow: hidden;
}

.anv-panel__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.anv-facts > div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 0;
}

.anv-facts dt {
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
}

.anv-call {
  background: #25211f;
  color: var(--white);
  display: grid;
  gap: clamp(1.2rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.anv-call h2 {
  font-family: "Lora", "Noto Sans JP", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin-bottom: 0.8rem;
}

.anv-call p {
  line-height: 1.8;
  margin: 0;
}

.anv-call__phone {
  align-self: center;
  background: var(--red);
  color: var(--white);
  font-family: "Lora", "Noto Sans JP", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(1.2rem, 2.7vw, 2.35rem);
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.2rem, 2.5vw, 2rem);
  text-decoration: none;
  white-space: nowrap;
}

.anv-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  padding: 1.5rem clamp(1.25rem, 6vw, 6.5rem) 2.5rem;
}

.anv-footer p {
  text-align: center;
  margin: 0;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  opacity: 0.55;
}

.anv-home {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--red);
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.6rem 1rem;
  text-decoration: none;
  width: fit-content;
}

@media (max-width: 760px) {
  .anv-header {
    align-items: flex-start;
    display: grid;
    gap: 0.8rem;
  }

  .anv-nav {
    justify-content: flex-start;
  }

  .anv-lang {
    position: absolute;
    right: 1.25rem;
    top: 1.15rem;
  }

  .anv-grid,
  .anv-panel,
  .anv-call {
    grid-template-columns: 1fr;
  }

  .anv-shot:nth-child(n) {
    grid-column: span 12;
  }

  .anv-project {
    grid-template-columns: 1fr;
  }
}

.ContactSection-title,
.LoadingAnimation-numberWrap,
.MenuItem-main,
.CardBlock-number,
.SectionTitle-text,
.AwardSection-marqueeSingle,
.BusinessSection-titleNumber,
.BusinessSection-titleText,
.KvFirstView-headerText,
.MarqueeStart-text,
.KvIntro-leadHeader {
  font-family: "Lora", "Noto Sans JP", YuGothic, "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
}

.ContactSection-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.ContactSection-link > .CommonBgGL-bg._sp {
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.ContactSection-content {
  position: relative;
  z-index: 1;
}

.ContactSection-subTitle {
  font-size: 0.8125rem;
  font-weight: 700;
}

.ContactSection-text {
  font-size: 0.6875rem;
  font-weight: 700;
}

.ContactSection-arrow {
  width: 1.125rem !important;
  height: 1.125rem !important;
}

@media screen and (max-width: 820.98px) {
  .ContactSection-content {
    padding-inline: 0.75rem;
  }

  .ContactSection-text {
    font-size: 0.4875rem;
  }

  .ContactSection-arrowWrap {
    transform: scale(0.8);
  }

  .ContactSection-arrow {
    width: 0.875rem !important;
    height: 0.875rem !important;
  }
}
