/*
Theme Name: mannenya
Theme URL: https://xxxxxx/
Description: This is original Thema.
*/

/* WPのヘッダーを消す */
html {
  margin-top: 0 !important;
}

#wpadminbar {
  display: none;
}

/* ===== Theme tokens ===== */
:root {
  --container: 1200px;
  --pad: 24px;

  --c-text: #0f1111;
  --c-accent: #ca7a2c;
  --c-primary: #004a6e;

  --header-h: 104px;
  --radius: 8px;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: var(--c-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
}

p {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.l-main__sub {
  margin-top: 112px !important;
  background-color: #eeece8;
  position: relative;
}

.l-main__sub__bg {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  aspect-ratio: 1512 / 893;
  background: url("./assets/images/top/noise.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.l-main__contents {
  z-index: 10;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-top: 60px;
  padding-bottom: 120px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 0;
}

.news__container {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 0;
}

.pc__only {
  display: block !important;
}

.sp__only {
  display: none !important;
}

/* ==========================
  Header
========================== */
.site-header {
  background: #fff;
  z-index: 200;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
}

.site-header__topline {
  height: 4px;
  background: var(--c-primary);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 40px;
}

.site-header__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.site-header__logo img {
  width: 140px;
  height: 66px;
  object-fit: contain;
}

/* ===== Nav ===== */
.site-header__nav {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 200;
}

.g-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;

  font-size: 16px;
  font-weight: bold;
}

.g-nav__item {
  position: relative;
}

.g-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 6px;
  text-decoration: none;
  white-space: nowrap;
}

.g-nav__item:hover > .g-nav__link,
.g-nav__item:focus-within > .g-nav__link {
  color: var(--c-accent);
}

.g-nav__chev {
  position: relative;
  display: inline-block;
  height: 26px;
}

.g-nav__item--mega:hover .g-nav__chev img,
.g-nav__item--mega:focus-within .g-nav__chev img {
  transform: rotate(180deg);
}

/* ===== Mega menu (centered 1200px) ===== */
.g-nav__item--mega {
  position: static; /* megaはnav基準にする */
}

.mega {
  position: absolute;
  height: 231px;
  left: 50%;
  top: 67px;
  transform: translateX(-50%);
  width: var(--container);
  max-width: calc(100vw - (var(--pad) * 2));
  background: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

/* ←橋は mega 側で作る（重ならない） */
.mega::before {
  content: "";
  position: absolute;
  left: 0;
  top: -30px; /* 上に30px伸ばして隙間を埋める */
  width: 100%;
  height: 30px;
}

/* ホバーした方のメニューだけを最前面に出す */
.g-nav__item--mega:hover > .mega,
.g-nav__item--mega:focus-within > .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1000; /* 十分に高い数値を指定 */
}

/* 232×116 を4つ並べる前提 */
.mega__grid {
  display: grid;
  grid-template-columns: repeat(4, 232px);
  justify-content: space-between;
  gap: 16px;

  list-style: none;
  margin: 0;
  padding: 0;
}

.mega__link {
  display: block;
  text-decoration: none;
}

.mega__img {
  width: 232px;
  height: 116px;
  object-fit: cover;
  border-radius: 6px;
  background: #eee;
}

.mega__label {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.mega__link:hover .mega__label {
  color: var(--c-accent);
}

/* SP Header */
.sp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  background: #fff;
  z-index: 300;
  font-family: "Noto Serif JP", serif;
}

.sp-header__topline {
  height: 4px;
  background: var(--c-primary);
}

.sp-header__main {
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
}

/* ロゴ中央 */
.sp-header__logo {
  grid-column: 2 / 3;
  justify-self: center;
  display: inline-flex;
  align-items: center;
}
.sp-header__logo img {
  width: 110px;
  height: 52px;
  object-fit: contain;
}

/* 右：メニューボタン */
.sp-header__menuBtn__container {
  width: 100%;
  margin-top: 16px;
  display: flex;
  justify-content: end;
}

.sp-header__menuBtn {
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  justify-items: center;
  gap: 4px;
  cursor: pointer;
}

.sp-header__label {
  font-size: 8px;
  letter-spacing: 0.04em;
  color: var(--c-primary);
}

/* ハンバーガー（閉） */
.sp-header__icon {
  position: relative;
  width: 30px;
  height: 20px;
}

.sp-header__icon span {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.sp-header__icon span:nth-child(1) {
  top: 0;
}

.sp-header__icon span:nth-child(2) {
  top: 9px; /* (20px - 2px) / 2 */
}

.sp-header__icon span:nth-child(3) {
  top: 18px;
}

.is-menu-open .sp-header__icon span:nth-child(1) {
  top: 9px;
  transform: rotate(32.83deg);
}

.is-menu-open .sp-header__icon span:nth-child(2) {
  opacity: 0;
}

.is-menu-open .sp-header__icon span:nth-child(3) {
  top: 9px;
  transform: rotate(-32.83deg);
}

/* 青い2分割バー */
.sp-header__quick {
  height: 44px;
  background: var(--c-primary);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.sp-header__quickItem {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: grid;
  place-items: center;
  height: 100%;
}
.sp-header__quickSep {
  width: 1px;
  height: 36px;
  background: #fff;
}

/* 開いている間は青バーを消す（画像通り） */
.is-menu-open .sp-header__quick {
  display: none;
}

/* ===== menu overlay ===== */
.sp-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 68px; /* ロゴ行の下から表示 */
  bottom: 0;
  background: #f8f8f8;
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

/* 開く */
.sp-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow: scroll;
}

/* メニュー内部の余白（画像の余白感） */
.sp-menu__nav {
  height: 100%;
  padding: 40px 20px 60px;
  color: var(--c-text);
  font-family: "Noto Serif JP", serif;
}

/* リスト */
.sp-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--sp-line);
}

/* 区切り線 */
.sp-menu__item {
  border-bottom: 1px solid #cacaca;
}

/* 親（大きめの見出し） */
.sp-menu__accBtn,
.sp-menu__link {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 24px 0;
  text-decoration: none;
  color: var(--c-text);

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 20px;
  letter-spacing: 0.04em;
  font-family: "Noto Serif JP", serif;
}

