@charset "UTF-8";
:root {
  --lh: calc((1em - 1lh) / 2);
  --ds-color: rgba(0, 0, 0, 0.18);
}

@supports not (top: 1lh) {
  :root {
    --lh: 0px;
  }
}
/* ====================================
body
==================================== */
html {
  scroll-padding-top: var(--header-h, 0);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  color: hsl(0, 0%, 20%);
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: clamp(0.875rem, 0.83rem + 0.19vw, 1rem);
  line-height: 2;
  letter-spacing: normal;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: 0.5s ease;
  overflow-y: visible;
}

.inner {
  max-width: min(1100px, 90%);
  margin-inline: auto;
}
.inner__xs {
  max-width: min(768px, 90%);
  margin-inline: auto;
}
.inner__sm {
  max-width: min(960px, 90%);
  margin-inline: auto;
}
.inner__md {
  max-width: min(1200px, 90%);
  margin-inline: auto;
}
.inner__lg {
  max-width: min(1440px, 90%);
  margin-inline: auto;
}
.inner__xl {
  max-width: min(1720px, 90%);
  margin-inline: auto;
}

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

/* ====================================
font
==================================== */
*[class*="b-en-"] {
  font-family: "source-han-serif-japanese", serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
}

*[class*="b-min-"] {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
}

*[class*="b-yugo-"] {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
}

.b-min-100 {
  font-weight: 100;
}

.b-yugo-100 {
  font-weight: 100;
}

.b-en-100 {
  font-weight: 100;
}

.b-min-200 {
  font-weight: 200;
}

.b-yugo-200 {
  font-weight: 200;
}

.b-en-200 {
  font-weight: 200;
}

.b-min-300 {
  font-weight: 300;
}

.b-yugo-300 {
  font-weight: 300;
}

.b-en-300 {
  font-weight: 300;
}

.b-min-400 {
  font-weight: 400;
}

.b-yugo-400 {
  font-weight: 400;
}

.b-en-400 {
  font-weight: 400;
}

.b-min-500 {
  font-weight: 500;
}

.b-yugo-500 {
  font-weight: 500;
}

.b-en-500 {
  font-weight: 500;
}

.b-min-600 {
  font-weight: 600;
}

.b-yugo-600 {
  font-weight: 600;
}

.b-en-600 {
  font-weight: 600;
}

.b-min-700 {
  font-weight: 700;
}

.b-yugo-700 {
  font-weight: 700;
}

.b-en-700 {
  font-weight: 700;
}

.b-min-800 {
  font-weight: 800;
}

.b-yugo-800 {
  font-weight: 800;
}

.b-en-800 {
  font-weight: 800;
}

.b-min-900 {
  font-weight: 900;
}

.b-yugo-900 {
  font-weight: 900;
}

.b-en-900 {
  font-weight: 900;
}

.b-animation--fade-up,
.b-animation--fade-mv,
.b-animation--file-in {
  opacity: 0;
  translate: 0 30px;
  transition:
    opacity 1s ease,
    translate 1s ease;
}
.b-animation--fade-up.visible,
.b-animation--fade-mv.visible,
.b-animation--file-in.visible {
  opacity: 1;
  translate: 0 0;
}
.b-animation--fade-mv.visible,
.b-animation--file-in.visible {
  transition-delay: var(--fade-delay, 0s);
}
.b-animation--fade-left {
  opacity: 0;
  translate: -30px 0;
  transition:
    opacity 1s ease,
    translate 1s ease;
}
.b-animation--fade-left.visible {
  opacity: 1;
  translate: 0 0;
}
.b-animation--fade-right {
  opacity: 0;
  translate: 30px 0;
  transition:
    opacity 1s ease,
    translate 1s ease;
}
.b-animation--fade-right.visible {
  opacity: 1;
  translate: 0 0;
}
.b-animation--clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s ease;
}
.b-animation--clip.visible {
  clip-path: inset(0 0 0 0);
}
.b-animation--underline {
  background: hsl(0deg, 0%, 100%, 90%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.5s ease;
}
.b-animation--underline.visible {
  background-size: 100% 100%;
  transition-delay: 1s;
}
.b-animation--slide-in-right {
  opacity: 0;
  translate: 100px 0;
  transition:
    opacity 1s ease,
    translate 1s ease;
}
.b-animation--slide-in-right.visible {
  opacity: 1;
  translate: 0 0;
}
.b-animation--slide-in-left {
  opacity: 0;
  translate: -60px 0;
  rotate: 3deg;
  transition:
    opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    translate 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    rotate 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.b-animation--slide-in-left.visible {
  opacity: 1;
  translate: 0 0;
  rotate: 0;
}
.b-animation--slide-in-up {
  opacity: 0;
  translate: 0 60px;
  scale: 0.95;
  transition:
    opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    translate 1s cubic-bezier(0.23, 1, 0.32, 1),
    scale 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.b-animation--slide-in-up.visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}
.b-animation--zoom-in {
  opacity: 0;
  scale: 0.8;
  rotate: 2deg;
  transition:
    opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
    scale 0.9s cubic-bezier(0.23, 1, 0.32, 1),
    rotate 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.b-animation--zoom-in.visible {
  opacity: 1;
  scale: 1;
  rotate: 0;
}
.b-animation--rotate-in {
  opacity: 0;
  rotate: -5deg;
  scale: 0.9;
  transition:
    opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
    rotate 0.9s cubic-bezier(0.23, 1, 0.32, 1),
    scale 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.b-animation--rotate-in.visible {
  opacity: 1;
  rotate: 0;
  scale: 1;
}

/* ====================================
hover
==================================== */
.b-hover__txt {
  display: inline-block;
  overflow: hidden;
  color: transparent;
  position: relative;
  text-shadow:
    0 -1.5em 0 hsl(0, 0%, 7%),
    0 0 0 hsl(0, 0%, 7%);
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.b-hover__txt:hover {
  text-shadow:
    0 0 0 hsl(0, 0%, 7%),
    0 1.5em 0 hsl(0, 0%, 7%);
}

.b-hover__bg {
  position: relative;
}
.b-hover__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  background-color: hsl(0, 0%, 100%);
  mix-blend-mode: difference;
  transition: width 0.3s;
}
.b-hover__bg:hover::before {
  width: 100%;
}

.b-hover__line {
  position: relative;
}
.b-hover__line::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  width: 0;
  height: 1px;
  background: hsl(204, 100%, 38%);
  transition: width 0.3s ease;
}
.b-hover__line:hover::before {
  width: calc(100% - 1em);
}

.b-hover__shadow {
  transition: 0.3s;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.12)) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.22));
}
.b-hover__shadow:hover {
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
  translate: 0 -4px;
}

