@charset "UTF-8";
@import url("reset.min.css");

/*フォント設定
-----------------------------------------*/
@font-face {
  font-family: "NotoSerifJP";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../font/NotoSerifJP-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "NotoSerifJP";
  font-weight: 700;
  font-style: bold;
  font-display: swap;
  src: url("../font/NotoSerifJP-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "ShipporiMincho";
  font-weight: 400;
  font-style: medium;
  font-display: swap;
  src: url("../font/ShipporiMincho-Medium.ttf") format("truetype");
}

/*色の設定
-----------------------------------------*/
:root {
  --beige: #f9f4ee;
  --white: #fff;
  --gray: #a7a7a7;
  --black: #221815;
}

/* 全体
-------------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: var(--black);
  font-family: "NotoSerifJP", serif;
  line-height: 1.15;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  position: relative;
  background: var(--beige);
  color: var(--black);
  font-family: "NotoSerifJP", serif;
  font-size: clamp(16px, 0.9vw + 14px, 18px);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

figure {
  margin: 0;
}

a {
  display: block;
  color: #000;
  text-decoration-line: none;
  word-break: break-all;
}

a:hover {
  opacity: 0.8;
  transition-duration: 0.8s;
}

a img:hover {
  opacity: 0.8;
  transition-duration: 0.8s;
}

a:focus,
button:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.pc-none {
  display: none;
}

.wrapper {
  overflow-x: hidden;
  width: 100%;
}

.reveal-up {
  opacity: 0;
  transform: translateY(46px);
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

@media screen and (max-width: 768px) {
  .pc-none {
    display: block;
  }

  body,
  html {
    width: auto;
  }
}

/* ローディング中のスクロールロック
-------------------------------------*/
html.is-loading,
html.is-loading body {
  overflow: hidden;
  height: 100%;
}

/* ローダー
-------------------------------------*/
.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 555;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader svg {
  width: 17vw;
  height: auto;
}

#mask path {
  fill: none;
  stroke: #fff;
  stroke-width: 20;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#logo-svg {
  opacity: 0;
}

#logo-svg.is-ready {
  opacity: 1;
}

.st0,
.st1 {
  fill: #231815;
}

.st2 {
  fill: none;
  stroke: #231815;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 26px;
}

.st2,
.st1 {
  fill-rule: evenodd;
}

@media screen and (max-width: 600px) {
  .loader {
    height: 100vh;
    height: 100dvh;
  }

  .loader svg {
    width: 164px;
  }
}

/* ヘッダー
-------------------------------------*/
.site-header {
  position: relative;
  background: var(--beige);
  padding: 3em 2em 0;
  min-height: 420px;
}

.logo {
  width: 120px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}

.logo img {
  width: 70px;
}

.header-right {
  position: absolute;
  top: 56px;
  right: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 34px;
}

.nav-list {
  display: flex;
  gap: 22px;
}

.nav-list a {
  writing-mode: vertical-rl;
  text-decoration: none;
  color: var(--ink);
  font-size: clamp(14px, 4.1vw, 16px);
  letter-spacing: 0.3em;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.nav-list a:hover {
  opacity: 1;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--black);
  background-color: var(--white);
  border-radius: 999px;
  padding: 8px 52px;
  font-family: "NotoSerifJP", serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.lang-toggle .divider {
  color: var(--black);
}
.lang-toggle button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 0;
  color: var(--black);
}
.lang-toggle .active {
  font-weight: 600;
}
.lang-toggle .inactive {
  opacity: 0.45;
}

@media (max-width: 768px) {
  .logo {
    width: 120px;
  }

  .logo img {
    width: clamp(52px, 15.4vw, 60px);
  }

  .site-header {
    padding: 36px 24px 56px;
    min-height: 300px;
  }
  .header-right {
    display: none;
  }
  .nav-list {
    gap: 12px;
  }
  .nav-list a {
    font-size: 10px;
  }
}

.mv {
  position: sticky;
  top: 0;
  height: calc(100vh + 320px);
  overflow: hidden;
  z-index: 0;
  background: var(--beige);
}