.sp-menu__chev {
  width: 11px;
  height: 11px;
  border-right: 1px solid var(--c-accent);
  border-bottom: 1px solid var(--c-accent);
  transform: rotate(45deg); /* 下向き */
  transition: transform 0.2s ease;
}
.sp-menu__item.is-open .sp-menu__chev {
  transform: rotate(-135deg); /* 上向き */
}

/* 子メニュー */
.sp-menu__sub {
  list-style: none;
  margin: 0;
  display: none;
}
.sp-menu__item.is-open .sp-menu__sub {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.sp-menu__sub a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-text);
  font-size: 16px;
}

.sp-menu__sub a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--c-accent);
  border-bottom: 1px solid var(--c-accent);
  transform: rotate(-45deg);
  display: inline-block;
}

.sp-menu__cta {
  display: grid;
  place-items: center;
  margin-top: 40px;
  height: 67px;
  background: var(--c-primary);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-size: 20px;
}

/* フッター領域 */
.sp-menu__footer {
  margin-top: 40px;
  display: grid;
  gap: 40px;
}
.sp-menu__footLink {
  color: var(--c-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.sp-menu__soup {
  display: block;
}

.sp-menu__banner img {
  width: 100%;
  aspect-ratio: 350 / 175;
}

.sp-menu__soupText {
  margin-top: 12px;
  font-size: 14px;
  color: var(--c-text);
}

/* 開いてる間はスクロールロック */
html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
}

/* ===== Right contact ===== */
.hdr-contact {
  flex: 0 0 auto;
  text-align: left;
}

.hdr-contact__label {
  font-size: 14px;
  color: var(--c-accent);
  margin-bottom: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}

.hdr-contact__tel {
  display: inline-block;
  font-size: 24px;
  line-height: 1.1;
  text-decoration: none;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}

.hdr-contact__hours {
  margin-top: 4px;
  font-size: 12px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: medium;
}

.hdr-order {
  display: block;
  position: fixed;
  right: 0;
  top: 180px;
  z-index: 130;
}

.hdr-order__btn {
  width: 68px;
  height: 232px;
  padding: 32px 24px;
  font-size: 20px;
  writing-mode: vertical-rl;
  border: none;
  color: #fff;
  background-color: var(--c-accent);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.12em;
  line-height: 0px;
  cursor: pointer;
}

/* ==========================
  Footer
========================== */

.site-footer {
  background: #004a6e;
  color: #fff;
  padding: 120px 0 100px;
  font-family: "Noto Serif JP", serif;
}

.site-footer__inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 80px;
  text-align: center;
  font-size: 14px;
}

/* 左 */
.footer-logo img {
  width: 260px;
}

.footer-address {
  margin-top: 16px;
  line-height: 24px;
}

.footer-sns {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}

.footer-sns img {
  height: 20px;
}

/* ボタン */
.footer-contact {
  background: rgba(255, 255, 255, 0.8);
  transition: background-color 0.25s ease;
  color: var(--c-text);
  width: 240px;
  height: 52px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: 14px;
  text-decoration: none;
}

.footer-contact:hover {
  background: #fff;
}

.footer-contact img {
  width: 14px;
}

.footer-contact-mail {
  margin-top: 28px;
  font-size: 14px;
}

.footer-contact-tel {
  margin-top: 14px;
  font-size: 16px;
}