/* ====================================
  js
==================================== */
/* page-top */
.js-page-top,
.js-sns {
  position: fixed;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.js-page-top.active,
.js-sns.active {
  opacity: 1;
}

.js-page-top {
  right: 2%;
  bottom: 5%;
}

/* marquee */
.js-marquee {
  overflow: hidden;
}

.js-marquee__txt {
  display: inline-block;
  white-space: nowrap;
  will-change: translate;
  animation: marquee var(--marquee-duration, 12s) linear infinite;
}

.js-marquee:hover .js-marquee__txt {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    translate: 0 0;
  }
  to {
    /* 中身を最低2倍にしているので継ぎ目なし */
    translate: -50% 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .js-marquee__txt {
    animation: none;
    translate: 0 0;
  }
}
/* tab */
.js-tab__content,
.js-sub-tab__content {
  display: none;
}

.js-tab__content.active,
.js-sub-tab__content.active {
  display: block;
}

/* scroll hint */
.js-scroll-hint {
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: 0 -50%;
  will-change: translate, opacity;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.js-scroll-hint.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes swipeFade {
  0% {
    translate: 0 -50%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    translate: 40px -50%;
    opacity: 0;
  }
}
/* 2枚重ねでクロスフェード */
.js-visionImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
  backface-visibility: hidden;
  will-change: opacity;
}

.js-visionImg.is-active {
  opacity: 1;
}

/* アニメーション苦手なユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  .js-visionImg {
    transition: none;
  }
}
.js-toggle {
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"][aria-disabled="true"] {
    cursor: default;
    text-decoration: none;
  }
}
/* ====================================
	タイトルコンポーネント
==================================== */
.c-btn {
  --arrow-length: min(144px, 100%);
  --arrow-head: 12px;
  --arrow-thickness: 1px;
  --arrow-angle: 45deg;
  width: var(--arrow-length);
  /* 色は currentColor。太さや長さはカスタムプロパティで調整 */
}
.c-btn .arrow {
  position: relative;
  display: block;
  width: var(--arrow-length);
  height: var(--arrow-thickness);
  background: currentColor;
  border-radius: 9999px;
  color: hsl(0, 0%, 100%);
}
.c-btn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: var(--arrow-head);
  height: var(--arrow-thickness);
  background: currentColor;
  border-radius: 9999px;
  transform-origin: 100% 50%;
  transform: rotate(var(--arrow-angle));
  translate: 0 calc(-50% + 0px);
}

.c-btnB {
  background: hsl(0, 0%, 7%);
  color: hsl(0, 0%, 100%);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 2em;
  padding-block: 0.15em;
}

/* ====================================
	タイトルコンポーネント
==================================== */
.c-ttl {
  font-size: clamp(1.25rem, 0.63rem + 2.63vw, 3rem);
  line-height: 1.5;
  text-align: center;
  color: hsl(26, 64%, 35%);
}

:root {
  --form-padding: 0.5em;
  --form-background: #ffffff;
  --form-border: 1px solid #707070;
  --cl-accent: #4a6df7;
  --form-radius: 8px;
}

.p-contact {
  padding-block: clamp(3rem, 2.3rem + 3vw, 5rem);
  background: url(../img/concept/bg.png) repeat center;
}
.p-contact__logo {
  filter: brightness(0) invert(1);
}
.p-contact__ttl {
  margin-block-start: 3rem;
  margin-block-end: 2.5rem;
}
.p-contact__txt {
  margin-block-end: 2.5rem;
}
.p-contact__legend legend {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.625rem;
  font-size: 1rem;
  line-height: 1;
  margin-block-end: 0.875rem;
}
.p-contact__legend small {
  font-size: 0.75rem;
  color: #939393;
}
.p-contact__label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.625rem;
  font-size: 1rem;
  line-height: 1;
  margin-block-end: 0.875rem;
}
.p-contact__input,
.p-contact__row {
  margin-block-end: 1.25rem;
}
.p-contact .wpcf7-form-control-wrap {
  color: hsl(26, 64%, 35%);
}
.p-contact .wpcf7-list-item {
  color: hsl(0, 0%, 7%);
}
.p-contact .wpcf7-select {
  color: hsl(26, 64%, 35%);
}
.p-contact__policy {
  margin-block-start: 1.875rem;
}
.p-contact__policyTxt {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}
.p-contact__policyTxt a {
  border-bottom: 1px solid hsl(0, 0%, 7%);
}
.p-contact__policyCheck {
  margin-block-start: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-contact__btn {
  margin-inline: auto;
  margin-block-start: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 1.25rem;
  background: #e13614;
  color: hsl(0, 0%, 100%);
  width: min(330px, 100%);
  padding-block: 0.75em;
  padding-inline: 0.625rem;
  color: hsl(0, 0%, 100%);
  border-radius: 8px;
}
.p-contact__btn::before {
  content: "";
}
.p-contact__btn::after {
  content: "";
  display: block;
  width: 29px;
  aspect-ratio: 1/1;
  background: url(../img/cmn/arrow_r.svg) no-repeat center center/contain;
  justify-self: end;
}
.p-contact__btn:hover {
  opacity: 0.8;
}
.p-contact__btnTop {
  margin-block-start: 1.25rem;
  width: min(340px, 100%);
  height: 68px;
  background: #6a6a6a;
  color: hsl(0, 0%, 100%);
  margin-inline: auto;
  padding-inline: 1.5rem;
  border-radius: 999px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.875rem;
  align-items: center;
  font-size: 1.8125rem;
  line-height: 1;
}
.p-contact__btnTop::after {
  content: "";
  display: block;
}
.p-contact__btnTop span {
  justify-self: center;
}

/* ====================================
form
==================================== */
.c-form {
  background: hsl(0, 0%, 100%);
  padding-inline: 1.25rem;
  padding-block: 2.5rem 2.8125rem;
  border-radius: 10px;
}
.c-form .required {
  font-size: 0.625rem;
  line-height: 1;
  background: #e13614;
  color: hsl(0, 0%, 100%);
  padding: 0.3em 0.5em;
  display: inline-block;
  font-style: normal;
  border-radius: 3px;
}
.c-form input {
  padding: var(--form-padding);
  border: var(--form-border);
  border-radius: var(--form-radius);
  line-height: 1;
}
.c-form input[type="text"],
.c-form input[type="tel"],
.c-form input[type="email"] {
  width: 100%;
  background: var(--form-background);
  color: hsl(0, 0%, 7%);
}
.c-form input[type="file"] {
  background: none;
}
.c-form input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}
.c-form input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}
.c-form input[type="date"] {
  -webkit-appearance: date;
  -moz-appearance: date;
  appearance: date;
}
.c-form input[type="submit"] {
  border: 0px;
  transition: 0.5s ease;
}
.c-form input::-moz-placeholder {
  font-size: 0.875rem;
}
.c-form input::placeholder {
  font-size: 0.875rem;
}
.c-form textarea {
  width: 100% !important;
  padding: var(--form-padding);
  background: var(--form-background);
  border: var(--form-border);
  border-radius: var(--form-radius);
  min-height: min(200px, calc(160 / 400 * 100vw));
}
.c-form textarea::-moz-placeholder {
  font-size: 0.875rem;
}
.c-form textarea::placeholder {
  font-size: 0.875rem;
}
.c-form input::-moz-placeholder,
.c-form textarea::-moz-placeholder {
  color: #eaeaea;
  opacity: 1;
}
.c-form input::placeholder,
.c-form textarea::placeholder {
  color: #eaeaea;
  opacity: 1;
}
.c-form select {
  padding: var(--form-padding);
  background: var(--form-background);
  border: var(--form-border);
  border-radius: var(--form-radius);
}

