@charset "UTF-8";
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}


address {
  font-style: normal;
}

/* ===== Typography ===== */
.section-label {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gray);
  line-height: 1;
}

.section-label--light {
  color: rgba(255,255,255,0.6);
}

.section-label--light50 {
  color: rgba(255,255,255,0.5);
}

.section-title {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.section-title--white {
  color: #fff;
}

.no-margin {
  margin-bottom: 0 !important;
}

/* ===== Header ===== */
.header {
  background: #fff;
  border-bottom: 1px solid rgba(17,17,17,0.12);
}

.header {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 42px;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header__nav-left {
  display: flex;
  gap: 24px;
}

.header__nav-left a {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--color-darkgray);
  line-height: 1;
}

.header__logo {
  justify-self: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-pureblack);
  line-height: 1;
}

.header__nav-right {
  justify-self: end;
  display: flex;
  gap: 20px;
}

.header__nav-right a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray);
  line-height: 1;
}

.header__menu-btn {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: var(--color-darkgray);
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.header__menu-icon {
  width: 22px;
  height: 8px;
  position: relative;
  display: inline-block;
}

.header__menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.header__menu-icon span:first-child {
  top: 0;
}

.header__menu-icon span:last-child {
  bottom: 0;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: min(88vh, 800px);
  background: var(--color-pureblack);
  overflow: hidden;
}

.hero__slider {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, rgba(0,0,0,0.52), rgba(0,0,0,0.12) 60%, rgba(0,0,0,0.04)),
    linear-gradient(0deg, rgba(0,0,0,0.48), rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.18));
}

.hero__slide.active {
  opacity: 1;
}

.hero__content {
  position: absolute;
  bottom: 64px;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 42px;
  color: #fff;
}

.hero__label {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1;
}

.hero__title {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
  max-width: 560px;
}

.hero__indicators {
  position: absolute;
  bottom: 64px;
  right: 42px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero__indicator {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.hero__indicator.active {
  background: #fff;
}

/* ===== Letter ===== */
.letter {
  padding: 96px 42px;
  background: #f2f0eb;
}

.letter__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr);
  gap: 64px;
  align-items: start;
}

.letter__label-wrap {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 20px;
}

.letter__content {
  padding-top: 8px;
}

.letter__content .section-title {
  margin: 0;
}

.letter__text {
  width: 100%;
  max-width: 640px;
  margin-top: 32px;
  color: var(--color-darkgray);
  font-size: 14px;
  line-height: 2.1;
}

.letter__text p {
  margin-bottom: 1.4em;
}

/* ===== Value ===== */
.value {
  padding: 96px 42px;
  background: #fff;
}

.value__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.value__text .section-label {
  margin-bottom: 12px;
}

.value__body {
  margin-top: 32px;
  color: var(--color-darkgray);
  font-size: 14px;
  line-height: 2.1;
}

.value__body p {
  margin-bottom: 1.4em;
}

.value__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee;
  margin: 0;
}

.value__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

/* ===== Full Visual ===== */
.full-visual {
  width: 100%;
  height: min(560px, 50vw);
  background-size: cover;
  background-position: center;
}

.full-visual::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.08);
}

/* ===== Experience ===== */
.experience {
  background: #fff;
  padding: 96px 42px;
}

.experience__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.experience__header {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.experience__header-text {
  margin-top: 32px;
  color: var(--color-darkgray);
  font-size: 14px;
  line-height: 2.1;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(17,17,17,0.12);
  border-left: 1px solid rgba(17,17,17,0.12);
}

.experience__card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid rgba(17,17,17,0.12);
  border-bottom: 1px solid rgba(17,17,17,0.12);
  overflow: hidden;
  display: grid;
  align-content: end;
  color: #fff;
}

.experience__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.experience__card:hover .experience__card-bg {
  transform: scale(1.05);
}

.experience__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  z-index: 1;
}

.experience__card-content {
  position: relative;
  z-index: 2;
}

.experience__card-label {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1;
}