.mv-copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

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

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

@media (max-width: 1024px) {
  .mv {
    height: 96vh;
  }
}

@media (max-width: 768px) {
  .mv {
    height: 78vh;
  }
}

/* ハンバーガーメニュー
-------------------------------------*/
.menu-trigger {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #870000;
  border: none;
  border-radius: 0 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 60;
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.menu-trigger.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-trigger .bars {
  position: relative;
  width: 30px;
  height: 22px;
}
.menu-trigger .bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--white);
  transform-origin: center center;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
}
.menu-trigger .bars span:nth-child(1) {
  top: 0;
}
.menu-trigger .bars span:nth-child(2) {
  top: 10px;
  width: 70%;
  right: 0;
  left: auto;
}
.menu-trigger .bars span:nth-child(3) {
  top: 20px;
  width: 50%;
  right: 0;
  left: auto;
}

body.menu-is-open .menu-trigger {
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}

/* スライドメニュー
-------------------------------------*/
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.65, 0, 0.2, 1);
  visibility: hidden;
}
.menu-overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}

.menu-photo {
  position: relative;
  width: 63%;
  height: 100%;
  background: var(--black);
  opacity: 0.2;
  overflow: hidden;
  flex-shrink: 0;
}
.menu-photo .grill-scene {
  bottom: 8%;
}

.menu-panel {
  position: relative;
  width: 37%;
  height: 100%;
  background: #870000;
  color: var(--white);
  padding: 120px 70px 60px;
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
}

.menu-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: var(--beige);
  border: none;
  border-radius: 0 0 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-close .x {
  position: relative;
  width: 26px;
  height: 26px;
}
.menu-close .x::before,
.menu-close .x::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #7a1015;
}
.menu-close .x::before {
  transform: rotate(45deg);
}
.menu-close .x::after {
  transform: rotate(-45deg);
}

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-bottom: 2em;
}
.menu-nav a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: clamp(18px, 5.13vw, 20px);
  letter-spacing: 0.12em;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: opacity 0.2s ease;
}
.menu-nav a:hover {
  opacity: 0.7;
}

.menu-panel .lang-toggle {
  background: var(--white);
  color: var(--ink);
  border: none;
  align-self: flex-start;
}

.menu-logo {
  margin-top: auto;
  width: 220px;
  padding: 26px 0;
}

body.menu-is-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .menu-nav {
    gap: 28px;
    margin: 12vw 0 8vw;
  }
  .menu-nav a {
    font-size: clamp(16px, 2vw, 20px);
  }
  .menu-logo {
    width: 170px;
    padding: 18px 0;
    font-size: 20px;
  }
  .menu-trigger {
    width: 60px;
    height: 60px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  body.menu-is-open .menu-trigger {
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
  }
  .menu-close {
    width: 60px;
    height: 60px;
  }
  .menu-overlay {
    flex-direction: column;
  }
  .menu-photo {
    display: none;
  }
  .menu-panel {
    width: 100%;
    height: 100%;
    padding: 90px 32px 40px;
  }
}

/* メッセージ
-------------------------------------*/
.omotenashi {
  position: relative;
  z-index: 1;
  background: var(--beige);
  padding: 140px 24px 160px;
}

.omotenashi-heading {
  text-align: center;
  font-family: "ShipporiMincho", serif;
  font-weight: 600;
  font-size: clamp(34px, 5.2vw, 64px);
  letter-spacing: 0.14em;
  color: var(--black);
  margin-bottom: 110px;
}

.omotenashi-groups {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 76px;
}

.omotenashi-group {
  text-align: center;
  font-family: "NotoSerifJP", serif;
  color: var(--black);
  font-size: clamp(20px, 5.64vw, 22px);
  line-height: 2.2;
  letter-spacing: 0.03em;
}

.omotenashi-group p {
  margin: 0;
}

