@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

:root {
  /* 
     Calculation Rule (from 2x Design Comp)
     Design Pixel / 2 = CSS Pixel (Variable Name)
     CSS Pixel / 16px = rem
  */
  --c-black: #333333;
  --c-white: #ffffff;
  --c-bg: #f8f7f1;
  --c-gray: #cccccc;
  --c-light-gray: #eeeeee;
  --c-red: #b52840;
  --font-serif: "Sawarabi Mincho", serif;
  --font-en: "Playfair Display", serif;
  --fs-xs: clamp(0.625rem, 0.55rem + 0.15vw, 0.6875rem); /* 11px */
  --fs-sm: clamp(0.8125rem, 0.7rem + 0.25vw, 0.875rem); /* 14px */
  --fs-base: clamp(0.875rem, 0.7rem + 0.4vw, 1rem); /* 16px */
  --fs-md: clamp(1.25rem, 1rem + 1vw, 1.5rem); /* 24px */
  --fs-lg: clamp(1.75rem, 1.3rem + 1vw, 2rem); /* 32px */
  --fs-xl: clamp(2rem, 1.5rem + 1.2vw, 2.1875rem); /* 35px */
  --w-content: 91.67%;
  --w-max: 1400px;
  --sp-10: 0.3125rem;
  --sp-20: 0.625rem;
  --sp-30: 0.9375rem;
  --sp-40: 1.25rem;
  --sp-50: 1.5625rem;
  --sp-60: 1.875rem;
  --sp-70: 2.1875rem;
  --sp-80: 2.5rem;
  --sp-90: 2.8125rem;
  --sp-100: 3.125rem;
  --sp-120: 3.75rem;
  --sp-140: 4.375rem;
  --sp-160: 5rem;
  --sp-180: 5.625rem;
  --sp-200: 6.25rem;
  --sp-300: 9.375rem;
  --ease-natural: cubic-bezier(.19,1,.22,1);
}

body {
  font-family: var(--font-serif);
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--c-black);
  background-color: var(--c-bg);
  letter-spacing: 0.02em;
  font-feature-settings: 'palt' 1;
}
.container {
  width: var(--w-content);
  max-width: var(--w-max);
  margin-inline: auto;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3.25rem 0;
  z-index: 1000;
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}
#header .container > *:not(.logo) {
  position: fixed;
  transition: opacity 0.5s ease-out, translate 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#header.is-hide .container > *:not(.logo) {
  opacity: 0;
  pointer-events: none;
  translate: 0 -20px;
}
.menu_trigger {
  display: none;
}
#header .container > .header_left {
  left: calc((100% - var(--w-content)) / 2);
}
#header .container > .header_right {
  right: calc((100% - var(--w-content)) / 2);
}
.gnavi, .submenu {
  font-family: var(--font-en);
  font-size: clamp(0.75rem, 0.7125rem + 0.15vw, 0.8125rem);
  line-height: 1;
}
@media (max-width: 1000px) {
  .gnavi, .submenu {
    font-size: var(--fs-xs);
  }
}
.gnavi {
  display: flex;
  gap: 1.4375rem;
}
.gnavi a, .submenu a {
  position: relative;
}
.gnavi a::before, .submenu a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.188rem;
  left: 0;
  width: 0%;
  height: 0.5px;
  background-color: var(--c-black);
  transition: width 1.3s var(--ease-natural);
}
.gnavi .current a::before, .submenu .current a::before {
  width: 100%;
}
@media (hover: hover) {
  .gnavi a:hover::before, .submenu a:hover::before {
    width: 100%;
  }
}
.header_left > .submenu {
  display: none;
}
#header .submenu .online-shop a::before {
  display: none;
}
#header .logo {
  position: absolute;
  top: 1.6875rem;
  left: 50%;
  translate: -50% 0;
}
#header .logo img {
  width: 5.25rem;
  height: auto;
}
.submenu {
  display: flex;
  align-items: center;
  gap: var(--sp-50);
}
.header_right .submenu .online-shop > a {
  border: 1px solid var(--c-black);
  padding: var(--sp-10) var(--sp-20);
}
.submenu .online-shop > a::after {
  content: "";
  display: inline-block;
  width: 0.438rem;
  aspect-ratio: 1;
  margin-left: 0.46875rem;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.4 22.5"%3E%3Cpolygon fill="%23333" points="22.4 0 7.9 0 7.9 3 17.4 3 0 20.4 2.1 22.5 19.4 5.2 19.4 14.6 22.4 14.6 22.4 0"/%3E%3C/svg%3E') no-repeat center / 100% auto;
}
.submenu .instagram > a::after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  aspect-ratio: 1;
  margin-left: 0.46875rem;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"%3E%3Cpath fill="%23333" d="M292.9,3.5c-53.2,2.5-89.5,11-121.3,23.5-32.9,12.8-60.7,30-88.4,57.8-27.7,27.8-44.8,55.7-57.5,88.6-12.3,31.8-20.6,68.2-23,121.4C.3,348.1-.2,365.2,0,501s.9,152.8,3.4,206.1c2.5,53.2,11,89.5,23.5,121.3,12.8,32.9,30,60.7,57.8,88.5,27.8,27.7,55.7,44.8,88.7,57.5,31.8,12.3,68.2,20.7,121.4,23,53.2,2.3,70.4,2.9,206.1,2.6,135.7-.3,152.8-.9,206.2-3.4s89.5-11,121.2-23.5c32.9-12.9,60.7-30,88.5-57.8s44.8-55.7,57.5-88.7c12.3-31.8,20.7-68.2,23-121.3,2.3-53.4,2.9-70.4,2.6-206.2s-.9-152.8-3.4-206.1-11-89.5-23.5-121.3c-12.8-32.9-30-60.7-57.8-88.4s-55.7-44.8-88.7-57.5c-31.8-12.3-68.2-20.7-121.4-23S634.8-.2,499,0s-152.8.8-206.1,3.4M298.8,907.4c-48.8-2.1-75.2-10.2-92.9-17-23.4-9-40-19.9-57.6-37.3s-28.4-34.1-37.5-57.4c-6.8-17.6-15.1-44.1-17.4-92.8-2.5-52.7-3-68.5-3.3-202s.2-149.3,2.5-202c2.1-48.7,10.2-75.2,17-92.8,9-23.4,19.8-40,37.3-57.6s34.1-28.4,57.4-37.5c17.6-6.9,44.1-15.1,92.8-17.4,52.7-2.5,68.5-3,202-3.3,133.5-.3,149.3.2,202.1,2.5,48.7,2.1,75.2,10.2,92.8,17,23.4,9,40,19.8,57.6,37.3s28.4,34.1,37.5,57.4c6.9,17.6,15.1,44,17.4,92.8,2.5,52.7,3.1,68.5,3.3,202,.2,133.5-.2,149.3-2.5,202-2.1,48.8-10.2,75.2-17,92.9-9,23.3-19.8,40-37.3,57.6s-34.1,28.4-57.4,37.5c-17.6,6.9-44.1,15.1-92.8,17.4-52.7,2.5-68.5,3-202,3.3s-149.3-.2-202-2.5M706.4,232.8c0,33.1,27,60,60.1,59.9s60-27,59.9-60.1c0-33.1-27-60-60.1-59.9,0,0,0,0,0,0-33.1,0-59.9,27-59.9,60.1M243.3,500.5c.3,141.8,115.4,256.5,257.2,256.2s256.5-115.4,256.3-257.2-115.5-256.5-257.2-256.2-256.5,115.5-256.2,257.2M333.3,500.3c-.2-92,74.3-166.8,166.3-167,92-.2,166.8,74.3,167,166.3.2,92-74.3,166.8-166.3,167-92,.2-166.8-74.3-167-166.3h0"/%3E%3C/svg%3E') no-repeat center / 100% auto;
}
.submenu br {
  display: none;
}

