@charset "UTF-8";

/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
  --black: #1a1a1a;
  --gray:  #888;
  --light: #f4f2ee;
  --white: #fff;
  --border: #e0e0e0;
  --font-round: 'M PLUS Rounded 1c', 'Darumadrop One', sans-serif;
  --font-en: 'Slackside One', cursive;
}

html {
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
@media screen and (max-width: 374px) {
  html { font-size: 56.3%; }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: #fff;
  color: #000;
  font-family: var(--font-round);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  -webkit-text-size-adjust: 100% !important;
  min-width: 1100px;
  overflow-x: hidden;
}
@media screen and (max-width: 480px) {
  body { min-width: auto; }
}

img { border: 0; vertical-align: top; max-width: 100%; }
a { cursor: pointer; text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; }

@media screen and (max-width: 480px) {
  br.pc { display: none; }
}
br.sp { display: none; }
@media screen and (max-width: 480px) {
  br.sp { display: inline; }
}

/* ============================================
   DOT PATTERN (CSS版 — pat.png 相当)
   ============================================ */
.dot-pat {
  background-image: radial-gradient(circle, rgba(0,0,0,0.35) 1px, transparent 1px);
  background-size: 4px 4px;
}

/* ============================================
   BUTTON
   ============================================ */
.btn {
  display: inline-block;
  vertical-align: top;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  transition: color 0.5s;
  padding: 0 30px;
  font-family: var(--font-round);
  letter-spacing: 0.06em;
}
@media screen and (max-width: 480px) {
  .btn { padding: 0 20px; }
}
.btn.wh {
  background: #fff;
  color: #000;
  border: 1.5px solid #ccc;
}
.btn.l {
  width: 320px;
  height: 70px;
  line-height: 70px;
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  .btn.l {
    width: 300px;
    max-width: 100%;
    font-size: 1.6rem;
    height: 60px;
    line-height: 60px;
  }
}
.btn.m {
  min-width: 200px;
  font-size: 1.6rem;
  height: 50px;
  line-height: 50px;
}
@media screen and (max-width: 480px) {
  .btn.m {
    min-width: 140px;
    font-size: 1.4rem;
    height: 40px;
    line-height: 40px;
  }
}
@media (any-hover: hover) {
  .btn:hover { opacity: 0.7; }
}

/* ============================================
   WRAPPER
   ============================================ */
.p_wrap {
  width: 100%;
  overflow: hidden;
}

/* ============================================
   HEADER
   ============================================ */
header {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 10;
}

header a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ロゴ（左上） */
header .logo {
  margin: 25px auto 5px 25px;
  flex-shrink: 0;
}
header .logo a {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  header .logo {
    margin: 10px auto 28px 10px;
  }
}

.logo-mark {
  font-family: 'Slackside One', cursive;
  font-size: 3.2rem;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.06em;
}
.logo-cafe {
  font-family: 'Slackside One', cursive;
  font-size: 1.6rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.18em;
}

/* ナビ（右上、縦リスト、絶対配置） */
header nav {
  position: absolute;
  z-index: 1;
  top: 50px;
  right: 50px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  header nav { display: none; }
}

header nav a { transition: opacity 0.25s; }
@media (any-hover: hover) {
  header nav a:hover { opacity: 0.5; }
}

header .glo_nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: var(--font-round);
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  header .glo_nav { gap: 24px; font-size: 1.2rem; }
}

header .sns_list {
  margin-top: 30px;
  display: flex;
  gap: 0 15px;
}
header .sns_list a { display: flex; align-items: center; }
header .sns_list svg { width: 22px; height: 22px; color: #555; }

/* ハンバーガー（固定・丸ボタン） */
#ham {
  position: fixed;
  background: #000;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 40px;
  right: 40px;
  width: 60px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
  transition: opacity 0.5s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  z-index: 200;
}
@media screen and (max-width: 480px) {
  #ham {
    display: flex;
    top: 10px;
    right: 10px;
    width: 45px;
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    z-index: 200;
  }
}
#ham .line {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 9999px;
  background: #fff;
  position: relative;
  transform: translateX(2px);
  transition: transform 0.25s, background-color 0.25s;
}
@media screen and (max-width: 480px) {
  #ham .line {
    width: 21px;
    height: 1.5px;
    transform: translateX(1.5px);
  }
}
#ham .line::before,
#ham .line::after {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  border-radius: 9999px;
  background: #fff;
  transition: transform 0.25s;
}
#ham .line::before { transform: translate(-4px, -9px); }
@media screen and (max-width: 480px) {
  #ham .line::before { transform: translate(-3px, -7px); }
}
#ham .line::after { transform: translate(-3px, 9px); }
@media screen and (max-width: 480px) {
  #ham .line::after { transform: translate(-2px, 7px); }
}
@media (any-hover: hover) {
  #ham:hover .line { transform: translateX(0); }
  #ham:hover .line::before { transform: translate(0, -9px); }
  #ham:hover .line::after  { transform: translate(0, 9px); }
}