/* スクロールフェードイン(初期状態) */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .omotenashi {
    padding: 10vw 3vw 11vw;
  }

  .omotenashi-heading {
    margin-bottom: 6vw;
    letter-spacing: 0.08em;
    font-size: clamp(27px, 7.69vw, 30px);
  }

  .omotenashi-groups {
    gap: 4vw;
  }
  .omotenashi-group {
    font-size: clamp(14px, 4.1vw, 16px);
    line-height: 1.9;
  }
}

/* タイトル
-------------------------------------*/
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 200px 0 160px;
  background: var(--white);
}

.section-ttl,
.section-heading h2 {
  width: 120px;
}

@media (max-width: 1199px) {
  .section-heading {
    padding: 10vw 0 6vw;
  }

  .section-ttl,
  .section-heading h2 {
    width: 10vw;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-ttl,
  .section-heading h2 {
    width: 18vw;
    margin: 0 auto;
  }
}

/* 想い
-------------------------------------*/
.our-story {
  background: var(--white);
}
.story-scroll-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.story-scroll {
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  bottom: 160px;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--white);
}

.story-scroll__track {
  display: flex;
  height: 100%;
  width: 400%; /* パネル4枚分 */
}

.story-panel {
  width: 25%;
  position: relative;
  height: 100%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  gap: 60px;
  padding: 6vh 8vw 0;
}

.story-panel__text,
.story-panel__media {
  min-width: 0;
}

.story-panel__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sec-title-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.sec-title {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}

.sec-title .line {
  width: 1px;
  height: 120px;
  background: var(--black);
}

.sec-title .line-en {
  width: 1px;
  height: 80px;
  background: var(--black);
}

.sec-title .text {
  writing-mode: vertical-rl;
  font-family: "ShipporiMincho", serif;
  font-size: clamp(48px, 4vw, 50px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--black);
}

.sec-title .text-en {
  writing-mode: vertical-rl;
  font-family: "ShipporiMincho", serif;
  font-size: clamp(38px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--black);
}

.story-panel__body {
  font-size: clamp(16px, 1.2vw, 20px);
  letter-spacing: 0.02em;
  line-height: 2;
  color: var(--black);
  max-width: 34em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-panel__body-en {
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: var(--black);
  max-width: 34em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-panel__logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  width: 60%;
}

.story-panel__media {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 78%;
}

.story-panel__heading {
  width: 100%;
}

.story-panel__heading img {
  display: block;
  width: 100%;
  height: auto;
}

.story-panel__photo {
  position: relative;
  flex: none;
  border-radius: 2px;
  overflow: hidden;
}
.story-panel__photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.feature-image,
.feature-image-en {
  width: 100%;
  margin: 0 auto;
}

.feature-image picture,
.feature-image-en picture {
  display: block;
  width: 100%;
}

.feature-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 830 / 660;
  object-fit: contain;
  display: block;
}

.feature-image-en img {
  width: 100%;
  height: 60%;
  aspect-ratio: 830 / 520;
  object-fit: cover;
  display: block;
}

.feature-image-en img.is-top {
  object-position: center top;
}

.scroll-hint {
  display: none;
}

@media (min-width: 769px) {
  .feature-image,
  .feature-image-en {
    max-width: 830px;
  }
}

@media (max-width: 1199px) {
  .sec-title {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
  }

  .sec-title .text,
  .sec-title .text-en {
    writing-mode: horizontal-tb;
    font-size: clamp(32px, 6vw, 48px);
  }

  .sec-title .line,
  .sec-title .line-en {
    width: 80px;
    height: 1px;
  }
}