#main .container {
  margin: var(--sp-300) auto;
}

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  --mask-start: 100%;
  --mask-end: 110%;
  -webkit-mask-image: linear-gradient(to bottom, black var(--mask-start), transparent var(--mask-end));
  mask-image: linear-gradient(to bottom, black var(--mask-start), transparent var(--mask-end));
}
.visual img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  scale: 1.08;
  transition-delay: 2s;
}
.visual .is-active img {
  transition: scale 3s var(--ease-natural);
}
.visual .is-active img {
  scale: 1;
}
#hero .banner {
  position: absolute;
  bottom: var(--sp-70);
  right: var(--sp-100);
  transition: translate 1s var(--ease-natural);
}
.banner a {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--c-white);
  transition: opacity 1s var(--ease-natural);
}
.banner figure {
  flex-shrink: 0;
}
.banner img {
  width: 5.938rem;
}
@media (min-width: 769px) and (hover: hover) {
  #hero .banner:hover {
    translate: 0 -3px;
  }
  #hero .banner a:hover {
    opacity: 0.8;
  }
}
.banner p > small {
  display: block;
  font-family: var(--font-en);
  font-size: var(--fs-xs);
}
.banner p {
  margin-inline: auto;
  padding: var(--sp-20) var(--sp-50);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

#concept {
  --mask-start: -50%;
  --mask-end: 0%;
  -webkit-mask-image: linear-gradient(to bottom, black var(--mask-start), transparent var(--mask-end));
  mask-image: linear-gradient(to bottom, black var(--mask-start), transparent var(--mask-end));
}

#concept .container {
  display: flex;
  justify-content: center;
  column-gap: 20.83%;
  margin-top: var(--sp-180);
}
#concept .lead > img {
  width: 6.5625rem;
}
#concept .lead > p {
  display: none;
}
#concept .text {
  line-height: 3.1;
}
#concept .text > p + p {
  margin-top: var(--sp-100);
}
.more > * {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--c-black);
  padding-bottom: var(--sp-40);
  font-family: var(--font-en);
  font-size: var(--fs-sm);
  line-height: 1;
}
.more > * + * {
  margin-top: var(--sp-20);
}
.more > *::before {
  content: "";
  position: absolute;
  display: block;
  bottom: -1px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--c-gray);
  z-index: 2;
  transition: width 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.more > *::after {
  content: "";
  position: absolute;
  right: 0;
  width: 2.1875rem;
  aspect-ratio: 2.06;
  background: var(--c-black) url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30.2 20.6"%3E%3Cpolygon fill="%23fff" points="30.2 10.3 20 0 17.9 2.1 24.6 8.8 0 8.8 0 11.8 24.5 11.8 17.8 18.5 19.9 20.6 30.2 10.3"/%3E%3C/svg%3E') no-repeat center / 27.14% auto;
  border-radius: 100vmax;
}
.more > a[target="_blank"]::after {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30.2 20.6"%3E%3Cpolygon fill="%23fff" points="30.2 10.3 20 0 17.9 2.1 24.6 8.8 0 8.8 0 11.8 24.5 11.8 17.8 18.5 19.9 20.6 30.2 10.3" transform="rotate(-45 15.1 10.3)"/%3E%3C/svg%3E');
}
#concept .more {
  width: 47.06%;
  margin-top: var(--sp-160);
}
@media (hover: hover) {
  .more > *:hover::before {
    width: 100%;
  }
  .more > *:hover::after {
    animation: arrowMove 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  }
  .more > a[target="_blank"]:hover::after {
    animation: arrowMoveDiagonal 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  }
}
@keyframes arrowMove {
  0% { background-position: center; }
  50% { background-position: 120% center; }
  51% { background-position: -100% center; }
  100% { background-position: center; }
}
@keyframes arrowMoveDiagonal {
  0% { background-position: center; }
  50% { background-position: 123% -100%; }
  51% { background-position: -23% 200%; }
  100% { background-position: center; }
}

.cover {
  display: flex;
  margin-bottom: var(--sp-100);
  --mask-start: 100%;
  --mask-end: 150%;
  -webkit-mask-image: linear-gradient(to bottom, transparent var(--mask-start), black var(--mask-end));
  mask-image: linear-gradient(to bottom, transparent var(--mask-start), black var(--mask-end));
}
.cover img {
  width: 100%;
}
.cover:has(img:nth-child(2)) img {
  width: 50%;
  max-height: 430px;
  object-fit: cover;
}
#main #lineup .container {
  margin: 0 auto;
}
#lineup .intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-120);
}
#lineup .intro .title {
  writing-mode: vertical-rl;
  font-size: var(--fs-xl);
}
@supports (-webkit-app-region: inherit) {
  #lineup .intro .title {
    letter-spacing: -0.3em;
  }
}
#lineup .intro .text {
  font-size: var(--fs-sm);
  line-height: 2.2;
  margin-right: auto;
  margin-left: var(--sp-160);
}
#lineup .intro .date {
  display: inline-block;
  border-top: 1px solid var(--c-black);
  border-bottom: 1px solid var(--c-black);
  padding: var(--sp-10);
  margin-bottom: var(--sp-50);
}
#lineup .intro figure {
  width: 8.75rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-40);
}
.cards .item {
  background-color: var(--c-white);
}
.cards .item > a {
  transition: color 1s var(--ease-natural);
}
.cards figure {
  overflow: hidden;
}
.cards figure img {
  width: 100%;
  aspect-ratio: 1.6875;
  object-fit: cover;
  transition: scale 3s var(--ease-natural);
}
@media (hover: hover) {
  .cards .item > a:hover figure img {
    scale: 1.03;
  }
  .cards .item > a:hover .more > *::after {
    animation: arrowMove 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  }
}
.cards .detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-80) var(--sp-80);
  aspect-ratio: 3.857;
}
.title_sub {
  display: flex;
  align-items: center;
  gap: var(--sp-40);
  font-family: var(--font-en);
  font-size: var(--fs-lg);
  line-height: 1;
}
.title_sub > small {
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  margin-top: var(--sp-10);
}
.cards .more > * {
  border-bottom: none;
  padding-bottom: 0;
}
.cards .more > *::before {
  display: none;
}
.cards .more > *::after {
  position: static;
  margin-left: var(--sp-30);
}
.cards .more > a {
  transition: color 1s var(--ease-natural);
}
@media (hover: hover) {
  .cards .item > a:hover {
    color: var(--c-gray);
  }
  .cards .more > a:hover {
    color: var(--c-gray);
  }
}
.container .banner {
  margin-top: var(--sp-80);
}
.container .banner a {
  justify-content: center;
  padding: var(--sp-90) var(--sp-80);
  transition: color 1s var(--ease-natural);
}
.container .banner a::after {
  content: "";
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: var(--sp-80);
  translate: 0 -50%;
  width: 2.1875rem;
  aspect-ratio: 2.06;
  background: var(--c-black) url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30.2 20.6"%3E%3Cpolygon fill="%23fff" points="30.2 10.3 20 0 17.9 2.1 24.6 8.8 0 8.8 0 11.8 24.5 11.8 17.8 18.5 19.9 20.6 30.2 10.3" transform="rotate(-45 15.1 10.3)"/%3E%3C/svg%3E') no-repeat center / 27.14% auto;
  border-radius: 100vmax;
}
@media (hover: hover) {
  .container .banner a:hover {
    color: var(--c-gray);
  }
  .container .banner a:hover::after {
    animation: arrowMoveDiagonal 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  }
}

