/* ==========================================================================
   KAGOSIMAhayato LP — style.css
   セクション配置・レスポンシブ
   ========================================================================== */

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.kh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: var(--kh-layout-band-max);
  margin: 0 auto;
  background-color: var(--kh-color-bg-band);
  border-bottom: 1px solid var(--kh-color-border);
}

.kh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.kh-header__logo {
  font-family: var(--kh-font-main);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--kh-color-second);
}

.kh-header__nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.kh-header__nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--kh-color-second);
  position: relative;
}

.kh-header__nav-toggle-bar::before,
.kh-header__nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--kh-color-second);
}

.kh-header__nav-toggle-bar::before {
  top: -6px;
}

.kh-header__nav-toggle-bar::after {
  top: 6px;
}

.kh-header__nav {
  display: none;
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  background-color: var(--kh-color-bg-band);
  border-bottom: 1px solid var(--kh-color-border);
}

.kh-header__nav.is-open {
  display: block;
}

.kh-header__nav-list {
  padding: 16px var(--kh-layout-inner-padding) 24px;
}

.kh-header__nav-item + .kh-header__nav-item {
  margin-top: 12px;
}

.kh-header__nav-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   FV
   -------------------------------------------------------------------------- */

.kh-fv {
  position: relative;
  background-color: var(--kh-color-second);
}

.kh-fv__visual {
  aspect-ratio: 430 / 573;
  overflow: hidden;
}

.kh-fv__visual-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kh-fv__body {
  padding: 32px var(--kh-layout-inner-padding) 70px;
  text-align: center;
  margin-top: -4rem;
}

.kh-fv__catch {
  font-family: var(--kh-font-main);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: var(--kh-color-second);
}

.kh-fv__catch img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.kh-fv__text {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--kh-color-main);
  line-height: 1.8;
  font-family: var(--kh-font-noto-serif);
}