/* スクロール時にハンバーガー表示 */
body.nav_fix #ham {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  z-index: 200;
}

/* ナビオープン時 */
body.nav_open #ham .line {
  transform: translateX(0);
  background-color: rgba(255,255,255,0);
}
body.nav_open #ham .line::before {
  left: -4px; right: -1px;
  transform: translate(0, 1px) rotate(-45deg);
}
body.nav_open #ham .line::after {
  transform: translate(0, 2px) rotate(45deg);
  left: 2px; right: 2px;
}

body.nav_open nav {
  position: fixed;
  top: 65px;
  right: 65px;
}
@media screen and (max-width: 480px) {
  body.nav_open nav {
    display: block;
    top: 28px;
    right: 28px;
  }
}
body.nav_open nav::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -15px;
  right: -15px;
  clip-path: polygon(2px 5px, 100% 0, calc(100% - 4px) calc(100% - 5px), 0 100%);
  background-image: radial-gradient(circle, rgba(0,0,0,0.35) 1px, transparent 1px);
  background-size: 4px 4px;
}
body.nav_open nav .inr {
  position: relative;
  background: #fff;
  padding: 50px 30px 40px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  border-radius: 4px;
}

/* ============================================
   LOADING
   ============================================ */
@keyframes l3 {
  20%  { background-position: 0% 0%, 50% 50%, 100% 50%; }
  40%  { background-position: 0% 100%, 50% 0%, 100% 50%; }
  60%  { background-position: 0% 50%, 50% 100%, 100% 0%; }
  80%  { background-position: 0% 50%, 50% 50%, 100% 100%; }
}
.loading {
  transition: opacity 0.5s;
  position: fixed;
  width: 40px;
  top: calc(50vh - 20px);
  left: calc(50% - 20px);
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, #000 90%, #0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.333% 50%;
  animation: l3 1s infinite linear;
  z-index: 500;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .loading {
    width: 30px;
    top: calc(50vh - 15px);
    left: calc(50% - 15px);
  }
}
body.loaded .loading { opacity: 0; }

/* ============================================
   MV (.p_mv)
   ============================================ */
.p_mv {
  opacity: 0;
  transition: opacity 1s;
  padding-bottom: 180px;
  position: relative;
  min-height: 700px;
}
@media screen and (max-width: 480px) {
  .p_mv { padding-bottom: 60px; min-height: auto; }
}
body.loaded .p_mv { opacity: 1; }

/* ====================================================
   巨大縦書きタイトル（複数カラム）
   ==================================================== */
.p_mv .ttl {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 28px 0 0;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 0.5s, transform 1s 0.5s;
}
body.loaded .p_mv .ttl {
  opacity: 1;
  transform: translateY(0);
}

.p_mv .ttl span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Darumadrop One', 'M PLUS Rounded 1c', sans-serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.05em;
  color: #000;
  display: block;
}
@media screen and (max-width: 480px) {
  .p_mv .ttl { gap: 2px; padding-top: 16px; }
  .p_mv .ttl span { font-size: 2.8rem; }
}

/* 偶数カラムを下にずらしてリズムを作る */
.p_mv .ttl span:nth-child(even) { margin-top: 38px; }
/* 末尾の「居場所」を少し大きく */
.p_mv .ttl span:nth-child(6) { font-size: 5.6rem; }
/* アウトライン文字 */
.p_mv .ttl span.outline {
  -webkit-text-stroke: 1.8px #1a1a1a;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media screen and (max-width: 480px) {
  .p_mv .ttl span:nth-child(even) { margin-top: 20px; }
  .p_mv .ttl span:nth-child(6) { font-size: 3.1rem; }
}

/* ====================================================
   コピー：円形回転バッジSVG
   ==================================================== */