#news .container {
  display: flex;
  justify-content: space-between;
}
* + #news .container,
#lineup:has(.cover) > .container:has(.title_section),
#service .container {
  position: relative;
  border-top: 1px solid var(--c-black);
  margin-top: var(--sp-300);
  padding-top: var(--sp-180);
}
* + #news .container::before,
#lineup:has(.cover) > .container:has(.title_section)::before,
#service .container::before {
  content: "";
  position: absolute;
  top: -0.469rem;
  left: 50%;
  translate: -50% 0;
  width: 0.938rem;
  aspect-ratio: 1;
  background: var(--c-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.56 25.65'%3E%3Cpath fill='%23333' d='M14.67 20.16c-.32-.15-.65-.24-.98-.27.78.85.98 2.14.4 3.26-.58 1.12-1.77 1.73-2.93 1.62-.78-.85-.98-2.14-.4-3.26.14-.27.31-.5.51-.71h0l.22-.21 2.47-2.32 3.41-3.21 4.1 1.58h0c.7.29 1.52.31 2.28-.03 1.17-.52 1.86-1.68 1.8-2.87h0c-.03-.61-.17-1.28-.45-1.94-.24-.57-.54-1.07-.89-1.48 0 0-.01-.01-.02-.02-.05-.05-.09-.11-.14-.16h0c-.79-.86-2.1-1.16-3.27-.64-.32.14-.6.34-.85.57l-3.63 3.4-.19.18-6.01-2.32 2.23-2.09 3.63-3.41c.24-.23.46-.5.62-.81.59-1.14.38-2.46-.44-3.3h0s-.1-.1-.15-.14c0 0-.01-.01-.02-.02-.39-.37-.87-.71-1.42-.98-.64-.31-1.3-.51-1.91-.57h0c-1.18-.12-2.39.49-2.97 1.62-.75 1.44-.21 3.17 1.21 3.86.32.15.65.24.99.27-.78-.85-.98-2.14-.4-3.25.58-1.12 1.77-1.73 2.93-1.62.78.85.98 2.14.4 3.25-.14.26-.31.5-.51.71h0l-.22.21-2.47 2.32-3.41 3.2-4.1-1.58h0c-.7-.29-1.52-.31-2.29.03C.64 9.55-.05 10.72 0 11.9h0c.03.62.18 1.28.45 1.94.27.65.63 1.22 1.04 1.66h0c.79.86 2.09 1.16 3.27.64.32-.14.61-.34.85-.57l3.63-3.41.2-.18 6 2.32-2.23 2.09-3.63 3.41c-.24.23-.45.5-.62.81-.59 1.14-.38 2.46.44 3.3h0c.42.43.96.83 1.6 1.14.64.32 1.3.5 1.91.57h0c1.18.13 2.39-.49 2.98-1.62.75-1.44.21-3.17-1.21-3.86M7.43 11.31l-2.47 2.32-.22.21h0c-.22.19-.47.34-.74.46-1.15.51-2.43.23-3.22-.6-.15-2.07 2.5-4.14 4.83-3.18l1.89.73-.07.06ZM18.14 14.34l2.47-2.32.22-.21h0c.22-.19.46-.34.74-.47 1.15-.51 2.43-.23 3.22.6.15 2.07-2.49 4.14-4.83 3.18l-1.89-.73.07-.06Z'/%3E%3C/svg%3E") no-repeat center / 100% auto;
  outline: var(--sp-20) solid var(--c-bg);
}
.title_section {
  font-family: var(--font-en);
  font-size: var(--fs-xl);
  line-height: 1;
}
.title_section > small {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-sm);
  margin-top: var(--sp-20);
}
#news .list {
  width: 68.18%;
}
#news .list > ul > li {
  position: relative;
  border-top: 1px solid var(--c-light-gray);
  padding: var(--sp-50) var(--sp-200) var(--sp-50) 0;
}
#news .list > ul > li:last-child {
  border-bottom: 1px solid var(--c-light-gray);
}
#news .list > ul > li > * {
  display: flex;
  align-items: flex-start;
  column-gap: 12%;
  font-size: var(--fs-sm);
}
#news .list > ul > li > a > * {
  transition: color 1s var(--ease-natural);
}
#news .list > ul > li p {
  text-align: justify;
}
#news .list > ul > li > a::after {
  content: "";
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 2.1875rem;
  aspect-ratio: 2.06;
  background: var(--c-black) url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30.2 20.6"%3E%3Cpolygon fill="%23fff" points="30.2 10.3 20 0 17.9 2.1 24.6 8.8 0 8.8 0 11.8 24.5 11.8 17.8 18.5 19.9 20.6 30.2 10.3"/%3E%3C/svg%3E') no-repeat center / 27.14% auto;
  border-radius: 100vmax;
}
@media (hover: hover) {
  #news .list > ul > li > a:hover > * {
    color: var(--c-gray);
  }
  #news .list > ul > li > a:hover::after {
    animation: arrowMove 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  }
}
#news .more {
  width: 24%;
  margin-top: var(--sp-120);
  margin-left: auto;
}