.kh-fv__actions {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(4px, 2vw, 16px);
  width: 100%;
  max-width: 100%;
  padding-inline: 0;
}
.kh-fv__action-item {
  margin-top: 44px;
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kh-fv__action-item img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */

.kh-about {
  padding: 56px 0;
  background-color: var(--kh-color-bg);
}

.kh-about__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 4rem;
  padding-inline: 0;
  width: 85%;
  margin-inline: auto;
}
.kh-about__inner:first-child .kh-section-heading:first-of-type .kh-section-heading__title {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.kh-about__inner:first-child .kh-section-heading:nth-of-type(2) .kh-section-heading__title {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.kh-about__inner:nth-child(2) .kh-section-heading__title{
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.kh-about__inner:nth-child(3) .kh-section-heading__title{
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.kh-about__visual {
  width: calc(100% / 0.85);
  max-width: var(--kh-layout-band-max);
  margin-left: calc((100% - 100% / 0.85) / 2);
}

.kh-about__visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: auto;
}
.kh-about__visual-placeholder {
  font-size: 0.75rem;
  color: var(--kh-color-text-light);
}

.kh-about__text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--kh-color-main);
  width: 100%;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   STRONG
   -------------------------------------------------------------------------- */

.kh-strong {
  padding-top: 56px;
  background-color: var(--kh-color-second);
}
.kh-strong__inner{
  width: 100%;
  padding: 0;
}

.kh-strong__inner:nth-of-type(4) {
background-color: var(--kh-color-bg);
padding-top: 95px;
}
.kh-section-strong__title{
  font-size: var(--kh-font-size-section-heading-title);
  font-weight: var(--kh-font-main-weight);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--kh-color-accent);
  font-family: var(--kh-font-main);
  overflow-wrap: anywhere;
}
.kh-section-strong__title-secondary{
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
}
.kh-section-strong__title span,
.kh-section-strong__title-secondary span
{
  font-size: var(--kh-font-size-section-sub-title);
  font-weight: var(--kh-font-main-weight);
  letter-spacing: 0.05em;
  color: var(--kh-color-main);
  font-family: var(--kh-font-main);
  text-shadow:none;
}

.kg-strong__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kg-strong__item {
  display: flex;
}

.kg-strong__item-thumb {
  padding-block: 2rem;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kg-strong__item-thumb-img{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.kh-strong__inner:nth-of-type(2) .kg-strong__item-thumb img,
.kh-strong__inner:nth-of-type(3) .kg-strong__item-thumb img {
  width: 80%;
  margin: 0 auto !important;
}
.kh-strong__inner:first-child .kg-strong__item-thumb {
  padding-bottom: 2rem;
}
.kh-strong__inner:last-child .kg-strong__item-thumb {
  padding-bottom: 6rem;
}


.kg-strong__item-thumb > img[src*="strong-img2.webp"] {
  width: 90%;
  margin-inline: auto;
}

.kg-strong__item-thumb img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}
.kg-strong__item-text {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--kh-color-main);
  padding-inline: clamp(16px, 4vw, 30px);
  overflow-wrap: anywhere;
}
/* --------------------------------------------------------------------------
   MENU（TOP 内プレビュー）
   -------------------------------------------------------------------------- */

.kh-menu {
  padding: 56px 0;
  background-image: url(img/menu/bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--kh-color-menu-text);
}
.kh-menu-jump{
}
.kh-menu-jump__list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.kh-menu-jump__item{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.kh-menu-jump__link{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.kh-menu-jump__link img{
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.kh-menu-jump_text{
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--kh-color-accent);
  overflow-wrap: anywhere;
  text-align: center;
  font-weight: normal;
  text-align: center;
  overflow-wrap: anywhere;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.kh-menu__inner{
  margin-inline: auto;
  padding:0;
}

#menu-drink {
  padding-top: 4rem;
}

#menu-meshi .kh-media-block__text img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

#menu-tsumami .kh-section-heading {
  margin-bottom: 2rem;
}

#menu-tsumami .kh-media-block__image-img {
  width: 80%;
}

.kh-menu .kh-section-heading__title {
  font-size: 3rem;
}

.kh-menu-page .kh-section-heading__title {
  color: var(--kh-color-menu-text);
}


.kh-menu .kh-media-block {
  margin-top: 32px;
  margin-bottom: 48px;
  margin-inline:0;
}

.kh-media-block{
  position: relative;
  width: 100%;
  margin-inline: auto;
}
.kh-media-block--reverse{
  position: relative;
  width: 100%;
}

.kh-media-block__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.kh-media-block__image-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.kh-media-block__text {
  position: absolute;
  right:10px;
  bottom: -0%;
  max-width: min(70%, calc(100% - 20px));
  padding: 6px 10px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: end;
  min-width: 0;
}

.kh-media-block__text img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.kh-media-block__text > img[src*="shiro.webp"],
.kh-media-block__text > img[src*="honoo.webp"] {
  width: 90%;
}


.kh-media-block__text-line:last-of-type{
  line-height: 2;
}

.kh-media-block__text-price{
  font-size: 2rem;
  font-weight: var(--kh-font-main-weight);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--kh-color-accent);
  font-family: var(--kh-font-main);
}

.kh-media-block__text-price .kh-price__unit {
  font-family: var(--kh-font-second);
}
/* 文字：左 / 画像：右端 */
.kh-media-block--reverse .kh-media-block__image {
  display: flex;
  justify-content: flex-end;
}

.kh-media-block--reverse .kh-media-block__image-img {
  margin-left: auto;
}

.kh-media-block--reverse .kh-media-block__text {
  right: auto;
  left: 10px;
  align-items: flex-start;
}

/* 1カラム — 画像 → テキスト（absolute なし） */
.kh-media-block--column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kh-media-block--column .kh-media-block__image {
  display: block;
  width: 100%;
  aspect-ratio: auto;
}
.kh-media-block--column .kh-media-block__image.kh-media-block__image--last{
  width: fit-content;
  margin: 0 auto;
}
.kh-media-block--column .kh-media-block__image-img {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}

.kh-media-block--column .kh-media-block__text {
  position: static;
  right: auto;
  left: auto;
  bottom: auto;
  max-width: none;
  width: 90%;
  margin-inline: auto;
  padding: 0;
  align-items: center;
}
.kh-media-block--column .kh-media-block__text h3{
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-size: clamp(1.75rem, 8vw, 2.4rem);
  text-align: center;
  overflow-wrap: anywhere;
}
.kh-media-block--column .kh-media-block__text p{
  text-shadow: none;
  line-height: 2;
  letter-spacing: 0.04em;
}