.experience__card-title {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.experience__card-desc {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

/* ===== Philosophy ===== */
.philosophy {
  padding: 96px 42px;
  background: var(--color-pureblack);
  color: #fff;
}

.philosophy__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.philosophy__header {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.philosophy__text {
  margin-top: 32px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 2.1;
}

.philosophy__text p {
  margin-bottom: 1.4em;
}

.philosophy__tagline {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.philosophy__tagline .section-label {
  margin-bottom: 16px;
}

.philosophy__tagline-text {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
}

/* ===== Selection ===== */
.selection {
  padding: 96px 42px;
  background: #f7f7f7;
}

.selection__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.selection__left {
  position: sticky;
  top: 100px;
}

.selection__left .section-label {
  display: block;
  margin-bottom: 12px;
}

.selection__text {
  color: var(--color-darkgray);
  font-size: 14px;
  line-height: 2.1;
}

.selection__text p {
  margin-bottom: 1.4em;
}

.selection__list {
  margin-top: 40px;
  border-top: 1px solid rgba(17,17,17,0.12);
}

.selection__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(17,17,17,0.12);
}

.selection__item-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--color-gray);
  line-height: 1.6;
}

.selection__item-text {
  margin: 0;
  color: var(--color-darkgray);
  font-size: 14px;
  line-height: 1.9;
}

/* ===== Shoplist ===== */
.about_shoplist {
  background: var(--color-pureblack);
  color: #fff;
}

.about_shoplist_intro {
  padding: 138px 42px;
}

.about_shoplist_intro-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: 86px;
  align-items: start;
}

.about_shoplist_intro .section-label {
  font-size: 12px;
  letter-spacing: 0.18em;
}

.about_shoplist_intro-content .section-title {
  margin: 0;
}

.about_shoplist_intro-text {
  margin-top: 40px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 2.2;
}

.about_shoplist_intro-text p {
  margin-bottom: 1.48em;
}

.about_shoplist_list {
  padding: 0 42px 150px;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 120px;
}

.shop {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
  padding-top: 84px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.shop__visual {
  position: relative;
  min-height: 560px;
  background-color: #242424;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.shop__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.18), rgba(0,0,0,0.02));
}

.shop__content {
  color: rgba(255,255,255,0.78);
}

.shop__kicker {
  margin: 0 0 26px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  line-height: 1;
}

.shop__name {
  margin: 0;
  font-family: sans-serif;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.12em;
  color: #fff;
}

.shop__tagline {
  margin: 18px 0 0;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.82);
}

.shop__desc {
  margin: 36px 0 0;
  font-size: 14px;
  line-height: 2.12;
  color: rgba(255,255,255,0.72);
}

.shop__address {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 12px;
  line-height: 1.95;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.54);
}

.shop__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.shop__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.34);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s;
  line-height: 1;
}

.shop__btn:hover {
  background: rgba(255,255,255,0.1);
  opacity: 1;
}

.about_shoplist_visual {
  width: 100%;
  height: min(640px, 54vw);
  background-size: cover;
  background-position: center;
}

.about_shoplist_visual::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.18);
}

/* ===== For You ===== */
.for-you {
  padding: 96px 42px;
  background: #fff;
}

.for-you__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.for-you__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #eee;
  margin: 0;
  order: 1;
}

.for-you__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.for-you__content {
  order: 2;
}

.for-you__content .section-label {
  margin-bottom: 12px;
}

.for-you__text {
  margin-top: 32px;
  color: var(--color-darkgray);
  font-size: 14px;
  line-height: 2.1;
}

.for-you__text p {
  margin-bottom: 1.4em;
}

/* ===== Closing ===== */
.closing {
  position: relative;
  padding: 112px 42px;
  background: var(--color-pureblack);
  color: #fff;
  overflow: hidden;
}

.closing__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.closing__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.28));
}

