@charset "utf-8";

/* =========================
   枕流亭 用カスタム
   高級・シック版
   ========================= */

:root {
  --primary-color: #1b3028;
  --primary-accent: #b89a5f;
  --primary-accent-soft: #d8c39a;
  --primary-inverse-color: #f8f5ef;
  --bg-dark: #0d1512;
  --bg-dark-soft: #14201b;
  --text-main: #f3efe8;
  --text-soft: rgba(243, 239, 232, 0.78);
  --card-text: #4d4a45;
  --card-bg: #fbfaf7;
  --line-soft: rgba(255,255,255,0.10);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.22);
}

/* 全体 */
html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, rgba(184,154,95,0.08), transparent 30%),
    linear-gradient(180deg, #101916 0%, #0d1512 100%);
  color: var(--text-main);
}

/* リンク */
a {
  transition: 0.3s;
}

a:hover {
  color: var(--primary-accent-soft);
}

/* ロゴ */
#logo img {
  width: 180px;
}

.home #logo img {
  width: min(46vw, 420px);
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

/* 通常ページヘッダー */
body:not(.home) header {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  border-bottom: 1px solid var(--line-soft);
}

/* トップのメインビジュアル土台 */
#mainimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#mainimg .slide {
  position: absolute;
  inset: 0;
}

/* 電話表示 */
.tel {
  color: var(--primary-accent-soft);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

/* メニュー */
.large-screen #menubar li a {
  background: linear-gradient(180deg, #22392f 0%, #182b23 100%);
  border-right: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.08em;
}

.large-screen #menubar li:last-child a {
  border-right: none;
}

.large-screen #menubar li a:hover {
  filter: brightness(1.08);
  background: linear-gradient(180deg, #294437 0%, #1d3329 100%);
}

.large-screen #menubar.fixed a {
  opacity: 0.96;
  backdrop-filter: blur(6px);
}

.large-screen #menubar.fixed2 li a {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.large-screen #menubar ul ul a {
  background: #22392f !important;
}

.small-screen #menubar.display-block {
  background: linear-gradient(180deg, #1b3028 0%, #12201b 100%);
}

.small-screen #menubar li {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}

#menubar_hdr {
  background: rgba(8,12,10,0.6);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(4px);
}

#menubar_hdr.ham {
  background: #7f1d1d;
}

/* メイン */
main {
  margin-top: calc(var(--global-space) * 0.9);
}

