@charset "utf-8";

/* カラー/フォント */
:root {
  --text-color: #FFFFFF;
  --main-color: #C18259;
  --base-color: #002131;
  --ff-base-jp: "Noto Serif JP", serif;
  --ff-base-jp-read: "Hiragino Mincho ProN" ,"Noto Serif JP", serif;
  --ff-en: "Bodoni Moda", "Times New Roman", serif;
  --ff-en-nav: "Playfair Display", "Bodoni Moda", "Times New Roman", serif;
}

/* ============================
コンポーネント
============================ */
/* タイトル(コンセプトセクションのみ) */
.c-sectTitle_concept {
  max-width: 310px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 64px;
}

.c-sectTitle_concept__en {
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: var(--ff-en);
  font-size: 3.2rem;
  color: var(--main-color);
  margin: 0;
}

.c-sectTitle_concept__jp {
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: 1.6rem;
  color: var(--main-color);
  margin: 0; 
}

.c-sectTitle_concept::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: var(--main-color);
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .c-sectTitle_concept {
    max-width: 500px;
  }

  .c-sectTitle_concept__en {
    font-size: 4.0rem;
  }

  .c-sectTitle_concept__jp {
    font-size: 2.1rem;
  }
}

/* タイトル(その他全て) */
.c-sectTitle {
  max-width: 310px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 54px;
}

.c-sectTitle__en {
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: var(--ff-en);
  font-size: 3.2rem;
  color: var(--main-color);
  margin: 0;
  font-weight: 200;
}

.c-sectTitle::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: var(--main-color);
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .c-sectTitle {
    max-width: 500px;
  }

  .c-sectTitle__en {
    font-size: 4.0rem;
  }
}

/* ============================
ベース
============================ */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--base-color);
  font-family: var(--ff-base-jp);
  font-weight: 400;
  font-size: 1.4rem;
  padding-top: 0;
}

@media (min-width: 768px) {
  body { 
    font-size: 1.6rem; 
  }
}

.l-container {
  padding-right: 24px;
  padding-left: 24px;
  /* 1160px + 24px + 24px = 1208px */
  max-width: 1208px;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--base-color);
}


/* リンクカラーのリセット */
a { 
  color: inherit; text-decoration: none; 
}


/* ============================
ヘッダー
============================ */
.header {
  position: absolute; 
  top: 0; 
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 ;
  padding: 12px clamp(2rem, 8vw, 10rem) 12px 5rem;
}

.l-header__nav {
  margin-left: auto;
}

.l-header__logo img {
  height: clamp(28px, 4vw, 56px); 
  display: block;
}

.l-header__nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10rem;
}

.l-header__nav a {
  font-weight: 700;
  letter-spacing: .06em;
}

.l-header__nav a:hover { opacity: .8; }

/* ---- SP版(ハンバーガーメニュー) ---- */
.l-header__hamburger {
  display: none;
  width: 40px; 
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  z-index: 99999;     
}

.l-header__hamburger span {
  display: block;
  width: 30px; height: 2px;
  background: var(--text-color);
  border-radius: 1.5px;
  transition: transform .5s ease, opacity .5s ease;
}

/* active */
.l-header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.l-header__hamburger.active span:nth-child(2) { opacity: 0; }
.l-header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---- SP版/ナビゲーション開く ---- */
.l-header__SPnav {
  position: fixed;
  inset: 0; 
  background: var(--base-color);
  z-index: 1000;
  display: flex; 
  align-items: center;
  justify-content: center;
  padding: 100px 30px;
  transform: translateX(100%);  
  transition: transform .35s ease, opacity .35s ease;
  opacity: 0;
  pointer-events: none;
}

.l-header__SPnav.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.l-header__SPnav ul {
  list-style: none;
  padding: 0; 
  margin: 0;
  text-align: center;
}

.l-header__SPnav a {
  display: block;
  padding: 14px 0;
  font-size: 2.1rem;
}

/* 開いている間は背景スクロール無効 */
.no-scroll { overflow: hidden; }


@media (max-width: 768px) {
  .l-header__logo img { 
    height: 40px;
   }

  .l-header__nav {
    display: none; 
  }     
  .l-header__hamburger { 
    display: flex; } 
}

/* ----メインビジュアル(TOPページ) ---- */
.p-topMv {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--text-color);
}

.p-topMv::after { 
  content:"";
  position:absolute;
  inset:0;
}

.p-topMvImg {
  position: absolute;
  inset: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  display: block;
  opacity: 0.8;
}

.p-topMvIcon {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 34vw, 460px);  
  max-width: 300px;
}