.closing__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.closing__title {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.closing__desc {
  max-width: 600px;
  margin: 32px 0 0 auto;
  font-size: 14px;
  line-height: 2.1;
  color: rgba(255,255,255,0.75);
}

.closing__buttons {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 46px;
  padding: 12px 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
  transition: opacity 0.3s;
  line-height: 1;
}

.btn--white {
  background: #fff;
  border: 1px solid #fff;
  color: var(--color-pureblack);
}

.btn--white:hover {
  opacity: 0.8;
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}

.btn--outline:hover {
  opacity: 0.8;
}


/* ===== Responsive ===== */
@media (max-width: 1024px) {

  
  .hero__content {
    padding: 0 24px;
    bottom: 48px;
  }

  .hero__indicators {
    right: 24px;
    bottom: 48px;
  }

  .hero__title {
    font-size: 24px;
  }

  .letter {
    padding: 64px 24px;
  }
  
  .letter__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .letter__label-wrap {
    position: static;
  }

  .letter__content {
    padding-top: 0;
  }

  .value {
    padding: 64px 24px;
  }

  .value__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .full-visual {
    height: 60vw;
  }

  .experience {
    padding: 64px 24px;
  }

  .experience__header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .experience__grid {
    grid-template-columns: 1fr;
  }

  .philosophy {
    padding: 64px 24px;
  }

  .philosophy__header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .philosophy__tagline {
    margin-top: 40px;
    padding-top: 40px;
  }

  .selection {
    padding: 64px 24px;
  }

  .selection__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .selection__left {
    position: static;
  }

  .selection__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about_shoplist_intro {
    padding: 80px 24px;
  }

  .about_shoplist_intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about_shoplist_list {
    padding: 0 24px 80px;
    gap: 64px;
  }

  .shop {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
  }

  .shop__visual {
    min-height: 320px;
  }

  .about_shoplist_visual {
    height: 60vw;
  }

  .for-you {
    padding: 64px 24px;
  }

  .for-you__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .for-you__image {
    order: 2;
  }

  .for-you__content {
    order: 1;
  }

  .closing {
    padding: 80px 24px;
  }

  .closing__desc {
    margin-left: 0;
  }

  .closing__buttons {
    justify-content: flex-start;
  }

  .footer__about_shoplist {
    padding: 48px 24px;
  }

  .footer__shops {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer__main {
    padding: 40px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__sns {
    justify-self: start;
  }

  .footer__nav-section {
    padding: 32px 24px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 0 18px;
    height: 56px;
  }

  .header__logo {
    font-size: 16px;
  }

  .header__menu-text {
    display: none;
  }

  .hero__content {
    padding: 0 18px;
    bottom: 40px;
  }

  .hero__indicators {
    right: 18px;
    bottom: 40px;
  }

  .hero__title {
    font-size: 21px;
  }

  .section-title {
    font-size: 21px;
  }

  .letter {
    padding: 56px 18px;
  }

  .letter__text {
    font-size: 13px;
  }

  .value {
    padding: 56px 18px;
  }

  .value__body {
    font-size: 13px;
  }

  .experience {
    padding: 56px 18px;
  }

  .experience__card {
    min-height: 240px;
    padding: 20px;
  }

  .philosophy {
    padding: 56px 18px;
  }

  .philosophy__text {
    font-size: 13px;
  }

  .philosophy__tagline-text {
    font-size: 21px;
  }

  .selection {
    padding: 56px 18px;
  }

  .selection__text {
    font-size: 13px;
  }

  .selection__item-text {
    font-size: 13px;
  }

  .about_shoplist_intro {
    padding: 56px 18px;
  }

  .about_shoplist_intro-text {
    font-size: 14px;
    margin-top: 28px;
  }

  .about_shoplist_list {
    padding: 0 18px 56px;
  }

  .for-you {
    padding: 56px 18px;
  }

  .for-you__text {
    font-size: 13px;
  }

  .closing {
    padding: 64px 18px;
  }

  .closing__title {
    font-size: 21px;
  }

  .closing__desc {
    font-size: 13px;
  }

  .closing__buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