.wpcf7-not-valid-tip {
  display: inline !important;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  position: relative;
  margin: 0;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5em;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label:before {
  content: "";
  display: block;
  background: hsl(0, 0%, 100%);
  border: var(--form-border);
  border-radius: 100%;
  width: 14px;
  height: 14px;
  position: relative;
  cursor: pointer;
  transition: all 250ms ease;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label::after {
  position: absolute;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label:before {
  background-color: var(--cl-accent);
  box-shadow: inset 0 0 0 2px hsl(0, 0%, 100%);
}
.wpcf7-form-control.wpcf7-acceptance a {
  border-block-end: 1px solid hsl(0, 0%, 7%);
}
.wpcf7-form-control.wpcf7-number {
  background: var(--form-background);
  border: var(--form-border);
  margin-inline-end: 0.5em;
  max-width: 56px;
}
.wpcf7-form-control.wpcf7-number::after {
  content: "歳";
  display: inline-block;
}
.wpcf7-form-control.wpcf7-date {
  cursor: pointer;
}
.wpcf7-form-control.wpcf7-select {
  cursor: pointer;
}
.l-header {
  width: 100%;
  position: fixed;
  inset-block-start: 0;
  z-index: 999;
  transition: all 0.5s ease;
  padding-block: 1.25rem;
  padding-inline: 1%;
  translate: 0 0;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-block: 8px;
    background: hsl(0deg, 0%, 7%, 50%);
  }
}
.l-header.active {
  background: hsl(0deg, 0%, 7%, 50%);
}

.l-header__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.l-header__logo {
  align-self: center;
  width: min(168px, calc(120 / 375 * 100vw));
}
@media screen and (max-width: 1400px) {
  .l-header__logo {
    filter: brightness(0) invert(1);
  }
}

.l-header__menu {
  justify-self: end;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: min(56px, 2svw);
}
@media screen and (max-width: 1400px) {
  .l-header__menu.--pc {
    display: none;
  }
}
@media screen and (min-width: 1401px) {
  .l-header__menu.--sp {
    display: none;
  }
}

.l-header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1400px) {
  .l-header__nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
.l-header__nav > a {
  display: block;
  padding-inline: 1svw;
  color: hsl(0, 0%, 100%);
  line-height: 1;
}
.l-header__time {
  color: hsl(0, 0%, 100%);
}

.l-header__btns {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.l-header__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5em;
  padding-inline: 1em;
  color: hsl(0, 0%, 100%);
}

.l-header__tel img {
  width: 1.8em; /* 少し大きく */
  height: 1.8em;
  object-fit: contain;
  max-width: none;
  filter: brightness(0) invert(1); /* 白に変換 */
}

.l-header__btn {
  background: hsl(0, 0%, 7%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5em;
  padding-inline: 1em;
  padding-block: 0.25em;
  color: hsl(0, 0%, 100%);
}

.l-header__box {
  position: relative;
  z-index: 999;
}

.l-header__hamburger {
  cursor: pointer;
  margin-inline: auto 0;
  position: relative;
  z-index: 999;
  width: min(40px, calc(40 / 394 * 100vw));
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.l-header__hamburger span {
  background: hsl(0, 0%, 7%);
  height: 2px;
  width: 20px;
  left: 0;
  border-radius: 10px;
  transition: 0.5s;
}
@media screen and (max-width: 1400px) {
  .l-header__hamburger span {
    background: hsl(0, 0%, 100%);
  }
}
.l-header__hamburger.active .l-header__hamburger--top {
  translate: 0 8px;
  rotate: 45deg;
}
.l-header__hamburger.active .l-header__hamburger--middle {
  opacity: 0;
}
.l-header__hamburger.active .l-header__hamburger--bottom {
  translate: 0 -8px;
  rotate: -45deg;
}

.l-header__bg {
  position: fixed;
  top: -2.08vw;
  right: -100%;
  height: 100svh;
  width: 100svw;
  transition: all 0.5s;
  overflow: hidden;
  z-index: 998;
  padding-block: 5.5rem 0;
  padding-inline: 10vw;
  background: hsl(0deg, 0%, 7%, 95%);
}
.l-header__bg.active {
  right: 0;
}
.l-header__bg .l-header__nav {
  margin-block-end: 2.5rem;
}
.l-header__bg .l-header__nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  border-bottom: 2px solid hsl(0, 0%, 100%);
  padding-block: 1.5em;
  padding-inline: 1em 0.4em;
  line-height: 1;
  width: 100%;
  font-size: clamp(0.9375rem, 0.74rem + 0.85vw, 1.5rem);
}
.l-header.active .l-header__logo {
  filter: brightness(0) invert(1);
}
.l-header.active .l-header__hamburger span {
  background: hsl(0, 0%, 100%);
}

/* ====================================
	フッター
==================================== */
.l-footer {
  padding-block-start: clamp(2.5rem, 1.62rem + 3.76vw, 5rem);
  background: hsl(0, 0%, 7%);
}
.l-footer__logo {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-optical-sizing: auto;
  filter: brightness(0) invert(1);
  margin-block-end: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
}
.l-footer__logo img {
  display: block;
  margin-block-end: 4px;
}
.l-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.125rem;
  margin-block-end: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
}
.l-footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  row-gap: clamp(1.5rem, 1.32rem + 0.75vw, 2rem);
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    flex-direction: column;
  }
}
.l-footer__nav > a {
  display: block;
  padding-inline: 1.5em;
  color: hsl(0, 0%, 100%);
  line-height: 1;
}
.l-footer__copy {
  margin-block-start: clamp(2.5rem, 1.97rem + 2.25vw, 4rem);
  text-align: center;
  font-size: clamp(0.625rem, 0.54rem + 0.38vw, 0.875rem);
  font-weight: 400;
  padding-block: 1.5rem;
  color: hsl(0, 0%, 100%);
}