/* foot — 画像（左/右寄せ共通）+ 親バー（見出し画像：左 / 料金：右） */
.kh-media-block--foot,
.kh-media-block--foot-reverse {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kh-media-block--foot .kh-media-block__image,
.kh-media-block--foot-reverse .kh-media-block__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.kh-media-block--foot .kh-media-block__image {
  display: block;
}

.kh-media-block--foot-reverse .kh-media-block__image {
  display: flex;
  justify-content: flex-end;
}

.kh-media-block--foot .kh-media-block__image-img,
.kh-media-block--foot-reverse .kh-media-block__image-img {
  display: block;
  width: auto;
  max-width: 90%;
  height: auto;
  object-fit: cover;
}

.kh-media-block--foot .kh-media-block__image-img {
  margin-right: auto;
  margin-left: 0;
}

.kh-media-block--foot-reverse .kh-media-block__image-img {
  margin-left: auto;
  margin-right: 0;
}

.kh-media-block--foot.kh-media-block--reverse .kh-media-block__image {
  display: flex;
  justify-content: flex-end;
}

.kh-media-block--foot.kh-media-block--reverse .kh-media-block__image-img {
  margin-left: auto;
  margin-right: 0;
}

.kh-media-block__foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 90%;
  min-width: 0;
  margin: 0 auto;
  padding-top: 12px;
}

.kh-media-block--foot-reverse .kh-media-block__foot{
  margin-top: -60px;
}
.kh-media-block__foot-heading {
  flex: 0 1 auto;
  margin-right: auto;
  text-align: left;
}

.kh-media-block__foot-heading img {
  display: block;
  width: 100%;
  height: auto;
}

.kh-media-block__foot-price {
  flex: 0 0 auto;
  margin: 0 0 0 auto;
  font-family: var(--kh-font-main);
  font-size: 2rem;
  font-weight: var(--kh-font-main-weight);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--kh-color-accent);
  text-align: right;
  white-space: nowrap;
}

.kh-media-block__foot-price .kh-price__unit {
  font-family: var(--kh-font-second);
}

.kh-media-block__text-line {
  margin: 0;
  font-size: clamp(0.875rem, 3.5vw, 1.2rem);
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--kh-color-second);
  overflow-wrap: anywhere;
  
}
.kh-menu__card-name,
.kh-menu-page__item-name {
  font-family: var(--kh-font-main);
  font-weight: var(--kh-font-main-weight);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kh-menu__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--kh-color-bg-band);
  border-radius: 8px;
}

.kh-menu__card-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background-color: var(--kh-color-bg-muted);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: var(--kh-color-text-light);
}

.kh-menu__card-body {
  flex: 1;
  min-width: 0;
}

.kh-menu__card-name {
  font-size: 0.9375rem;
  font-weight: 700;
}

.kh-menu__card-desc {
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--kh-color-text-light);
}

.kh-menu__card-price {
  margin-top: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--kh-color-accent);
}

.kh-menu__more {
  text-align: center;
}

/* --------------------------------------------------------------------------
   MENU Grid — 2列 / 子要素：画像・価格
   -------------------------------------------------------------------------- */

.kh-menu-grid {
  padding: 56px 0;
  color: var(--kh-color-menu-text);
}

.kh-menu-grid__inner {
  margin-inline: auto;
  padding: 0;
}

.kh-menu-grid .kh-section-heading__title {
  color: var(--kh-color-menu-text);
}

.kh-menu-grid .kh-section-heading__text {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.9;
  text-align: center;
}

.kh-menu-grid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  width: 90%;
  margin-inline: auto;
  margin-top: 32px;
}

.kh-menu-grid__item {
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: auto auto;
  gap: 8px;
}