@media (max-width: 768px) {
  .story-scroll-wrap {
    position: relative;
    /*width: 100%;*/
    height: auto;
    overflow: hidden;
    z-index: 2;
  }

  .story-scroll {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .story-scroll::-webkit-scrollbar {
    display: none;
  }

  .story-scroll__track {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .story-panel {
    box-sizing: border-box;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    padding: 3vw 6vw 6vw;
    align-content: flex-start;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-height: 0;
    overflow: visible;
    margin-bottom: 8vw;
    opacity: 0;
    transform: translateY(46px);
    will-change: opacity, transform;
  }

  .sec-title .line {
    width: 100px;
    height: 1px;
  }

  .sec-title .text {
    writing-mode: horizontal-tb;
    font-size: clamp(28px, 6vw, 40px);
    line-height: 1;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .sec-title .text-en {
    font-size: clamp(28px, 1.5vw + 20px, 36px);
  }

  .story-panel__text {
    gap: 16px;
  }

  .story-panel__logos {
    margin-top: 0.4rem;
    width: 100%;
    max-width: 240px;
  }

  .story-panel__media {
    height: auto;
    min-height: 0;
    gap: 3vw;
  }
  .story-panel__heading {
    font-size: clamp(14px, 3.85vw, 15px);
  }
  .story-panel__photo {
    min-height: 0;
    aspect-ratio: 4/3;
    flex-shrink: 0;
  }

  .feature-image-en img {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 830 / 660;
    object-fit: contain;
    display: block;
  }

  .feature-image {
    max-width: none;
  }

  .feature-image-en img.is-top {
    object-position: center;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .story-panel {
    opacity: 1;
    transform: none;
  }
}

/* トング + 料理 スクロールセクション
-------------------------------------*/

.dish-section {
  position: relative;
  width: 100%;
  padding: 120px 6vw 180px;
  background: var(--white);
}

.dish-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 10vw, 140px);
}

.dish {
  position: relative;
  width: min(58%, 760px);
  margin: 0;
  z-index: 3;
  opacity: 1;
  will-change: opacity, transform;
}

html.js-ready .dish {
  opacity: 0;
}

.dish:nth-child(even) {
  align-self: flex-end;
}

.dish img {
  width: 100%;
  height: auto;
  display: block;
}

.dish--04,
.dish--04-en {
  width: min(50%, 640px);
}

/* キャプション(商品名) */
.dish-caption {
  position: absolute;
  left: 0;
  bottom: 12%;
  width: 100%;
  z-index: 4;
}

.dish--02 .dish-caption {
  position: absolute;
  text-align: right;
  right: 0;
  bottom: -4%;
  width: 100%;
  z-index: 4;
}

.dish--03 .dish-caption {
  position: absolute;
  text-align: left;
  left: 0;
  bottom: 1%;
  width: 100%;
  z-index: 4;
}

.dish--04 .dish-caption,
.dish--04-en .dish-caption {
  position: absolute;
  text-align: right;
  right: 0;
  bottom: -8%;
  width: 100%;
  z-index: 4;
}

.dish-name {
  font-family: "NotoSerifJP", serif;
  font-size: clamp(16px, 1.3vw + 10px, 22px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--black);
  margin: 0;
  text-shadow:
    0 0 4px rgba(255, 255, 255, 1),
    0 0 8px rgba(255, 255, 255, 1),
    0 0 14px rgba(255, 255, 255, 0.9),
    0 1px 2px rgba(255, 255, 255, 1);
}

.dish-desc {
  font-size: clamp(11px, 0.5vw + 9px, 13px);
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--black);
  margin: 8px 0 0;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 1),
    0 0 6px rgba(255, 255, 255, 1),
    0 0 10px rgba(255, 255, 255, 0.9),
    0 1px 1px rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
  .dish-section {
    padding: 12vw 6vw 17vw;
  }

  .dish {
    width: min(74%, 480px);
  }

  .dish--04,
  .dish--04-en {
    margin-top: 12%;
    width: min(60%, 420px);
  }

  .dish-caption {
    position: static;
    width: 100%;
    bottom: 0;
  }

  .dish--02 .dish-caption {
    bottom: -12%;
  }

  .dish--03 .dish-caption {
    bottom: -12%;
  }

  .dish--04 .dish-caption,
  .dish--04-en .dish-caption {
    bottom: -12%;
  }

  .dish-name {
    font-size: clamp(14px, 1vw, 16px);
  }
}

@media (max-width: 480px) {
  .dish-section {
    padding: 13vw 6vw 28vw;
  }

  .dish-caption {
    bottom: -3%;
  }

  .dish--02 .dish-caption {
    bottom: -18%;
  }

  .dish--03 .dish-caption {
    bottom: -30%;
  }

  .dish--04 .dish-caption {
    bottom: -19%;
  }

  .dish--04-en .dish-caption {
    bottom: -32%;
  }
}