.p-topMvCopy {
  position: absolute;
  top: 50%; right: 13%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-align: left;
  font: var(--ff-base-jp-read);
  font-size: 1.8rem;
  font-weight: 100;
  line-height: 3.8rem;
  letter-spacing: 0.5rem;
}

.p-topMvCopy span {
   display: inline-block;
   text-indent: 3em;
}

.p-topMvCopy_line {
  display: inline-block;
  text-indent: 3em;
  opacity: 0;
}


@media (max-width: 768px){
  .p-topMvCopy { 
    display: none; 
  } 
  .p-topMvIcon {
    max-width: 180px;
  }
}

/* ============================
TOPページ
============================ */
/* リード文 */
.p-topLead {
  padding-top: 64px;
  padding-bottom: 64px;
}

.p-topLead__text {
  text-align: center;
  line-height: 1.8;
  font-weight: 100;
}

.p-topLead__text span {
  color: var(--main-color);
}

/* 「コンセプト」セクション */
.p-topConcept {
  padding-top: 64px;
  padding-bottom: 32px;  
}

.p-concept__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* --- SP --- */
.p-concept__item {
  position: relative;
  margin-bottom: 40px;
}

.p-concept__img {
  width: 100vw;
  height: auto;
  object-fit: cover;
  display: block;
  filter: brightness(85%);
}

.p-conceptCard {
  transition: margin 0s;
  background: var(--text-color);
  color: #000;
  padding: 2.4rem 3.2rem;
  max-width: 680px;
  margin-top: -40px; /* 下にかぶせる */
  position: relative;
  z-index: 2;
  margin-right: 24px;
  margin-left: 24px;
}
/* AOSの透明度制御を最大0.6にする */
[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:0.7;transform:translateZ(0)}

.p-conceptCard .p-conceptCard__title {
  font-family: var(--ff-en);
  font-size: 2.4rem;
  font-weight: 600;
}

.c-viewMore img {
  width: 120px;
}

/* --- PC --- */
@media (min-width: 768px) {
  .p-concept__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 54px;
    align-items: flex-end;
  }

  .p-concept__img {
    width: 60%;
    min-height: 500px;
  }

  .p-concept__item--about .p-conceptCard,
  .p-concept__item--menu .p-conceptCard {
    width: 60%;
    padding: 3rem 4rem;
    margin: 0;
    position: relative;
    top: 0;
    left: -10%;
    /* transform: translateX(-20%); ほんの少し画像にかぶせる */
    z-index: 2;
  }

  .p-concept__item--books .p-conceptCard {
    right: -10%;
  }

  /* 偶数行は逆並び */
  .p-concept__item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .c-viewMore img {
    width: 130px;
  }
}

/* 「アクセス」セクション */

.p-topAccess {
  padding-top: 64px;
  padding-bottom: 64px;
}

.p-topAccess_shopicon {
  width: 100px;
  display: block;
  margin: 0 auto;
  padding-bottom: 40px;
}

.p-topAccess_shopinfo {
  padding-bottom: 32px;
  margin: 0; 
  font-weight: 100;
}

.p-topAccess_shopmap {
  width: 100%;
  aspect-ratio: 1 / 1; 
  object-fit: cover;  
  display: block;
}

@media screen and (min-width: 768px) {
  .p-topAccess_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }

  .p-topAccess_grid_left { 
    grid-row: 1 / 3;
  }

  .p-topAccess_grid_right { 
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    display: grid;  
    row-gap: 20px;
    justify-items: center; 
  }

  .p-topAccess_shopicon {
    min-width: 140px;
  }
}

/* ============================
フッダー
============================ */
.footer {
  background-color:#E5E8EA;
  color: var(--main-color);
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
}

.l-footer {
  width: 100%;
  margin: 0 auto;
}

.l-footer__nav ul {
  display: flex;
  justify-content: center;
  gap: 60px;
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  
}

.l-footer__nav a {
  font-family: var(--ff-en-nav);
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  color: var(--main-color);
  transition: opacity 0.3s;
}

.l-footer__nav a:hover {
  opacity: 0.7;
}

.l-footer__copyright {
  display: block;
  text-align: center;
  color: var(--main-color);
  font-size: 1.2;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 60px 40px;
  }

  .l-footer__nav ul {
    justify-content: flex-end;
    gap: 80px;
    margin-bottom: 40px;
  }

  .l-footer__nav a {
    font-size: 1.8rem;
  }

  .l-footer__copyright {
    text-align: center;
    font-size: 1.3rem;
  }
}

/* ============================
Menuページ
============================ */