.kh-menu-grid__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.kh-menu-grid__image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kh-menu-grid__image-img[src*="menu-img8.webp"] {
  object-fit: contain;
}
.kh-menu__inner-img{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top:-40px
}
.kh-menu-grid__price {
  margin: 0;
  font-family: var(--kh-font-main);
  font-size: 2rem;
  font-weight: var(--kh-font-main-weight);
  line-height: 1.4;
  letter-spacing: -.1em;
  color: var(--kh-color-accent);
  text-align: center;
}

.kh-menu-grid__price .kh-price__unit {
  font-family: var(--kh-font-second);
}

/* --------------------------------------------------------------------------
   MENU Slide
   -------------------------------------------------------------------------- */

.kh-menu-slide {
  position: relative;
  margin-top: 48px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 4rem;
  padding: 0;
  overflow: visible;
}

.kh-menu-slide__inner {
  position: relative;
  width: 100%;
  padding-bottom: 40px;
}

.kh-menu-slide__viewport {
  position: relative;
  width: 100%;
  min-height: 454px;
}

.kh-menu-slide__track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.kh-menu-slide__card {
  position: relative;
  flex: 0 0 calc((100% - 16px * 0.15) / 1.15);
  flex-shrink: 0;
  height: auto;
  opacity: 0.55;
  transform: scale(0.94);
  transition: opacity 0.3s, transform 0.3s;
  padding: 2rem;
  background-color: var(--kh-color-menu-bg);
}

.kh-menu-slide__card.is-active {
  opacity: 1;
  transform: scale(1);
}
.kh-menu-slide__photo {
  display: block;
  width: 100%;
  height: auto;
}

.kh-menu-slide__heading {
  position: unset;
  width: min(80%, 100%);
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
  margin-top: -40px;
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kh-menu-slide__text{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kh-menu-slide__text-line{
  text-align: center;
  color: var(--kh-color-second);
  padding-top: 1rem;
}
.kh-menu-slide__list{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--kh-color-second);
}

.kh-menu-slide__list > .kh-menu-slide__item {
  display: flex;
  align-items: flex-start;
  gap: 0.15em;
  padding: 0;
}

.kh-menu-slide__list > .kh-menu-slide__item::before {
  content: "";
  flex-shrink: 0;
  background-color: #e8943a;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 10px;
  margin-right: 10px;
}

.kh-menu-slide__title{
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--kh-font-main);
  color: var(--kh-color-accent);
  text-align: right;
}

.kh-menu-slide__prev,
.kh-menu-slide__next {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 1.6rem;
  color: var(--kh-color-main);
  background-color: var(--kh-color-second);
  border: none;
  box-shadow: none;
  cursor: pointer;
  transform: translateY(-50%);
}

.kh-menu-slide__prev {
  left: 0;
}

.kh-menu-slide__next {
  right: 0;
}

.kh-menu-slide__prev::after,
.kh-menu-slide__next::after {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.kh-menu-slide__prev::after {
  content: "‹";
}

.kh-menu-slide__next::after {
  content: "›";
}

.kh-menu-slide__prev.is-disabled,
.kh-menu-slide__next.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Lunch Time
   -------------------------------------------------------------------------- */

.kh-lunch {
  padding-block: 4rem;

  margin: 0 auto 4rem;
  background-color: var(--kh-color-menu-bg);
}

.kh-lunch .kh-section-heading__text {
  margin-top: 0;
  font-family: var(--kh-font-main);
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--kh-color-second);
  text-align: center;
}

.kh-lunch__panel {
  width: 100%;
  margin: 0 auto 0;
}

.kh-lunch__feature {
  position: relative;
  z-index: 2;
  padding-block: 1.5rem;
}

.kh-lunch__feature::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: calc(-3rem - 50%);
  z-index: -1;
  background: url(img/lunchtime/launchtime-bg.webp) no-repeat center / 100% auto;
  pointer-events: none;
}

.kh-lunch__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.kh-lunch__choice {
  display: block;
  width: 100%;
  height: auto;
}

.kh-lunch__point {
  position: absolute;
  top: -1.25rem;
  left: -0.5rem;
  z-index: 1;
  width: min(38%, 110px);
  height: auto;
}

.kh-lunch__lead {
  margin: 1.5rem 0 1.25rem;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--kh-color-second);
  text-align: center;
}