.l-mv img {
  width: 100svw;
}

.l-concept {
  padding-block: clamp(5rem, 3.24rem + 7.51vw, 10rem);
  position: relative;
  overflow: hidden;
}
.l-concept__bg {
  position: absolute;
  inset: 0;
  aspect-ratio: 1307/1220;
  z-index: 1;
  height: min(1220px, 63.54vw);
}
@media screen and (max-width: 768px) {
  .l-concept__bg {
    height: 100svh;
    aspect-ratio: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
  }
}
.l-concept__inner {
  position: relative;
  z-index: 3;
}
.l-concept__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .l-concept__flex {
    flex-direction: column;
  }
}
.l-concept__cp {
  font-size: clamp(1.5rem, 0.8rem + 3vw, 3.5rem);
  color: hsl(0, 0%, 100%);
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 12px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 24px rgba(0, 0, 0, 0.2));
}
.l-concept__cp p {
  line-height: 1.5;
}
.l-concept__cp p::first-letter {
  font-size: clamp(4.25rem, 3.28rem + 4.13vw, 7rem);
}
.l-concept__box {
  position: relative;
  padding-block: clamp(3rem, 2.3rem + 3vw, 5rem);
  padding-inline-start: clamp(3rem, 2.3rem + 3vw, 5rem);
  color: hsl(0, 0%, 100%);
}
.l-concept__box::before {
  content: "";
  width: 100vw;
  display: block;
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  background: hsl(0deg, 0%, 7%, 80%);
  z-index: -1;
}
.l-concept__ttl {
  font-size: clamp(0.9375rem, 0.74rem + 0.85vw, 1.5rem);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  text-wrap: nowrap;
}
.l-concept__ttl b {
  font-size: clamp(1.0625rem, 0.73rem + 1.41vw, 2rem);
}
.l-concept__ttl::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: hsl(0, 0%, 100%);
  margin-inline-start: 1.5em;
}
.l-concept__txt {
  padding-inline-end: clamp(3rem, 2.3rem + 3vw, 5rem);
  margin-block-end: clamp(1.5rem, 1.32rem + 0.75vw, 2rem);
}
.l-menu__box {
  background: hsl(0, 0%, 100%);
  padding: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
}
.l-menu__cp {
  font-size: clamp(0.9375rem, 0.74rem + 0.85vw, 1.5rem);
  margin-block-end: 0.75em;
  position: relative;
  z-index: 2;
}
.l-menu__txt {
  position: relative;
  z-index: 2;
  margin-block-end: 1.5em;
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .l-menu__txt {
    line-height: 1.5;
  }
}

.lunch {
  margin-block-start: -2.5rem;
  padding-block: clamp(5.5rem, 3.56rem + 8.26vw, 11rem);
  background: url(../img/top/lunch_bg.png) no-repeat center/cover;
}
.lunch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, 1fr);
  grid-template-areas: "img ttl" "img popular" "txt popular" "txt popular";
}
@media screen and (max-width: 768px) {
  .lunch__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "ttl" "popular" "txt" "img";
  }
}
.lunch__img {
  grid-area: img;
  margin-block: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .lunch__img {
    justify-self: center;
  }
}
.lunch__img02 {
  grid-area: popular;
  position: relative;
  margin-inline: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem) 0;
}
@media screen and (max-width: 768px) {
  .lunch__img02 {
    margin-inline: auto;
    margin-block-end: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
  }
}
.lunch__content {
  grid-area: txt;
  align-self: end;
}
.lunch__ttl {
  grid-area: ttl;
  font-size: clamp(3.875rem, 2.95rem + 3.94vw, 6.5rem);
  line-height: 1;
  align-self: start;
  justify-self: end;
}
@media screen and (max-width: 768px) {
  .lunch__ttl {
    justify-self: start;
    margin-block-end: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
  }
}
.lunch__h3 {
  font-size: clamp(1.0625rem, 0.73rem + 1.41vw, 2rem);
  background: hsl(0, 0%, 7%);
  color: hsl(0, 0%, 100%);
  padding-inline: 1em;
  margin-block-end: 1em;
}
.lunch__box {
  position: relative;
}
.lunch__box:before {
  content: "";
  display: block;
  background: url(../img/top/lunch_img03.png) no-repeat center/contain;
  width: min(136px, calc(60 / 375 * 100vw));
  aspect-ratio: 136/112;
  position: absolute;
  inset-inline-end: 2px;
  inset-block-start: 2px;
}
.lunch__popular {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  gap: 1em;
  position: absolute;
  right: 0;
  top: 0;
  translate: 0 -25%;
}
@media screen and (max-width: 768px) {
  .lunch__popular {
    translate: 0 -5%;
  }
}
.lunch__popular--cp {
  font-size: clamp(1.5rem, 0.8rem + 3vw, 3.5rem);
  background: hsl(0, 0%, 7%);
  color: hsl(0, 0%, 100%);
  line-height: 1.3;
  padding-inline: 0.75em;
  padding-block: 0.5em;
}
.lunch__popular--ttl {
  font-size: clamp(1.5rem, 0.8rem + 3vw, 3.5rem);
  background: hsl(0, 0%, 7%);
  color: hsl(0, 0%, 100%);
  writing-mode: vertical-rl;
  line-height: 1.3;
  padding-inline: 0.25em;
}