.pagination {
  margin-top: var(--sp-120);
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-40);
  font-size: var(--fs-xs);
  line-height: 1;
}
.pagination .page-numbers {
  position: relative;
  color: var(--c-black);
  transition: color 1s var(--ease-natural);
}
.pagination .page-numbers.current::after {
  content: "";
  position: absolute;
  bottom: -0.313rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--c-black);
}
.pagination .page-numbers.dots {
  pointer-events: none;
}
.pagination .page-numbers.prev {
  border-right: 1px solid var(--c-gray);
  padding-right: var(--sp-40);
}
.pagination .page-numbers.next {
  border-left: 1px solid var(--c-gray);
  padding-left: var(--sp-40);
}
.pagination .page-numbers.prev::before, .pagination .page-numbers.next::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 1;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30.2 20.6"%3E%3Cpolygon fill="%23333" points="30.2 10.3 20 0 17.9 2.1 24.6 8.8 0 8.8 0 11.8 24.5 11.8 17.8 18.5 19.9 20.6 30.2 10.3"/%3E%3C/svg%3E') no-repeat center / 100% auto;
  transition: opacity 1s var(--ease-natural);
}
.pagination .page-numbers.prev::before {
  margin-right: 0.46875rem;
  scale: -1 1;
}
.pagination .page-numbers.next::after {
  margin-left: 0.46875rem;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30.2 20.6"%3E%3Cpolygon fill="%23333" points="30.2 10.3 20 0 17.9 2.1 24.6 8.8 0 8.8 0 11.8 24.5 11.8 17.8 18.5 19.9 20.6 30.2 10.3"/%3E%3C/svg%3E');
}
@media (hover: hover) {
  .pagination .page-numbers:hover:not(.current) {
    color: var(--c-gray);
  }
  .pagination .page-numbers.prev:hover::before,
  .pagination .page-numbers.next:hover::after {
    opacity: 0.3;
  }
}

.cards_wide .item {
  display: flex;
  justify-content: space-between;
  background-color: var(--c-white);
}
.cards_wide .item + .item {
  margin-top: var(--sp-30);
}
.cards_wide .item .detail {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: var(--sp-80);
}
.cards_wide .item .detail .title {
  font-size: clamp(1.25rem, 1rem + 0.6vw, 1.375rem);
  line-height: 1;
}
.cards_wide .item .detail .text {
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin-top: auto;
}
.cards_wide .item .detail .text p + p {
  margin-top: var(--sp-20);
}
.cards_wide .item .detail .text br:nth-of-type(n+2) {
  display: none;
}
.cards_wide .item .detail .area {
  position: absolute;
  top: var(--sp-80);
  right: var(--sp-80);
  font-size: clamp(0.75rem, 0.7rem + 0.15vw, 0.8125rem);
  line-height: 1;
  writing-mode: vertical-rl;
}
#shop iframe {
  flex-shrink: 0;
  width: 49.09%;
  filter: grayscale(100%);
}
.shop_tabs {
  display: none;
}
.notes {
  font-size: var(--fs-xs);
}
#shop .notes {
  text-align: right;
  margin-top: var(--sp-60);
}
#main #shop .banner {
  display: none;
}

#other .cover {
  margin-bottom: 0;
}
#other .cover img {
  max-height: 480px;
  aspect-ratio: 2.5;
  object-fit: cover;
}
#other .container {
  position: relative;
  margin: calc(var(--sp-160) * -1) auto 0;
}
#other .cards .item {
  display: flex;
  flex-direction: column;
  aspect-ratio: 2.16;
  padding: var(--sp-80);
}
#other .cards .more {
  width: fit-content;
  margin-top: auto;
  margin-left: auto;
}
#other .cards .more > * {
  justify-content: flex-end;
}

#footer {
  margin: var(--sp-300) auto var(--sp-140);
}
#footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copyright {
  font-family: var(--font-en);
  font-size: clamp(0.625rem, 0.6rem + 0.1vw, 0.625rem);
  line-height: 1;
}
#footer nav {
  display: flex;
}
#footer .gnavi, #footer .submenu {
  font-size: var(--fs-xs);
}
#footer .submenu {
  gap: var(--sp-30);
  margin-left: var(--sp-30);
}
#footer .submenu > li {
  display: flex;
  border-left: 1px solid var(--c-gray);
  padding-left: var(--sp-30);
}

#sub section > .container {
  margin-top: 12.5rem;
}

#sub #concept > *:first-child {
  margin-top: 12.5rem;
}
.heading .title_section {
  width: var(--w-content);
  max-width: var(--w-max);
  margin-inline: auto;
  margin-bottom: var(--sp-80);
  font-size: clamp(1.875rem, 1.3rem + 2.5vw, 2.8125rem);
}
.heading .cover img {
  aspect-ratio: 2.4;
  object-fit: cover;
}
#concept .section {
  margin: var(--sp-180) auto;
}
#sub #concept .container {
  margin-top: 0;
}
#sub #concept .text {
  line-height: 2.5;
}
#sub #concept #logo {
  background-color: var(--c-white);
  padding: var(--sp-180);
}
#sub #concept #logo .column {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8%;
}
#sub #concept #logo .column > figure {
  flex-shrink: 0;
  width: 15%;
}
#sub #concept #logo .column > figure img {
  width: 100%;
}
#sub #concept #logo .detail {
  width: 54%;
}
#sub #concept #logo .detail > p {
  margin-top: var(--sp-30);
  font-size: var(--fs-sm);
  text-align: justify;
}
#sub #concept #logo .detail > figure {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: var(--sp-90);
  margin-top: var(--sp-70);
  font-size: var(--fs-sm);
}
#sub #concept #logo .detail > figure img {
  width: 12.75rem;
}
.section .intro {
  margin-bottom: var(--sp-160);
  text-align: center;
}
.section .intro .lead {
  font-size: var(--fs-lg);
  line-height: 1.6;
}
.section .intro .lead br:first-of-type {
  display: none;
}
.section .intro > p {
  margin-top: var(--sp-40);
  line-height: 2;
}
.recipe_body .item {
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
}
.recipe_body .item + .item {
  margin-top: var(--sp-180);
}
.recipe_body .item:nth-child(even) {
  flex-direction: row-reverse;
}
.recipe_body .item > figure {
  flex-shrink: 0;
  width: 60%;
  z-index: 1;
}
.recipe_body .item > figure img {
  width: 100%;
}
.recipe_body .item .detail {
  position: relative;
  width: 46%;
  background-color: var(--c-white);
  padding: var(--sp-90) var(--sp-80);
  translate: 0 40px;
  z-index: 2;
}
.recipe_body .item:nth-child(odd) .detail {
  margin-left: -6%;
  margin-right: calc((100% - var(--w-content)) / 2);
}
.recipe_body .item:nth-child(even) .detail {
  margin-right: -6%;
  margin-left: calc((100% - var(--w-content)) / 2);
}
.recipe_body .item .detail .title {
  display: flex;
  align-items: center;
  column-gap: var(--sp-30);
  font-size: var(--fs-md);
  line-height: 1.4;
}
.recipe_body .item .detail .title > span {
  font-size: var(--fs-base);
}
.recipe_body .item .detail .title:has(small) {
  flex-direction: column;
  align-items: flex-start;
  row-gap: var(--sp-10);
}
.recipe_body .item .detail .title > small {
  font-size: var(--fs-sm);
}
.recipe_body .item .detail > p {
  margin-top: var(--sp-30);
  font-size: var(--fs-sm);
  text-align: justify;
}
.recipe_body .item .detail > .notes {
  font-size: var(--fs-xs);
}
#sub #concept .more {
  width: 30%;
  min-width: 140px;
  margin-top: var(--sp-80);
  margin-left: auto;
}
#sub #concept #service .container {
  justify-content: space-between;
  margin-top: var(--sp-300);
}
.wrapper .heading figure {
  margin-bottom: var(--sp-60);
}
.wrapper .heading figure img {
  width: 100%;
  height: 20.625rem;
  object-fit: cover;
}
.wrapper > .item + .item {
  margin-top: var(--sp-200);
}
.wrapper .heading .column {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-140);
}
.wrapper .heading .column .title {
  font-size: clamp(1.125rem, 0.95rem + 0.7vw, 1.25rem);
}
.wrapper .heading .column .detail > p {
  font-size: var(--fs-sm);
}
.wrapper .heading .column .detail > .notes {
  margin-top: var(--sp-20);
  font-size: var(--fs-xs);
}
#service .grid {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-120) 8%;
}
#service .grid figure {
  margin-bottom: var(--sp-40);
}
#service .grid figure img {
  width: 100%;
}
#service .grid .detail .title {
  display: flex;
  align-items: center;
  gap: var(--sp-20);
  font-size: clamp(1.125rem, 0.95rem + 0.7vw, 1.25rem);
}
#service .grid .detail .title > small {
  font-size: var(--fs-sm);
}
#service .grid .detail > p {
  margin-top: var(--sp-20);
  font-size: var(--fs-sm);
  text-align: justify;
}