.kh-lunch__prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
}

.kh-lunch__prices-from,
.kh-lunch__prices-to {
  margin: 0;
}
.kh-lunch__price__flex{
  width: fit-content;
}
.kh-lunch__prices-from img,
.kh-lunch__prices-to img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.kh-lunch .kh-menu-slide-set {
  margin-top: 0.5rem;
}

.kh-lunch__price {
  margin: 1.25rem 0 0;
  font-family: var(--kh-font-main);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--kh-color-accent);
  text-align: right;
}

.kh-lunch__price .kh-price__unit {
  font-family: var(--kh-font-second);
  font-size: 1rem;
}

.kh-lunch__offer {
  position: relative;
  z-index: 99;
  margin-top: 1rem;
  text-align: center;
  background-image: url(img/common/Rectangle.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 90%;
  margin-inline: auto;
  padding: 1rem;
  padding-top: 2rem;
}

.kh-lunch__offer-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  letter-spacing: 0.2em;
}

.kh-lunch__offer-lead {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.kh-lunch__offer-lead::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  z-index: 1;
  width: min(28%, 72px);
  aspect-ratio: 1;
  background: url(img/lunchtime/launchtime-more.webp) no-repeat center / contain;
}

.kh-lunch__offer-lead::after {
  content: "+";
  position: absolute;
  bottom: 0;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translateX(-50%);
  font-family: var(--kh-font-main);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--kh-color-accent);
}

.kh-lunch__offer-mark {
  display: block;
  width: min(50%, 160px);
  height: auto;
}

.kh-lunch__offer-sub {
  font-family: var(--kh-font-main);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--kh-color-second);
}

.kh-lunch__offer-name {
  font-family: var(--kh-font-second);
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--kh-color-second);
  text-shadow: var(--kh-text-outline-shadow);
}

.kh-lunch__offer-price {
  font-family: var(--kh-font-second);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.05em;
  color: var(--kh-color-accent);
  text-shadow: var(--kh-text-outline-shadow);
}

.kh-lunch__sets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.kh-lunch__set {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  border-bottom: 1px solid var(--kh-color-border);
  padding-bottom: 1rem;
}
.kh-lunch__set:last-child {
  border-bottom: none;
}

.kh-lunch__set-thumb {
  flex-shrink: 0;
  margin: 0;
  width: 40%;
  max-width: 105px;
}
.kh-lunch__set:nth-child(2) .kh-lunch__set-thumb img,
.kh-lunch__set:nth-child(3) .kh-lunch__set-thumb img {
  width: 100%;
  max-width: 74px;
  margin: 0 auto;
}
.kh-lunch__set-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.kh-lunch__set-body {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  min-width: 0;
}

.kh-lunch__set-badge {
  display: block;
  flex-shrink: 0;
  width: 48px;
  height: auto;
}

.kh-lunch__set-text {
  margin: 0;
  font-family: var(--kh-font-main);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.05em;
  color: var(--kh-color-second);
  text-align: left;
  font-family: var(--kh-font-second);
}

.kh-lunch__set-plus {
  color: var(--kh-color-accent);
}

/* --------------------------------------------------------------------------
   MENU Page
   -------------------------------------------------------------------------- */
.kh-fv--menu {
  position: relative;
  background-image: url(img/menu/munu-fv-img.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.kh-fv--menu .kh-fv__logo {
  position: absolute;
  top: var(--kh-layout-inner-padding);
  left: var(--kh-layout-inner-padding);
  z-index: 10;
  display: block;
  width: min(28%, 100px);
}

.kh-fv--menu .kh-fv__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.kh-menu-page {
  padding: 40px 0 56px;
  background-color: var(--kh-color-menu-bg);
  color: var(--kh-color-menu-text);
}

.kh-menu-page__lead {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--kh-color-text-light);
  text-align: center;
  line-height: 1.8;
}

.kh-menu-page__category + .kh-menu-page__category {
  margin-top: 40px;
}

.kh-menu-page__category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-family: var(--kh-font-main);
  font-size: 1rem;
  font-weight: var(--kh-font-main-weight);
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--kh-color-menu-text);
  cursor: pointer;
}