/* News
-------------------------------------*/
.news {
  background: var(--white);
  padding: 200px 6vw;
}

.news-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "side list"
    "more list";
  column-gap: 100px;
  row-gap: 28px;
  align-items: start;
}

.news-more {
  --btn-w: clamp(140px, 14vw, 180px);
  width: var(--btn-w);
  aspect-ratio: 180 / 53;
  position: relative;
  margin-top: 40px;
  grid-area: more;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 14px 28px;
  font-size: clamp(14px, 3.6vw, 16px);
  letter-spacing: 0.08em;
  color: var(--black);
  text-decoration: none;
  background: var(--white);
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.news-more .icon-arrow {
  position: absolute;
  right: 1em;
  width: 10px;
  height: 9px;
  display: block;
  flex-shrink: 0;
}

.news-more:hover {
  background: var(--black);
  transform: translateX(4px);
  color: var(--white);
}

.news-more:hover .icon-arrow {
  filter: invert(1) brightness(2);
}

/* ---- 右側:お知らせ一覧 ---- */
.news-list {
  grid-area: list;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(34, 24, 21, 0.25);
}
.news-item:first-child {
  padding-top: 0;
}

.news-item-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-date {
  display: block;
  font-family: "NotoSerifJP", serif;
  font-size: clamp(14px, 3.6vw, 16px);
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 12px;
}

.news-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.news-title {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 18px);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.news-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(
    24px,
    2.2vw,
    29px
  ); /* 最小24px 〜 最大29px の間で画面幅に応じて変化 */
  aspect-ratio: 29 / 21;
  border: 1px solid var(--black);
  border-radius: 999px;
  font-size: clamp(24px, 2.2vw, 29px);
  flex-shrink: 0;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.news-item-link:hover .news-title {
  opacity: 0.7;
}
.news-item-link:hover .news-link {
  background: var(--black);
  transform: translateX(4px);
}
.news-item-link:hover .news-link .icon-arrow {
  filter: invert(1) brightness(2);
}

.news-link .icon-arrow {
  width: 0.345em; /* 10px ÷ 29px ≒ 0.345 */
  aspect-ratio: 10 / 9;
  display: block;
}

.reveal-up {
  opacity: 0;
  transform: translateY(46px);
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1177px) {
  .news {
    padding: 80px 6vw 100px;
  }

  .news-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "side"
      "list"
      "more";
    row-gap: 40px;
  }

  .news-more {
    width: auto;
    justify-self: center;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .news {
    padding: 16vw 3vw 17vw;
  }
  .news-link {
    width: clamp(27px, 7.69vw, 30px);
    height: auto;
  }
}

@media (max-width: 520px) {
  .news-row {
    gap: 16px;
  }
}

/* パララックス画像
-------------------------------------*/
.wide-visual {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  background: var(--white);
  margin-top: -54px;
}

.wide-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.wide-visual-image picture,
.wide-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .wide-visual {
    height: 40vh;
    margin-top: 0;
  }
}

/* Shop
-------------------------------------*/
.shop {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 120px 6vw 160px;
}

.shop-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-areas: "side list";
  column-gap: 100px;
  align-items: start;
}

.shop-list {
  grid-area: list;
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name btn"
    "line line"
    "info info";
  column-gap: 24px;
  row-gap: 24px;
  align-items: start;
  padding: 40px 0;
}
.shop-item:last-child {
  padding-bottom: 0;
}

.shop-divider {
  grid-area: line;
  width: 100%;
  height: 1px;
  background: rgba(34, 24, 21, 0.25);
}
.shop-item:first-child {
  padding-top: 0;
}

.shop-name {
  grid-area: name;
  font-size: clamp(31px, 8.72vw, 34px);
  letter-spacing: 0.03em;
  line-height: 1.5;
  font-family: "ShipporiMincho", serif;
}