#lineup .title_section {
  margin-bottom: var(--sp-120);
  text-align: center;
}
.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-120) 2.5%;
}
.grid > li {
  display: flex;
  flex-direction: column;
}
.grid a {
  transition: color 1s var(--ease-natural);
}
.grid figure {
  display: grid;
  place-content: center;
  margin-bottom: var(--sp-30);
  overflow: hidden;
}
#lineup .grid figure {
  aspect-ratio: 1 / 1;
}
.grid figure img {
  transition: scale 1s var(--ease-natural);
}
.grid .head {
  min-height: 2.5em;
}
.grid .title {
  display: flex;
  align-items: center;
  column-gap: var(--sp-20);
  font-size: inherit;
  line-height: 1.4;
}
.grid .title > small {
  font-size: var(--fs-xs);
}
.grid .subtitle {
  font-size: var(--fs-xs);
}
.grid .subtitle::before, .grid .subtitle::after {
  content: "-";
}
.grid .head .notes {
  margin-top: 0;
}
.info {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: var(--sp-20);
  font-size: var(--fs-xs);
}
.info > p {
  line-height: 1.6;
  text-align: justify;
  margin-bottom: var(--sp-30);
  min-height: 5em;
}
.info dl {
  display: flex;
}
.info dl:has(dt:nth-of-type(3)) {
  flex-wrap: wrap;
}
.info dl > dt {
  width: 26%;
}
#cake li:last-child .info dl > dt,
#whole-cake .info dl > dt {
  width: 36%;
}
.info .notes {
  font-size: clamp(0.625rem, 0.6rem + 0.1vw, 0.625rem);
  line-height: 1.6;
  text-align: justify;
}
.grid .notes {
  color: #999;
  margin-top: var(--sp-10);
  transition: color 1s var(--ease-natural);
}
@media (hover: hover) {
  .grid a:hover, .grid a:hover .notes {
    color: var(--c-gray);
  }
  .grid a:hover figure img {
    scale: 1.03;
  }
}
.lineup-detail .grid .info {
  display: none;
}

#lineup .cover img {
  height: 64vh;
  object-fit: cover;
}
#sub section > .cover + .container {
  margin-top: 0;
}
#sub #lineup .intro {
  flex-direction: column;
  align-items: center;
  row-gap: var(--sp-30);
  margin-bottom: var(--sp-140);
  line-height: 2;
  text-align: center;
}
.title_page {
  font-size: var(--fs-lg);
}
#sub .columns {
  display: flex;
  justify-content: space-between;
  gap: 6%;
}
.point .item {
  display: flex;
  align-items: center;
  background-color: var(--c-white);
  font-size: var(--fs-sm);
}
.point .item + .item {
  margin-top: var(--sp-30);
}
.point .item figure {
  align-self: stretch;
  flex-shrink: 0;
  width: 30%;
  max-width: 240px;
}
.point .item figure img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.point .item .detail {
  padding: var(--sp-60) var(--sp-80);
}
.point .item .title {
  font-size: inherit;
  line-height: 1.6;
}
.point .item .title + p {
  margin-top: var(--sp-20);
}
.point .item p {
  font-size: clamp(0.7rem, 0.65rem + 0.15vw, 0.75rem);
  text-align: justify;
}
.columns .gallery {
  flex-shrink: 0;
  width: 22%;
}
.columns .gallery img {
  width: 100%;
}
#lineup .products {
  margin-top: var(--sp-300);
}
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-200) var(--sp-160);
}
.products .item figure {
  margin-bottom: var(--sp-50);
  overflow: hidden;
}
.products .item figure img {
  width: 100%;
}
.products .item .detail {
  width: 100%;
}
.products .item_name {
  font-size: clamp(1.0625rem, 0.85rem + 0.5vw, 1.125rem);
}
.products .info > dl > dt {
  width: 20%;
}
.products .btn {
  margin-top: var(--sp-50);
}
.products .btn > a {
  display: block;
  border: 1px solid var(--c-black);
  padding: var(--sp-20);
  font-family: var(--font-en);
  font-size: var(--fs-sm);
  text-align: center;
}
.products .btn > a::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  aspect-ratio: 1;
  margin-left: 0.46875rem;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.4 22.5"%3E%3Cpolygon fill="%23333" points="22.4 0 7.9 0 7.9 3 17.4 3 0 20.4 2.1 22.5 19.4 5.2 19.4 14.6 22.4 14.6 22.4 0"/%3E%3C/svg%3E') no-repeat center / 100% auto;
}
#lineup:has(.cover) > .container:has(.title_section) {
  margin-top: 12.5rem;
}