.kh-menu-page__category-title img {
  transition: transform 0.2s;
}

.kh-menu-page__category.is-open .kh-menu-page__category-title img {
  transform: rotate(180deg);
}

.kh-menu-page__items {
  display: none;
  padding-top: 8px;
}

.kh-menu-page__category.is-open .kh-menu-page__items {
  display: block;
}

.kh-menu-page__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--kh-color-border);
}

.kh-menu-page__item-name {
  font-size: 0.875rem;
  font-weight: 700;
}

.kh-menu-page__item-desc {
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--kh-color-text-light);
  line-height: 1.6;
}

.kh-menu-page__item-price {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--kh-color-accent);
}
.kh-section-heading{
  position: relative;
  z-index: 1;
  display: grid;
  gap: .5rem;
}
.kh-menu-section .kh-section-heading__title::before{
  content: "";
  position: absolute;
  top: -20px;
  left: 14%;
  z-index: -1;
  max-width: 325px;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(img/common/border.webp);
}
.kh-menu-section .kh-media-block__image{
 aspect-ratio: auto;
}
/* --------------------------------------------------------------------------
   MENU Sheet — お品書き価格表（1列）
   -------------------------------------------------------------------------- */

.kh-menu-sheet {
  width: min(90%, 100%);
  margin: 2rem auto 4rem;
  padding: 0;
}

.kh-menu-sheet__banner {
  position: relative;
  width: 90%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
  margin-bottom: -93px;
}

.kh-menu-sheet__banner img {
  width: 100%;
  height: auto;
}

.kh-menu-sheet__heading {
  margin: 0 0 1rem;
  font-family: var(--kh-font-main);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--kh-color-menu-text);
  text-align: center;
}

#menu-drink .kh-menu-sheet__heading {
  text-align: left;
  font-size: 3rem;
  letter-spacing: -.2em;
  font-feature-settings: "palt";
  color: var(--kh-color-second);
}
.kh-menu-sheet__list{
  background-color: var(--kh-color-menu-bg);
  padding: 2rem;
  padding-block: 3rem;
}

#menu-tsumami .kh-menu-sheet__list {
  padding-top: 8rem;
}

#menu-drink .kh-menu-sheet:first-of-type .kh-menu-sheet__list {
  margin-bottom: 2rem;
}

.kh-menu-sheet__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--kh-color-border);
}
.kh-menu-sheet__row:first-child{
  border-top: 1px solid var(--kh-color-border);
}
.kh-menu-sheet__name {
  margin: 0;
  font-family: var(--kh-font-main);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--kh-color-second);
  line-height: 1.6;
}

.kh-menu-sheet__price {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--kh-font-second);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--kh-color-accent);
  text-align: right;
}

.kh-menu-sheet__price .kh-price__unit {
  font-family: var(--kh-font-second);
  font-size: 0.875rem;
}

.kh-menu-sheet__note {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-family: var(--kh-font-description);
  text-align: left;
  width: 90%;
  margin-inline: auto;
  margin-top: 2rem;
  line-height: 1.8;
  color: var(--kh-color-second);
}

/* --------------------------------------------------------------------------
   MENU Slide Set — スライダー内3列
   -------------------------------------------------------------------------- */

.kh-menu-slide-set {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
}