.shop-more {
  grid-area: btn;
  align-self: start;
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 12px 38px;
  font-size: clamp(14px, 3.6vw, 16px);
  letter-spacing: 0.06em;
  color: var(--black);
  text-decoration: none;
  background: var(--white);
  white-space: nowrap;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.shop-more:hover {
  background: var(--black);
  color: var(--white);
}

.shop-more:hover .icon-arrow {
  filter: invert(1) brightness(2);
}

.shop-more .icon-arrow {
  position: absolute;
  right: 1em;
  width: 10px;
  height: 9px;
  display: block;
  flex-shrink: 0;
}

.shop-info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.shop-info-row {
  display: flex;
  gap: 20px;
  font-size: clamp(14px, 4.1vw, 16px);
  line-height: 1.8;
}

.shop-info-row dt {
  flex-shrink: 0;
  width: 44px;
  font-family: "NotoSerifJP", serif;
  letter-spacing: 0.05em;
  color: var(--black);
}
.shop-info-row dt.en {
  flex-shrink: 0;
  width: 66px;
  font-family: "NotoSerifJP", serif;
  letter-spacing: 0.05em;
  color: var(--black);
}
.shop-info-row dd {
  margin: 0;
  color: var(--black);
}

@media (max-width: 1177px) {
  .shop {
    padding: 80px 6vw 100px;
  }

  .shop-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "side"
      "list";
    row-gap: 40px;
  }

  .shop-item {
    padding: 32px 0;
  }
}

@media (max-width: 768px) {
  .shop {
    padding: 16vw 3vw 17vw;
  }

  .shop-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "name"
      "line"
      "info"
      "btn";
    row-gap: 20px;
  }

  .shop-more {
    justify-self: start;
    align-self: start;
  }

  .shop-info-row {
    gap: 14px;
  }
  .shop-info-row dt {
    width: 8%;
    font-size: 13px;
  }

  .shop-info-row dt.en {
    width: 16%;
  }
  .shop-info-row dd {
    font-size: 13px;
  }
}

/* Company
-------------------------------------*/
.company {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.company-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.company-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.company-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(20, 15, 12, 0.7),
    rgba(20, 15, 12, 0.65) 45%,
    rgba(20, 15, 12, 0.7)
  );
}

.company-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
}

/* ---- 右:情報カード ---- */
.company-card {
  align-self: center;
  background: var(--white);
  color: var(--black);
  border-radius: 4px;
  padding: 44px 52px;
  width: min(818px, 90vw);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.company-info {
  margin: 0;
}

.company-info-row {
  display: grid;
  place-items: center start;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(34, 24, 21, 0.15);
  font-size: clamp(14px, 4.1vw, 16px);
  line-height: 1.8;
}
.company-info-row:first-child {
  padding-top: 0;
}
.company-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.company-info-row dt {
  margin: 0;
  color: var(--black);
  letter-spacing: 0.03em;
}
.company-info-row dd {
  margin: 0;
  color: var(--black);
}

@media (max-width: 1199px) {
  .company {
    min-height: auto;
  }

  .company-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
    padding: 16vw 3vw 17vw;
  }

  .company-card {
    align-self: auto;
    width: 100%;
    padding: 28px 22px;
    box-shadow: none;
    border-radius: 2px;
  }

  .company-info-row {
    grid-template-columns: 90px 1fr;
    font-size: 13px;
    padding: 15px 0;
  }
}

/* ================================================================
     フッター
  ================================================================= */
.footer {
  background: var(--white);
  padding: 60px 6vw;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 260px;
  display: block;
}

.footer-copyright {
  margin: 0;
  font-family: "NotoSerifJP", serif;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--black);
  opacity: 0.6;
}

.footer-nav {
  display: flex;
  gap: 40px;
}
.footer-nav a {
  font-size: clamp(14px, 4.1vw, 16px);
  letter-spacing: 0.05em;
  color: var(--black);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-nav a:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }
  .footer-logo {
    width: 80%;
    margin: 0 auto;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    justify-items: center;
    gap: 20px 36px;
    max-width: none;
  }
}