#inquiry .container {
  display: flex;
  justify-content: space-between;
}
.wrapper {
  width: 68.18%;
}
.wrapper .intro .block + .block {
  margin-top: var(--sp-100);
}
.wrapper .intro .title {
  margin-bottom: var(--sp-30);
}
.wrapper .intro .title::before {
  content: "";
  display: inline-block;
  width: 0.875rem;
  aspect-ratio: 1;
  margin-right: var(--sp-10);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.56 25.65'%3E%3Cpath fill='%23333' d='M14.67 20.16c-.32-.15-.65-.24-.98-.27.78.85.98 2.14.4 3.26-.58 1.12-1.77 1.73-2.93 1.62-.78-.85-.98-2.14-.4-3.26.14-.27.31-.5.51-.71h0l.22-.21 2.47-2.32 3.41-3.21 4.1 1.58h0c.7.29 1.52.31 2.28-.03 1.17-.52 1.86-1.68 1.8-2.87h0c-.03-.61-.17-1.28-.45-1.94-.24-.57-.54-1.07-.89-1.48 0 0-.01-.01-.02-.02-.05-.05-.09-.11-.14-.16h0c-.79-.86-2.1-1.16-3.27-.64-.32.14-.6.34-.85.57l-3.63 3.4-.19.18-6.01-2.32 2.23-2.09 3.63-3.41c.24-.23.46-.5.62-.81.59-1.14.38-2.46-.44-3.3h0s-.1-.1-.15-.14c0 0-.01-.01-.02-.02-.39-.37-.87-.71-1.42-.98-.64-.31-1.3-.51-1.91-.57h0c-1.18-.12-2.39.49-2.97 1.62-.75 1.44-.21 3.17 1.21 3.86.32.15.65.24.99.27-.78-.85-.98-2.14-.4-3.25.58-1.12 1.77-1.73 2.93-1.62.78.85.98 2.14.4 3.25-.14.26-.31.5-.51.71h0l-.22.21-2.47 2.32-3.41 3.2-4.1-1.58h0c-.7-.29-1.52-.31-2.29.03C.64 9.55-.05 10.72 0 11.9h0c.03.62.18 1.28.45 1.94.27.65.63 1.22 1.04 1.66h0c.79.86 2.09 1.16 3.27.64.32-.14.61-.34.85-.57l3.63-3.41.2-.18 6 2.32-2.23 2.09-3.63 3.41c-.24.23-.45.5-.62.81-.59 1.14-.38 2.46.44 3.3h0c.42.43.96.83 1.6 1.14.64.32 1.3.5 1.91.57h0c1.18.13 2.39-.49 2.98-1.62.75-1.44.21-3.17-1.21-3.86M7.43 11.31l-2.47 2.32-.22.21h0c-.22.19-.47.34-.74.46-1.15.51-2.43.23-3.22-.6-.15-2.07 2.5-4.14 4.83-3.18l1.89.73-.07.06ZM18.14 14.34l2.47-2.32.22-.21h0c.22-.19.46-.34.74-.47 1.15-.51 2.43-.23 3.22.6.15 2.07-2.49 4.14-4.83 3.18l-1.89-.73.07-.06Z'/%3E%3C/svg%3E") no-repeat center / 100% auto;
}
.wrapper a {
  border-bottom: 0.5px solid var(--c-black);
  transition: border-bottom-color 0.3s var(--ease-natural);
}
@media (hover: hover) {
  .wrapper a:hover {
    border-bottom-color: var(--c-bg);
  }
}
.wrapper .intro b {
  font-size: var(--fs-xl);
  font-weight: 400;
  line-height: 1;
}
.wrapper .intro small {
  margin-left: var(--sp-10);
  font-size: var(--fs-sm);
}
.wrapper .intro .notes {
  margin-top: var(--sp-40);
}
.wrapper .intro .notes b {
  color: var(--c-red);
  font-size: inherit;
  line-height: inherit;
}
#inquiry #contact > h2, #inquiry #contact > .txtWrap {
  display: none;
}
.form-body {
  margin-top: var(--sp-120);
  font-size: var(--fs-sm);
}
.form tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-60);
}
.form tr + tr {
  margin-top: var(--sp-50);
}
.form tr > th {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-20);
  width: 30%;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.form tr > th span {
  display: inline-block;
  background-color: var(--c-black);
  border-radius: 0.125rem;
  padding: var(--sp-10);
  color: var(--c-white);
  font-size: var(--fs-xs);
}
.form tr > td {
  width: 70%;
}
.form input, .form textarea {
  width: 100%;
  background-color: var(--c-white);
  border-radius: 0.25rem;
  padding: var(--sp-20) var(--sp-30);
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}
.form textarea {
  display: block;
  resize: vertical;
  min-height: 160px;
}
.form .txtWrap {
  margin-top: var(--sp-80);
  text-align: center;
}
.form .txtWrap br {
  display: none;
}
.form .btnArea {
  width: 70%;
  margin: var(--sp-80) auto 0;
}
.form .btnArea input {
  background-color: var(--c-black);
  padding: var(--sp-30);
  color: var(--c-white);
  cursor: pointer;
  transition: background-color 0.3s var(--ease-natural);
}
@media (hover: hover) {
  .form .btnArea input:hover {
    background-color: #555;
  }
}