.kh-menu-slide-set__cell {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.kh-menu-slide-set__title {
  margin: 0;
  background-color: var(--kh-color-menu-text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.kh-menu-slide-set__title img {
  display: block;
  width: 100%;
  height: auto;
}

.kh-menu-slide-set__text {
  margin: 0;
  font-size: 0.8rem;
  padding: 0.5rem;
  text-align: center;
  background-color: var(--kh-color-main);
  color: var(--kh-color-second);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   NEWS
   -------------------------------------------------------------------------- */

.kh-news {
  padding-block: 6rem 4rem;
  background-color: var(--kh-color-second);
  position: relative;
}

.kh-news__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #333333;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.kh-news__inner::after {
  content: "";
  position: absolute;
  bottom: -230px;
  left: -24px;
  width: 100%;
  height: 500px;
  background: url(img/common/bg.webp) no-repeat center bottom;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.kh-news__inner {
  position: relative;
  padding: 3rem 2rem;
  margin-inline: auto;
  width: min(90%, 100%);
  max-width: 100%;
  background-color: transparent;
}

.kh-news__inner > * {
  position: relative;
  z-index: 2;
}

.kh-news .kh-section-heading__title {
  color: var(--kh-color-main);
}

.kh-news__list {
  margin-top: .5rem;
}

.kh-news__item + .kh-news__item {
  border-top: 1px solid var(--kh-color-border);
}

.kh-news__link {
  display: block;
  padding: 16px 0;
}

.kh-news__date {
  font-size: 0.75rem;
  color: var(--kh-color-text-light);
  letter-spacing: 0.05em;
}

.kh-news__title {
  font-size: 1rem;
  line-height: 2;
  color: var(--kh-color-main);
  text-align: center;
  margin-bottom: 1.2rem;
}

/* --------------------------------------------------------------------------
   ACCESS
   -------------------------------------------------------------------------- */

.kh-access {
  padding: 56px 0;
  background-color: var(--kh-color-second);
}

.kh-access__inner{
  position: relative;
}

.kh-access__inner .kh-section-heading__title{
  color: var(--kh-color-main);
}
.kh-access__map {
  margin-top: 32px;
  aspect-ratio: 350 / 72;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kh-access__map iframe{
  display: block;
  width: 100%;
  height: 310px;
  border: 0;
}

.kh-access__map-placeholder {
  font-size: 0.75rem;
  color: var(--kh-color-text-light);
}

.kh-access__info-inner{
  width: 100%;
  padding: 3rem 1rem;
}

.kh-access__info {
  margin-top: 24px;
}

.kh-access__info .kh-section-heading__title{
  color: var(--kh-color-main);
  font-family: var(--kh-font-noto-serif);
  font-size: clamp(1.25rem, 5.5vw, 1.8rem);
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  white-space: nowrap;
}
.kh-access__info .kh-section-heading__title .kh-text-split {
  color: var(--kh-color-accent);
}
.kh-access__info .kh-section-heading p{
  color:#999999;
  font-size: 1rem;
  font-family: var(--kh-font-description);
  margin-top: 1rem;
}

.kh-access__info-row{
  padding-top: 4rem;
}

.kh-access__info > .kh-access__info-row:nth-of-type(n+4) {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.kh-access__info > .kh-access__info-row:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.kh-access__info-row + .kh-access__info-row {
  margin-top: 16px;
}

.kh-access__info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--kh-color-accent);
}

.kh-access__info-value {
  margin-top: 4px;
  margin-left: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--kh-color-main);
}
.kh-access__info-button{
  margin-top: 6rem;
  margin-inline: auto;
  display: flex;
}
/* --------------------------------------------------------------------------
   Fixed footer — 画面下部固定ナビ
   -------------------------------------------------------------------------- */

.kh-fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  pointer-events: none;
}

.kh-fixed-footer__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  width: 100%;
  max-width: var(--kh-layout-band-max);
  min-height: var(--kh-layout-fixed-footer-height);
  margin: 0 auto;
  padding: 0 ;
  background-color: var(--kh-color-accent);
  border-top: 1px solid var(--kh-color-main);
  pointer-events: auto;
}

.kh-fixed-footer__link {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--kh-color-main);
  font-family: var(--kh-font-noto-sans);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-align: center;
  border-right: 1px solid var(--kh-color-main);
  padding-block: 12px;
}

.kh-fixed-footer__link:last-child {
  border-right: none;
  background-color: var(--kh-color-second);
}

.kh-fixed-footer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.kh-fixed-footer__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   PC nav — 帯レイアウト時、背景右側に固定
   -------------------------------------------------------------------------- */

.kh-pc-nav {
  display: none;
}