.dinner {
  padding-block-start: clamp(3.625rem, 2.79rem + 3.57vw, 6rem);
  padding-block-end: clamp(5.5rem, 3.56rem + 8.26vw, 11rem);
  background: url(../img/top/dinner_bg.png) no-repeat center/cover;
}
.dinner__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .dinner__grid {
    grid-template-columns: 1fr;
  }
}
.dinner__left {
  position: relative;
  z-index: 1;
}
.dinner__img {
  position: relative;
  margin-inline-end: -10vw;
}
@media screen and (max-width: 768px) {
  .dinner__img {
    margin-inline: auto;
  }
}
.dinner__popular {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  gap: 1em;
  position: absolute;
  left: 0;
  top: 0;
  translate: 0 -25%;
}
.dinner__popular--cp {
  font-size: clamp(1.5rem, 0.8rem + 3vw, 3.5rem);
  background: hsl(0, 0%, 7%);
  color: hsl(0, 0%, 100%);
  line-height: 1.3;
  padding-inline: 0.25em;
  text-wrap: nowrap;
  writing-mode: vertical-rl;
}
.dinner__ttl {
  font-size: clamp(3.875rem, 2.95rem + 3.94vw, 6.5rem);
  color: hsl(0, 0%, 100%);
  line-height: 1;
  margin-block-start: clamp(3rem, 2.3rem + 3vw, 5rem);
}
.dinner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dinner__content > img {
  margin-block-end: -24px;
  position: relative;
}
.dinner__box {
  padding-block: clamp(3rem, 2.3rem + 3vw, 5rem);
  position: relative;
}
.dinner__box:before {
  content: "";
  display: block;
  background: url(../img/top/dinner_img03.png) no-repeat center/contain;
  width: min(150px, calc(60 / 375 * 100vw));
  aspect-ratio: 150/100;
  position: absolute;
  inset-inline-end: 4px;
  inset-block-end: 1.5rem;
}

.l-values {
  padding-block-start: clamp(3rem, 2.47rem + 2.25vw, 4.5rem);
}
.l-values__ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto 0;
  margin-block-end: clamp(3rem, 2.47rem + 2.25vw, 4.5rem);
}
.l-values__ttl .en {
  font-size: clamp(1.5rem, 0.8rem + 3vw, 3.5rem);
  line-height: 1.3;
}
.l-values__ttl .ja {
  font-size: clamp(0.875rem, 0.79rem + 0.38vw, 1.125rem);
  display: block;
}
.l-values__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  row-gap: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
  margin-block-end: clamp(4.625rem, 3.26rem + 5.82vw, 8.5rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-values__flex {
    flex-direction: column;
  }
}
.l-values__flex::before {
  content: "";
  display: block;
  background: url(../img/top/values_img03.png) no-repeat center/contain;
  width: min(208px, calc(60 / 375 * 100vw));
  aspect-ratio: 208/133;
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: 0;
}
.l-values__flex.--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .l-values__flex.--reverse {
    flex-direction: column;
  }
}
.l-values__flex.--reverse::before {
  content: "";
  display: block;
  background: url(../img/top/values_img04.png) no-repeat center/contain;
  width: min(143px, calc(60 / 375 * 100vw));
  aspect-ratio: 143/165;
  position: absolute;
  inset-inline-end: 0;
  inset-inline-start: 0;
  inset-block-start: auto;
  inset-block-end: 0;
}
@media screen and (max-width: 768px) {
  .l-values__flex.--reverse::before {
    inset-inline-start: auto;
    inset-block-end: -40px;
  }
}
.l-values__img {
  flex: 1;
  margin-inline-start: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .l-values__img {
    margin-inline: auto;
  }
}
.l-values__img img {
  display: block;
  margin-inline: auto;
}
.--reverse .l-values__img {
  margin-inline: auto calc(50% - 50vw);
}

.l-values__box {
  flex-basis: 50%;
  position: relative;
  z-index: 2;
}
.l-values__cp {
  font-size: clamp(1.0625rem, 0.73rem + 1.41vw, 2rem);
  margin-block-end: 0.75em;
}
.l-values__txt {
  width: min(524px, 100%);
  font-weight: 100;
}