.p_mv .copy {
  position: absolute;
  z-index: 3;
  top: 160px;
  left: calc(50% + 190px);
  width: 250px;
  height: 250px;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.5s 0.8s, transform 0.5s 0.8s;
}
body.loaded .p_mv .copy {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 480px) {
  .p_mv .copy {
    width: 140px;
    height: 140px;
    top: auto;
    bottom: 20px;
    left: calc(50% + 30px);
  }
}

@keyframes badge-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.copy-badge {
  width: 100%;
  height: 100%;
  display: block;
}
/* 円形テキストのみ回転（SVG内のtextのみアニメーション） */
.copy-badge text:first-of-type {
  animation: badge-rotate 40s linear infinite;
  transform-origin: 140px 140px;
  transform-box: fill-box;
}

/* ====================================================
   建物写真（中央・pentagon clip-path）
   ==================================================== */
.p_mv .img1 {
  width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p_mv .img1::before {
  content: '';
  display: block;
  position: absolute;
  clip-path: polygon(50% 0, 100% 36%, 92% 100%, 7.2% 100%, 0 38%);
  width: 100%;
  height: 100%;
  bottom: -12px;
  right: -22px;
  transform: rotate(-5.5deg);
  background-image: radial-gradient(circle, rgba(0,0,0,0.3) 1px, transparent 1px);
  background-size: 4px 4px;
}
.p_mv .img1 img {
  width: 100%;
  height: auto;
  clip-path: polygon(50% 0, 100% 36%, 92% 100%, 7.2% 100%, 0 38%);
  box-shadow: 4px 8px 32px rgba(0,0,0,.14);
}
@media screen and (max-width: 480px) {
  .p_mv .img1 { width: 200px; }
  .p_mv .img1::before { bottom: -4px; right: -8px; }
}

/* ====================================================
   スナック flat lay（左 絶対配置）
   ==================================================== */
.p_mv .service {
  position: absolute;
  top: 60px;
  right: calc(50% + 260px);
  z-index: 3;
}
.service-label {
  display: block;
  font-family: 'Slackside One', cursive;
  font-size: 1.6rem;
  color: #666;
  text-align: left;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.p_mv .service img {
  width: 260px;
  height: auto;
  display: block;
}
@media screen and (max-width: 480px) {
  .p_mv .service {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px auto;
    text-align: center;
  }
  .p_mv .service img { width: 160px; margin: 0 auto; }
  .service-label { text-align: center; }
}

/* ====================================================
   手描き風矢印SVG
   ==================================================== */
.mv-arrow {
  position: absolute;
  left: calc(50% - 415px);
  top: 65px;
  width: 175px;
  z-index: 4;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .mv-arrow { display: none; }
}

/* ====================================================
   地図（右下 絶対配置）
   ==================================================== */
.p_mv .map {
  position: absolute;
  bottom: -80px;
  left: calc(50% + 230px);
  z-index: 3;
}
.p_mv .map img {
  width: 240px;
  height: auto;
  display: block;
}
@media screen and (max-width: 480px) {
  .p_mv .map {
    bottom: 0;
    left: auto;
    right: 10px;
  }
  .p_mv .map img { width: 130px; }
}

/* ====================================================
   サブ写真2（右上）
   ==================================================== */
.p_mv .img2 {
  position: absolute;
  top: 210px;
  left: calc(50% + 380px);
  width: 200px;
  height: auto;
  display: block;
  transform: rotate(2deg);
  z-index: 3;
  box-shadow: 3px 6px 18px rgba(0,0,0,.12);
}
@media screen and (max-width: 480px) {
  .p_mv .img2 { display: none; }
}

/* ====================================================
   サブ写真3（左下）
   ==================================================== */
.p_mv .img3 {
  position: absolute;
  bottom: 40px;
  left: calc(50% - 560px);
  width: 200px;
  height: auto;
  display: block;
  transform: rotate(-2deg);
  z-index: 3;
  box-shadow: 3px 6px 18px rgba(0,0,0,.12);
}
@media screen and (max-width: 480px) {
  .p_mv .img3 { display: none; }
}

/* 大きなアウトライン装飾テキスト */
.mv-deco {
  position: absolute;
  bottom: 220px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  text-align: center;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  font-family: 'Slackside One', cursive;
  font-size: 8rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
  -webkit-text-stroke: 1.5px rgba(0,0,0,0.055);
  -webkit-text-fill-color: transparent;
  color: transparent;
  user-select: none;
}
@media screen and (max-width: 900px) {
  .mv-deco { font-size: 5rem; bottom: 180px; }
}
@media screen and (max-width: 480px) {
  .mv-deco { font-size: 3rem; bottom: 100px; }
}

/* ============================================
   PARA ANIMATION（.para → .done）
   ============================================ */
.para {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 0.5s, transform 1s 0.5s;
}
.para.done {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   INTRO（ボイス・コンセプト）
   ============================================ */
.p_intro {
  padding: 0 0 40px;
}
@media screen and (max-width: 480px) {
  .p_intro { padding: 0 0 80px; }
}

/* ボイスリスト（散らし配置） */
.p_intro .voice_list {
  display: flex;
  flex-direction: column;
  width: 86.7%;
  margin: 0 auto;
  text-align: left;
  position: relative;
  /* .para を使わずに直接制御 */
  opacity: 1;
  transform: none;
}
/* ドットパターン装飾（pentagon） */
.p_intro .voice_list::before {
  content: '';
  display: block;
  position: absolute;
  clip-path: polygon(50.8% 0, 100% 36.5%, 91.1% 100%, 12% 98.7%, 0 37.3%);
  top: 244px;
  left: calc(50% + 340px);
  width: 320px;
  aspect-ratio: 832/954;
  background-image: radial-gradient(circle, rgba(0,0,0,0.3) 1px, transparent 1px);
  background-size: 4px 4px;
}
@media screen and (max-width: 480px) {
  .p_intro .voice_list::before {
    top: 180px;
    left: calc(50% + 60px);
    width: 130px;
    background-size: 2px 2px;
  }
}

/* ボイステキスト各アイテム */
.voice_list li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s 0.5s, transform 1s 0.5s;
}
.voice_list.done li { opacity: 1; transform: translateY(0); }
.voice_list.done li:nth-child(1) { transition: opacity 1s 0s, transform 1s 0s; }
.voice_list.done li:nth-child(2) { transition: opacity 1s 1s, transform 1s 1s; }
.voice_list.done li:nth-child(3) { transition: opacity 1s 2s, transform 1s 2s; }
.voice_list.done li:nth-child(4) { transition: opacity 1s 3s, transform 1s 3s; }
.voice_list.done li:nth-child(5) { transition: opacity 1s 4s, transform 1s 4s; }

/* 各ボイスの位置（youcafe.jp準拠） */
.voice_list li:nth-child(1) { margin-left: calc(50% + 50px); }
.voice_list li:nth-child(2) { margin-top: 14px; margin-left: calc(50% - 200px); }
.voice_list li:nth-child(3) { margin-top: -16px; margin-left: calc(50% - 10px); }
.voice_list li:nth-child(4) { margin-top: 14px; margin-left: calc(50% + 50px); }
.voice_list li:nth-child(5) { margin-top: 52px; margin-left: calc(50% - 70px); }

@media screen and (max-width: 480px) {
  .voice_list li:nth-child(1) { margin-left: calc(50% + 10px); }
  .voice_list li:nth-child(2) { margin-top: -20px; margin-left: calc(50% - 80px); }
  .voice_list li:nth-child(3) { margin-top: -30px; margin-left: calc(50% + 40px); }
  .voice_list li:nth-child(4) { margin-top: -40px; margin-left: calc(50% - 90px); }
  .voice_list li:nth-child(5) { margin-top: 0; margin-left: calc(50% - 20px); }
}

.voice-text {
  display: inline-block;
  font-family: 'Darumadrop One', var(--font-round);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.9;
  color: #000;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .voice-text { font-size: 1.5rem; }
}

/* コンセプトテキストエリア */
.p_intro .txt {
  margin-top: 85px;
  margin-left: calc(50% - 240px);
  text-align: left;
  position: relative;
}
@media screen and (max-width: 480px) {
  .p_intro .txt {
    margin: 100px auto 0;
    width: 270px;
  }
}

/* "Would you like to come?" */
.p_intro .txt .en {
  font-family: 'Slackside One', cursive;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  -webkit-text-stroke: 1.8px #1a1a1a;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
  display: block;
  margin-bottom: 48px;
  position: absolute;
  top: -130px;
  left: -160px;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 1s, clip-path 1s, transform 1s;
}
.p_intro .txt .en.done {
  opacity: 1;
  clip-path: inset(0 0% 0 0);
  transform: translateY(0) !important;
}
@media screen and (max-width: 480px) {
  .p_intro .txt .en {
    font-size: 1.8rem;
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 28px;
  }
}

.p_intro .txt p {
  font-size: 1.8rem;
  line-height: 2.22;
  text-align: left;
}
.p_intro .txt p + p { margin-top: 2em; }
@media screen and (max-width: 480px) {
  .p_intro .txt p { font-size: 1.5rem; }
}

/* テキストエリア内の写真（右・左に絶対配置） */
.p_intro .txt .txt-img1 {
  position: absolute;
  top: 0;
  left: 480px;
  width: 200px;
}
.p_intro .txt .txt-img1 img { width: 100%; height: auto; }
@media screen and (max-width: 480px) {
  .p_intro .txt .txt-img1 {
    width: 100px;
    top: -80px;
    left: calc(50% + 40px);
  }
}

.p_intro .txt .txt-img2 {
  position: absolute;
  top: 210px;
  left: -230px;
  width: 200px;
}
.p_intro .txt .txt-img2 img { width: 100%; height: auto; }
@media screen and (max-width: 480px) {
  .p_intro .txt .txt-img2 {
    width: 120px;
    bottom: -80px;
    left: calc(50% - 140px);
  }
}

/* ============================================
   ABOUT (.s_about)
   ============================================ */
.s_about {
  padding-top: 280px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .s_about { padding-top: 160px; }
}

/* ドットパターン装飾 */
.s_about::before {
  content: '';
  display: block;
  position: absolute;
  clip-path: polygon(50% 0, 100% 36%, 92% 100%, 7.2% 100%, 0 38%);
  top: 100px;
  left: calc(50% + 280px);
  width: 600px;
  aspect-ratio: 832/954;
  background-image: radial-gradient(circle, rgba(0,0,0,0.25) 1px, transparent 1px);
  background-size: 4px 4px;
  z-index: 0;
}
@media screen and (max-width: 480px) {
  .s_about::before { display: none; }
}

/* セクションタイトル */
.s_about .s_ttl {
  width: 740px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  display: block;
}
@media screen and (max-width: 480px) {
  .s_about .s_ttl { width: 270px; }
}

.s_about .s_ttl .ja {
  display: block;
  position: relative;
}
.s_about .s_ttl .ja-text {
  display: block;
  font-family: 'Darumadrop One', var(--font-round);
  font-size: 2.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 480px) {
  .s_about .s_ttl .ja-text { font-size: 1.8rem; }
}

.s_about .s_ttl .bal {
  display: inline-block;
  font-family: var(--font-round);
  font-size: 1.1rem;
  background: #000;
  color: #fff;
  padding: 4px 12px;
  border-radius: 9999px;
  position: absolute;
  top: -40px;
  left: 100px;
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  .s_about .s_ttl .bal {
    top: -30px;
    left: 60px;
    font-size: 0.9rem;
  }
}

.s_about .s_ttl .en {
  display: block;
  font-family: 'Slackside One', cursive;
  font-size: 2rem;
  -webkit-text-stroke: 1px #bbb;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: absolute;
  top: -60px;
  left: calc(50% + 90px);
  white-space: nowrap;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 480px) {
  .s_about .s_ttl .en {
    font-size: 1.4rem;
    left: calc(50% - 10px);
    top: -40px;
  }
}

.s_about .s_lead {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  color: #555;
  margin-top: 36px;
}
@media screen and (max-width: 480px) {
  .s_about .s_lead { font-size: 1.4rem; }
}

/* 卵マスコット */
.s_about .mark {
  position: absolute;
  top: 80px;
  right: calc(50% - 500px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.mark-label {
  font-family: 'Slackside One', cursive;
  font-size: 1.4rem;
  -webkit-text-stroke: 1px #888;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .s_about .mark {
    position: relative;
    top: auto;
    right: auto;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
}

/* About カードリスト */
.about_list {
  display: flex;
  flex-direction: column;
  width: 780px;
  margin: 60px auto 0;
  text-align: left;
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .about_list { width: 100%; padding: 0 20px 40px; }
}

.about_list li {
  position: relative;
}

/* カード1：左寄り */
.about_list li:nth-child(1) {
  width: 450px;
  margin-right: auto;
}
@media screen and (max-width: 480px) {
  .about_list li:nth-child(1) { width: 100%; margin-right: 0; }
}

/* カード2：右寄り */
.about_list li:nth-child(2) {
  width: 340px;
  margin: 80px -30px 0 auto;
}
@media screen and (max-width: 480px) {
  .about_list li:nth-child(2) { width: 100%; margin: 60px 0 0 0; }
}

/* カード3：中央少し左 */
.about_list li:nth-child(3) {
  width: 400px;
  margin: 80px auto 0;
}
@media screen and (max-width: 480px) {
  .about_list li:nth-child(3) { width: 100%; margin: 60px 0 0 0; }
}

/* 画像 */
.about_list .img {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 3px 6px 24px rgba(0,0,0,.10);
}
.about_list li:nth-child(1) .img img { transform: rotate(-2deg); }
.about_list li:nth-child(2) .img img { transform: rotate(1.5deg); }
.about_list li:nth-child(3) .img img { transform: rotate(-1deg); }
.about_list .img img { width: 100%; height: auto; display: block; }

/* ドットパターン装飾 */
.about_list li:nth-child(1)::after {
  content: '';
  display: block;
  position: absolute;
  clip-path: polygon(50% 0, 100% 36%, 92% 100%, 7.2% 100%, 0 38%);
  width: 200px;
  aspect-ratio: 1;
  background-image: radial-gradient(circle, rgba(0,0,0,0.25) 1px, transparent 1px);
  background-size: 4px 4px;
  right: -60px;
  top: -20px;
}
@media screen and (max-width: 480px) {
  .about_list li:nth-child(1)::after { display: none; }
}

.about_list .ttl {
  font-family: 'Darumadrop One', var(--font-round);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  margin-bottom: 12px;
}
.about_list .ttl em {
  font-style: italic;
  font-family: 'Slackside One', cursive;
  font-size: 1.4rem;
  color: #888;
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
  -webkit-text-stroke: 0.8px #888;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about_list p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #555;
}

/* ============================================
   GUIDE (.s_guide)
   ============================================ */
.s_guide {
  position: relative;
  padding-top: 200px;
}
@media screen and (max-width: 480px) {
  .s_guide { padding-top: 80px; }
}

/* ドットパターン pentagon */
.s_guide::before {
  content: '';
  display: block;
  position: absolute;
  clip-path: polygon(50.8% 0, 100% 36.5%, 91.1% 100%, 12% 98.7%, 0 37.3%);
  top: 180px;
  left: calc(50% - 600px);
  width: 700px;
  aspect-ratio: 832/954;
  background-image: radial-gradient(circle, rgba(0,0,0,0.25) 1px, transparent 1px);
  background-size: 4px 4px;
}
@media screen and (max-width: 480px) {
  .s_guide::before {
    top: 100px;
    left: calc(50% - 160px);
    width: 200px;
    background-size: 2px 2px;
  }
}

.s_guide .s_ttl {
  display: flex;
  width: 700px;
  margin: 0 auto;
  justify-content: flex-end;
  position: relative;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .s_guide .s_ttl { width: 240px; }
}

.s_guide .s_ttl .ja {
  display: block;
}
.s_guide .s_ttl .ja-text {
  font-family: 'Darumadrop One', var(--font-round);
  font-size: 2.4rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #000;
  display: block;
}
@media screen and (max-width: 480px) {
  .s_guide .s_ttl .ja-text { font-size: 1.7rem; }
}

.s_guide .s_ttl .en {
  font-family: 'Slackside One', cursive;
  font-size: 2.2rem;
  -webkit-text-stroke: 1.5px #1a1a1a;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 12px;
}
.s_guide .s_ttl .en strong {
  font-family: 'Slackside One', cursive;
  font-size: 3rem;
  -webkit-text-stroke: 2px #1a1a1a;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .s_guide .s_ttl .en { font-size: 1.7rem; }
  .s_guide .s_ttl .en strong { font-size: 2.2rem; }
}

.s_guide .bal {
  font-family: var(--font-round);
  font-size: 1.6rem;
  line-height: 2;
  color: #555;
  text-align: center;
  margin-top: 32px;
}
@media screen and (max-width: 480px) {
  .s_guide .bal { font-size: 1.4rem; }
}

/* 2枚の看板 */
.s_guide .guide {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 60px;
  width: 900px;
  margin: 40px auto 0;
}
@media screen and (max-width: 480px) {
  .s_guide .guide {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
    padding: 0 20px;
  }
}

.sign-card {
  background: #2d3a2d;
  border: 5px solid #8B6914;
  border-radius: 4px;
  padding: 32px 24px 28px;
  color: #f0ede0;
  text-align: center;
  width: 380px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  box-shadow: 4px 8px 20px rgba(0,0,0,.2);
}
.s_guide .guide .sign-card:nth-child(1) { transform: rotate(-2deg); }
.s_guide .guide .sign-card:nth-child(2) { transform: rotate(2deg); }
@media screen and (max-width: 480px) {
  .sign-card {
    width: 100%;
    max-width: 300px;
    min-height: 180px;
    padding: 24px 16px;
  }
  .s_guide .guide .sign-card:nth-child(1),
  .s_guide .guide .sign-card:nth-child(2) { transform: none; }
}

.sign-label {
  font-family: var(--font-round);
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  opacity: 0.6;
}
.sign-main {
  font-family: 'Darumadrop One', var(--font-round);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.75;
}
.sign-note {
  font-family: var(--font-round);
  font-size: 1.2rem;
  opacity: 0.6;
  line-height: 1.7;
}

/* サービスリスト */
.s_guide .service {
  background: var(--light);
  padding: 60px 40px;
  margin-top: 80px;
}
@media screen and (max-width: 480px) {
  .s_guide .service { padding: 40px 20px; margin-top: 60px; }
}

.s_guide .service .ttl {
  font-family: 'Darumadrop One', var(--font-round);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  display: block;
}

.service_list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .service_list { grid-template-columns: repeat(4, 1fr); }
}

.service_list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: var(--font-round);
}

/* チェックリスト */
.check_list {
  max-width: 700px;
  margin: 32px auto 0;
  text-align: left;
  padding: 0 20px;
}
.check_list li {
  font-size: 1.5rem;
  line-height: 2;
  color: #333;
  padding-left: 1.4em;
  position: relative;
}
.check_list li::before {
  content: '✓';
  position: absolute;
  left: 0;
}

/* CTA ボタン */
.s_guide > .btn {
  margin-top: 48px;
  display: inline-block;
}

/* 予約エリア */
#contact { padding-bottom: 80px; }

/* ============================================
   INSTAGRAM (.s_instagram)
   ============================================ */
.s_instagram {
  background: #f0ede8;
  padding: 64px 0 0;
}

.s_instagram .s_ttl {
  text-align: center;
  margin-bottom: 36px;
}
.en-wave {
  font-family: 'Slackside One', cursive;
  font-size: 2rem;
  -webkit-text-stroke: 1px #444;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.06em;
  display: inline-block;
}
@media screen and (max-width: 480px) {
  .en-wave { font-size: 1.4rem; }
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media screen and (max-width: 480px) {
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline li:nth-child(n+7) { display: none; }
}

.insta-cell {
  overflow: hidden;
  display: block;
}
.insta-cell img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}
@media (any-hover: hover) {
  .insta-cell:hover img { transform: scale(1.06); }
}

/* ============================================
   ACCESS (.s_map)
   ============================================ */
.s_map {
  background: #fff;
  padding: 80px 24px;
}

.s_map .s_ttl {
  margin-bottom: 40px;
}
.s_map .s_ttl .en {
  display: block;
  font-family: 'Slackside One', cursive;
  font-size: 2.4rem;
  -webkit-text-stroke: 1.5px #1a1a1a;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.s_map .s_ttl .ja {
  display: block;
  font-family: 'Darumadrop One', var(--font-round);
  font-size: 1.6rem;
  color: #888;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 480px) {
  .s_map .s_ttl .en { font-size: 1.8rem; }
  .s_map .s_ttl .ja { font-size: 1.3rem; }
}

.s_map .inr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
@media screen and (max-width: 480px) {
  .s_map .inr { grid-template-columns: 1fr; }
}

#map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}
@media screen and (max-width: 480px) {
  #map iframe { min-height: 260px; }
}

.s_map .access {
  display: flex;
  flex-direction: column;
}
.s_map .access .img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.s_map .access .txt {
  font-size: 1.5rem;
  line-height: 2;
  text-align: left;
  padding: 20px 24px 12px;
  color: #333;
}
.s_map .access .address {
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: left;
  padding: 0 24px 20px;
  color: #555;
}
.s_map .access .address .ico { margin-right: 0.2em; }
.s_map .access .address a { color: #0096d2; }
.s_map .access .btn.wh {
  margin: 0 24px 24px;
  width: calc(100% - 48px);
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
footer .ft1 {
  padding: 30px;
  background-image: radial-gradient(circle, rgba(0,0,0,0.35) 1px, transparent 1px);
  background-size: 4px 4px;
}
@media screen and (max-width: 480px) {
  footer .ft1 { padding: 10px; }
}

footer .ft1 .inr {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  padding: 70px 6% 80px;
}
@media screen and (max-width: 480px) {
  footer .ft1 .inr {
    padding: 35px 7% 25px;
    display: block;
  }
}

footer .ft1 .inr > .ttl {
  margin: 50px auto 44px;
  width: 100%;
  font-family: var(--font-round);
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  footer .ft1 .inr > .ttl {
    font-size: 1.4rem;
    margin: 30px 0 18px;
  }
}

footer .contact {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 40px;
}
@media screen and (max-width: 480px) {
  footer .contact { padding-bottom: 28px; gap: 20px; }
}

footer .contact .logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-right: auto;
  text-decoration: none;
}
.footer-logo-mark {
  font-family: 'Slackside One', cursive;
  font-size: 2.4rem;
  color: #1a1a1a;
  letter-spacing: 0.06em;
}
.footer-logo-cafe {
  font-family: 'Slackside One', cursive;
  font-size: 1.4rem;
  color: #888;
  letter-spacing: 0.18em;
}

footer .us {
  width: 50%;
  min-width: 560px;
  box-sizing: border-box;
  padding-right: 65px;
}
@media screen and (max-width: 480px) {
  footer .us { padding-right: 0; width: 100%; min-width: 0; }
}

footer .us .plan .name h3 {
  font-family: var(--font-round);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}
footer .us .plan .name a {
  font-size: 1.4rem;
  color: #0096d2;
  text-decoration: underline;
}

footer .us .plan + .txt { margin-top: 20px; }
footer .us .txt {
  font-size: 1.4rem;
  line-height: 1.71;
  color: #555;
}

footer .us .link_list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  width: 340px;
  gap: 16px;
  font-size: 1.2rem;
}
footer .us .link_list li a {
  color: #0096d2;
  text-decoration: underline;
}

footer .watacafe {
  flex: 1;
  background: #f4f4f4;
  border-radius: 10px;
  padding: 50px 50px 40px;
}
@media screen and (max-width: 480px) {
  footer .watacafe {
    margin-top: 15px;
    border-radius: 5px;
    padding: 20px;
  }
}
footer .watacafe h3 {
  font-family: var(--font-round);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
footer .watacafe p {
  font-size: 1.4rem;
  line-height: 1.71;
  color: #555;
}
footer .watacafe .link_list {
  margin-top: 20px;
  font-size: 1.4rem;
}
footer .watacafe .link_list li a {
  color: #0096d2;
  text-decoration: underline;
}

footer .ft2 {
  background: #1a1713;
  color: rgba(255,255,255,.7);
  padding: 32px 0;
  text-align: center;
}
.copyright {
  font-size: 1.3rem;
  color: rgba(255,255,255,.4);
}

/* ============================================
   TABLET (≤900px)
   ============================================ */
@media screen and (max-width: 900px) {
  body { min-width: auto; }
  .p_mv .img1 { width: 360px; }
  .p_mv .service { right: calc(50% + 170px); }
  .p_mv .service img { width: 160px; }
  .p_mv .map { left: calc(50% + 150px); }
  .p_mv .map img { width: 200px; }
  .p_mv .img2 { left: calc(50% + 270px); width: 140px; }
  .p_mv .img3 { left: calc(50% - 380px); width: 140px; }
  .about_list { width: 100%; padding: 0 24px 60px; }
  .about_list li:nth-child(1),
  .about_list li:nth-child(2),
  .about_list li:nth-child(3) { width: 100%; margin: 0 0 60px 0; }
  .s_guide .guide { width: 100%; padding: 0 24px; }
  footer .ft1 .inr { flex-direction: column; }
  footer .us { width: 100%; min-width: 0; padding-right: 0; }
}

/* ============================================
   MOBILE (≤480px)
   ============================================ */
@media screen and (max-width: 480px) {
  .p_mv .ttl { padding: 16px 0; }
  .p_intro .voice_list { width: 92%; }
  .s_about .s_ttl { margin: 0 auto; }
  .s_about .mark { display: none; }
  .s_guide .s_ttl { margin: 0 auto; }
  .service_list { grid-template-columns: repeat(4, 1fr); gap: 16px 8px; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .s_map .inr { grid-template-columns: 1fr; }
  footer .ft1 .inr { display: block; }
  footer .us .link_list { width: 100%; }
}