/* ----メインビジュアル(サブページ共通) ---- */
.p-subMv {
  position: relative;
  width: 100%;
  height: clamp(240px, 45vh, 420px);
  overflow: hidden;
  background-color: var(--text-color);
}

.p-subMvImg {
  position: absolute;
  inset: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  object-position: 50% 40%;
  opacity: 0.8;
  display: block;
  z-index: 0;
}

.p-subpage__title {
  position: absolute;
  top: 70%; 
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(220px, 34vw, 460px);
  max-width: 300px;
  color: var(--main-color);
  text-align: center;
  font-family: var(--ff-en);
  font-size: clamp(4.0rem, 4vw, 6.4rem);
  font-weight: 100;
  z-index: 2; /* ←これが一番上に来る！ */
}

/* ----メニューセクション ---- */
.p-menu {
  padding-top: 64px;
  padding-bottom: 64px;
}

.p-menuLead {
  margin: 0;
  padding-bottom: 56px;
  text-align: center;
  font-weight: 100;
}

.p-drink_menuCard__desc {
  font-weight: 100;
}

.p-drink_menuCard {
  font-weight: 100;
}

.p-drink_menuCard img,
.p-sweet_menuCard img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  vertical-align: middle;
  object-position: center;
  display: block;
}

.p-drink_menu,
.p-sweet_menu--3col {
  display: grid;
  gap: 2.4rem;
  margin-top: 3.2rem;
  list-style: none;
  padding: 0;
}

.p-drink_menu,
.p-sweet_menu--3col {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  }

.p-drink_menuCard__title,
.p-sweet_menuCard__title {
  text-align: center;
  font-weight: 500;
  line-height: 2.5rem;
}

.p-drink_menuCard__title span,
.p-sweet_menuCard__title span {
  font-size: 1.4rem;
  font-weight: 400;
} 


@media (min-width: 769px) {
  /* 3列 */
  .p-drink_menu--3col,
  .p-sweet_menu--3col {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
    margin-bottom: 64px;
  }

  /* 4列 */
  .p-drink_menu--4col {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 64px;
  }
}

.p-drink_menuCard,
.p-sweet_menuCard {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.p-drink_menuCard img,
.p-sweet_menuCard img {
  width: 100%;
  height: auto;
  display: block;
}

.p-drink_menuCard__title span,
.p-sweet_menuCard__title span {
  font-size: 1.5rem;
} 

/* ============================
Contactページ
============================ */
.p-contact {
  color: var(--text-color, #fff);
  padding: 80px 24px;
}

.p-contact .l-container {
  max-width: 720px;
  margin: 0 auto;
}

.c-sectTitle__en {
  font-family: var(--ff-en, "Bodoni Moda", serif);
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: 0.05em;
}

.p-contact__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-contactLead {
  text-align: center;
  line-height: 2.5;
  font-weight: 100;
  margin-bottom: 56px;
}

/* 各入力ブロック */
.p-contact__item {
  display: flex;
  flex-direction: column;
}

/* ラベル */
.p-contact__item label {
  font-size: 1.6rem;
  font-family: var(--ff-base-jp, "Noto Serif JP", serif);
  margin-bottom: 8px;
}

/* 必須マーク */
.required {
  color: var(--main-color);
  margin-left: 4px;
  font-size: 1.4rem;
}

/* 入力欄 */
.p-contact__item input,
.p-contact__item textarea {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
  border: none;
  border-radius: 4px;
  background: #ffffff;
  color: #000;
  box-sizing: border-box;
}

.p-contact__item input:focus,
.p-contact__item textarea:focus {
  outline: 2px solid var(--main-color, #C18259);
  outline-offset: 2px;
}

.p-contact__submit {
  text-align: center;
  margin-top: 24px;
}

.p-contact__submit button {
  background-color: var(--main-color, #C18259);
  color: #fff;
  font-size: 1.8rem;
  padding: 1.4rem 4rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.p-contact__submit button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .p-contact {
    padding: 64px 16px;
  }

  .c-sectTitle__en {
    font-size: 2.4rem;
  }

  .p-contact__item label {
    font-size: 1.4rem;
  }

  .p-contact__item input,
  .p-contact__item textarea {
    font-size: 1.4rem;
  }

  .p-contact__submit button {
    width: 100%;
    font-size: 1.6rem;
  }
}

.stars-bg {
  position: fixed;
  inset: 0;
  z-index: 0;              /* 一番後ろ（背景） */
  pointer-events: none;    /* クリック操作を妨げない */
  overflow: hidden;
}

/* 星の見た目 */
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 2.4s infinite ease-in-out;
}

/* 点滅アニメーション */
@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}


