

body{
    margin: 0;
    background: #f1deb4;
    font-family: 'Noto Sans JP', sans-serif;
}

.cafe-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  color: #f6f1ea;
  background-image: url("images/cafe-lp-fv.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  font-family: "Noto Serif JP", serif;
}

.cafe-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  z-index: 1;
}

.cafe-hero__header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
}

.cafe-hero__logo {
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: 400;
  line-height: 1;
}

.cafe-hero__nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.cafe-hero__nav a {
  color: #f6f1ea;
  text-decoration: none;
}

.cafe-hero__nav span {
  opacity: 0.9;
}

.cafe-hero__main-copy {
  position: absolute;
  z-index: 2;
  left: 10%;
  top: 25%;
}

.cafe-hero__main-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.35;
  letter-spacing: 0.06em;
  font-weight: 300;
}

.cafe-hero__sub-copy {
  position: absolute;
  z-index: 2;
  left: 14.2%;
  bottom: 27%;
  margin: 0;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Inria Serif", serif;
  font-weight: 400;
}

.cafe-hero__info {
  position: absolute;
  z-index: 2;
  right: 14%;
  bottom: 10%;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.45;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-family:  "Cormorant Garamond", serif;
}

.cafe-hero__info p {
  margin: 0;
}

.slow-hours {
  background: #f3e6c8;
  padding: 110px 0 130px;
  overflow: hidden;
}

.slow-hours__inner {
  width: min(1240px, 90%);
  margin: 0 auto;
}

.slow-hours__heading {
  margin-bottom: 70px;
}

.slow-hours__heading h2 {
  margin: 0 0 34px;
  font-family: "Inria Serif", serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
  font-weight: 400;
  color: #1f1a16;
}

.slow-hours__heading p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.8;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: #1f1a16;
}

.slow-hours__gallery {
  position: relative;
  min-height: 1010px;
}

.slow-hours__photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
}

.slow-hours__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* 右上の店内写真 */
.slow-hours__photo--main {
  top: -120px;
  right: 0;
  width: 58%;
  height: 420px;
}

/* 左のラテ写真 */
.slow-hours__photo--latte {
  top: 100px;
  left: 0;
  width: 32%;
  height: 420px;
}

/* 左下の窓際写真 */
.slow-hours__photo--window {
  top: 610px;
  left: 19%;
  width: 26%;
  height: 430px;
}

/* 右下のコーヒー写真 */
.slow-hours__photo--table {
  top: 500px;
  right: 2%;
  width: 43%;
  height: 410px;
}

.slow-hours__word {
  position: absolute;
  margin: 0;
  font-family: "Inria Serif", serif;
  color: #1f1a16;
  letter-spacing: 0.28em;
  font-weight: 400;
  line-height: 1;
}

.slow-hours__word--breathe {
  top: 430px;
  left: 57%;
  font-size: clamp(24px, 2.1vw, 34px);
}

.slow-hours__word--rush {
  top: 700px;
  left: 2%;
  font-size: clamp(24px, 2.1vw, 34px);
}

.slow-hours__heading,
.slow-hours__photo,
.slow-hours__word {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 1.4s ease,
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.4s ease;
}

.slow-hours.is-visible .slow-hours__heading,
.slow-hours.is-visible .slow-hours__photo,
.slow-hours.is-visible .slow-hours__word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* 出る順番 */
.slow-hours.is-visible .slow-hours__heading {
  transition-delay: 0.05s;
}

.slow-hours.is-visible .slow-hours__photo--main {
  transition-delay: 0.18s;
}

.slow-hours.is-visible .slow-hours__photo--latte {
  transition-delay: 0.34s;
}

.slow-hours.is-visible .slow-hours__word--breathe {
  transition-delay: 0.48s;
}

.slow-hours.is-visible .slow-hours__photo--table {
  transition-delay: 0.58s;
}

.slow-hours.is-visible .slow-hours__photo--window {
  transition-delay: 0.72s;
}

.slow-hours.is-visible .slow-hours__word--rush {
  transition-delay: 0.86s;
}

.place-for {
  background: #f3e6c8;
  padding: 110px 0 120px;
  overflow: hidden;
}

.place-for__inner {
  width: min(1320px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 90px;
  align-items: center;
}

.place-for__text {
  width: 100%;
}

.place-for__heading {
  margin-bottom: 86px;
}

.place-for__heading h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 20px;
  font-family: "Inria Serif", serif;
  font-size: clamp(38px, 3.4vw, 56px);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #16120f;
}