@media (max-width: 768px) {
  :root {
    --fs-xs: 0.75rem;
    --fs-sm: 0.813rem;
    --fs-base: 0.875rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.563rem;
    --fs-xl: 2rem;
    --w-content: 89.33%;
  }

  body.is-open {
    overflow: hidden;
  }

  #header {
    padding: 2.5rem 0;
  }
  .menu_trigger {
    position: relative;
    display: block;
    width: 1.5rem;
    height: 0.438rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
  }
  .menu_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--c-black);
    transition: 0.3s;
  }
  .menu_trigger span:nth-child(1) {
    top: 0;
  }
  .menu_trigger span:nth-child(2) {
    bottom: 0;
  }
  body.is-open #header .menu_trigger span:nth-child(1) {
    top: 50%;
    translate: 0 -50%;
    rotate: 135deg;
  }
  body.is-open #header .menu_trigger span:nth-child(2) {
    top: 50%;
    translate: 0 -50%;
    rotate: -135deg;
  }
  #header .container > .header_left {
    display: grid;
    place-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 14vh var(--sp-120);
    background-color: var(--c-bg);
    translate: 0 100%;
    opacity: 0;
    visibility: hidden;
    overflow: scroll;
    z-index: 1500;
    transition: translate 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease, visibility 0s linear 0.6s;
  }
  body.is-open #header .header_left {
    translate: 0;
    opacity: 1;
    visibility: visible;
    transition: translate 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease, visibility 0s linear 0s;
  }
  .gnavi {
    flex-direction: column;
  }
  #header .gnavi {
    gap: var(--sp-40);
    font-size: var(--fs-lg);
    text-align: center;
  }
  .header_left > ul > li {
    opacity: 0;
    translate: 0 20px;
    transition: opacity 0.6s, translate 0.6s;
  }
  body.is-open .header_left > ul > li {
    opacity: 1;
    translate: 0;
  }
  body.is-open .header_left > .gnavi > li:nth-child(1) {
    transition-delay: 0.4s;
  }
  body.is-open .header_left > .gnavi > li:nth-child(2) {
    transition-delay: 0.45s;
  }
  body.is-open .header_left > .gnavi > li:nth-child(3) {
    transition-delay: 0.5s;
  }
  body.is-open .header_left > .gnavi > li:nth-child(4) {
    transition-delay: 0.55s;
  }
  body.is-open .header_left > .gnavi > li:nth-child(5) {
    transition-delay: 0.6s;
  }
  body.is-open .header_left > .gnavi > li:nth-child(6) {
    transition-delay: 0.65s;
  }
  body.is-open .header_left > .gnavi > li:nth-child(7) {
    transition-delay: 0.7s;
  }
  body.is-open .header_left > .submenu > li:nth-child(1) {
    transition-delay: 0.75s;
  }
  body.is-open .header_left > .submenu > li:nth-child(2) {
    transition-delay: 0.8s;
  }
  body.is-open .header_left > .submenu > li:nth-child(3) {
    transition-delay: 0.85s;
  }
  .header_left > .submenu {
    display: flex;
    flex-direction: column;
    row-gap: var(--sp-40);
    margin-top: var(--sp-100);
    font-size: var(--fs-lg);
  }
  .header_left > .submenu > li > a::after {
    width: 1.063rem;
  }
  .header_left > .submenu .online-shop > a::after {
    width: 0.75rem;
  }
  .gnavi a::before, .submenu a::before {
    display: none;
  }
  #header .logo {
    top: 1.25rem;
    z-index: 1499;
  }
  #header .logo img {
    width: 4.688rem;
  }
  #header .header_right {
    z-index: 2000;
  }
  .header_right .submenu > li:not(.online-shop) {
    display: none;
  }
  .header_right .submenu .online-shop > a {
    display: block;
    border: 1px solid var(--c-black);
    padding: 0.25rem 0.375rem;
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1.1;
  }
  .header_right .submenu .online-shop > a::after {
    width: 0.375rem;
    margin-left: 0.25rem;
  }
  .header_right .submenu br {
    display: inline;
  }

  #main .container {
    margin: var(--sp-160) auto;
  }

  #hero {
    height: 93vh;
  }
  #hero .banner {
    bottom: var(--sp-40);
    right: 50%;
    translate: 50% 0;
    width: max-content;
  }
  .banner img {
    width: 6.688rem;
  }
  .banner p {
    font-size: var(--fs-base);
  }

  #concept .container {
    flex-direction: column;
    row-gap: var(--sp-40);
    margin-top: var(--sp-100);
  }
  #concept .lead > img {
    display: none;
  }
  #concept .lead > p {
    display: block;
    font-size: 1.563rem;
    line-height: 1.6;
  }
  #concept .text > p + p {
    margin-top: var(--sp-40);
  }
  #concept .text {
    line-height: 2.2;
  }
  .more > * {
    padding-bottom: var(--sp-30);
  }
  #concept .more {
    width: 10rem;
    margin-top: var(--sp-80);
  }

  .cover {
    flex-direction: column;
    margin-bottom: var(--sp-70);
  }
  .cover:has(img:nth-child(2)) img {
    width: 100%;
    max-height: 10.625rem;
  }
  #lineup .intro {
    display: grid;
    grid-template-areas:
      "title ... figure"
      "text text text";
    grid-template-columns: auto 1fr auto;
    row-gap: var(--sp-70);
    margin-bottom: var(--sp-80);
  }
  #lineup .intro .title {
    grid-area: title;
    font-size: var(--fs-lg);
  }
  #lineup .intro figure {
    grid-area: figure;
    width: 8.125rem;
  }
  #lineup .intro .text {
    grid-area: text;
    width: 100%;
    margin: auto;
  }
  #lineup .intro .date {
    display: block;
    font-size: var(--fs-base);
    text-align: center;
  }
  .cards {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--sp-20);
  }
  .cards .item > a {
    display: flex;
  }
  .cards figure {
    flex-shrink: 0;
  }
  .cards figure img {
    width: 8.75rem;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }
  .cards .detail {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: var(--sp-40) var(--sp-30) var(--sp-30) var(--sp-50);
  }
  .title_sub {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-20);
    font-size: 1.625rem;
  }
  .title_sub > small {
    font-size: var(--fs-xs);
    margin-top: 0;
  }
  .cards .more {
    margin-left: auto;
  }
  #lineup .cards .more > * {
    color: transparent;
  }
  #main #lineup .banner {
    display: none;
  }

  #news .container {
    flex-direction: column;
    row-gap: var(--sp-70);
  }
  * + #news .container,
  #lineup:has(.cover) > .container:has(.title_section),
  #service .container {
    margin-top: var(--sp-180);
    padding-top: var(--sp-120);
  }
  .title_section {
    display: flex;
    align-items: center;
    column-gap: var(--sp-30);
  }
  .title_section > small {
    margin-top: var(--sp-10);
  }
  #news .list {
    width: 100%;
  }
  #news .list > ul > li {
    padding: var(--sp-30) var(--sp-120) var(--sp-30) 0;
  }
  #news .list > ul > li > * {
    flex-direction: column;
    row-gap: 0.125rem;
    line-height: 1.6;
  }
  #news .list > ul > li time {
    font-size: var(--fs-xs);
  }
  #news .list > ul > li > a::after {
    position: absolute;
    top: 50%;
    right: 0;
    translate: 0 -50%;
  }
  #news .more {
    width: 10rem;
    margin-top: var(--sp-80);
  }
  .pagination {
    margin-top: var(--sp-80);
  }
  .pagination .page-numbers.current::after {
    bottom: -0.25rem;
  }

  .shop_tabs {
    display: flex;
    align-items: flex-end;
    margin-bottom: var(--sp-30);
    font-family: var(--font-en);
    text-align: center;
  }
  .shop_tabs li {
    width: calc(50% + 1px);
    padding: var(--sp-10) 0;
    border: 1px solid var(--c-black);
    cursor: pointer;
  }
  .shop_tabs li.is-active {
    padding: var(--sp-20) 0;
    border-bottom: none;
  }
  .shop_tabs li + li {
    margin-left: -1px;
  }
  .cards_wide .item {
    display: none;
    flex-direction: column-reverse;
  }
  .cards_wide .item.is-active {
    display: flex;
  }
  #shop iframe {
    width: 100%;
    height: 13.125rem;
  }
  .cards_wide .item .detail {
    padding: var(--sp-70) var(--sp-60);
  }
  .cards_wide .item .detail .title {
    font-size: 1.25rem;
  }
  .cards_wide .item .detail .text {
    margin-top: var(--sp-40);
  }
  .cards_wide .item .detail .text br:nth-of-type(n+2) {
    display: inline;
  }
  .cards_wide .item .detail .area {
    top: var(--sp-70);
    right: var(--sp-60);
    font-size: var(--fs-xs);
  }
  .notes {
    font-size: 0.625rem;
  }
  #shop .notes {
    margin-top: var(--sp-40);
  }
  #main #shop .banner {
    display: block;
  }
  .container .banner a {
    padding: var(--sp-70);
  }
  .container .banner .title_sub {
    align-items: center;
  }
  .container .banner a::after {
    top: auto;
    bottom: var(--sp-30);
    right: var(--sp-30);
    translate: none;
  }

  #other .cover img {
    max-height: 16.25rem;
    aspect-ratio: 1.44;
    object-position: top left;
  }
  #other .container {
    margin-top: calc(var(--sp-80) * -1);
  }
  #other .cards .item {
    aspect-ratio: 1.76;
    padding: var(--sp-50);
  }
  #other .title_section {
    flex-direction: column;
    align-items: flex-start;
    row-gap: var(--sp-10);
  }
  #contact .more > a > span {
    display: none;
  }

  #footer {
    margin: var(--sp-180) auto var(--sp-80);
  }
  #footer .container {
    flex-direction: column-reverse;
  }
  #footer .menu {
    width: 100%;
  }
  #footer nav {
    flex-direction: column;
  }
  #footer .gnavi {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-30) var(--sp-100);
    width: fit-content;
  }
  #footer .submenu {
    gap: var(--sp-70);
    margin-top: var(--sp-80);
    margin-left: 0;
  }
  #footer .submenu > li {
    position: relative;
    border-left: none;
    padding-left: 0;
  }
  .copyright {
    width: 100%;
    border-top: 1px solid var(--c-light-gray);
    margin-top: var(--sp-70);
    padding-top: var(--sp-40);
    font-size: 0.563rem;
    text-align: center;
  }

  #sub section > .container {
    margin-top: 10rem;
  }
  #sub section > .container + .container {
    margin-top: var(--sp-200);
  }
  #sub .title_section {
    display: block;
  }

  #sub #concept > *:first-child {
    margin-top: 10rem;
  }
  .heading .title_section {
    margin-bottom: var(--sp-40);
    font-size: 1.875rem;
  }
  #concept .section {
    margin: var(--sp-100) auto;
  }
  #sub #concept .text {
    line-height: 2.2;
  }
  #sub #concept #logo {
    padding: var(--sp-100) 0;
  }
  #sub #concept #logo .column {
    flex-direction: column;
    row-gap: var(--sp-60);
    max-width: var(--w-content);
    margin-inline: auto;
  }
  #sub #concept #logo .column > figure {
    width: 45%;
  }
  #sub #concept #logo .detail {
    width: 100%;
  }
  #sub #concept #logo .detail .title {
    text-align: center;
  }
  #sub #concept #logo .detail > figure {
    flex-direction: column-reverse;
    row-gap: var(--sp-40);
    margin-top: var(--sp-50);
  }
  #sub #concept #logo .detail > figure img {
    width: 70%;
  }
  #recipe > * {
    max-width: var(--w-content);
    margin-inline: auto;
  }
  .section .intro {
    margin-bottom: var(--sp-80);
  }
  .section .intro .lead br:first-of-type {
    display: inline;
  }
  .section .intro > p {
    text-align: justify;
  }
  .recipe_body .item {
    padding-bottom: 0;
  }
  .recipe_body .item, .recipe_body .item:nth-child(even) {
    flex-direction: column;
  }
  .recipe_body .item + .item {
    margin-top: var(--sp-80);
  }
  .recipe_body .item > figure {
    width: 100%;
  }
  .recipe_body .item .detail {
    width: 100%;
    padding: var(--sp-60);
    translate: none;
  }
  .recipe_body .item:nth-child(odd) .detail, .recipe_body .item:nth-child(even) .detail {
    margin-left: 0;
    margin-right: 0;
  }
  .recipe_body .item .detail .title > small {
    font-size: var(--fs-xs);
  }
  #sub #concept .more {
    width: 50%;
    margin-top: var(--sp-60);
  }
  #sub #concept #service .container {
    row-gap: var(--sp-80);
    margin-top: var(--sp-180);
  }
  .wrapper > .item + .item {
    margin-top: var(--sp-120);
  }
  .wrapper .heading figure {
    margin-bottom: var(--sp-40);
  }
  .wrapper .heading figure img {
    height: auto;
  }
  .wrapper .heading .column {
    flex-direction: column;
    row-gap: var(--sp-20);
    margin-bottom: var(--sp-80);
  }
  .wrapper .heading .column .title {
    font-size: var(--fs-md);
  }
  #service .grid {
    gap: var(--sp-70) var(--sp-50);
  }
  #service .grid figure {
    margin-bottom: var(--sp-30);
  }
  #service .grid .detail .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-size: 1rem;
  }
  #service .grid .detail .title > small {
    margin-top: 0.25rem;
    color: #999;
    font-size: var(--fs-xs);
  }
  #service .grid .detail > p {
    font-size: var(--fs-xs);
    line-height: 1.6;
  }

  #lineup .title_section {
    margin-bottom: var(--sp-80);
  }
  .title_section > small {
    margin-top: var(--sp-20);
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-80) var(--sp-30);
  }
  .grid .title {
    font-size: 1rem;
  }
  .info {
    line-height: 1.4;
  }
  .info > p {
    font-size: 0.688rem;
  }
  .info dl {
    flex-direction: column;
    row-gap: 0.125rem;
  }
  .info dl + dl {
    margin-top: var(--sp-10);
  }
  .info dl > dt, .info dl > dd {
    width: 100%;
  }
  #cake li:last-child .info dl > dt,
  #whole-cake .info dl > dt {
    width: 100%;
  }
  .info dl > dt {
    font-size: 0.625rem;
  }
  .info .notes {
    font-size: 0.563rem;
  }

  #sub #lineup .cover {
    margin-top: var(--header-height, 80px);
  }
  #sub #lineup .cover img {
    height: 30vh;
    object-position: top center;
  }
  #sub #lineup .intro {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--sp-60);
  }
  #sub #lineup .intro p {
    text-align: left;
  }
  #sub .columns {
    flex-direction: column;
    row-gap: var(--sp-60);
  }
  .point .item {
    gap: var(--sp-30);
    padding: var(--sp-40);
  }
  .point .item + .item {
    margin-top: var(--sp-20);
  }
  .point .item figure {
    align-self: center;
    width: 40%;
  }
  .point .item figure img {
    min-height: auto;
  }
  .point .item .detail {
    padding: 0;
  }
  .point .item .title {
    line-height: 1.4;
  }
  .point .item .title + p {
    margin-top: var(--sp-10);
  }
  .point .item p {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .columns .gallery {
    display: flex;
    width: 100%;
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-120) var(--sp-60);
  }
  #lineup .products {
    gap: var(--sp-100) var(--sp-40);
    margin-top: var(--sp-180);
  }
  .products .item figure {
    margin-bottom: var(--sp-30);
  }
  .products .item_name {
    font-size: 1rem;
    line-height: 1.4;
  }
  .products .info > dl > dt {
    width: 100%;
  }
  .products .btn {
    margin-top: var(--sp-40);
  }
  .products .btn > a {
    line-height: 1.4;
  }
  #lineup:has(.cover) > .container:has(.title_section) {
    margin-top: var(--sp-180);
  }

  #inquiry .container {
    flex-direction: column;
    row-gap: var(--sp-70);
  }
  .wrapper {
    width: 100%;
  }
  .wrapper .intro .title::before {
    width: 0.813rem;
  }
  .wrapper .intro b a {
    border-bottom: none;
  }
  .wrapper .intro small {
    display: block;
    margin-top: var(--sp-10);
    margin-left: 0;
  }
  .form-body {
    margin-top: var(--sp-100);
  }
  .form table, .form tbody {
    display: block;
  }
  .form tr {
    flex-direction: column;
    row-gap: var(--sp-20);
  }
  .form tr + tr {
    margin-top: var(--sp-40);
  }
  .form tr > th, .form tr > td {
    width: 100%;
  }
  .form tr > th span {
    font-size: 0.625rem;
  }
  .form .txtWrap {
    margin-top: var(--sp-50);
  }
  .form .txtWrap br {
    display: inline;
  }
  .form .btnArea {
    width: 100%;
    margin-top: var(--sp-10);
  }
}