.space {
  position: relative;
  margin-block-end: clamp(11.25rem, 7.29rem + 16.9vw, 22.5rem);
}
.space__bg {
  width: 100svw;
}
.space__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: min(1440px, 90%);
  margin-inline: auto;
  position: absolute;
  left: 50%;
  translate: -50% -70%;
}
@media screen and (max-width: 768px) {
  .space__flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .space__flex {
    position: relative;
    left: 0;
    translate: 0 0;
    margin-block-start: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
  }
}
.space__ttl {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  gap: 1em;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .space__ttl {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .space__ttl {
    margin-block-end: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
  }
}
.space__ttl span {
  font-size: clamp(1.5rem, 0.8rem + 3vw, 3.5rem);
  background: hsl(0, 0%, 7%);
  color: hsl(0, 0%, 100%);
  line-height: 1.3;
  padding-inline: 0.5em;
  text-wrap: nowrap;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .space__ttl span {
    writing-mode: horizontal-tb;
  }
}
.space__ttl span:nth-child(2) {
  margin-inline-start: 1.5em;
}
.space__box {
  padding: clamp(3.25rem, 2.46rem + 3.38vw, 5.5rem);
  background: hsl(0deg, 0%, 7%, 70%);
  color: hsl(0, 0%, 100%);
}
.space__cp {
  font-size: clamp(1.0625rem, 0.73rem + 1.41vw, 2rem);
  margin-block-end: 0.75em;
}
.l-info {
  padding-block-start: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
  background: url(../img/top/info_bg.jpg) no-repeat center/cover;
  padding-block-end: clamp(3rem, 2.3rem + 3vw, 5rem);
}
.l-info__ttl {
  font-size: clamp(1.75rem, 0.78rem + 4.13vw, 4.5rem);
  color: hsl(0, 0%, 100%);
  text-align: center;
  margin-block-end: clamp(2rem, 1.65rem + 1.5vw, 3rem);
}
.l-info__box {
  background: hsl(0deg, 0%, 7%, 70%);
  color: hsl(0, 0%, 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding-block: clamp(3rem, 2.47rem + 2.25vw, 4.5rem);
  padding-inline: clamp(1.5rem, 1.32rem + 0.75vw, 2rem);
}
@media screen and (max-width: 768px) {
  .l-info__box {
    grid-template-columns: 1fr;
    row-gap: clamp(1.5rem, 1.32rem + 0.75vw, 2rem);
  }
}
.l-info__left {
  justify-self: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 1.5rem;
}
.l-info__left p {
  font-size: clamp(0.875rem, 0.79rem + 0.38vw, 1.125rem);
}
.l-info__left p span {
  font-size: clamp(1.0625rem, 0.73rem + 1.41vw, 2rem);
  line-height: 1.3;
}
.l-info__right {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-info__right {
    row-gap: clamp(1.5rem, 1.32rem + 0.75vw, 2rem);
  }
}
.l-info__right p {
  font-size: clamp(0.875rem, 0.79rem + 0.38vw, 1.125rem);
}
.l-info__right p span {
  font-size: clamp(1.0625rem, 0.73rem + 1.41vw, 2rem);
  line-height: 1.3;
}
.l-info__btn {
  width: min(250px, 100%);
  background: hsl(0, 0%, 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5em;
  padding-inline: 1em;
  padding-block: 0.25em;
  color: hsl(0, 0%, 7%);
}
.l-info__btn img {
  filter: brightness(0);
}
.l-info__btn.--bg {
  color: hsl(0, 0%, 100%);
  background: url(../img/top/info_btn.png) no-repeat center/cover;
}
.l-info__btn.--bg img {
  filter: brightness(1);
}

.l-news {
  position: relative;
  padding-block: clamp(4.25rem, 3.28rem + 4.13vw, 7rem);
  overflow: hidden;
}
.l-news__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  row-gap: clamp(1.5rem, 1.32rem + 0.75vw, 2rem);
  padding-block: clamp(3rem, 2.3rem + 3vw, 5rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-news__flex {
    flex-direction: column;
  }
}
.l-news__flex::before {
  content: "";
  width: 100svw;
  border: 1px solid hsl(0, 0%, 7%);
  position: absolute;
  inset: 0;
}
.l-news__left {
  position: relative;
  z-index: 2;
  padding-inline: clamp(4.25rem, 3.28rem + 4.13vw, 7rem);
}
.l-news__right {
  position: relative;
  z-index: 2;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .l-news__right {
    padding-inline: clamp(1.5rem, 1.32rem + 0.75vw, 2rem);
  }
}
.l-news__ttl {
  font-size: clamp(1.375rem, 0.8rem + 2.44vw, 3rem);
}
.l-news__btn .arrow {
  background: hsl(0, 0%, 7%);
}
.l-news__btn .arrow::after {
  background: hsl(0, 0%, 7%);
}
@media screen and (max-width: 768px) {
  .l-news__btn.--pc {
    display: none;
  }
}
.l-news__btn.--sp {
  margin-block-start: clamp(1.5rem, 1.32rem + 0.75vw, 2rem);
}
@media screen and (min-width: 769px) {
  .l-news__btn.--sp {
    display: none;
  }
}
.l-news__list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .l-news__list li {
    flex-direction: column;
  }
}
.l-news__list li img {
  border: 1px solid hsl(0, 0%, 7%);
}
@media screen and (max-width: 768px) {
  .l-news__list li img {
    width: 100%;
  }
}
.l-news__list li a time {
  display: block;
}
.l-news__list li:not(:last-child) {
  margin-block-end: 1.5rem;
}

.l-access__ttl {
  font-size: clamp(1.75rem, 0.78rem + 4.13vw, 4.5rem);
  text-align: center;
}
.l-access__txt {
  font-size: clamp(0.875rem, 0.79rem + 0.38vw, 1.125rem);
  text-align: center;
}
.l-access__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1em 2em;
  font-size: clamp(0.875rem, 0.79rem + 0.38vw, 1.125rem);
  margin-block-end: clamp(2rem, 1.65rem + 1.5vw, 3rem);
}
@media screen and (max-width: 768px) {
  .l-access__list {
    flex-direction: column;
  }
}
.l-access__map iframe {
  width: 100svw;
  height: min(400px, calc(350 / 375 * 100vw));
}

.sub-mv {
  height: min(560px, calc(350 / 375 * 100vw));
  position: relative;
  overflow: hidden;
}
.sub-mv .inner__md {
  height: 100%;
}
.sub-mv__ttl {
  position: relative;
  z-index: 1;
  color: hsl(0, 0%, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sub-mv__ttl .en {
  font-size: clamp(2rem, 0.94rem + 4.51vw, 5rem);
  line-height: 1.2;
}
.sub-mv__ttl .ja {
  font-size: clamp(0.9375rem, 0.74rem + 0.85vw, 1.5rem);
}
.sub-mv img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-concept {
  padding-block: clamp(3rem, 2.3rem + 3vw, 5rem);
  background: url(../img/concept/bg.png) repeat center;
  counter-reset: number 0;
}
.p-concept {
  background: #fff !important;
  background-image: none !important;
}
.p-concept__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
  padding-block: clamp(3rem, 2.3rem + 3vw, 5rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-concept__flex {
    flex-direction: column;
  }
}
.p-concept__flex::after {
  content: "";
  display: block;
  width: 100svw;
  height: 2px;
  background: hsl(0, 0%, 100%);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.p-concept__flex .left-img {
  flex: 1;
  margin-inline-start: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-concept__flex .left-img {
    margin-inline: auto;
  }
}
.p-concept__flex--box {
  flex-basis: 45%;
  padding: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
  background: hsl(0, 18%, 84%);
}
.p-concept__flex:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-concept__flex:nth-child(2n) {
    flex-direction: column;
  }
}
.p-concept__flex:nth-child(2n) .left-img {
  flex: 1;
  margin-inline-start: auto;
  margin-inline-end: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-concept__flex:nth-child(2n) .left-img {
    margin-inline: auto;
  }
}
.p-concept__num {
  font-size: clamp(1.375rem, 0.8rem + 2.44vw, 3rem);
  line-height: 1;
  margin-block-end: clamp(1.5rem, 1.32rem + 0.75vw, 2rem);
}
.p-concept__num::after {
  counter-increment: number 1;
  content: "" counter(number, decimal-leading-zero);
  font-size: clamp(1.75rem, 0.78rem + 4.13vw, 4.5rem);
  margin-inline-start: 0.25em;
}
.p-concept h3 {
  font-size: clamp(0.9375rem, 0.74rem + 0.85vw, 1.5rem);
  margin-block-end: 1.2em;
}
.p-concept .c-btnB {
  margin-block-start: 1rem;
}

p-menu {
  padding-block: clamp(3rem, 2.3rem + 3vw, 5rem);
  background: url(../img/concept/bg.png) repeat center;
}

.p-menu__tab {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-block-end: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
}
.p-menu__tab .js-tab__link {
  font-size: clamp(0.9375rem, 0.74rem + 0.85vw, 1.5rem);
  background: hsl(0, 0%, 100%);
  text-align: center;
}
.p-menu__tab .js-tab__link.active {
  background: hsl(26, 64%, 35%);
  color: hsl(0, 0%, 100%);
}
.p-menu__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  background: hsl(0, 0%, 100%);
  position: relative;
  --left-w: clamp(14rem, 24vw, 20rem);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 1100px) {
  .p-menu__flex {
    flex-direction: column-reverse;
  }
}
.p-menu__left {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  width: var(--left-w);
}
@media screen and (max-width: 1100px) {
  .p-menu__left {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    overflow: visible;
    width: 100%;
  }
}
.p-menu__right {
  flex: 1 1 auto;
  margin-inline-start: var(--left-w);
  min-width: 0;
  padding-inline: clamp(1.5rem, 1.32rem + 0.75vw, 2rem);
}
@media screen and (max-width: 1100px) {
  .p-menu__right {
    margin-inline-start: 0;
  }
}
.p-menu__item {
  padding-block: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
}
.p-menu h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1em;
  font-size: clamp(1.0625rem, 0.73rem + 1.41vw, 2rem);
  line-height: 1.25;
  margin-block-end: 1em;
}
.p-menu h3:after {
  flex: 1;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: hsl(0deg, 0%, 7%, 40%);
}
.p-menu__box {
  display: grid;
  min-height: 100px;
  grid-template-columns: 100px 1fr;
  grid-template-areas: "img box";
  gap: 0 1em;
  padding-block: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-menu__box {
    grid-template-columns: 1fr;
    grid-template-areas: "img" "box";
    row-gap: 1.5rem;
  }
}
.p-menu__box--img {
  grid-area: img;
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-menu__box--img {
    justify-self: center;
  }
}
.p-menu__box--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-menu__box--txt {
  grid-area: box;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "ttl price" "txt txt";
  gap: 0.5em;
}
.p-menu h4 {
  grid-area: ttl;
  font-size: clamp(0.9375rem, 0.74rem + 0.85vw, 1.5rem);
  line-height: 1.3333333333;
  align-self: end;
}
.p-menu__price {
  grid-area: price;
  font-size: clamp(0.9375rem, 0.74rem + 0.85vw, 1.5rem);
  line-height: 1.3333333333;
  align-self: end;
  justify-self: end;
}
.p-menu__price:before {
  content: "¥";
  margin-inline-end: 0.25em;
}
.p-menu__txt {
  grid-area: txt;
}

.p-info {
  padding-block: clamp(3rem, 2.3rem + 3vw, 5rem);
  background: url(../img/concept/bg.png) repeat center;
}
.p-info {
  background: #fff !important;
  background-image: none !important;
}

.p-info h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1em;
  font-size: clamp(1.0625rem, 0.73rem + 1.41vw, 2rem);
  line-height: 1.25;
  margin-block-end: 1em;
}
.p-info h3:after {
  flex: 1;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: hsl(0deg, 0%, 7%, 40%);
}
.p-info__table {
  width: 100%;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  margin-block-end: clamp(3rem, 2.3rem + 3vw, 5rem);
}
.p-info__table th,
.p-info__table td {
  line-height: 1.5;
  padding-inline: 1.25em;
  padding-block: 1em;
  border-bottom: 1px solid rgba(68, 45, 28, 0.18);
}
@media screen and (max-width: 768px) {
  .p-info__table th,
  .p-info__table td {
    display: block;
  }
}
.p-info__table th {
  background: #e8d1a7;
  border-bottom-color: rgba(68, 45, 28, 0.28);
}
.p-info__table td {
  background: hsl(0, 0%, 100%);
}
.p-info__table th + th,
.p-info__table td + td {
  border-left: 1px solid rgba(68, 45, 28, 0.18);
}
.p-info__map {
  margin-block-end: clamp(3rem, 2.3rem + 3vw, 5rem);
}
.p-info__map iframe {
  width: 100%;
  height: min(400px, calc(350 / 375 * 100vw));
}
.p-info__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .p-info__flex {
    flex-direction: column;
  }
}
.p-info__flex.--reverse {
  flex-direction: row-reverse;
  margin-block-start: clamp(2.625rem, 2.14rem + 2.07vw, 4rem);
}
@media screen and (max-width: 768px) {
  .p-info__flex.--reverse {
    flex-direction: column;
  }
}
.p-info__img {
  flex-basis: 38%;
}
.p-info__box {
  flex: 1;
}
.p-info__box--txt {
  font-size: clamp(0.875rem, 0.79rem + 0.38vw, 1.125rem);
  line-height: 1.5;
  background: hsl(0, 0%, 100%);
  padding-inline: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
  padding-block: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
}