.place-for__heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 460px;
  height: 2px;
  background: #16120f;
}

.place-for__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.place-for__item {
  margin: 0;
}

.place-for__row {
  display: flex;
  align-items: baseline;
  gap: 25px;
  margin-bottom: 18px;
}

.place-for__time {
  width: 110px;
  flex-shrink: 0;
  text-align: right;
  font-family: "Inria Serif", serif;
  font-size: clamp(20px, 2vw, 32px);
  letter-spacing: 0.12em;
  font-weight: 400;
  color: rgba(22, 18, 15, 0.62);
}

.place-for__label {
  font-family: "Inria Serif", serif;
  font-size: clamp(36px, 3.3vw, 54px);
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #16120f;
}

.place-for__item p {
  margin: 0 0 0 190px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: rgba(22, 18, 15, 0.82);
}

.place-for__photo {
  width: 100%;
  height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  margin-top: 120px;
}

.place-for__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.place-for__heading,
.place-for__item,
.place-for__photo {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 1.3s ease,
    transform 1.3s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.3s ease;
}

.place-for.is-visible .place-for__heading,
.place-for.is-visible .place-for__item,
.place-for.is-visible .place-for__photo {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.place-for.is-visible .place-for__heading {
  transition-delay: 0.05s;
}

.place-for.is-visible .place-for__item:nth-child(1) {
  transition-delay: 0.18s;
}

.place-for.is-visible .place-for__item:nth-child(2) {
  transition-delay: 0.34s;
}

.place-for.is-visible .place-for__item:nth-child(3) {
  transition-delay: 0.5s;
}

.place-for.is-visible .place-for__photo {
  transition-delay: 0.42s;
}

.philosophy{
  padding: 110px 0 130px;
  background: #f3e6c8;
}

.philosophy-inner{
  width: min(1180px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 500px 1fr;
  align-items: center;
  gap: clamp(56px, 7vw, 110px);
}

.philosophy-image{
  width: 100%;
  height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.philosophy-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.philosophy-text{
  color: #16120f;
  margin-left: 80px;
  
}

.philosophy-title{
  margin-bottom: 78px;
  font-family: "Inria Serif", serif;
  font-size: clamp(36px, 3.3vw, 52px);
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #16120f;

}

.philosophy-desc{
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #16120f;
}

.philosophy-desc + .philosophy-desc{
  margin-top: 42px;
}

.access{
    padding: clamp(40px, 6vw, 80px) 0;
    background: rgba(255,255,255,0.35);
}

.access-inner{
    width: min(1100px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.access-title{
    font-size: 12px;
    letter-spacing: 0.22em;
    color: #777;
    margin: 0 0 16px;
}

.access-desc{
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.8;
    color: #222;
    margin: 0 0 24px;
}

.access-info{
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.08em;
    color: #555;
    margin: 0;
}

.access-map{
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 10px;
}

.access-map img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
*, *::before, *::after {
  box-sizing: border-box;
}



@media(max-width: 768px){
    .counter-inner,
    .interior-inner,
    .philosophy-inner,
    .access-inner{
        padding: 0 20px;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        gap: 32px;
    }

    .philosophy-image,
    .access-map,
    .counter-image,
    .interior-image{
        width: 100%;
        max-width: 100%;
        aspect-ratio: 4/3;
        order: 1;
    }

    .counter-desc,
    .interior-desc,
    .philosophy-desc,
    .access-desc{
        line-height: 1.8;
        font-size: 16px;
    }

    .counter-title,
    .interior-title,
    .philosophy-title,
    .access-title{
        letter-spacing: 0.2em;
        margin-bottom: 20px;
    }

    .counter,
    .interior,
    .hero{
        display: flex;
        align-items: center;
        min-height: 100svh;
    }
    .philosophy,
    .access{
        min-height: auto;
        display: block;
        padding: 64px 0;
    }

    .counter-text,
    .interior-text,
    .philosophy-text,
    .access-text{
        order: 2;
        text-align: center;
        max-width: 34ch;
        margin: 0 auto;
    }
    .hero-sub{
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 24ch;
        margin-top: 16px;
    }
    .hero-copy{
        max-width: 100%;
        display: block;
        white-space: normal;
        text-align: center;
    }
    .hero{
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

   
}