/* 見出し */
main h2 {
  margin-bottom: 1.6rem;
  padding-bottom: 0.2rem;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

main h2 .uline {
  border-bottom: 2px solid var(--primary-accent);
  padding-right: 0.2rem;
}

main h2 .small {
  color: var(--primary-accent-soft);
  opacity: 0.75;
  letter-spacing: 0.12em;
}

main h3 {
  letter-spacing: 0.1em;
}

main h3.type2 {
  background: linear-gradient(90deg, #22392f, #2c493c);
  color: #fff;
  border: 1px solid rgba(184,154,95,0.4);
  box-shadow: var(--shadow-soft);
}

/* 共通画像 */
section img {
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

/* iframe */
iframe {
  width: 100%;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* お知らせ */
.new {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.new dt:nth-of-type(odd),
.new dd:nth-of-type(odd) {
  background: rgba(255,255,255,0.04);
}

.new dt {
  color: var(--primary-accent-soft);
}

.new dd {
  color: var(--text-main);
}

.new dt span {
  width: auto;
  min-width: 7rem;
  padding: 0.1rem 0.8rem;
  background: rgba(255,255,255,0.92);
  color: #4e4331;
  border: none;
  font-weight: 600;
}

.new .icon-bg1 {
  background: var(--primary-accent);
  color: #1f1a13;
}

/* メニューカード */
.list-menu {
  gap: 2rem;
}

.list {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  color: var(--card-text);
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.list:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.list figure {
  overflow: hidden;
}

.list figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 0;
  transition: transform 0.5s ease;
}

.list:hover figure img {
  transform: scale(1.04);
}

.list .text {
  padding: 1.15rem 1.15rem 1.3rem;
}

.list h4 {
  line-height: 1.7;
  margin-bottom: 0.75rem;
  color: #2e2923;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
}

.list h4 .price {
  display: inline-block;
  margin-left: 0.6rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f3ead8, #e7dbc4);
  color: #594428;
  border: 1px solid rgba(184,154,95,0.35);
  font-weight: 700;
  font-size: 0.78rem;
  vertical-align: middle;
}

.list p {
  color: #625d56;
  line-height: 1.9;
  font-size: 0.88rem;
}

.list .newicon {
  left: 12px;
  top: 12px;
  width: auto;
  line-height: 1;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8bc7a, #b88a34);
  color: #1a140c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 18px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.28);
  z-index: 2;
}

/* テキストメニュー */
dl.text-menu dt,
dl.text-menu dd {
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

dl.text-menu dt:nth-of-type(1),
dl.text-menu dd:nth-of-type(1) {
  border-top: 1px solid rgba(255,255,255,0.16);
}

dl.text-menu dt {
  color: var(--text-main);
}

dl.text-menu dd {
  color: var(--primary-accent-soft);
  font-weight: 600;
}

.sake-menu dt small {
  font-size: 0.8em;
  color: #b8b1a7;
  margin-left: 0.4em;
}

/* テーブル */
.ta1 {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border-top: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.ta1 caption {
  background: linear-gradient(90deg, #1f352c, #284439);
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.ta1 tr {
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.ta1 th,
.ta1 td {
  padding: 1rem 1.1rem;
  word-break: break-word;
}

.ta1 th {
  background: rgba(255,255,255,0.04);
  color: var(--primary-accent-soft);
  font-weight: 600;
}

.ta1 td {
  color: var(--text-main);
}

/* フッターメニュー */
#footermenu {
  margin-top: 3rem !important;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,0.02);
}

#footermenu a {
  color: var(--text-soft);
}

#footermenu a:hover {
  color: var(--primary-accent-soft);
}

/* フッター */
footer {
  color: var(--text-soft);
}

footer a:hover {
  color: var(--primary-accent-soft);
}

/* SNS */
.icons i {
  font-size: 28px;
}

.icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.icons a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
  color: var(--primary-accent-soft);
}

/* ページトップ */
.pagetop a {
  background: linear-gradient(180deg, rgba(31,58,46,0.92), rgba(20,32,27,0.92));
  border: 1px solid rgba(184,154,95,0.35);
  box-shadow: var(--shadow-soft);
}

.pagetop a:hover {
  color: #fff;
  filter: brightness(1.08);
}

/* サムネイルスライド */
.thumbnail-slide img {
  border-radius: 10px;
}

/* 店内ギャラリー */
.inside-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.inside-gallery figure {
  margin: 0;
}

.inside-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.inside-gallery figcaption {
  margin-top: 0.75rem;
  color: rgba(243, 239, 232, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* LINE */
.line-section p {
  color: var(--text-soft);
}

.line-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}

.line-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.line-text {
  color: var(--text-main);
}

.line-lead {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.9;
}

.line-btn {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(135deg, #06c755, #04a846);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.line-btn:hover {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* お問い合わせ */
.contact-box {
  background: linear-gradient(135deg, rgba(27,48,40,0.92), rgba(16,27,22,0.96));
  border: 1px solid rgba(184,154,95,0.22);
  border-radius: 18px;
  padding: 20px 25px 25px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.24);
}

.contact-intro {
  margin: 0.4rem 0 1.2rem;
  color: var(--text-soft);
  line-height: 1.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.2rem;
  align-items: stretch;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.2rem;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: var(--primary-accent-soft);
  letter-spacing: 0.08em;
}

.contact-card p {
  margin: 0.45rem 0;
}

.contact-note {
  font-size: 0.85rem;
  color: rgba(243, 239, 232, 0.7);
}

.tel-card {
  position: relative;
  overflow: hidden;
}

.tel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.line-mini-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  align-items: center;
}

.line-mini-image img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.line-mini-text p {
  line-height: 1.9;
}

/* menu1 強調 */
#menu1 .list:nth-child(1),
#menu1 .list:nth-child(2) {
  border: 1px solid rgba(216,188,122,0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.24);
}

/* 共通メニューノート */
.menu-note {
  margin: 0.5em 0 1.8em;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #666;
}

/* 釜めし */
#menu4 .menu-note {
  color: var(--text-soft);
}

/* お知らせ＋動画 */
.news-movie-section {
  margin: 0 0 70px;
}

.news-movie-grid.ratio-70-30 {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 28px;
  align-items: start;
}

.news-block,
.movie-block {
  min-width: 0;
}

.news-block .new {
  margin-top: 18px;
}

.news-block .new dt,
.news-block .new dd {
  line-height: 1.6;
}

.compact-movie .movie-lead {
  margin: 0 0 14px;
  line-height: 1.8;
  font-size: 0.95rem;
}

.compact-movie .movie-wrap {
  margin: 0;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.compact-movie .movie-wrap video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* 営業日カレンダー */
.calendar-wrap {
  margin-top: 1rem;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-soft);
}

.calendar-wrap iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.calendar-note {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* 通常PC */
@media screen and (max-width: 1400px) {
  .news-movie-grid.ratio-70-30 {
    grid-template-columns: 6.8fr 3.2fr;
    gap: 24px;
  }

  .calendar-wrap iframe {
    min-height: 600px;
  }
}

/* タブレット */
@media screen and (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .line-mini-grid {
    grid-template-columns: 1fr;
  }

  .line-mini-image {
    max-width: 320px;
  }

  .news-movie-grid.ratio-70-30 {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .compact-movie .movie-wrap {
    max-width: 560px;
  }

  .calendar-wrap {
    padding: 10px;
  }

  .calendar-wrap iframe {
    min-height: 560px;
  }
}

/* スマホ */
@media screen and (max-width: 700px) {
  main {
    max-width: 100%;
    margin: 6vw auto 0;
    padding: 0 16px;
  }

  #logo img {
    width: 150px;
  }

  .home #logo img {
    width: min(42vw, 220px);
  }

  .list-menu {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .list .text {
    padding: 1rem 1rem 1.15rem;
  }

  .list h4 .price {
    margin-left: 0;
    margin-top: 0.55rem;
  }

  main h2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .new dt,
  .new dd {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .ta1 th,
  .ta1 td {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
  }

  .ta1 th {
    padding-bottom: 0.2rem;
  }

  .ta1 td {
    padding-top: 0.25rem;
  }

  .cta-tel a {
    font-size: 1.6rem;
  }

  .inside-gallery {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .line-box {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .contact-box {
    padding: 1rem;
  }

  .contact-card {
    padding: 1rem;
  }

  .line-mini-image {
    max-width: 180px;
    margin: 0 auto;
  }

  .line-mini-image img {
    width: 100%;
    display: block;
  }

  .line-mini-text {
    max-width: 22em;
    margin: 0 auto;
    text-align: center;
  }

  .line-btn {
    display: inline-block;
  }

  .news-movie-section {
    margin: 0 0 50px;
  }

  .compact-movie .movie-wrap {
    max-width: 100%;
    border-radius: 12px;
  }

  .calendar-wrap {
    padding: 8px;
    border-radius: 14px;
  }

  .calendar-wrap iframe {
    min-height: 520px;
    border-radius: 10px;
  }
}

/* スライドのスマホ調整 */
@media screen and (max-width: 768px) {
  .home header {
    padding-top: 68%;
  }

  #mainimg .slide {
    background-position: center center;
    background-size: cover;
  }
}