@media (min-width: 431px) {
  .kh-pc-nav {
    display: block;
    position: fixed;
    top: 50%;
    left: calc(55% + (var(--kh-layout-band-max) / 2) + 20px);
    transform: translateY(-50%);
    z-index: 150;
    max-width: calc((100vw - var(--kh-layout-band-max)) / 2 - 40px);
    pointer-events: none;
  }

  .kh-pc-nav__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    pointer-events: auto;
  }

  .kh-pc-nav__logo {
    display: block;
    width: 100%;
    max-width: 120px;
  }

  .kh-pc-nav__logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .kh-pc-nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .kh-pc-nav__link {
    display: block;
    font-family: var(--kh-font-noto-sans);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.6;
    color: var(--kh-color-main);
    transition: opacity 0.2s, color 0.2s;
  }

  .kh-pc-nav__link:hover {
    color: var(--kh-color-accent);
  }

  .kh-pc-nav__tel {
    margin-top: 8px;
    justify-content: flex-start;
    text-align: left;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    color: var(--kh-color-main);
  }

  .kh-pc-nav__tel:hover {
    opacity: 0.85;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.kh-footer {
  padding: 40px 0 32px;
  background-color: var(--kh-color-bg);
  color: var(--kh-color-main);
}

.kh-footer__inner{
}

.kh-footer__inner .kh-section-heading {
  place-items: center;
}

.kh-footer__inner .kh-section-heading__title{
  color: var(--kh-color-main);
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  font-size: clamp(1.5rem, 8vw, 2rem);
  overflow-wrap: anywhere;
  width: fit-content;
}
.kh-footer__inner .kh-section-heading__title img{
  width: auto;
}
.kh-footer__text{
  font-family: var(--kh-font-description);
  font-weight: normal;
  margin-top: 1.4rem;
}

.kh-footer__tell-btn{
  margin-top: 1.4rem;
}

.kh-footer__tell-btn-text{
  font-family: var(--kh-font-noto-serif);
  font-weight: normal;
  text-align: center;
  font-size: clamp(1.25rem, 5.5vw, 1.8rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  overflow-wrap: anywhere;
}
.kh-pc-nav__inner .kh-footer__tell-btn-text{
  margin-top: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.3);
}
.kh-footer__tell-btn-text span{
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
}

.kh-footer__access-inner{
  margin-top: 6em;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.kh-footer__access-inner img{
  display: block;
  width: 100%;
  max-width: 188px;
  margin-inline: auto;
  height: auto;
}

.kh-footer__access-text{
  font-family: var(--kh-font-noto-serif);
  font-weight: normal;
  font-size: clamp(1.25rem, 5.5vw, 1.8rem);
  text-align: center;
  overflow-wrap: anywhere;
}

.kh-footer__logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.kh-footer__nav {
  margin-top: 55px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px .2rem;
}

.kh-footer__nav-link {
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.kh-footer__copy {
  margin-top: 70px;
  margin-bottom: 95px;
  font-size: 1rem;
  text-align: center;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Tablet
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
  /* 帯レイアウトはタブレット・PC でも 430px 幅を維持。外側背景（resposibbg.webp）は common.css で画面いっぱいに表示 */
}

/* --------------------------------------------------------------------------
   Smartphone
   -------------------------------------------------------------------------- */

@media (max-width: 430px) {
  .kh-section-heading {
    padding-inline: var(--kh-layout-inner-padding);
  }

  .kh-strong .kh-section-heading {
    padding-inline: var(--kh-layout-inner-padding);
  }

  .kh-fv__catch {
    font-size: 1.375rem;
  }

  .kh-footer__nav {
    padding-inline: var(--kh-layout-inner-padding);
  }

  /* media-block — 1:1 枠での下端見切れ防止（画像比率は維持） */
  .kh-media-block:not(.kh-media-block--column):not(.kh-media-block--foot):not(.kh-media-block--foot-reverse) > .kh-media-block__image,
  .kh-media-block--reverse:not(.kh-media-block--foot):not(.kh-media-block--foot-reverse) > .kh-media-block__image {
    aspect-ratio: auto;
    overflow: visible;
  }

  .kh-media-block:not(.kh-media-block--column):not(.kh-media-block--foot):not(.kh-media-block--foot-reverse) .kh-media-block__image-img,
  .kh-media-block--reverse:not(.kh-media-block--foot):not(.kh-media-block--foot-reverse) .kh-media-block__image-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}