.p-news {
  padding-block: clamp(3rem, 2.3rem + 3vw, 5rem);
  background: url(../img/concept/bg.png) repeat center;
}

.p-news {
  background: #fff !important;
  background-image: none !important;
}
.p-news__box {
  background: hsl(0, 0%, 100%);
  padding-block: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
  padding-inline: clamp(1.625rem, 1.32rem + 1.31vw, 2.5rem);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.pagination > ul {
  margin-inline: auto;
  margin-block-start: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.pagination a,
.pagination span {
  position: relative;
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(26, 64%, 35%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: hsl(26, 64%, 35%);
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .pagination a,
  .pagination span {
    font-size: 0.8125rem;
  }
}
.pagination a:hover,
.pagination span:hover {
  color: hsl(0, 0%, 100%);
  background-color: hsl(26, 64%, 35%);
}
.pagination .current {
  color: hsl(0, 0%, 100%);
  background-color: hsl(26, 64%, 35%);
}
.pagination .disabled a {
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 0.5em;
}

/* ====================================
	single
==================================== */
.single-sec__ttl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1em;
  font-size: clamp(1.0625rem, 0.73rem + 1.41vw, 2rem);
  line-height: 1.25;
  margin-block-end: 1em;
}
.single-sec__ttl:after {
  flex: 1;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: hsl(0deg, 0%, 7%, 40%);
}
.single-sec h1 {
  font-size: clamp(1.0625rem, 0.73rem + 1.41vw, 2rem);
  margin-block: 2em 1em;
  line-height: 1.4;
  font-weight: bold;
  background: hsl(26deg, 64%, 35%, 40%);
  border-right: 1rem solid hsl(26, 64%, 35%);
  padding-inline: 0.5em;
  padding-block: 0.2em;
}
.single-sec h2 {
  font-size: clamp(0.9375rem, 0.74rem + 0.85vw, 1.5rem);
  margin-block: 2em 1em;
  font-weight: bold;
  position: relative;
  padding-block: 0.2em;
}
.single-sec h2::after {
  content: "";
  width: 100%;
  height: 7px;
  background: repeating-linear-gradient(-45deg, transparent 0 2px, hsl(26, 64%, 35%) 2px 4px);
  position: absolute;
  left: 0;
  bottom: 0;
}
.single-sec h3 {
  font-size: clamp(0.875rem, 0.79rem + 0.38vw, 1.125rem);
  margin-block: 1.5em 0.75em;
  font-weight: bold;
  padding-inline: 0.5em;
  border-left: 5px double hsl(26, 64%, 35%);
}
.single-sec h4 {
  margin-block: 1em 0.5em;
  font-weight: bold;
}
.single-sec p {
  margin-block: 1em;
  line-height: 1.8;
}
.single-sec ul {
  margin-block: 1em;
  padding-left: 1.2em;
  list-style: disc;
}
.single-sec ul > li {
  margin-bottom: 0.5em;
  line-height: 1;
}

/* ===============================
↓↓↓↓↓↓↓↓menu02ここから↓↓↓↓↓↓↓↓
================================ */

/* ===============================
   MENU SECTION BASE
================================ */

.menu-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* ===============================
   TAB BUTTONS
================================ */

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 35px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.tab-btn:hover {
  background: #000;
  color: #fff;
}

.tab-btn.active {
  background: #000;
  color: #fff;
}

/* ===============================
   AREA SWITCH
================================ */

.menu-area {
  display: none;
}

.menu-area.active {
  display: block;
}

/* ===============================
   LUNCH / DINNER (4列)
================================ */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 30px;
}

.menu-card {
  text-align: center;
}

.menu-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 12px;
}

.menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.menu-card:hover img {
  transform: scale(1.05);
}

.menu-card h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.price {
  font-size: 14px;
  font-weight: bold;
}

/* ===============================
   COURSE (2列)
================================ */

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

.course-card {
  background: #fafafa;
  padding: 25px;
}

.course-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.course-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.course-price {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.course-list {
  padding-left: 18px;
  margin-bottom: 15px;
}

.course-list li {
  font-size: 14px;
  margin-bottom: 5px;
}

.course-note {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

/* ===============================
   DRINK (3列テキスト)
================================ */

.drink-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.drink-card {
  padding: 20px;
  background: #f5f5f5;
}

.drink-card h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.drink-card p {
  font-weight: bold;
}

.menu-empty-message {
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-wrapper {
    padding: 60px 15px;
  }

  .menu-grid,
  .course-grid,
  .drink-grid {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    gap: 10px;
  }

  .tab-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* ===============================
   RESERVE BUTTON
================================ */

/* ===============================
   CONTACT AREA
================================ */

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 電話番号 */
.tel-link {
  font-size: 16px;
  font-weight: 100;
  text-decoration: none;
  color: #000;
}

.tel-link:hover {
  text-decoration: underline;
}

/* 予約ボタン（コンパクト版） */
.reserve-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #c40000;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  text-align: center;
  transition: 0.3s;
  width: fit-content;
}

.reserve-btn:hover {
  background: #000;
}

/* --------------------------
   姉妹店セクション
-------------------------- */
.sister-shop__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; /* カード間の余白 */
  justify-content: center;
  margin-top: 2rem;
}

.sister-shop__item {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  width: 48%; /* 横2列 */
  max-width: 500px; /* 最大幅調整 */
  transition: transform 0.3s;
}

.sister-shop__item:hover {
  transform: translateY(-4px);
}

.sister-shop__img img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: cover; /* 横長の画像でも比率を維持 */
}

.sister-shop__content {
  padding: 1.5rem;
}

.sister-shop__name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.sister-shop__concept {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

.sister-shop__content .btn {
  display: inline-block;
  background-color: #e63946;
  color: #fff;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.sister-shop__content .btn:hover {
  background-color: #d62839;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .sister-shop__item {
    width: 100%;
  }
}

/* 姉妹店タイトルを横幅いっぱいに広げる */
.sister-shop__title {
  width: 100%;
  max-width: 1200px; /* 必要に応じて調整 */
  margin: 0 auto; /* 中央寄せ */
  display: block;
}
/* --------------------------
   姉妹店セクションタイトル
-------------------------- */
.section-title {
  width: 100%; /* 横幅いっぱい */
  max-width: 1200px; /* 最大幅調整 */
  margin: 0 auto 2rem; /* 上下余白だけ確保、左右中央 */
  font-size: 2rem; /* タイトル文字サイズ */
  font-weight: bold; /* 強調 */
  text-align: center; /* 文字中央寄せ */
  line-height: 1.3; /* 行間調整 */
}

.floor-map {
  max-width: 1000px;
  margin: auto;
}

.map {
  width: 100%;
  height: auto;
}

/* クリックエリア */

/* 通常状態（薄いグリーンで表示） */
.map-area {
  fill: rgba(5, 249, 127, 0.1); /* 薄い色で常時表示 */
  transition: fill 0.3s ease; /* ホバー時の色変化を滑らかに */
  cursor: pointer; /* クリック可能だと分かる */
}

/* ホバー時 */
.map-area:hover {
  fill: rgba(255, 0, 0, 0.25); /* 赤っぽく強調 */
}

/* モーダル */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000;
}

.modal.active {
  display: block;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
}

.modal-content img {
  width: 100%;
  height: auto;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;

  background: rgba(0, 0, 0, 0.6);
  color: #fff;

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

  transition: 0.2s;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.9);
}

.floor-hint {
  font-size: 18px;
  color: #ff5a00;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;

  animation: floatHint 1.5s ease-in-out infinite;
}

@keyframes floatHint {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px);
    opacity: 0.9;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