.footer-contact-tel-number {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.footer-contact-tel-number span {
  font-size: 12px;
}

.footer-right {
  padding-left: 60px;
  margin-top: 17px;
  border-left: #ffffff 1px solid;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* 右側画像 */
.footer-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer-img img {
  width: 100%;
  display: block;
}

.footer-img p {
  text-align: start;
  margin-top: 8px;
  font-size: 16px;
  line-height: 28px;
}

/* ナビ */
.footer-nav {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  list-style: none;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
}

.footer-note {
  font-size: 14px;
  margin-top: 12px;
}

/* コピーライト */
.footer-copy {
  font-size: 10px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/* ===== ↑↑↑↑↑↑↑ これより上は、Header Footer の内容  ===== */

/* ==========================
  First View
========================== */
.firstview {
  background: url("./assets/images/firstview/top_fv.jpg");
  aspect-ratio: 1920 / 1080;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.firstview__inner {
  z-index: 100;
  height: 100%;
  min-height: 600px;
  position: relative;
}

/* 左 縦コピー */
.firstview__copy {
  position: absolute;
  top: 180px;
  writing-mode: vertical-rl;
  font-size: 40px;
  letter-spacing: 0.11em;
  color: #fff;
}

/* 右下全体 */
.firstview__floating {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* ← 右揃えの本命 */
  gap: 40px;
}

/* カード */
.firstview__floating__card {
  width: 240px;
  height: 240px;
  position: fixed;
  bottom: 104px;
  right: 40px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
  transition: opacity 0.2s ease;
  z-index: 20;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.firstview__floating__card.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.firstview__floating__card:has(.firstview__floating__close:hover) {
  opacity: 0.8;
}

.firstview__floating__card::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(1px);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.firstview__floating__card:has(.firstview__floating__close:hover)::after {
  opacity: 1;
}

/* サムネ */
.firstview__floating__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
}

/* × ボタン */
.firstview__floating__close {
  position: absolute;
  top: -22.5px;
  right: -22.5px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
}

/* × アイコン */
.firstview__floating__close::before,
.firstview__floating__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #666;
}

.firstview__floating__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.firstview__floating__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* お知らせバー */
.firstview__floating__news {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 10px 12px;
  font-size: 12px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  width: 520px;
  overflow: hidden;
}

/* 左のラベル */
.firstview__floating__news_label {
  color: var(--c-accent);
  white-space: nowrap;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin-right: 20px;
}

/* ニュース本文 */
.firstview__floating__news_text {
  display: block;
  min-width: 0;
  width: 100%;
  height: 1.8em;
  line-height: 1.8;
  position: relative;
  padding-left: 12px;
  border-left: var(--c-text) 1px solid;
  overflow: hidden;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  text-decoration: underline;
}

.firstview__floating__news_track {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}

.firstview__floating__news_item {
  display: block;
  color: inherit;
  text-decoration: underline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.8;
}

/* 共通 & セクション */
.section_title_wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section_title {
  font-size: 44px;
  font-weight: medium;
  margin: 0;
  line-height: 52px;
  letter-spacing: 0.04em;
  color: var(--c-text);
}

.section_title_note {
  font-size: 16px;
  font-weight: medium;
  line-height: 28px;
  color: var(--c-text);
  line-break: anywhere;
}

.detail__link_wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.detail__link {
  font-size: 16px;
  color: var(--c-accent);
  text-decoration: none;
  white-space: nowrap;
  line-height: 28px;
  font-weight: bold;
}

.detail__link_wrapper:hover .detail__link {
  color: #a35c1f;
}

.detail__link_wrapper:hover .detail__link__arrow {
  border-color: #a35c1f;
}

.detail__link_wrapper:hover .detail__link__arrow span {
  border-color: #a35c1f;
}

.detail__link__arrow {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 1px solid var(--c-accent);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-top: 1px;
}

.detail__link__arrow span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--c-accent);
  border-right: 1px solid var(--c-accent);
  transform: translate(-75%, -50%) rotate(45deg);
  top: 50%;
  left: 50%;
}

.main__contents {
  background-color: #eeece8;
  color: var(--c-text);
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

/* ==========================
  About
========================== */
.about {
  width: 100%;
  position: relative;
}

.about__bg {
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  aspect-ratio: 1512 / 893;
  background: url("./assets/images/top/noise.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.about__contents {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.about__inner {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.about__left {
  display: flex;
  flex-direction: column;
  position: relative;
}

.about__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* キャッチコピー */
.about__lead {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  color: var(--c-text);
  line-height: 1.6;
}

/* 本文 */
.about__text {
  font-size: 16px;
  line-height: 2;
  margin: 0;
}

.about__decoration {
  position: absolute;
  bottom: -260px;
  left: 0;
}

.about__decoration img {
  width: 317px;
  height: 171px;
}

/* ==========================
  Top Slider
========================== */
.topslider {
  width: 100%;
  overflow: hidden; /* 横スクロールは隠す */
}

.topslider__list {
  display: flex;
  gap: 20px;
  animation: slide 30s linear infinite;
}

.topslider__list img {
  width: 360px;
  height: auto;
  display: block;
}
/* 横スクロールアニメーション */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================
  Daily Menu
========================== */
.pc_dailymenu__card {
  width: 100%;
  background: url("./assets/images/util/bg_gray.svg");
  background-position: center;
  background-repeat: repeat;
  background-size: 250px 250px;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

.sp_dailymenu__card {
  display: none;
}

.dailymenu__card_main {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* 左画像 */
.dailymenu__image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* 中央テキスト */
.dailymenu__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}

.dailymenu__title {
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--c-accent);
  font: medium;
}

.dailymenu__text {
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

/* 右矢印ボタン */
.dailymenu__arrow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid #0f1111;
  border-radius: 50%;
  position: relative;
  display: block;
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

/* 矢印 */
.dailymenu__arrow span {
  position: absolute;
  top: 50%;
  left: 45%;
  width: 12px;
  height: 12px;
  border-top: 1px solid #0f1111;
  border-right: 1px solid #0f1111;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* hover */
.pc_dailymenu__card:hover .dailymenu__arrow {
  background: var(--c-accent);
  border: 1px solid var(--c-accent);
}

.pc_dailymenu__card:hover .dailymenu__arrow span {
  border-color: #fff;
}

/* ==========================
  Obento Section
========================== */
.obento {
  margin-bottom: 60px;
}

.obento__section {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.obento__section_title {
  margin-top: 40px;
}

.obento__section_image {
  display: flex;
  justify-content: end;
  position: relative;
}

.obento__section_image .main_img {
  object-fit: cover;
  display: block;
  max-width: 520px;
  width: 80%;
  aspect-ratio: 26 / 19;
}

.obento__section_image_sub {
  position: absolute;
  top: 50%;
  left: 0px;
  max-width: 378px;
  width: 64%;
}

.obento__section_image_sub img {
  object-fit: cover;
  display: block;
  width: 100%;
  aspect-ratio: 378 / 260;
}

.obento__decoration {
  position: absolute;
  top: -40px;
  left: 420px;
  max-width: 235px;
  width: 80%;
}

.obento__decoration img {
  width: 100%;
  aspect-ratio: 235 / 109;
}
/* ==========================
  Popular Obento Slider
========================== */
.popular_obento {
  overflow: hidden;
}

.popular_obento__section {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.popular_obento__section_left {
  flex: 0 0 460px;
}

.popular_obento__note {
  display: inline-block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  margin-top: 20px;
}

.popular_obento__section_right {
  flex: 1;
  min-width: 0;
  margin-right: calc(50% - 50vw);
}

.popular_obento__slider {
  width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox用 */
  -ms-overflow-style: none; /* IE用 */
}

.popular_obento__slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari用 */
}

.popular_obento__slider_list {
  display: flex;
  gap: 24px;
}

/* リストの最後に余白 */
.popular_obento__slider_list::after {
  content: "";
  flex: 0 0 24px;
}

.popular_obento__slider.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
}

.popular_obento__item {
  flex: 0 0 384px;
  scroll-snap-align: start;
}

.popular_obento__item img {
  width: 384px;
  height: 293px;
  aspect-ratio: 384 / 293;
  object-fit: cover;
  display: block;
}

.popular_obento__item_title {
  margin-top: 16px;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--c-text);
}

.popular_obento__slider_nav {
  width: 100vw;
  display: flex;
  justify-content: start;
  gap: 32px;
  margin-top: 40px;
}

.popular_obento__slider_prev,
.popular_obento__slider_next {
  background: none;
  border: none;
  cursor: pointer;
}

.popular_obento__slider_prev img,
.popular_obento__slider_next img {
  width: 20px;
  height: 20px;
}

/* ==========================
  Service scenes
========================== */
.service_scene__desc {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.service_scene__left {
  display: flex;
  flex-direction: column;
}

.service_scene__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* キャッチコピー */
.service_scene__lead {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  color: var(--c-text);
  line-height: 1.6;
}

/* 本文 */
.service_scene__text {
  font-size: 16px;
  line-height: 2;
  margin: 0;
}

.service_scene__grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.service_scene__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service_scene__card_image img {
  width: 100%;
  max-width: 580px;
  aspect-ratio: 580 / 397;
  object-fit: cover;
  display: block;
}

.service_scene__card_title {
  margin-top: 24px;
  font-size: 20px;
}

.service_scene__card_link {
  margin-top: 12px;
}

/* ==========================
  Gift
========================== */
.gift {
  margin-top: 60px;
}

.gift__section {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.gift__section_image {
  display: flex;
  justify-content: end;
  position: relative;
  margin-top: 40px;
}

.gift__section_image .main_img {
  object-fit: cover;
  display: block;
  max-width: 520px;
  width: 80%;
  aspect-ratio: 26 / 19;
}

.gift__section_image_sub {
  position: absolute;
  bottom: 50%;
  left: 0px;
  max-width: 378px;
  width: 64%;
}

.gift__section_image_sub img {
  object-fit: cover;
  display: block;
  width: 100%;
  aspect-ratio: 378 / 260;
}

.gift__decoration {
  position: absolute;
  top: -90px;
  right: 0px;
  width: 70%;
  max-width: 300px;
}

.gift__decoration img {
  aspect-ratio: 300 / 191;
  width: 100%;
}

/* ==========================
  Kodawari Section
========================== */
.kodawari {
  position: relative;
  /* セクション全体を固定の基準にする */
}

.kodawari__decoration {
  position: absolute;
  top: 32px;
  left: 580px;
}

.kodawari__decoration img {
  max-width: 246px;
  aspect-ratio: 246 / 141;
  width: 70%;
}

.kodawari__bg {
  width: 100%;
  height: 100%;
  background: url("./assets/images/util/bg_gray.svg");
  background-position: center;
  background-repeat: repeat;
  background-size: 250px 250px;

  /* スクロールせずに画面に張り付く設定 */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* 背景を全画面にするために親のpaddingを調整する場合の補助 */
.kodawari .container {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

.kodawari__section {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.kodawari__section_text {
  position: sticky;
  top: 204px;
  height: auto;
  align-self: flex-start;
}

.kodawari__section_image_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* 右側は自然にスクロールさせる（特別な指定は不要） */
}

.kodawari__section_image_item {
  position: relative;
}

.kodawari__section_image_item:last-child {
  margin-bottom: 0;
}

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

.kodawari__section_image_item_desc {
  position: absolute;
  left: 40px;
  bottom: 46px;
  color: #fff;
  z-index: 100;
}

/* Point 見出し */
.kodawari__section_image_item_point {
  font-size: 16px;
  margin-bottom: 4px;
}

.kodawari__section_image_item_text {
  font-size: 28px;
}

/* ==========================
  Map
========================== */
.map__section {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.map__note {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  margin-top: 20px;
}

.map__section_image {
  width: 100%;
  max-width: 100%;
}

.map__section_image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================
  Shop
========================== */
.pc_shoplist__card {
  width: 100%;
  background: url("./assets/images/util/bg_gray.svg");
  background-position: center;
  background-repeat: repeat;
  background-size: 250px 250px;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

.sp_shoplist__card {
  display: none;
}

.shoplist__card_main {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* 左画像 */
.shoplist__image img {
  width: 294px;
  height: 145px;
  object-fit: contain;
  display: block;
}

/* 中央テキスト */
.shoplist__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
}

.shoplist__title {
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--c-accent);
  font: medium;
}

.shoplist__text {
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

/* 右矢印ボタン */
.shoplist__arrow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid #0f1111;
  border-radius: 50%;
  position: relative;
  display: block;
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

/* 矢印 */
.shoplist__arrow span {
  position: absolute;
  top: 50%;
  left: 47%;
  width: 12px;
  height: 12px;
  border-top: 1px solid #0f1111;
  border-right: 1px solid #0f1111;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* hover */
.pc_shoplist__card:hover .shoplist__arrow {
  background: var(--c-accent);
  border: 1px solid var(--c-accent);
}

.pc_shoplist__card:hover .shoplist__arrow span {
  border-color: #fff;
}

/* ダウンロードボタン */
.download__arrow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid #0f1111;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  background: transparent;
  cursor: pointer;
}

/* hover */
.pc_shoplist__card:hover .download__arrow {
  background: var(--c-accent);
  border: 1px solid var(--c-accent);
}

.download__arrow .download-icon {
  width: 20px;
}

.pc_shoplist__card:hover .download-icon {
  filter: brightness(0) invert(1);
}

/* ==========================
  News
========================== */
.news__section {
  display: grid;
  grid-template-columns: 460px 1fr;
  row-gap: 20px;
  column-gap: 80px;
  align-items: flex-start;
}

.news__section_list {
  display: flex;
  flex-direction: column;
}

/* 各ニュース */
.news__section_item {
  padding: 16px 0;
  border-top: 1px solid #cacaca;
}

/* 日付 */
.news__section_item_date {
  font-size: 12px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  margin-bottom: 12px;
}

/* タイトル */
.news__section_item_link {
  font-size: 16px;
  text-decoration: underline;
}

.news__section_item_link:hover {
  color: var(--c-accent);
}

.news__link {
  font-size: 16px;
  font: bold;
  color: var(--c-accent);
  text-decoration: none;
  white-space: nowrap;
}

.news__link:hover {
  color: #a35c1f;
}

.news__link_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 20px;
}

.news__arrow {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 1px solid var(--c-accent);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.news__arrow span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--c-accent);
  border-right: 1px solid var(--c-accent);
  transform: translate(-75%, -50%) rotate(45deg);
  top: 50%;
  left: 50%;
}

/* ==========================
  Contact
========================== */
.contact__section_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
}

.contact__item {
  padding: 0 20px;
  border-left: 1px solid #b9b9b9;
  text-align: center;
}

.contact__item:first-child {
  border-left: none;
}

.contact__item_title {
  font-size: 28px;
  color: var(--c-accent);
  margin-bottom: 26px;
}

.contact__item_tel {
  font-size: 40px;
  color: var(--c-accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.contact__item_time {
  font-size: 14px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  color: var(--c-text);
  margin-bottom: 4px;
}

.contact__item_note {
  font-size: 14px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 24px;
  letter-spacing: 0px;
  color: var(--c-text);
}

.contact__mail_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid #ca7a2c;
  background-color: #fff;
  color: #ca7a2c;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 24px;
  margin-top: -6px;
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}

.contact__mail_btn_icon {
  display: inline-block;
  width: 20px;
  height: 16px;
  background-color: #ca7a2c; /* 通常時の色 */
  -webkit-mask-image: url("./assets/images/util/contact_mail.svg");
  mask-image: url("./assets/images/util/contact_mail.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
}

.contact__mail_btn:hover {
  background-color: #ca7a2c;
  color: #fff;
}

.contact__mail_btn:hover > .contact__mail_btn_icon {
  background-color: #fff; /* ホバー時の色 */
}

.contact-field .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

.contact-field .wpcf7-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 48px;
}

.contact-field .wpcf7-form-control-wrap[data-name="menu-item"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--c-text);
  border-bottom: 1.5px solid var(--c-text);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

/* ==========================
  Page Top Util
========================== */

.page__top {
  width: 100%;
}

.page__top__section {
  display: block;
}

.page__top__section_text {
  margin-left: 60px;
  padding-left: 20px;
  border-left: var(--c-accent) 1px solid;
}

.page__top__section_title {
  font-size: 44px;
  font-weight: 400;
  line-height: 52px;
  letter-spacing: 0.04em;
}

.page__top__section_desc {
  margin-top: 40px;
  line-height: 28px;
}

.page__top__section_image {
  margin-top: 80px;
}

.page__top__section_image img {
  width: 100%;
  max-height: 420px;
  aspect-ratio: 20 / 7;
  object-fit: cover;
}

/* ==========================
  Page Slider Desc
========================== */
.page__slider_desc {
  margin-block: 40px;
}

.page__slider_desc__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page__slider_desc_title {
  font-size: 28px;
  letter-spacing: 0.04em;
}

.page__slider_desc_desc {
  margin-top: 24px;
  font-size: 16px;
  line-height: 28px;
}

.valiation {
  margin-top: 80px;
}

/* ==========================
  Page Util Menu
========================== */
.page__util__menu__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
}

/* 各カード */
.page__util__menu__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* 商品名 */
.page__util__menu__item_name {
  margin-top: 20px;
  padding-bottom: 24px;
  font-size: 28px;
  letter-spacing: 0.04em;
  border-bottom: var(--c-text) 1px solid;
}

/* 価格 */
.page__util__menu__item_price {
  margin-top: 20px;
  font-size: 28px;
  letter-spacing: 0.04em;
}

/* 税込価格の小文字 */
.page__util__menu__item_price span {
  font-size: 16px;
}

/* 説明文 */
.page__util__menu__item_desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 28px;
}

/* ==========================
  Page Util Info List
========================== */
.page__util__info {
  padding: 0;
}

.page__util__info_company {
  margin-top: -60px;
}

.page__util__info__list {
  border-top: 1px solid #cacaca;
  margin-top: 0px;
}

.page__util__info_row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 64px;
  padding: 20px 0;
  border-bottom: 1px solid #cacaca;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
}

.page__util__info_row dt {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page__util__info_row dd {
  margin: 0;
}

.page__util__info_map_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  text-decoration: underline;
}

.page__util__info_hp_link {
  text-decoration: underline;
}

.page__util__info_link_icon {
  width: 14px;
  height: 14px;
}

.page__util__info__title {
  font-size: 28px;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
}

.history-item {
  display: flex;
  margin-bottom: 8px;
  gap: 4px;
}
.history-date {
  width: 35px;
}

.history-item:last-child {
  margin-bottom: 0;
}

.history-text .small {
  margin-top: 4px;
}

/* ==========================
  Daily Menu Page
========================== */
.page__download_dailymenu__section {
  margin-inline: 60px;
}

.download_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid #cacaca;
}

.download_item:last-child {
  border-bottom: 1px solid #cacaca;
}

.download_item__date {
  font-size: 24px;
  color: var(--c-text);
}

.download_item__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 350px;
  height: 60px;
  background-color: #fff;
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.04em;
}

.download_item__btn:hover {
  background-color: var(--c-accent);
  color: #fff;
}

.download_item__btn .pdf-icon {
  width: 20px;
}

.download_item__btn:hover .pdf-icon {
  filter: brightness(0) invert(1);
}

/* ==========================
  Kodawari Page
========================== */
.kodawari__point_list {
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.kodawari__point {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.kodawari__point_image {
  position: sticky;
  top: 160px;
}

.kodawari__point_image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  display: block;
}

.kodawari__point_item_detail_list {
  width: 540px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.kodawari__point_item_first {
  display: block;
  margin-top: 60px;
  margin-bottom: 146px;
}

.kodawari__point_item_first .kodawari__point_item_text {
  font-size: 44px;
  line-height: 52px;
  letter-spacing: 0.04em;
}

.kodawari__point_item_first .kodawari__point_item_detail {
  font-size: 16px;
  line-height: 28px;
  margin-top: 40px;
}

.kodawari__point_item_other_wrapper_02 {
  margin-top: 60px;
}

.kodawari__point_item_other {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}

.kodawari__point_item_other:last-child {
  margin-bottom: 0;
}

.kodawari__point_item_other img {
  width: 220px;
  height: 220px;
  object-fit: cover;
}

.kodawari__point_item_other .kodawari__point_item_text {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.04em;
}

.kodawari__point_item_other .kodawari__point_item_detail {
  font-size: 16px;
  line-height: 28px;
  margin-top: 20px;
}

/* ==========================
  Shop List Page
========================== */
.mannenya__shoplist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px;
  list-style: none;
}

.mannenya__shoplist_img {
  width: 100%;
  aspect-ratio: 380 / 260;
  overflow: hidden;
}

.mannenya__shoplist_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 店名 */
.mannenya__shoplist_title {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.04em;
  margin-top: 20px;
  margin-bottom: 12px;
}

/* 共通テキスト */
.mannenya__shoplist_text {
  font-size: 14px;
  line-height: 24px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.mannenya__shoplist_address {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 取扱商品 */
.mannenya__shoplist_items {
  font-size: 14px;
  line-height: 24px;
  margin-top: 24px;
}

/* ==========================
  Contact Page
========================== */
.contact-tel-banner {
  border: 1px solid var(--c-text);
  text-align: center;
  padding: 28px 20px;
  letter-spacing: 0.04em;
}

.contact-tel-banner__title {
  color: var(--c-accent);
  font-size: 28px;
  letter-spacing: 0.04em;
  font-weight: medium;
  margin-bottom: 18px;
}

.contact-tel-banner__number {
  color: var(--c-accent);
  font-size: 40px;
  font-weight: medium;
  line-height: 52px;
  letter-spacing: 0.04em;
}

.contact-tel-banner__time {
  font-size: 16px;
  font-weight: bold;
  line-height: 28px;
  letter-spacing: 0.04em;
  margin-top: 12px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.contact-tel-banner__note {
  font-size: 14px;
  line-height: 24px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.contact-form-intro {
  margin-top: 60px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.contact-form-wrapper .wpcf7 {
  width: 100%;
  margin: 0 auto;
}

.contact-form-container {
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #cacaca;
}

.contact-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 64px;
  border-bottom: 1px solid #cacaca;
  padding: 44px 0;
  align-items: center;
}

.contact-row.align-top {
  align-items: flex-start;
}

.contact-label {
  font-size: 16px;
  line-height: 28px;
}

.required-mark {
  font-size: 10px;
  vertical-align: super;
}

.contact-field {
  padding-right: 20px;
}

.contact-field input[type="text"],
.contact-field input[type="email"],
.contact-field input[type="tel"],
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 12px 15px;
  font-size: 16px;
  line-height: 28px;
  box-sizing: border-box;
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: medium;
}

::placeholder {
  color: #ccc;
}

.contact-submit-area {
  text-align: center;
  padding-top: 80px;
}

.contact-submit-area input[type="submit"] {
  background-color: var(--c-accent);
  color: #fff;
  border: none;
  padding: 18px 120px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Noto Serif JP", serif;
  width: 440px;
  max-width: 100%;
}

.contact-submit-area input[type="submit"]:hover {
  background-color: #a66328;
}

.contact-form-endnote {
  margin-top: 80px;
  margin-bottom: 120px;
  font-size: 16px;
  line-height: 28px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/* ==========================
  News List Page
========================== */
.page__util__info_row.page__util__info_row_newsrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.page__util__info_row_newsrow dt {
  font-size: 12px;
  line-height: 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.page__util__info_news_link {
  text-decoration: underline;
}

.news-pagination {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px; /* 丸と丸の間の余白 */
}

/* ページ番号（共通：丸い枠線） */
.news-pagination a,
.news-pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-primary);
  background-color: #fff;
  color: var(--c-primary);
  text-decoration: none;
  font-size: 16px;
  line-height: 16px;
  transition: all 0.3s;
}

.news-pagination span.current {
  background-color: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.news-pagination a:hover {
  background-color: rgba(30, 70, 100, 0.05);
}

.news-pagination .dots {
  border: none;
  background: none;
  width: auto;
  color: var(--c-text);
  font-size: 16px;
}

/* ==========================
  News Item Page
========================== */
.news_item_page__head {
  display: block;
}

.news_item_page__title {
  font-size: 44px;
  line-height: 52px;
  letter-spacing: 0.04em;
}

.news_item_page__date {
  font-size: 16px;
  line-height: 28px;
  margin-top: 12px;
}

.news_item_page__content {
  margin-top: 60px;
}

.news_item_page__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 60px;
}

.news_item_page__content p {
  margin-top: 40px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.news_item_page__content a {
  text-decoration: underline;
  cursor: pointer;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.news_item_page__content img {
  margin-top: 60px;
  width: 100%;
  height: auto;
  display: block;
}

.news_item_page__content h2 {
  font-size: 28px;
  margin-top: 60px;
}

.news__dailymenu__card {
  margin-top: 60px;
}

.news_item_page__btn_back {
  font-size: 20px;
  text-align: center;
  margin-top: 120px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

/* 戻るボタン本体 */
.news_btn-back {
  display: inline-block;
  color: var(--c-text);
  text-decoration: none;
  font-size: 20px;
  line-height: 28px;
}

.news_btn-back:hover {
  color: var(--c-accent);
  text-decoration: underline;
}

@media (max-width: 1279px) {
  .container {
    max-width: 1020px;
    padding-inline: 40px;
  }

  .news__container {
    max-width: 1020px;
    padding-inline: 40px;
  }
}

/* SP */
@media (max-width: 1100px) {
  .container {
    padding-inline: 80px;
    max-width: calc(100vw - 160px);
  }

  .news__container {
    padding-inline: 80px;
    max-width: calc(100vw - 160px);
  }

  .pc__only {
    display: none !important;
  }

  .sp__only {
    display: block !important;
  }

  .section_title_wrapper {
    gap: 0px;
  }

  .section_title {
    font-size: 28px;
    line-height: 40px;
  }

  .section_title_note {
    font-size: 14px;
    line-height: 28px;
    margin-top: 12px;
  }

  .detail__link_wrapper {
    margin-top: 32px;
  }

  .site-footer {
    padding: 60px 0;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
  }

  .footer-left {
    padding-right: 0;
  }

  .footer-address {
    margin-top: 20px;
  }

  .footer-sns {
    margin-top: 12px;
  }

  .footer-contact {
    width: 270px;
    padding-inline: 0px;
  }

  .footer-contact-mail {
    margin-top: 40px;
  }

  .footer-right {
    padding-left: 0px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: #ffffff 1px solid;
    border-left: none;
    justify-content: center;
  }

  .footer-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-img img {
    width: 270px;
  }

  .footer-img p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 24px;
  }

  /* ナビ */
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 72px;
    list-style: none;
  }

  .footer-note {
    margin-top: 40px;
  }

  .footer-copy {
    margin-top: 40px;
    text-align: center;
    font-size: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  }

  /* TOPコンテンツ */
  .firstview {
    width: 100%;
    height: calc(100dvh - 32px);
    min-height: 596px;
    margin-top: 32px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }

  .firstview__inner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .firstview__copy {
    font-size: 28px;
    position: relative;
    top: 0px;
  }

  .firstview__floating {
    right: 0;
    left: 0;
    width: 100%;
    align-items: center;
  }

  .firstview__floating__news {
    width: calc(100vw - 80px);
    max-width: 600px;
  }

  .firstview__floating__news_text {
    width: 100%;
  }

  .main__contents {
    padding: 80px 0;
    gap: 80px;
  }

  /* About */
  .about__contents {
    gap: 80px;
  }
  .about__bg {
    top: -80px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about__right {
    gap: 16px;
  }

  .about__lead {
    font-size: 20px;
  }

  .about__text {
    font-size: 14px;
  }

  .about__decoration {
    right: -20px;
    left: auto;
    top: -60px;
    bottom: auto;
  }

  .about__decoration img {
    width: 200px;
    height: 108px;
  }

  .topslider {
    margin-top: 8px;
  }

  .topslider__list img {
    width: 240px;
  }

  /* Dailymenu */
  .pc_dailymenu__card {
    display: none;
  }

  .sp_dailymenu__card {
    width: 100%;
    background: url("./assets/images/util/bg_gray.svg");
    background-position: center;
    background-repeat: repeat;
    background-size: 250px 250px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
  }

  /* hover */
  .sp_dailymenu__card:hover .dailymenu__arrow {
    background: var(--c-accent);
    border: 1px solid var(--c-accent);
  }

  .sp_dailymenu__card:hover .dailymenu__arrow span {
    border-color: #fff;
  }

  .dailymenu__card_main {
    display: block;
    width: 100%;
  }

  .dailymenu__content {
    gap: 40px;
    width: 100%;
    margin: 0 auto;
  }

  .dailymenu__content_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .dailymenu__title {
    font-size: 20px;
  }

  .dailymenu__text {
    font-size: 14px;
  }

  /* Obento */
  .obento {
    margin-bottom: 40px;
  }

  .obento__section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .obento__section_title {
    margin-top: 0px;
  }

  .obento__section_image {
    width: 100%;
  }

  .obento__section_image .main_img {
    max-width: 520px;
    width: 78%;
    aspect-ratio: 276 / 201;
  }

  .obento__section_image_sub {
    position: absolute;
    top: 45%;
    left: auto;
    right: 43%;
    max-width: 378px;
    width: 57%;
  }

  .obento__section_image_sub img {
    width: 100%;
    aspect-ratio: 200 / 138;
  }

  .obento__decoration {
    right: -20px;
    left: auto;
    top: -100px;
    width: 200px;
  }

  .obento__decoration img {
    aspect-ratio: 200 / 93;
  }

  /* Popular Obento */
  .popular_obento__section {
    flex-direction: column;
    align-items: stretch;
    gap: 60px;
  }

  .popular_obento__section_left {
    flex: none;
  }

  .popular_obento__note {
    font-size: 12px;
    line-height: 20px;
    margin-top: 12px;
  }

  .popular_obento__slider_list {
    gap: 20px;
  }

  .popular_obento__slider_list::after {
    flex: 0 0 20px;
  }

  .popular_obento__item {
    flex: 0 0 260px;
  }

  .popular_obento__item img {
    width: 260px;
    height: 198px;
    aspect-ratio: 260 / 198;
  }

  .popular_obento__item_title {
    font-size: 16px;
    line-height: 28px;
  }

  .popular_obento__slider_nav {
    justify-content: center;
    margin-top: 24px;
    width: 100%;
  }

  /* Service scene  */
  .service_scene__desc {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service_scene__lead {
    font-size: 20px;
  }

  .service_scene__right {
    gap: 12px;
    height: auto;
  }

  /* Gift */
  .gift {
    margin-top: 0px;
  }

  .gift__section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .gift__section_image {
    margin-top: 20px;
  }

  .gift__section_image .main_img {
    object-fit: cover;
    display: block;
    max-width: 520px;
    width: 80%;
    aspect-ratio: 26 / 19;
  }

  .gift__section_image_sub {
    position: absolute;
    top: -10%;
    left: auto;
    right: 43%;
    max-width: 378px;
    width: 57%;
  }

  .gift__section_image_sub img {
    object-fit: cover;
    display: block;
    width: 100%;
    aspect-ratio: 378 / 260;
  }

  .gift__decoration {
    right: -20px;
    left: auto;
    top: -100px;
    max-width: 520;
    width: 50%;
  }

  .gift__decoration img {
    width: 100%;
    aspect-ratio: 200 / 127;
  }

  /* Kodawari */
  .kodawari {
    position: relative;
    /* セクション全体を固定の基準にする */
  }

  .kodawari__decoration {
    position: absolute;
    top: 20px;
    left: auto;
    right: 0px;
    width: 38%;
  }

  .kodawari__decoration img {
    width: 100%;
    aspect-ratio: 150 / 86;
  }

  .kodawari .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .kodawari__section {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .kodawari__section_text {
    position: initial;
    top: 204px;
    height: auto;
    align-self: flex-start;
  }

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

  .kodawari__section_image_item {
    position: relative;
  }

  .kodawari__section_image_item:last-child {
    margin-bottom: 0;
  }

  .kodawari__section_image_item img {
    width: 100%;
    max-width: 660px;
    height: auto;
    display: block;
  }

  .kodawari__section_image_item_desc {
    position: absolute;
    left: 40px;
    bottom: 46px;
    color: #fff;
    z-index: 100;
  }

  .kodawari__section_image_item_point {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .kodawari__section_image_item_text {
    font-size: 20px;
  }

  /* ==========================
    Map
  ========================== */
  .map__section {
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
  }

  .map__note {
    font-size: 12px;
    margin-top: 12px;
  }

  .map__section_image img {
    width: 100%;
    object-fit: cover;
    display: block;
  }

  /* ==========================
    Shop
  ========================== */
  .pc_shoplist__card {
    display: none;
  }

  .sp_shoplist__card {
    margin-top: 20px;
    padding: 40px;
    width: 100%;
    background: url("./assets/images/util/bg_gray.svg");
    background-position: center;
    background-repeat: repeat;
    background-size: 250px 250px;
    display: flex;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
  }

  /* hover */
  .sp_shoplist__card:hover .shoplist__arrow {
    background: var(--c-accent);
    border: 1px solid var(--c-accent);
  }

  .sp_shoplist__card:hover .shoplist__arrow span {
    border-color: #fff;
  }

  .shoplist__card_main {
    width: 100%;
  }

  .shoplist__content {
    gap: 40px;
    width: 100%;
    margin: none;
  }

  .shoplist__content_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .shoplist__title {
    font-size: 28px;
    letter-spacing: 0.04em;
    color: var(--c-accent);
    font: medium;
  }

  .shoplist__text {
    font-size: 16px;
    line-height: 28px;
    margin: 0;
  }

  /* 右矢印ボタン */
  .shoplist__arrow {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 1px solid #0f1111;
    border-radius: 50%;
    position: relative;
    display: block;
    transition: 0.3s;
    background: transparent;
    cursor: pointer;
  }

  /* 矢印 */
  .shoplist__arrow span {
    position: absolute;
    top: 50%;
    left: 47%;
    width: 12px;
    height: 12px;
    border-top: 1px solid #0f1111;
    border-right: 1px solid #0f1111;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  /* hover */
  .shoplist__arrow:hover {
    background: var(--c-accent);
    border: none;
  }
  .shoplist__arrow:hover span {
    border-color: #fff;
  }

  /* ==========================
    News
  ========================== */
  .news__section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news__section_item {
    padding: 20px 0;
    border-top: 1px solid #cacaca;
  }

  .news__section_item:last-child {
    border-bottom: 1px solid #cacaca;
  }

  .news__section_item_date {
    margin-bottom: 8px;
  }

  .news__section_item_link {
    font-size: 14px;
  }

  .news__link_wrapper {
    justify-content: flex-start;
    margin-top: 0px;
  }

  /* ==========================
    Contact
  ========================== */
  .contact__section_grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .contact__item {
    padding: 40px 0px;
    border-left: none;
    border-top: 1px solid #b9b9b9;
  }

  .contact__item:first-child {
    border-top: none;
    padding-top: 0px;
  }

  .contact__item_title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .contact__item_tel {
    margin-bottom: 20px;
  }

  .contact__item_time {
    font-size: 16px;
  }

  .contact__mail_btn {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 8px;
  }

  /* TOP以外のページ */
  .l-main__sub {
    margin-top: 116px !important;
  }

  .l-main__contents {
    gap: 80px;
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .page__top__section_text {
    margin-left: 0px;
    padding-left: 24px;
    border-left: var(--c-accent) 1px solid;
  }

  .page__top__section_title {
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0.04em;
  }

  .page__top__section_desc {
    margin-top: 12px;
    font-size: 14px;
  }

  .page__top__section_image {
    margin-top: 40px;
  }

  .page__top__section_image img {
    width: 100%;
    object-fit: cover;
  }

  .page__download_dailymenu__section {
    margin-inline: 0px;
  }

  .download_item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
    gap: 12px;
  }

  .download_item__date {
    font-size: 20px;
  }

  .page__util__menu__item_name {
    margin-top: 12px;
    padding-bottom: 20px;
    font-size: 20px;
  }

  .page__util__menu__item_desc {
    font-size: 14px;
  }

  .page__slider_desc {
    margin-block: 0px;
  }

  .page__slider_desc_title {
    font-size: 20px;
  }

  .page__slider_desc_desc {
    margin-top: 12px;
    font-size: 14px;
  }

  .valiation {
    margin-top: 0px;
  }

  .kodawari__point_list {
    gap: 80px;
  }

  .kodawari__point {
    flex-direction: column;
    gap: 50px;
  }

  .kodawari__point_image {
    position: initial;
  }

  .kodawari__point_image img {
    width: 100%;
    max-width: 100%;
  }

  .kodawari__point_item_detail_list {
    width: 100%;
  }

  .kodawari__point_item_first {
    margin-top: 0px;
    margin-bottom: 50px;
  }

  .kodawari__point_item_first .kodawari__point_item_text {
    font-size: 28px;
    line-height: 40px;
  }

  .kodawari__point_item_first .kodawari__point_item_detail {
    font-size: 14px;
    margin-top: 12px;
  }

  .kodawari__point_item_other_wrapper_01 {
    padding-inline: 20px;
    display: flex;
    justify-content: flex-start;
  }

  .kodawari__point_item_other_wrapper_02 {
    margin-top: 40px;
    padding-inline: 20px;
    display: flex;
    justify-content: flex-end;
  }

  .kodawari__point_item_other {
    flex-direction: column;
    gap: 12px;
    width: 60%;
    min-width: 220px;
  }

  .kodawari__point_item_other img {
    width: 100%;
    min-width: 220px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .kodawari__point_item_other .kodawari__point_item_text {
    font-size: 16px;
    line-height: 28px;
  }

  .kodawari__point_item_other .kodawari__point_item_detail {
    font-size: 14px;
    margin-top: 12px;
  }

  .mannenya__shoplist_title {
    font-size: 14px;
    line-height: 24px;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .mannenya__shoplist_text {
    font-size: 12px;
    line-height: 20px;
  }

  .mannenya__shoplist_address {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .mannenya__shoplist_items {
    font-size: 12px;
    line-height: 20px;
    margin-top: 12px;
  }

  .contact-tel-banner__title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .contact-tel-banner__time {
    margin-top: 12px;
  }

  .contact-form-intro {
    font-size: 14px;
  }

  .contact-row {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .contact-field {
    padding-right: 0px;
  }

  .contact-submit-area {
    padding-top: 60px;
  }

  .contact-form-endnote {
    margin-top: 40px;
    margin-bottom: 80px;
    font-size: 14px;
  }

  .page__util__info_company {
    margin-top: 0px;
  }
}

@media (max-width: 700px) {
  .container {
    padding-inline: 20px;
    max-width: calc(100vw - 40px);
  }

  .news__container {
    padding-inline: 20px;
    max-width: calc(100vw - 40px);
  }

  .service_scene__grid {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .service_scene__card_title {
    margin-top: 12px;
    font-size: 16px;
  }

  .service_scene__card_link {
    margin-top: 12px;
  }

  .page__top__section_image img {
    width: 100vw;
    height: 300px;
    margin-left: -20px;
  }

  .page__util__menu__list {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .mannenya__shoplist {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 18px;
  }

  .page__util__info_row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .page__util__info_row dt {
    display: flex;
    justify-content: flex-start;
    font-weight: bold;
  }
}
