@charset "UTF-8";
.l-wrapper {
  min-width: var(--min-device-width);
}

.l-container {
  container: l-container/inline-size;
}

.l-section {
  --l-section-inner-width-default: var(--site-width);
  --l-section-space-inline-default: var(--space-inline);
  --l-section-space-inline: var(--l-section-space-inline-override, var(--l-section-space-inline-default));
}
.l-section:where(._gutter) {
  padding-inline: var(--l-section-space-inline);
}
.l-section._container {
  container: l-section/inline-size;
}
.l-section__inner {
  --l-section-inner-width: var(--l-section-inner-width-override, var(--l-section-inner-width-default));
  width: 100%;
  max-width: var(--l-section-inner-width);
  margin-inline: auto;
  background-clip: content-box;
}
.l-section__inner._container {
  container: l-section-inner/inline-size;
}
.l-section__inner:where(._gutter) {
  max-width: calc( 						var(--l-section-inner-width) + 						(var(--l-section-space-inline) * 2) 					);
  padding-inline: var(--l-section-space-inline);
}
.l-section__full {
  margin-inline: calc(var(--l-section-space-inline) * -1);
}

.l-column {
  --l-column-head-width-default: 410px;
  --l-column-columnGap-default: 20px;
  --l-column-rowGap-default: 0;
  --l-column-head-width: var(--l-column-head-width-override, var(--l-column-head-width-default));
  --l-column-columnGap: var(--l-column-columnGap-override, var(--l-column-columnGap-default));
  --l-column-rowGap: var(--l-column-rowGap-override, var(--l-column-rowGap-default));
  display: grid;
  grid-template-columns: var(--l-column-head-width) 1fr;
  column-gap: var(--l-column-columnGap);
  row-gap: var(--l-column-rowGap);
}
.l-column__head {
  grid-area: 1/1/2/2;
}
.l-column__head._sticky {
  position: sticky;
  top: calc(var(--header-size) + var(--space-block-lg));
  align-self: start;
}
.l-column__body {
  min-width: 0;
}
.l-column:where(:has(.l-column__foot)) {
  grid-template-rows: 1fr auto;
}
.l-column:where(:has(.l-column__foot)) .l-column__body {
  grid-row: span 2;
}
.l-column._vertical {
  grid-template-columns: 1fr;
}
.l-column._vertical .l-column__head {
  position: revert;
}
.l-column._vertical .l-column__body {
  grid-row: span 1;
}
@media (width <= 1400px) {
  .l-column._vertical\@xl {
    grid-template-columns: 1fr;
  }
  .l-column._vertical\@xl .l-column__head {
    position: revert;
  }
  .l-column._vertical\@xl .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 1120px) {
  .l-column._vertical\@lg {
    grid-template-columns: 1fr;
  }
  .l-column._vertical\@lg .l-column__head {
    position: revert;
  }
  .l-column._vertical\@lg .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 1000px) {
  .l-column._vertical\@lg2 {
    grid-template-columns: 1fr;
  }
  .l-column._vertical\@lg2 .l-column__head {
    position: revert;
  }
  .l-column._vertical\@lg2 .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 900px) {
  .l-column._vertical\@md {
    grid-template-columns: 1fr;
  }
  .l-column._vertical\@md .l-column__head {
    position: revert;
  }
  .l-column._vertical\@md .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 800px) {
  .l-column._vertical\@md2 {
    grid-template-columns: 1fr;
  }
  .l-column._vertical\@md2 .l-column__head {
    position: revert;
  }
  .l-column._vertical\@md2 .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 768px) {
  .l-column._vertical\@sm {
    grid-template-columns: 1fr;
  }
  .l-column._vertical\@sm .l-column__head {
    position: revert;
  }
  .l-column._vertical\@sm .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 700px) {
  .l-column._vertical\@sm2 {
    grid-template-columns: 1fr;
  }
  .l-column._vertical\@sm2 .l-column__head {
    position: revert;
  }
  .l-column._vertical\@sm2 .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 600px) {
  .l-column._vertical\@sm3 {
    grid-template-columns: 1fr;
  }
  .l-column._vertical\@sm3 .l-column__head {
    position: revert;
  }
  .l-column._vertical\@sm3 .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 500px) {
  .l-column._vertical\@xs {
    grid-template-columns: 1fr;
  }
  .l-column._vertical\@xs .l-column__head {
    position: revert;
  }
  .l-column._vertical\@xs .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 400px) {
  .l-column._vertical\@xs2 {
    grid-template-columns: 1fr;
  }
  .l-column._vertical\@xs2 .l-column__head {
    position: revert;
  }
  .l-column._vertical\@xs2 .l-column__body {
    grid-row: span 1;
  }
}
@media (width <= 375px) {
  .l-column._vertical\@min {
    grid-template-columns: 1fr;
  }
  .l-column._vertical\@min .l-column__head {
    position: revert;
  }
  .l-column._vertical\@min .l-column__body {
    grid-row: span 1;
  }
}

.l-split-header {
  --l-bend-columnGap-default: 20px;
  --l-bend-rowGap-default: 0;
  --l-bend-columnGap: var(--l-bend-columnGap-override, var(--l-bend-columnGap-default));
  --l-bend-rowGap: var(--l-bend-rowGap-override, var(--l-bend-rowGap-default));
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: var(--l-bend-columnGap);
  row-gap: var(--l-bend-rowGap);
}
.l-split-header__body {
  grid-column: span 2;
}
.l-split-header__foot {
  grid-area: 1/2/2/3;
}
.l-split-header:not(:has(.l-split-header__foot)) .l-split-header__head {
  grid-column: span 2;
}
.l-split-header._vertical {
  grid-template-columns: 1fr;
}
.l-split-header._vertical .l-split-header__head,
.l-split-header._vertical .l-split-header__body {
  grid-column: span 1;
}
.l-split-header._vertical .l-split-header__foot {
  grid-area: auto;
}
@media (width <= 1400px) {
  .l-split-header._vertical\@xl {
    grid-template-columns: 1fr;
  }
  .l-split-header._vertical\@xl .l-split-header__head,
.l-split-header._vertical\@xl .l-split-header__body {
    grid-column: span 1;
  }
  .l-split-header._vertical\@xl .l-split-header__foot {
    grid-area: auto;
  }
}
@media (width <= 1120px) {
  .l-split-header._vertical\@lg {
    grid-template-columns: 1fr;
  }
  .l-split-header._vertical\@lg .l-split-header__head,
.l-split-header._vertical\@lg .l-split-header__body {
    grid-column: span 1;
  }
  .l-split-header._vertical\@lg .l-split-header__foot {
    grid-area: auto;
  }
}
@media (width <= 1000px) {
  .l-split-header._vertical\@lg2 {
    grid-template-columns: 1fr;
  }
  .l-split-header._vertical\@lg2 .l-split-header__head,
.l-split-header._vertical\@lg2 .l-split-header__body {
    grid-column: span 1;
  }
  .l-split-header._vertical\@lg2 .l-split-header__foot {
    grid-area: auto;
  }
}
@media (width <= 900px) {
  .l-split-header._vertical\@md {
    grid-template-columns: 1fr;
  }
  .l-split-header._vertical\@md .l-split-header__head,
.l-split-header._vertical\@md .l-split-header__body {
    grid-column: span 1;
  }
  .l-split-header._vertical\@md .l-split-header__foot {
    grid-area: auto;
  }
}
@media (width <= 800px) {
  .l-split-header._vertical\@md2 {
    grid-template-columns: 1fr;
  }
  .l-split-header._vertical\@md2 .l-split-header__head,
.l-split-header._vertical\@md2 .l-split-header__body {
    grid-column: span 1;
  }
  .l-split-header._vertical\@md2 .l-split-header__foot {
    grid-area: auto;
  }
}
@media (width <= 768px) {
  .l-split-header._vertical\@sm {
    grid-template-columns: 1fr;
  }
  .l-split-header._vertical\@sm .l-split-header__head,
.l-split-header._vertical\@sm .l-split-header__body {
    grid-column: span 1;
  }
  .l-split-header._vertical\@sm .l-split-header__foot {
    grid-area: auto;
  }
}
@media (width <= 700px) {
  .l-split-header._vertical\@sm2 {
    grid-template-columns: 1fr;
  }
  .l-split-header._vertical\@sm2 .l-split-header__head,
.l-split-header._vertical\@sm2 .l-split-header__body {
    grid-column: span 1;
  }
  .l-split-header._vertical\@sm2 .l-split-header__foot {
    grid-area: auto;
  }
}
@media (width <= 600px) {
  .l-split-header._vertical\@sm3 {
    grid-template-columns: 1fr;
  }
  .l-split-header._vertical\@sm3 .l-split-header__head,
.l-split-header._vertical\@sm3 .l-split-header__body {
    grid-column: span 1;
  }
  .l-split-header._vertical\@sm3 .l-split-header__foot {
    grid-area: auto;
  }
}
@media (width <= 500px) {
  .l-split-header._vertical\@xs {
    grid-template-columns: 1fr;
  }
  .l-split-header._vertical\@xs .l-split-header__head,
.l-split-header._vertical\@xs .l-split-header__body {
    grid-column: span 1;
  }
  .l-split-header._vertical\@xs .l-split-header__foot {
    grid-area: auto;
  }
}
@media (width <= 400px) {
  .l-split-header._vertical\@xs2 {
    grid-template-columns: 1fr;
  }
  .l-split-header._vertical\@xs2 .l-split-header__head,
.l-split-header._vertical\@xs2 .l-split-header__body {
    grid-column: span 1;
  }
  .l-split-header._vertical\@xs2 .l-split-header__foot {
    grid-area: auto;
  }
}
@media (width <= 375px) {
  .l-split-header._vertical\@min {
    grid-template-columns: 1fr;
  }
  .l-split-header._vertical\@min .l-split-header__head,
.l-split-header._vertical\@min .l-split-header__body {
    grid-column: span 1;
  }
  .l-split-header._vertical\@min .l-split-header__foot {
    grid-area: auto;
  }
}

.l-row-gap {
  --l-row-gap-default: 60px;
  --l-row-gap: var(--l-row-gap-override, var(--l-row-gap-default));
  display: flex;
  flex-direction: column;
  row-gap: var(--l-row-gap);
}
.l-row-gap._section {
  --l-row-gap-default: var(--space-block-section);
}
.l-row-gap._section-half {
  --l-row-gap-default: var(--space-block-section-half);
}
.l-row-gap._xl {
  --l-row-gap-default: var(--space-block-xl);
}
.l-row-gap._xl-half {
  --l-row-gap-default: var(--space-block-xl-half);
}
.l-row-gap._lg {
  --l-row-gap-default: var(--space-block-lg);
}
.l-row-gap._lg-half {
  --l-row-gap-default: var(--space-block-lg-half);
}
.l-row-gap._md {
  --l-row-gap-default: var(--space-block-md);
}
.l-row-gap._sm {
  --l-row-gap-default: var(--space-block-sm);
}
.l-row-gap._xs {
  --l-row-gap-default: var(--space-block-xs);
}
.l-row-gap._xxs {
  --l-row-gap-default: var(--space-block-xxs);
}
.l-row-gap._xxxs {
  --l-row-gap-default: var(--space-block-xxxs);
}
.l-row-gap._section-trim {
  --l-row-gap-default: var(--space-block-section-trim);
}
.l-row-gap._section-half-trim {
  --l-row-gap-default: var(--space-block-section-half-trim);
}
.l-row-gap._xl-trim {
  --l-row-gap-default: var(--space-block-xl-trim);
}
.l-row-gap._xl-half-trim {
  --l-row-gap-default: var(--space-block-xl-half-trim);
}
.l-row-gap._lg-trim {
  --l-row-gap-default: var(--space-block-lg-trim);
}
.l-row-gap._lg-half-trim {
  --l-row-gap-default: var(--space-block-lg-half-trim);
}
.l-row-gap._md-trim {
  --l-row-gap-default: var(--space-block-md-trim);
}
.l-row-gap._sm-trim {
  --l-row-gap-default: var(--space-block-sm-trim);
}
.l-row-gap._xs-trim {
  --l-row-gap-default: var(--space-block-xs-trim);
}
.l-row-gap._xxs-trim {
  --l-row-gap-default: var(--space-block-xxs-trim);
}
.l-row-gap._xxxs-trim {
  --l-row-gap-default: var(--space-block-xxxs-trim);
}

.l-spacer._section {
  height: var(--space-block-section);
}
.l-spacer._section-half {
  height: var(--space-block-section-half);
}
.l-spacer._xl {
  height: var(--space-block-xl);
}
.l-spacer._xl-half {
  height: var(--space-block-xl-half);
}
.l-spacer._lg {
  height: var(--space-block-lg);
}
.l-spacer._lg-half {
  height: var(--space-block-lg-half);
}
.l-spacer._md {
  height: var(--space-block-md);
}
.l-spacer._sm {
  height: var(--space-block-sm);
}
.l-spacer._xs {
  height: var(--space-block-xs);
}
.l-spacer._xxs {
  height: var(--space-block-xxs);
}
.l-spacer._xxxs {
  height: var(--space-block-xxxs);
}
.l-spacer._section-trim {
  height: var(--space-block-section-trim);
}
.l-spacer._section-half-trim {
  height: var(--space-block-section-half-trim);
}
.l-spacer._xl-trim {
  height: var(--space-block-xl-trim);
}
.l-spacer._xl-half-trim {
  height: var(--space-block-xl-half-trim);
}
.l-spacer._lg-trim {
  height: var(--space-block-lg-trim);
}
.l-spacer._lg-half-trim {
  height: var(--space-block-lg-half-trim);
}
.l-spacer._md-trim {
  height: var(--space-block-md-trim);
}
.l-spacer._sm-trim {
  height: var(--space-block-sm-trim);
}
.l-spacer._xs-trim {
  height: var(--space-block-xs-trim);
}
.l-spacer._xxs-trim {
  height: var(--space-block-xxs-trim);
}
.l-spacer._xxxs-trim {
  height: var(--space-block-xxxs-trim);
}

.l-media {
  --l-media-content-width-default: 380px;
  --l-media-columnGap-default: 70px;
  --l-media-rowGap-default: 0;
  --l-media-gutter-default: var(--site-gutter);
  --l-media-vertical-order-default: "image" "content";
  --l-media-gutter:
  	var(--l-media-gutter-override, var(--l-media-gutter-default));
  --l-media-content-width:
  	var(--l-media-content-width-override, var(--l-media-content-width-default));
  --l-media-columnGap:
  	var(--l-media-columnGap-override, var(--l-media-columnGap-default));
  --l-media-rowGap:
  	var(--l-media-rowGap-override, var(--l-media-rowGap-default));
  --l-media-vertical-order:
  	var(--l-media-vertical-order-override, var(--l-media-vertical-order-default));
  display: grid;
  grid-template-columns: var(--l-media-gridTemplateColumns);
  grid-template-areas: var(--l-media-gridTemplateAreas);
  column-gap: var(--l-media-columnGap);
  row-gap: var(--l-media-rowGap);
}
.l-media:where(._v_reverse) {
  --l-media-vertical-order-default: "content" "image";
}
.l-media:where(._gutter) {
  padding-inline: var(--l-media-gutter);
}
.l-media:where(:not(._reverse)) {
  --l-media-gridTemplateColumns: var(--l-media-content-width) 1fr;
  --l-media-gridTemplateAreas: "content image";
}
.l-media:where(._reverse) {
  --l-media-gridTemplateColumns: 1fr var(--l-media-content-width);
  --l-media-gridTemplateAreas: "image content";
}
.l-media__content {
  min-width: 0;
  grid-area: content;
}
.l-media__image {
  min-width: 0;
  grid-area: image;
  margin-inline: var(--l-media-marginInline, 0);
}
.l-media:where(._full):where(:not(._reverse)) {
  --l-media-marginInline: 0 calc(var(--l-media-gutter) * -1);
}
.l-media:where(._full):where(._reverse) {
  --l-media-marginInline: calc(var(--l-media-gutter) * -1) 0;
}
.l-media._vertical {
  --l-media-gridTemplateColumns: 1fr;
  --l-media-gridTemplateAreas: var(--l-media-vertical-order);
  --l-media-marginInline: 0;
}
@media (width <= 1400px) {
  .l-media._vertical\@xl {
    --l-media-gridTemplateColumns: 1fr;
    --l-media-gridTemplateAreas: var(--l-media-vertical-order);
    --l-media-marginInline: 0;
  }
}
@media (width <= 1120px) {
  .l-media._vertical\@lg {
    --l-media-gridTemplateColumns: 1fr;
    --l-media-gridTemplateAreas: var(--l-media-vertical-order);
    --l-media-marginInline: 0;
  }
}
@media (width <= 1000px) {
  .l-media._vertical\@lg2 {
    --l-media-gridTemplateColumns: 1fr;
    --l-media-gridTemplateAreas: var(--l-media-vertical-order);
    --l-media-marginInline: 0;
  }
}
@media (width <= 900px) {
  .l-media._vertical\@md {
    --l-media-gridTemplateColumns: 1fr;
    --l-media-gridTemplateAreas: var(--l-media-vertical-order);
    --l-media-marginInline: 0;
  }
}
@media (width <= 800px) {
  .l-media._vertical\@md2 {
    --l-media-gridTemplateColumns: 1fr;
    --l-media-gridTemplateAreas: var(--l-media-vertical-order);
    --l-media-marginInline: 0;
  }
}
@media (width <= 768px) {
  .l-media._vertical\@sm {
    --l-media-gridTemplateColumns: 1fr;
    --l-media-gridTemplateAreas: var(--l-media-vertical-order);
    --l-media-marginInline: 0;
  }
}
@media (width <= 700px) {
  .l-media._vertical\@sm2 {
    --l-media-gridTemplateColumns: 1fr;
    --l-media-gridTemplateAreas: var(--l-media-vertical-order);
    --l-media-marginInline: 0;
  }
}
@media (width <= 600px) {
  .l-media._vertical\@sm3 {
    --l-media-gridTemplateColumns: 1fr;
    --l-media-gridTemplateAreas: var(--l-media-vertical-order);
    --l-media-marginInline: 0;
  }
}
@media (width <= 500px) {
  .l-media._vertical\@xs {
    --l-media-gridTemplateColumns: 1fr;
    --l-media-gridTemplateAreas: var(--l-media-vertical-order);
    --l-media-marginInline: 0;
  }
}
@media (width <= 400px) {
  .l-media._vertical\@xs2 {
    --l-media-gridTemplateColumns: 1fr;
    --l-media-gridTemplateAreas: var(--l-media-vertical-order);
    --l-media-marginInline: 0;
  }
}
@media (width <= 375px) {
  .l-media._vertical\@min {
    --l-media-gridTemplateColumns: 1fr;
    --l-media-gridTemplateAreas: var(--l-media-vertical-order);
    --l-media-marginInline: 0;
  }
}

.mw_confirm-show {
  display: none;
}

body:has(.mw_wp_form.mw_wp_form_confirm) .mw_confirm-hidden {
  display: none;
}
body:has(.mw_wp_form.mw_wp_form_confirm) .mw_confirm-show {
  display: revert;
}

/* pagenavi */
.wp-pagenavi {
  display: grid;
  gap: 40px;
  justify-content: center;
  align-items: center;
  grid-template-columns: 40px repeat(7, auto) 40px;
  grid-template-areas: "previouspostslink current smaller_1 smaller_2 smaller_3 smaller_4 extend larger nextpostslink";
}
@media (width <= 768px) {
  .wp-pagenavi {
    gap: 20px;
    grid-template-columns: 30px repeat(7, auto) 30px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-style: var(--typography-std_jp_bold-font-style);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  display: block;
  text-decoration: none;
  transition: var(--sec);
  white-space: nowrap;
  overflow: hidden;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  height: 40px;
  background-image: url(../img/cmn/c-icon-big_arr.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (width <= 768px) {
  .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
    height: 30px;
  }
}
.wp-pagenavi .previouspostslink {
  grid-area: previouspostslink;
}
.wp-pagenavi .nextpostslink {
  grid-area: nextpostslink;
  transform: scale(-1, 1);
}
.wp-pagenavi .current {
  grid-area: current;
  opacity: 0.5;
  text-decoration: underline;
}
.wp-pagenavi .smaller_1 {
  grid-area: smaller_1;
}
.wp-pagenavi .smaller_2 {
  grid-area: smaller_2;
}
.wp-pagenavi .smaller_3 {
  grid-area: smaller_3;
}
.wp-pagenavi .smaller_4 {
  grid-area: smaller_4;
}
.wp-pagenavi .extend {
  grid-area: extend;
}
.wp-pagenavi .larger {
  grid-area: larger;
}

:where(.wp-block-post-content, .wp-gutenberg) {
  font-family: var(--typography-std_jp_regular_tight-font-family);
  font-weight: var(--typography-std_jp_regular_tight-font-weight);
  font-style: var(--typography-std_jp_regular_tight-font-style);
  font-size: var(--typography-std_jp_regular_tight-font-size);
  line-height: var(--typography-std_jp_regular_tight-line-height);
  --letter-spacing: var(--typography-std_jp_regular_tight-letter-spacing);
  max-width: 960px;
  margin: 0 auto;
  padding-block-end: 40px;
  margin-block-end: 40px;
  border-bottom: 1px solid var(--color-ash);
  --wp--preset--font-size--small: rem(14);
  --wp--preset--font-size--medium: rem(16);
  --wp--preset--font-size--large: rem(18);
  --wp--preset--font-size--x-large: rem(20);
}
:where(.wp-block-post-content, .wp-gutenberg) a:not([class]) {
  text-decoration: underline;
}
:where(.wp-block-post-content, .wp-gutenberg) a:not([class]):focus-visible {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  :where(.wp-block-post-content, .wp-gutenberg) a:not([class]):hover {
    text-decoration: none;
  }
}
:where(.wp-block-post-content, .wp-gutenberg) :where(p, ol, ul, table,
   [class*="wp-block"]):not(:last-child) {
  margin-block-end: var(--space-block-sm);
}

p {
  line-height: 1.8;
}

.wp-block-heading {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-style: var(--typography-std_jp_xxl_bold-font-style);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
  margin-block-end: var(--space-block-md);
}

h2.wp-block-heading {
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
  margin-block-end: var(--space-block-xxs);
}

h3.wp-block-heading {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
  padding-block: var(--space-block-xxs);
  border-top: 1px solid var(--color-ash);
  border-bottom: 1px solid var(--color-ash);
  margin-block-end: var(--space-block-xxs);
}

h4.wp-block-heading {
  font-size: 1.25rem;
}

h5.wp-block-heading {
  font-size: 1.125rem;
}

h6.wp-block-heading {
  font-size: 1rem;
}

.wp-block-image {
  margin-block-end: var(--space-block-sm);
}

:where(.wp-gutenberg :is(ul,ol):not([class])),
.wp-block-list {
  padding-left: 1.4em;
}

:where(.wp-gutenberg ul:not([class])),
ul.wp-block-list {
  list-style-type: disc;
}

:where(.wp-gutenberg ol:not([class])),
ol.wp-block-list {
  list-style-type: decimal;
}

:where(.wp-gutenberg li:not([class])),
.wp-block-list-item {
  list-style-type: inherit;
}

data {
  display: block;
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-style: var(--typography-std_jp_bold-font-style);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  margin-block-end: var(--space-block-sm);
}

:where(.wp-block-post-content, .wp-gutenberg) :is(th, td) {
  padding: 5px;
  border: 1px solid;
  text-align: left;
}

.c-bg_ash {
  background-color: var(--color-ash);
}

.p-pagetitle {
  position: relative;
  padding-block: 163px 119px;
  width: 100%;
  min-height: 426px;
  text-align: center;
}
@media (width <= 768px) {
  .p-pagetitle {
    padding-block: 196px 103px;
  }
}
.p-pagetitle__inner {
  position: relative;
  z-index: 1;
  color: var(--color-light);
}
.p-pagetitle__sub {
  font-family: var(--typography-dsp_en_xxxxl-font-family);
  font-weight: var(--typography-dsp_en_xxxxl-font-weight);
  font-style: var(--typography-dsp_en_xxxxl-font-style);
  font-size: var(--typography-dsp_en_xxxxl-font-size);
  line-height: var(--typography-dsp_en_xxxxl-line-height);
  --letter-spacing: var(--typography-dsp_en_xxxxl-letter-spacing);
  margin-block-end: 15px;
}
.p-pagetitle__title {
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
}
.p-pagetitle__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.p-pagetitle__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-hover_zoom-boder {
  text-decoration: none;
}
.c-hover_zoom-boder__zoom {
  overflow: hidden;
}
.c-hover_zoom-boder__zoom img {
  transition: transform var(--sec);
}
.c-hover_zoom-boder__border {
  width: fit-content;
  transition: 0.8s ease;
  background-image: linear-gradient(90deg, currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 1px;
}

@media (width > 768px) {
  .c-hover_zoom-boder:hover .c-hover_zoom-boder__zoom img {
    transform: scale(1.1);
  }
  .c-hover_zoom-boder:hover .c-hover_zoom-boder__border {
    background-size: 100% 1px;
  }
}
.c-btn {
  width: fit-content;
  display: block;
  text-decoration: none;
  color: var(--color-light);
  position: relative;
  background-color: var(--color-primary);
  padding: 19px 76px 19px 60px;
  border-radius: 99px;
  transition: var(--sec);
}
@media (width <= 768px) {
  .c-btn {
    padding: 18px 66px 18px 60px;
  }
}
.c-btn._center {
  margin: 0 auto;
}
.c-btn._right {
  margin: 0 0 0 auto;
}
.c-btn._bdr-white {
  border: 1px solid var(--color-light);
}
.c-btn .text {
  width: fit-content;
  overflow: hidden;
  color: transparent;
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-style: var(--typography-std_jp_bold-font-style);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  text-shadow: 0 -1.5em 0 var(--color-light), 0 0 0 var(--color-light);
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  background-color: var(--color-primary);
  transition: var(--sec);
  white-space: nowrap;
}
.c-btn .arr {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

@media (width > 768px) {
  .c-btn:hover {
    color: var(--color-primary);
    background-color: var(--color-light);
    box-shadow: 0 0 6px color-mix(in srgb, var(--color-primary) 45%, transparent);
  }
  .c-btn:hover .text {
    text-shadow: 0 0 0 var(--color-primary), 0 1.5em 0 var(--color-light);
    background-color: var(--color-light);
  }
}
.c-btn_tel {
  max-width: 280px;
  width: 100%;
  display: block;
  text-decoration: none;
  color: var(--color-light);
  position: relative;
  background-color: var(--color-primary);
  padding: 10px 0 10px 30px;
  border-radius: 4px;
  transition: var(--sec);
  border: 1px solid var(--color-light);
  color: var(--color-light);
  text-align: start;
  font-family: var(--typography-sp_std_jp_bold-font-family);
  font-weight: var(--typography-sp_std_jp_bold-font-weight);
  font-style: var(--typography-sp_std_jp_bold-font-style);
  font-size: var(--typography-sp_std_jp_bold-font-size);
  line-height: var(--typography-sp_std_jp_bold-line-height);
  --letter-spacing: var(--typography-sp_std_jp_bold-letter-spacing);
}
.c-btn_tel .arr {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.c-text-layout_1 .group {
  display: grid;
  grid-template-columns: auto auto;
}
.c-text-layout_1 .group._320-490 {
  grid-template-columns: 320px auto;
  gap: 50px;
}
@media (width <= 1000px) {
  .c-text-layout_1 .group._320-490 {
    grid-template-columns: 270px auto;
    gap: 10px;
  }
}
@media (width <= 768px) {
  .c-text-layout_1 .group._320-490 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.c-text-layout_1 .group._title500 {
  grid-template-columns: 500px 1fr;
  gap: 30px;
  justify-content: space-between;
}
@media (width <= 1000px) {
  .c-text-layout_1 .group._title500 {
    grid-template-columns: 420px auto;
    gap: 10px;
  }
}
@media (width <= 900px) {
  .c-text-layout_1 .group._title500 {
    grid-template-columns: 320px auto;
  }
}
@media (width <= 768px) {
  .c-text-layout_1 .group._title500 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.c-text-layout_1 ._mw-490 {
  max-width: 490px;
}
@media (width <= 768px) {
  .c-text-layout_1 ._mw-490 {
    max-width: 100%;
  }
}
.c-text-layout_1 ._mw-590 {
  max-width: 590px;
}
@media (width <= 1000px) {
  .c-text-layout_1 ._mw-590 {
    max-width: 100%;
  }
}
@media (width <= 768px) {
  .c-text-layout_1 ._mw-590 {
    max-width: 100%;
  }
}

.c-news-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--space-block-xs);
}
@media (width <= 768px) {
  .c-news-card {
    grid-template-columns: 140px 1fr;
  }
}
.c-news-card__img {
  width: 100%;
  aspect-ratio: 18/12;
}
.c-news-card__img img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-news-card .info {
  width: 100%;
}
.c-news-card .info._mw-510 {
  max-width: 510px;
}
.c-news-card .info .data {
  font-family: var(--typography-std_jp_xs_bold-font-family);
  font-weight: var(--typography-std_jp_xs_bold-font-weight);
  font-style: var(--typography-std_jp_xs_bold-font-style);
  font-size: var(--typography-std_jp_xs_bold-font-size);
  line-height: var(--typography-std_jp_xs_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xs_bold-letter-spacing);
  margin-block-end: 4px;
}
.c-h2 {
  text-align: center;
}
.c-h2._white {
  color: var(--color-light);
}
.c-h2__jp {
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
  margin-block-end: 40px;
}
.c-h2__en {
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-text {
  font-family: var(--typography-std_jp_regular-font-family);
  font-weight: var(--typography-std_jp_regular-font-weight);
  font-style: var(--typography-std_jp_regular-font-style);
  font-size: var(--typography-std_jp_regular-font-size);
  line-height: var(--typography-std_jp_regular-line-height);
  --letter-spacing: var(--typography-std_jp_regular-letter-spacing);
}
.c-text._center {
  text-align: center;
}

.c-text_b {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-style: var(--typography-std_jp_bold-font-style);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}

.c-text_tight {
  font-family: var(--typography-std_jp_regular_tight-font-family);
  font-weight: var(--typography-std_jp_regular_tight-font-weight);
  font-style: var(--typography-std_jp_regular_tight-font-style);
  font-size: var(--typography-std_jp_regular_tight-font-size);
  line-height: var(--typography-std_jp_regular_tight-line-height);
  --letter-spacing: var(--typography-std_jp_regular_tight-letter-spacing);
}
.c-text_tight._center {
  text-align: center;
}

.c-text_s {
  font-family: var(--typography-std_jp_small_bold-font-family);
  font-weight: var(--typography-std_jp_small_bold-font-weight);
  font-style: var(--typography-std_jp_small_bold-font-style);
  font-size: var(--typography-std_jp_small_bold-font-size);
  line-height: var(--typography-std_jp_small_bold-line-height);
  --letter-spacing: var(--typography-std_jp_small_bold-letter-spacing);
}
.c-text_s._center {
  text-align: center;
}

.p-title._white {
  color: var(--color-light);
}
.p-title .title-en {
  font-family: var(--typography-std_en_small_italic-font-family);
  font-weight: var(--typography-std_en_small_italic-font-weight);
  font-style: var(--typography-std_en_small_italic-font-style);
  font-size: var(--typography-std_en_small_italic-font-size);
  line-height: var(--typography-std_en_small_italic-line-height);
  --letter-spacing: var(--typography-std_en_small_italic-letter-spacing);
  margin-block-end: 40px;
  color: var(--color-primary);
}
.p-title .title-en._bottom {
  margin-block-end: 0;
}
.p-title .title {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-style: var(--typography-std_jp_xxl_bold-font-style);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
  white-space: nowrap;
}
.p-title .sub-title {
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
}
.p-title .text {
  font-family: var(--typography-std_jp_regular-font-family);
  font-weight: var(--typography-std_jp_regular-font-weight);
  font-style: var(--typography-std_jp_regular-font-style);
  font-size: var(--typography-std_jp_regular-font-size);
  line-height: var(--typography-std_jp_regular-line-height);
  --letter-spacing: var(--typography-std_jp_regular-letter-spacing);
}

.c-title-h3 {
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
  margin-block-end: var(--space-block-xs);
}

.c-title-kasou {
  margin-block-end: var(--space-block-sm);
}
.c-title-kasou__h2 {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-style: var(--typography-std_jp_xxl_bold-font-style);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
  margin-block-end: 10px;
}
.c-title-kasou__h2-en {
  font-family: var(--typography-std_en_small_italic-font-family);
  font-weight: var(--typography-std_en_small_italic-font-weight);
  font-style: var(--typography-std_en_small_italic-font-style);
  font-size: var(--typography-std_en_small_italic-font-size);
  line-height: var(--typography-std_en_small_italic-line-height);
  --letter-spacing: var(--typography-std_en_small_italic-letter-spacing);
  color: var(--color-primary);
}
.c-title-kasou._white .c-title-kasou__h2 {
  color: var(--color-light);
}
.c-title-kasou._white .c-title-kasou__h2-en {
  color: var(--color-light);
}

.looding-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut-looding 0.2s ease forwards;
  animation-delay: 2.5s;
  /* テキスト表示してから消える時間を調整 */
}
.looding-wrapper .looding-logo {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1s;
  /* テキスト表示してから消える時間を調整 */
}
.looding-wrapper .looding-logo svg {
  width: 234px;
}
.looding-wrapper .looding-logo-bottom {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1.8s;
  /* テキスト表示してから消える時間を調整 */
}

.looding-mv {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2s;
  /* テキスト表示してから消える時間を調整 */
}
.looding-mv.is-show {
  opacity: 1 !important;
  animation: none !important;
  /* 遅延アニメーションを殺す */
}

.looding_content {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 3.5s;
  /* テキスト表示してから消える時間を調整 */
}
.looding_content.is-show {
  opacity: 1 !important;
  animation: none !important;
  /* 遅延アニメーションを殺す */
}

/* 既存のCSSはそのまま利用 */
/* 初回以外で即非表示にするためのクラス */
.looding-wrapper.is-hide {
  display: none !important;
}

/* === 消えていくアニメーション === */
@keyframes fadeOut-looding {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
/* === 表示されていくアニメーション === */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.scroll-up {
  opacity: 0 !important;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (width > 768px) {
  .scroll-up._up-02 {
    transform: translateY(60px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  }
  .scroll-up._up-03 {
    transform: translateY(90px);
    transition: opacity 2s ease-out, transform 2s ease-out;
  }
}
.scroll-up.is-show {
  opacity: 1 !important;
  transform: translateY(0);
}

.c-stepbar {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-style: var(--typography-std_jp_bold-font-style);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  padding-block-start: 32px;
  color: var(--color-primary);
  position: relative;
}
.c-stepbar::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
}
.c-stepbar._here::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-primary);
  opacity: 0.2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c-stepbar__wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (width <= 768px) {
  .c-stepbar__wrapper {
    gap: 64px;
  }
}
.c-stepbar__wrapper::before {
  content: "";
  position: absolute;
  max-width: 185px;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  top: 13.5px;
  left: 50%;
  transform: translateX(-50%);
}

/* パララックスセクション */
.about-parallax {
  position: relative;
  overflow: hidden;
}

.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  will-change: transform;
  transition: 0.3s ease;
}

.q-about_message .main-img {
  width: 100%;
}
@media (width > 900px) {
  .q-about_message .u-md {
    display: none;
  }
}

.q-about_values .about-values__flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 14px;
}
@media (width <= 768px) {
  .q-about_values .about-values__flex {
    grid-template-columns: 1fr 1fr;
  }
}
@media (width <= 500px) {
  .q-about_values .about-values__flex {
    grid-template-columns: 1fr;
  }
}
@media (width <= 768px) {
  .q-about_values .about-values__content {
    margin: 0 auto;
  }
}
.q-about_values .about-values__content .c-title-h3 {
  text-align: center;
}
.q-about_values .about-values__img {
  margin-block-end: var(--space-block-xs);
}

.q-about_chef .head {
  display: flex;
  gap: 60px;
}
@media (width <= 768px) {
  .q-about_chef .head {
    flex-flow: column;
    gap: 20px;
  }
}
.q-about_chef .head__text-content {
  max-width: 600px;
}
@media (width <= 768px) {
  .q-about_chef .head__text-content {
    max-width: 100%;
  }
}
.q-about_chef .head__img img {
  width: 100%;
}
.q-about_chef .chef-profile {
  padding-block-start: 20px;
  margin-block-start: 20px;
  border-top: 1px solid var(--color-ash);
}
.q-about_chef .chef-profile__name {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
  margin-block-end: var(--space-block-xs);
}
.q-about_chef .award {
  display: flex;
  gap: 40px;
}
@media (width <= 768px) {
  .q-about_chef .award {
    flex-flow: column-reverse;
    gap: 20px;
  }
}
.q-about_chef .award__img {
  max-width: 450px;
}
@media (width <= 768px) {
  .q-about_chef .award__img {
    max-width: 100%;
  }
}
.q-about_chef .award__img img {
  width: 100%;
}
.q-about_chef .award__content {
  max-width: 630px;
}
.q-about_chef .award__title {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-style: var(--typography-std_jp_bold-font-style);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  margin-block-end: var(--space-block-xs);
  padding-block: 9px;
  padding-inline-start: 16px;
  border-left: 1px solid var(--color-outline);
}
.q-about_chef .award__table {
  display: block;
}
.q-about_chef .award__table tr {
  font-family: var(--typography-std_jp_regular-font-family);
  font-weight: var(--typography-std_jp_regular-font-weight);
  font-style: var(--typography-std_jp_regular-font-style);
  font-size: var(--typography-std_jp_regular-font-size);
  line-height: var(--typography-std_jp_regular-line-height);
  --letter-spacing: var(--typography-std_jp_regular-letter-spacing);
}
.q-about_chef .award__table th {
  padding-inline-end: 15px;
}

.q-about_vision {
  position: relative;
  z-index: 0;
}
.q-about_vision::before {
  content: "";
  width: 100%;
  height: calc(100% - 40px);
  background-color: var(--color-ash);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.q-about_vision .vision__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 520px;
  padding-block: 100px 40px;
  gap: 80px;
}
@media (width <= 900px) {
  .q-about_vision .vision__content {
    gap: 40px;
    grid-template-columns: 1fr 490px;
  }
}
@media (width <= 768px) {
  .q-about_vision .vision__content {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 60px 40px;
  }
}
@media (width <= 500px) {
  .q-about_vision .vision__content {
    display: flex;
    flex-flow: column-reverse;
    padding-block: 40px 260px;
  }
}
@media (width <= 400px) {
  .q-about_vision .vision__content {
    padding-block: 40px 190px;
  }
}
.q-about_vision .vision__img-group {
  position: relative;
}
.q-about_vision .vision__img {
  position: absolute;
}
.q-about_vision .vision__img:nth-child(1) {
  top: -60px;
  left: 0;
}
@media (width <= 900px) {
  .q-about_vision .vision__img:nth-child(1) {
    width: 65%;
    top: -20px;
  }
}
@media (width <= 800px) {
  .q-about_vision .vision__img:nth-child(1) {
    width: 83%;
  }
}
@media (width <= 768px) {
  .q-about_vision .vision__img:nth-child(1) {
    left: auto;
    top: auto;
    right: 32%;
    bottom: -75px;
    width: 24%;
  }
}
@media (width <= 700px) {
  .q-about_vision .vision__img:nth-child(1) {
    bottom: -65px;
  }
}
@media (width <= 600px) {
  .q-about_vision .vision__img:nth-child(1) {
    bottom: -45px;
  }
}
@media (width <= 500px) {
  .q-about_vision .vision__img:nth-child(1) {
    right: 10%;
    bottom: -180px;
    width: 33%;
  }
}
@media (width <= 400px) {
  .q-about_vision .vision__img:nth-child(1) {
    bottom: -120px;
  }
}
.q-about_vision .vision__img:nth-child(2) {
  top: 190px;
  right: 0;
}
@media (width <= 900px) {
  .q-about_vision .vision__img:nth-child(2) {
    width: 95%;
  }
}
@media (width <= 800px) {
  .q-about_vision .vision__img:nth-child(2) {
    top: 170px;
  }
}
@media (width <= 768px) {
  .q-about_vision .vision__img:nth-child(2) {
    width: 28%;
    top: auto;
    right: 0;
    bottom: -160px;
  }
}
@media (width <= 700px) {
  .q-about_vision .vision__img:nth-child(2) {
    right: 0;
    bottom: -140px;
  }
}
@media (width <= 600px) {
  .q-about_vision .vision__img:nth-child(2) {
    right: 0;
    bottom: -110px;
  }
}
@media (width <= 500px) {
  .q-about_vision .vision__img:nth-child(2) {
    width: 52%;
    left: 0;
    right: auto;
    bottom: -280px;
  }
}
@media (width <= 400px) {
  .q-about_vision .vision__img:nth-child(2) {
    bottom: -220px;
  }
}
.q-about_vision .vision__img img {
  width: 100%;
}
.q-about_vision .vision__top-img {
  margin-left: calc(50% - 50vw);
  position: relative;
  z-index: 2;
}
.q-about_vision .vision__top-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.q-about_vision .vision__bottom-img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}

.q-abput_linkbnrs .about-link {
  max-width: 550px;
  width: 100%;
  padding: 112px 30px 111px 40px;
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  margin: 0 auto;
}
@media (width <= 400px) {
  .q-abput_linkbnrs .about-link {
    padding: 60px 10px 60px 20px;
  }
}
.q-abput_linkbnrs .about-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-base);
  opacity: 0.5;
  top: 0;
  left: 0;
  z-index: 2;
  transition: var(--sec);
}
.q-abput_linkbnrs .about-link__wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
@media (width <= 768px) {
  .q-abput_linkbnrs .about-link__wrapper {
    grid-template-columns: 1fr;
  }
}
.q-abput_linkbnrs .about-link__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.q-abput_linkbnrs .about-link__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--sec);
}
.q-abput_linkbnrs .about-link__content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.q-abput_linkbnrs .about-link__content .c-title-kasou {
  margin-block-end: 0;
  color: var(--color-light);
}
.q-abput_linkbnrs .about-link__content .c-title-kasou__h2-en {
  color: var(--color-light);
}
@media (width <= 400px) {
  .q-abput_linkbnrs .about-link__arr {
    width: 30px;
    height: auto;
  }
}
@media (width > 768px) {
  .q-abput_linkbnrs .about-link:hover::before {
    opacity: 0;
  }
  .q-abput_linkbnrs .about-link:hover .about-link__bg img {
    transform: scale(1.1);
  }
}

.c-bread__list {
  word-break: break-all;
}
.c-bread__list > li {
  display: inline;
  font-family: var(--typography-std_jp_xs_bold-font-family);
  font-weight: var(--typography-std_jp_xs_bold-font-weight);
  font-style: var(--typography-std_jp_xs_bold-font-style);
  font-size: var(--typography-std_jp_xs_bold-font-size);
  line-height: var(--typography-std_jp_xs_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xs_bold-letter-spacing);
}
.c-bread__list > li + li:before {
  content: "―";
  opacity: 0.5;
  font-family: var(--ff-san-serif);
  font-weight: 900;
}

.c-list {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 2px;
  counter-reset: c-list;
}
.c-list > li {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  counter-increment: c-list;
}
.c-list._point > li::before {
  content: "・";
}
.c-list._disc > li::before {
  content: "●";
}
.c-list._square > li::before {
  content: "■";
}
.c-list._decimal > li::before {
  content: counter(c-list) ".";
}
.c-list._decimal-zero > li::before {
  content: counter(c-list, decimal-leading-zero) ".";
}
.c-list._upper-roman > li::before {
  content: counter(c-list, upper-roman) ".";
}
.c-list._lower-roman > li::before {
  content: counter(c-list, lower-roman) ".";
}
.c-list._upper-alpha > li::before {
  content: counter(c-list, upper-alpha) ".";
}
.c-list._lower-alpha > li::before {
  content: counter(c-list, lower-alpha) ".";
}
.c-list._hiragana > li::before {
  content: counter(c-list, hiragana) ".";
}
.c-list._katakana > li::before {
  content: counter(c-list, katakana) ".";
}
.c-list._hiragana-iroha > li::before {
  content: counter(c-list, hiragana-iroha) ".";
}
.c-list._katakana-iroha > li::before {
  content: counter(c-list, katakana-iroha) ".";
}
.c-list._kanji > li::before {
  content: counter(c-list, trad-chinese-informal) ".";
}
.c-list._custom > li::before {
  content: attr(data-list);
}

.c-table {
  width: 100%;
  --c-table-cell-head-width-default: 160px;
  --c-table-cell-paddding-default: calc(var(--space-block-sm) - 2px);
  --c-table-first-cell-padddingStart-default: 0;
  --c-table-last-cell-padddingEnd-default: var(--c-table-cell-paddding);
  --c-table-cell-head-width: var(--c-table-cell-head-width-override, var(--c-table-cell-head-width-default));
  --c-table-cell-paddding: var(--c-table-cell-paddding-override, var(--c-table-cell-paddding-default));
  --c-table-first-cell-padddingStart: var(--c-table-first-cell-padddingStart-override, var(--c-table-first-cell-padddingStart-default));
  --c-table-last-cell-padddingEnd: var(--c-table-last-cell-padddingEnd-override, var(--c-table-last-cell-padddingEnd-default));
}
.c-table__cell {
  border-block-end: 1px solid var(--color-border);
  padding-block: var(--c-table-cell-paddding);
}
.c-table__cell:where(._head) {
  white-space: nowrap;
  width: var(--c-table-cell-head-width);
}
.c-table__row:first-child .c-table__cell {
  padding-block-start: var(--c-table-first-cell-padddingStart);
}
.c-table__row:last-child .c-table__cell {
  padding-block-end: var(--c-table-last-cell-padddingEnd);
}

.c-text {
  --c-text-gap-defalut: 20px;
  --c-text-gap: var(--c-text-gap-override, var(--c-text-gap-defalut));
}
.c-text._section {
  --c-text-gap-defalut: var(--space-block-section);
}
.c-text._section-half {
  --c-text-gap-defalut: var(--space-block-section-half);
}
.c-text._xl {
  --c-text-gap-defalut: var(--space-block-xl);
}
.c-text._xl-half {
  --c-text-gap-defalut: var(--space-block-xl-half);
}
.c-text._lg {
  --c-text-gap-defalut: var(--space-block-lg);
}
.c-text._lg-half {
  --c-text-gap-defalut: var(--space-block-lg-half);
}
.c-text._md {
  --c-text-gap-defalut: var(--space-block-md);
}
.c-text._sm {
  --c-text-gap-defalut: var(--space-block-sm);
}
.c-text._xs {
  --c-text-gap-defalut: var(--space-block-xs);
}
.c-text._xxs {
  --c-text-gap-defalut: var(--space-block-xxs);
}
.c-text._xxxs {
  --c-text-gap-defalut: var(--space-block-xxxs);
}
.c-text._section-trim {
  --c-text-gap-defalut: var(--space-block-section-trim);
}
.c-text._section-half-trim {
  --c-text-gap-defalut: var(--space-block-section-half-trim);
}
.c-text._xl-trim {
  --c-text-gap-defalut: var(--space-block-xl-trim);
}
.c-text._xl-half-trim {
  --c-text-gap-defalut: var(--space-block-xl-half-trim);
}
.c-text._lg-trim {
  --c-text-gap-defalut: var(--space-block-lg-trim);
}
.c-text._lg-half-trim {
  --c-text-gap-defalut: var(--space-block-lg-half-trim);
}
.c-text._md-trim {
  --c-text-gap-defalut: var(--space-block-md-trim);
}
.c-text._sm-trim {
  --c-text-gap-defalut: var(--space-block-sm-trim);
}
.c-text._xs-trim {
  --c-text-gap-defalut: var(--space-block-xs-trim);
}
.c-text._xxs-trim {
  --c-text-gap-defalut: var(--space-block-xxs-trim);
}
.c-text._xxxs-trim {
  --c-text-gap-defalut: var(--space-block-xxxs-trim);
}
.c-text > :where(:not(:last-child)) {
  margin-block-end: var(--c-text-gap);
}
.c-text._center {
  text-align: center;
}

.c-toggle {
  display: grid;
}
.c-toggle__item {
  grid-column: 1/2;
  grid-row: 1/2;
  transition-property: opacity, visibility;
  transition-duration: var(--sec);
}
.c-toggle__item._after {
  visibility: hidden;
  opacity: 0;
}
.c-toggle.is-open .c-toggle__item._before {
  opacity: 0;
  visibility: hidden;
}
.c-toggle.is-open .c-toggle__item._after {
  opacity: 1;
  visibility: visible;
}
.c-toggle._hover:focus-visible .c-toggle__item._before {
  opacity: 0;
  visibility: hidden;
}
.c-toggle._hover:focus-visible .c-toggle__item._after {
  opacity: 1;
  visibility: visible;
}
@media (hover: hover) and (pointer: fine) {
  .c-toggle._hover:hover .c-toggle__item._before {
    opacity: 0;
    visibility: hidden;
  }
  .c-toggle._hover:hover .c-toggle__item._after {
    opacity: 1;
    visibility: visible;
  }
}

.base path {
  fill: var(--color-primary);
  /* 塗りの色 */
}

.mask path {
  fill: none;
  /* 塗りの色 */
  stroke: #ffffff;
  /* 線の色 */
  stroke-width: 4px;
  /* 線幅 */
  stroke-linecap: round;
  /* 線端の形状 */
  stroke-linejoin: round;
  /* 角の形状 */
}

#vivus-assiette-dessert .base path {
  fill: #ffffff;
  /* 塗りの色 */
}
#vivus-assiette-dessert .mask path {
  stroke: #ffffff;
  /* 線の色 */
}

#vivus-luxurious-taste .base path {
  fill: var(--color-primary);
  /* 塗りの色 */
}
#vivus-luxurious-taste .mask path {
  stroke: #ffffff;
  /* 線の色 */
}

.animetion-title-mix {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-block-start: -150px;
}
@media (width <= 768px) {
  .animetion-title-mix {
    margin-block-start: -130px;
  }
}
.animetion-title-mix__white-mask {
  position: absolute;
  bottom: 7px;
  left: 0;
  height: 20px;
  overflow: hidden;
  display: flex;
  align-items: end;
}
@media (width <= 768px) {
  .animetion-title-mix__white-mask {
    bottom: 5px;
  }
}
.animetion-title-mix__white-mask #vivus-luxurious-taste-bottom .base path {
  fill: #ffffff;
  /* 塗りの色 */
}
.animetion-title-mix__white-mask #vivus-luxurious-taste-bottom .mask path {
  stroke: #ffffff;
  /* 線の色 */
}

#vivus-logo .base path {
  fill: #ffffff;
  /* 塗りの色 */
}
#vivus-logo .mask path {
  stroke: #ffffff;
  /* 線の色 */
}

@media (width <= 768px) {
  #vivus-line-up {
    width: 164px;
  }

  #vivus-information {
    width: 210px;
  }

  #vivus-assiette-dessert {
    width: 299px;
  }

  #vivus-store {
    width: 121px;
  }

  #vivus-luxurious-taste {
    width: 325px;
  }

  #vivus-luxurious-taste-bottom {
    width: 325px;
  }
}
[data-tel] a {
  color: inherit;
  text-decoration: underline;
}

html.noscroll {
  overflow: hidden;
}

/*全画面*/
.g-wrapper {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-base);
  overflow: clip;
}

/*ヘッダー*/
.g-header .header-logo {
  position: fixed;
  z-index: 1000;
  background-color: #1C2452;
  padding: 30px 20px 22px 20px;
  top: 0;
  left: 40px;
  z-index: 999;
}
@media (width <= 768px) {
  .g-header .header-logo {
    left: 0;
    padding: 20px 15px 19px 15px;
  }
  .g-header .header-logo img {
    width: 58px;
  }
}
@media (width > 768px) {
  .g-header .pc-header {
    /* オーバーレイ（メガメニュー用） */
    /* メガメニュー本体 */
  }
  .g-header .pc-header .pc_header-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    width: 100%;
    top: 40px;
    right: 40px;
  }
  .g-header .pc-header .pc_header-nav.color-mode {
    background: transparent;
    /* 透明にすることが重要 */
    mix-blend-mode: difference;
    /* 文字の下の背景に応じて自然に反転 */
  }
  .g-header .pc-header .pc_header-nav.trigger-open {
    z-index: 1000;
    mix-blend-mode: normal;
  }
  .g-header .pc-header .pc_header-nav.trigger-open a {
    opacity: 0.5;
  }
  .g-header .pc-header .pc_header-nav.trigger-open .mega-trigger {
    opacity: 1;
  }
  .g-header .pc-header .pc_header-nav ul {
    display: flex;
    list-style: none;
    justify-content: end;
    gap: 20px;
  }
  .g-header .pc-header .pc_header-nav__link, .g-header .pc-header .pc_header-nav a {
    font-family: var(--typography-std_jp_bold-font-family);
    font-weight: var(--typography-std_jp_bold-font-weight);
    font-style: var(--typography-std_jp_bold-font-style);
    font-size: var(--typography-std_jp_bold-font-size);
    line-height: var(--typography-std_jp_bold-line-height);
    --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
    display: block;
    color: var(--color-base);
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    width: fit-content;
  }
  .g-header .pc-header .pc_header-nav .mega-trigger {
    cursor: pointer;
  }
  .g-header .pc-header .mega-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: flex-start;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding-top: 84px;
    padding-inline: 20px;
    opacity: 0;
  }
  .g-header .pc-header .mega-overlay.is-open {
    display: flex;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.1s;
  }
  .g-header .pc-header .mega {
    background: var(--color-bg-base);
    border-radius: 10px;
    padding: 60px 60px 0 60px;
    max-width: 1060px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .g-header .pc-header .mega::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari 用 */
  }
}
@media (width > 768px) and (width <= 1000px) {
  .g-header .pc-header .mega {
    padding: 40px 40px 0 40px;
    max-height: 98%;
  }
}
@media (width > 768px) {
  .g-header .pc-header .mega ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 40px;
  }
}
@media (width > 768px) and (width <= 1000px) {
  .g-header .pc-header .mega ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width > 768px) {
  .g-header .pc-header .mega .mega-menu {
    text-decoration: none;
  }
  .g-header .pc-header .mega .mega-menu__img {
    margin-bottom: 10px;
  }
}
@media (width > 768px) and (width <= 1000px) {
  .g-header .pc-header .mega .mega-menu__img {
    width: 170px;
  }
}
@media (width > 768px) {
  .g-header .pc-header .mega .mega-menu__text {
    font-family: var(--typography-std_jp_large_bold-font-family);
    font-weight: var(--typography-std_jp_large_bold-font-weight);
    font-style: var(--typography-std_jp_large_bold-font-style);
    font-size: var(--typography-std_jp_large_bold-font-size);
    line-height: var(--typography-std_jp_large_bold-line-height);
    --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
    white-space: nowrap;
  }
}
@media (width > 768px) and (width <= 1000px) {
  .g-header .pc-header .mega .mega-menu__text {
    font-size: 14px;
  }
}
@media (width > 768px) {
  .g-header .pc-header .mega .mega-menu__text img {
    margin-block-end: 3px;
    margin-inline-end: 10px;
  }
}
@media (width > 768px) and (width <= 1000px) {
  .g-header .pc-header .mega .mega-menu__text img {
    margin-inline-end: 0;
    width: 15px;
  }
}
@media (width > 768px) {
  .g-header .pc-header .mega .mega-menu__itiran-wrapper {
    margin-block: 40px;
    padding-block-start: 40px;
    border-top: 1px solid var(--color-ash);
  }
}
@media (width > 768px) and (width <= 1000px) {
  .g-header .pc-header .mega .mega-menu__itiran-wrapper {
    margin-block: 20px;
    padding-block-start: 20px;
  }
}
@media (width > 768px) {
  .g-header .pc-header .mega .mega-menu__itiran {
    font-family: var(--typography-std_jp_bold-font-family);
    font-weight: var(--typography-std_jp_bold-font-weight);
    font-style: var(--typography-std_jp_bold-font-style);
    font-size: var(--typography-std_jp_bold-font-size);
    line-height: var(--typography-std_jp_bold-line-height);
    --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    width: fit-content;
    justify-content: center;
    text-decoration: none;
  }
}
.g-header .follow-bner {
  position: fixed;
  top: 280px;
  right: 0;
  z-index: 999;
}
@media (width <= 768px) {
  .g-header .follow-bner {
    display: flex;
    justify-content: center;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
.g-header .follow-bner__sns-wrapper {
  width: 66px;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 15px;
  padding-block: 20px;
  border-radius: 10px 0 0 0;
  background-color: var(--color-bg-base);
}
.g-header .follow-bner__sns {
  display: block;
  width: fit-content;
}
.g-header .follow-bner__online-shop {
  width: 66px;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #1F3B5D;
  border-radius: 0 0 0 10px;
  padding-block: 20px;
  text-decoration: none;
}
@media (width > 768px) {
  .g-header .follow-bner__online-shop {
    flex-flow: column;
  }
}
@media (width <= 768px) {
  .g-header .follow-bner__online-shop {
    width: fit-content;
    height: 44px;
    padding-inline: 12px;
    border-radius: 0;
  }
}
@media (width <= 768px) {
  .g-header .follow-bner__online-shop img {
    width: 14px;
  }
}
.g-header .follow-bner__online-shop-text {
  font-family: var(--ff-san-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.05em;
  color: var(--color-light);
  white-space: nowrap;
}
@media (width > 768px) {
  .g-header .follow-bner__online-shop-text {
    writing-mode: vertical-rl;
  }
}
.g-header .follow-bner__tel {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--color-bg-base);
  border-radius: 10px 0 0 0;
  padding-inline: 12px;
  text-decoration: none;
}
.g-header .follow-bner__tel-text {
  font-family: var(--ff-san-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.05em;
  color: #1F3B5D;
  white-space: nowrap;
}
.g-header .sp-global-menu {
  position: fixed;
  overflow: hidden;
  bottom: 0;
  left: 0;
  transition: 0.5s ease;
  z-index: 998;
  width: 100%;
  visibility: hidden;
}
.g-header .sp-global-menu__inner {
  background-color: var(--color-ash);
  border-radius: 10px;
  padding-block: 40px 84px;
  opacity: 0;
  transition: 0.5s ease;
}
.g-header .sp-global-menu__nav {
  margin-block-end: 20px;
}
.g-header .sp-global-menu__nav li {
  margin-block-end: 20px;
  text-align: center;
}
.g-header .sp-global-menu__nav li a {
  font-family: var(--typography-sp_std_jp_large_bold-font-family);
  font-weight: var(--typography-sp_std_jp_large_bold-font-weight);
  font-style: var(--typography-sp_std_jp_large_bold-font-style);
  font-size: var(--typography-sp_std_jp_large_bold-font-size);
  line-height: var(--typography-sp_std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-sp_std_jp_large_bold-letter-spacing);
  text-decoration: none;
  width: fit-content;
}
.g-header .sp-global-menu__sns {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.g-header .sp-global-menu__sns li a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--color-bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-header .sp-global-menu.active {
  visibility: visible;
}
.g-header .sp-global-menu.active .sp-global-menu__inner {
  opacity: 1;
}
.g-header .sp_hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding-inline: 8px;
  background: var(--color-ash);
  border-radius: 0 10px 0 0;
}
.g-header .sp_hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-outline);
  transition: 0.3s;
}
.g-header .sp_hamburger__text {
  font-size: 0.5rem;
  text-align: center;
}
.g-header .sp_hamburger__text p {
  line-height: 1;
}
.g-header .sp_hamburger__text .close {
  display: none;
}
.g-header .sp_hamburger.active .sp_hamburger__text .menu {
  display: none;
}
.g-header .sp_hamburger.active .sp_hamburger__text .close {
  display: block;
}
.g-header .sp_hamburger.active span:nth-child(1) {
  transform: translateY(3px) rotate(15deg);
}
.g-header .sp_hamburger.active span:nth-child(2) {
  transform: translateY(-3px) rotate(-15deg);
}
.g-header .sp_tel-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}
.g-header .sp_tel-popup .content {
  position: relative;
  max-width: 325px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  background: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  min-width: 220px;
  text-align: center;
}
.g-header .sp_tel-popup .content .tittle {
  font-family: var(--typography-std_en_xl_italic-font-family);
  font-weight: var(--typography-std_en_xl_italic-font-weight);
  font-style: var(--typography-std_en_xl_italic-font-style);
  font-size: var(--typography-std_en_xl_italic-font-size);
  line-height: var(--typography-std_en_xl_italic-line-height);
  --letter-spacing: var(--typography-std_en_xl_italic-letter-spacing);
}
.g-header .sp_tel-popup .content .text {
  font-family: var(--typography-sp_std_jp_bold-font-family);
  font-weight: var(--typography-sp_std_jp_bold-font-weight);
  font-style: var(--typography-sp_std_jp_bold-font-style);
  font-size: var(--typography-sp_std_jp_bold-font-size);
  line-height: var(--typography-sp_std_jp_bold-line-height);
  --letter-spacing: var(--typography-sp_std_jp_bold-letter-spacing);
}
.g-header .sp_tel-popup .number-wrapper {
  width: 100%;
}
.g-header .sp_tel-popup .number-wrapper__group:first-child {
  margin-block-end: 10px;
  padding-block-end: 10px;
  border-bottom: 1px solid var(--color-ash);
}
.g-header .sp_tel-popup .number-wrapper__text {
  font-family: var(--typography-sp_std_jp_bold-font-family);
  font-weight: var(--typography-sp_std_jp_bold-font-weight);
  font-style: var(--typography-sp_std_jp_bold-font-style);
  font-size: var(--typography-sp_std_jp_bold-font-size);
  line-height: var(--typography-sp_std_jp_bold-line-height);
  --letter-spacing: var(--typography-sp_std_jp_bold-letter-spacing);
}
.g-header .sp_tel-popup .number-wrapper__number {
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 24px;
}
.g-header .sp_tel-popup .number-wrapper__number img {
  display: block;
}
.g-header .sp_tel-popup .number-wrapper__number a {
  text-decoration: none;
}
.g-header .sp_tel-popup .tel-sns {
  padding: 20px 16px;
  border: 1px solid var(--color-ash);
  border-radius: 4px;
  min-width: 136px;
  text-decoration: none;
}
.g-header .sp_tel-popup .tel-sns__group {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.g-header .sp_tel-popup .tel-sns__set {
  font-family: var(--typography-sp_std_jp_bold-font-family);
  font-weight: var(--typography-sp_std_jp_bold-font-weight);
  font-style: var(--typography-sp_std_jp_bold-font-style);
  font-size: var(--typography-sp_std_jp_bold-font-size);
  line-height: var(--typography-sp_std_jp_bold-line-height);
  --letter-spacing: var(--typography-sp_std_jp_bold-letter-spacing);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-block-end: 6px;
  white-space: nowrap;
}
.g-header .sp_tel-popup .tel-sns__set img {
  display: block;
}
.g-header .sp_tel-popup .tel-sns__text {
  font-family: var(--typography-sp_std_jp_xs_regular-font-family);
  font-weight: var(--typography-sp_std_jp_xs_regular-font-weight);
  font-style: var(--typography-sp_std_jp_xs_regular-font-style);
  font-size: var(--typography-sp_std_jp_xs_regular-font-size);
  line-height: var(--typography-sp_std_jp_xs_regular-line-height);
  --letter-spacing: var(--typography-sp_std_jp_xs_regular-letter-spacing);
  text-align: center;
  white-space: nowrap;
}
.g-header .sp_tel-popup .close-tel {
  position: absolute;
  top: 10px;
  right: 10px;
}

/*フッター*/
.q-footer-luxurious {
  margin-block-start: 50px;
  position: relative;
  overflow: visible;
}
.q-footer-luxurious .img-bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
.q-footer-luxurious .img-bg__img {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/cmn/luxurious-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 768px) {
  .q-footer-luxurious .img-bg__img {
    background-image: url(../img/cmn/luxurious-bg_sp.jpg);
  }
}
.q-footer-luxurious .content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .q-footer-luxurious .content-wrapper {
    flex-flow: column;
    gap: 40px;
  }
}
@media (width > 768px) {
  .q-footer-luxurious .content-wrapper .p-title {
    min-width: 468px;
  }
}
.q-footer-luxurious .content-wrapper .title-en {
  color: var(--color-light);
}
.q-footer-luxurious .content-wrapper .main-img {
  max-width: 460px;
  width: 100%;
}
@media (width <= 768px) {
  .q-footer-luxurious .content-wrapper .main-img {
    flex-flow: column;
    gap: 40px;
    max-width: 100%;
  }
}
@media (width <= 768px) {
  .q-footer-luxurious .content-wrapper .c-btn {
    margin: 0 auto;
  }
}
@media (width <= 768px) {
  .g-footer {
    position: relative;
    padding-block: 80px;
  }
  .g-footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 291px;
    background-color: #1C2452;
    top: 0;
    left: 0;
    z-index: 0;
  }
}
.g-footer .footer {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 58px;
}
@media (width <= 768px) {
  .g-footer .footer {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.g-footer .footer__logo-wrapper {
  padding-block: 140px;
  display: flex;
  justify-content: end;
  margin-left: calc(50% - 50vw);
  position: relative;
}
@media (width <= 768px) {
  .g-footer .footer__logo-wrapper {
    margin-left: 0;
    margin: 0 auto;
    padding-block: 0 80px;
    width: 134px;
  }
}
.g-footer .footer__logo-wrapper::before {
  content: "";
  position: absolute;
  background-color: #1C2452;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (width <= 768px) {
  .g-footer .footer__logo-wrapper::before {
    display: none;
  }
}
.g-footer .footer__logo {
  width: fit-content;
  position: relative;
  z-index: 3;
  margin-inline-end: 60px;
}
@media (width <= 768px) {
  .g-footer .footer__logo {
    margin: 0;
  }
}
.g-footer .head__wrapper {
  padding-block: 140px 80px;
}
@media (width <= 768px) {
  .g-footer .head__wrapper {
    padding-block: 40px 0;
  }
}
@media (width > 768px) {
  .g-footer .head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
  }
}
@media (width <= 1000px) {
  .g-footer .head {
    flex-flow: column;
    width: auto;
    gap: 80px;
  }
}
.g-footer .head::before {
  position: absolute;
  content: "";
  top: 0;
  left: 54%;
  width: 1px;
  height: 100%;
  background-color: var(--color-ash);
}
@media (width <= 1120px) {
  .g-footer .head::before {
    left: 52%;
  }
}
@media (width <= 1000px) {
  .g-footer .head::before {
    width: 100%;
    height: 1px;
    left: 0;
    top: 52%;
  }
}
@media (width <= 768px) {
  .g-footer .head::before {
    display: none;
  }
}
.g-footer .sns {
  display: flex;
  gap: 15px;
}
@media (width <= 768px) {
  .g-footer .sns {
    justify-content: center;
  }
}
.g-footer .footer-nav {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-style: var(--typography-std_jp_bold-font-style);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
  display: grid;
  grid-template-columns: 160px 170px;
  row-gap: 30px;
}
.g-footer .footer-nav a {
  text-decoration: none;
}
.g-footer ._mb4 {
  margin-block-end: 4px;
}
@media (width <= 768px) {
  .g-footer .footre__logo {
    width: 134px;
    margin: 0 auto;
  }
}
@media (width <= 768px) {
  .g-footer .info {
    text-align: center;
  }
}
.g-footer .foot {
  margin-block-start: 100px;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}
@media (width <= 768px) {
  .g-footer .foot {
    margin-block-start: 40px;
    justify-content: center;
  }
}
@media (width <= 768px) {
  .g-footer .foot .pagetop_btn img {
    width: 48px;
  }
}

/*メイン*/
.g-main {
  display: block;
  flex-grow: 1;
}
.g-main:after {
  content: " ";
  display: block;
  clear: both;
}

.q-assiette-dessert_special .head {
  display: grid;
  grid-template-columns: 1fr 535px;
}
@media (width <= 768px) {
  .q-assiette-dessert_special .head {
    grid-template-columns: 1fr;
  }
}
.q-assiette-dessert_special .head__img {
  position: relative;
  z-index: 2;
}
@media (width <= 768px) {
  .q-assiette-dessert_special .head__img {
    display: block;
    width: 100%;
    height: 30px;
  }
}
.q-assiette-dessert_special .head__img img {
  position: absolute;
  left: -140px;
  top: -80px;
  min-width: 624px;
  height: auto;
  display: block;
}
@media (width <= 1120px) {
  .q-assiette-dessert_special .head__img img {
    left: auto;
    right: 40px;
  }
}
@media (width <= 900px) {
  .q-assiette-dessert_special .head__img img {
    right: 20px;
    min-width: 500px;
  }
}
@media (width <= 768px) {
  .q-assiette-dessert_special .head__img img {
    min-width: 0;
    top: -40px;
    right: -25px;
    width: 280px;
    left: auto;
  }
}
@media (width <= 600px) {
  .q-assiette-dessert_special .head__img img {
    width: 287px;
  }
}
@media (width <= 500px) {
  .q-assiette-dessert_special .head__img img {
    width: 60%;
  }
}
.q-assiette-dessert_special .scene {
  position: relative;
}
.q-assiette-dessert_special .scene::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  right: -25px;
  background-color: var(--color-ash);
}
@media (width <= 768px) {
  .q-assiette-dessert_special .scene::before {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: -10px;
    right: 0;
  }
}
.q-assiette-dessert_special .scene:last-child::before {
  display: none;
}
.q-assiette-dessert_special .scene__group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
@media (width <= 768px) {
  .q-assiette-dessert_special .scene__group {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.q-assiette-dessert_special .scene__head {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-block-end: 10px;
}
@media (width <= 900px) {
  .q-assiette-dessert_special .scene__head {
    gap: 10px;
  }
}
@media (width <= 600px) {
  .q-assiette-dessert_special .scene__head {
    margin-block-end: 5px;
  }
}
.q-assiette-dessert_special .scene__title {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
}
.q-assiette-dessert_special .scene__text {
  font-family: var(--typography-std_jp02_small_regula-font-family);
  font-weight: var(--typography-std_jp02_small_regula-font-weight);
  font-style: var(--typography-std_jp02_small_regula-font-style);
  font-size: var(--typography-std_jp02_small_regula-font-size);
  line-height: var(--typography-std_jp02_small_regula-line-height);
  --letter-spacing: var(--typography-std_jp02_small_regula-letter-spacing);
}
.q-assiette-dessert_special .scene__icon {
  min-width: 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-outline);
}
@media (width <= 900px) {
  .q-assiette-dessert_special .scene__icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
  }
}
.q-assiette-dessert_special .scene__icon img {
  width: 36px;
}
@media (width <= 900px) {
  .q-assiette-dessert_special .scene__icon img {
    width: 30px;
  }
}
@media (width <= 768px) {
  .q-assiette-dessert_special .scene__icon img {
    width: 36px;
  }
}

.q-assiette-dessert_course {
  background-color: var(--color-ash);
  position: relative;
}
.q-assiette-dessert_course::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 336px;
  bottom: -336px;
  left: 0;
  background-color: var(--color-ash);
}
@media (width <= 768px) {
  .q-assiette-dessert_course::after {
    height: 190px;
    bottom: -190px;
  }
}
.q-assiette-dessert_course .course__top-img {
  margin-block-end: var(--space-block-sm);
  margin-left: calc(50% - 50vw);
  transform: translateY(-40px);
}
.q-assiette-dessert_course .course__top-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.q-assiette-dessert_course .course-content {
  max-width: 444px;
}
@media (width <= 768px) {
  .q-assiette-dessert_course .course-content {
    max-width: 100%;
  }
}
.q-assiette-dessert_course .course-content__wrapper {
  display: flex;
  gap: 60px;
  margin-block-end: var(--space-block-md);
}
@media (width <= 1000px) {
  .q-assiette-dessert_course .course-content__wrapper {
    gap: 20px;
  }
}
@media (width <= 768px) {
  .q-assiette-dessert_course .course-content__wrapper {
    flex-flow: column;
  }
}
.q-assiette-dessert_course .course-content__img img {
  width: 100%;
}
.q-assiette-dessert_course .course-content__head {
  padding-block-end: var(--space-block-xs);
  margin-block-end: var(--space-block-xs);
  border-bottom: 1px solid var(--color-outline);
}
.q-assiette-dessert_course .course-content__list-title {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
}
.q-assiette-dessert_course .course-content__category {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.q-assiette-dessert_course .course-content__category li {
  font-family: var(--typography-std_jp02_small_regula-font-family);
  font-weight: var(--typography-std_jp02_small_regula-font-weight);
  font-style: var(--typography-std_jp02_small_regula-font-style);
  font-size: var(--typography-std_jp02_small_regula-font-size);
  line-height: var(--typography-std_jp02_small_regula-line-height);
  --letter-spacing: var(--typography-std_jp02_small_regula-letter-spacing);
  white-space: nowrap;
  padding: 5px 10px;
  border: 1px solid var(--color-outline);
}
.q-assiette-dessert_course .course-comment {
  max-width: 508px;
}
@media (width <= 768px) {
  .q-assiette-dessert_course .course-comment {
    max-width: 100%;
  }
}
.q-assiette-dessert_course .course-comment__wrapper {
  display: flex;
  gap: 60px;
  justify-content: center;
  padding-block: var(--space-block-sm);
  padding-inline-start: 20px;
  background-color: var(--color-bg-base);
}
@media (width <= 1120px) {
  .q-assiette-dessert_course .course-comment__wrapper {
    gap: 40px;
  }
}
@media (width <= 900px) {
  .q-assiette-dessert_course .course-comment__wrapper {
    gap: 20px;
  }
}
@media (width <= 768px) {
  .q-assiette-dessert_course .course-comment__wrapper {
    flex-flow: column;
    gap: 0;
    padding: 20px 20px 0 20px;
  }
}
.q-assiette-dessert_course .course-comment__title {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
}
.q-assiette-dessert_course .course-comment__text {
  font-family: var(--typography-std_jp02_small_regula-font-family);
  font-weight: var(--typography-std_jp02_small_regula-font-weight);
  font-style: var(--typography-std_jp02_small_regula-font-style);
  font-size: var(--typography-std_jp02_small_regula-font-size);
  line-height: var(--typography-std_jp02_small_regula-line-height);
  --letter-spacing: var(--typography-std_jp02_small_regula-letter-spacing);
}
.q-assiette-dessert_course .course-comment__img {
  display: block;
  max-width: 408px;
  width: 100%;
  height: auto;
  position: relative;
  min-width: 300px;
}
@media (width <= 768px) {
  .q-assiette-dessert_course .course-comment__img {
    max-width: 100%;
    min-width: 0;
  }
}
.q-assiette-dessert_course .course-comment__img img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 3;
  width: 100%;
}
@media (width <= 1120px) {
  .q-assiette-dessert_course .course-comment__img img {
    width: 95%;
  }
}
@media (width <= 768px) {
  .q-assiette-dessert_course .course-comment__img img {
    position: relative;
    width: 100%;
    transform: translateX(30px) translateY(10px);
  }
}

.q-assiette-dessert_slide .loop-slide {
  overflow: hidden;
  width: 100%;
}
.q-assiette-dessert_slide .loop-slide__track {
  display: flex;
  animation: assiette-dessert-loop 80s linear infinite;
}
@media (width <= 768px) {
  .q-assiette-dessert_slide .loop-slide__track {
    animation: assiette-dessert-loop 100s linear infinite;
  }
}
.q-assiette-dessert_slide .loop-slide__img {
  flex-shrink: 0;
  width: 2200px;
}
@media (width <= 768px) {
  .q-assiette-dessert_slide .loop-slide__img {
    width: 1233px;
  }
}
.q-assiette-dessert_slide .loop-slide__img img {
  width: 100%;
  display: block;
}
@keyframes assiette-dessert-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-2210px);
    @media (width <= 768px) {
      .q-assiette-dessert_slide {
        transform: translateX(-1233px);
      }
    }
  }
}

.q-assiette-dessert_flow .flow-wrapper {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 128px;
}
@media (width <= 1000px) {
  .q-assiette-dessert_flow .flow-wrapper {
    gap: 40px;
  }
}
@media (width <= 768px) {
  .q-assiette-dessert_flow .flow-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.q-assiette-dessert_flow .flow {
  position: relative;
}
.q-assiette-dessert_flow .flow::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 30px;
  width: 1px;
  height: 90%;
  background-color: var(--color-outline);
  z-index: 1;
}
.q-assiette-dessert_flow .flow__cotent-wrapper {
  display: flex;
  gap: 10px;
  margin-block-end: var(--space-block-sm);
  position: relative;
  z-index: 2;
}
.q-assiette-dessert_flow .flow__cotent-wrapper:last-child {
  margin-block-end: 0;
}
.q-assiette-dessert_flow .flow__cotent {
  padding-block-start: 17px;
}
.q-assiette-dessert_flow .flow__number {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-ash);
  display: flex;
  align-items: center;
  justify-content: center;
}
.q-assiette-dessert_flow .flow__title {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
}
.q-assiette-dessert_flow .flow__text {
  font-family: var(--typography-std_jp02_small_regula-font-family);
  font-weight: var(--typography-std_jp02_small_regula-font-weight);
  font-style: var(--typography-std_jp02_small_regula-font-style);
  font-size: var(--typography-std_jp02_small_regula-font-size);
  line-height: var(--typography-std_jp02_small_regula-line-height);
  --letter-spacing: var(--typography-std_jp02_small_regula-letter-spacing);
  max-width: 540px;
}

.q-assiette-dessert_faq .faq-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
}
@media (width <= 1120px) {
  .q-assiette-dessert_faq .faq-wrapper {
    gap: 40px;
  }
}
@media (width <= 900px) {
  .q-assiette-dessert_faq .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.q-assiette-dessert_faq .sg-details {
  padding: var(--space-block-xs) 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.q-assiette-dessert_faq .sg-details:first-child {
  padding-block-start: 0;
}
.q-assiette-dessert_faq .sg-details .sg-summary {
  position: relative;
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
  padding-inline-end: var(--space-block-sm);
}
.q-assiette-dessert_faq .sg-details .sg-summary::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-outline);
}
@media (width <= 768px) {
  .q-assiette-dessert_faq .sg-details .sg-summary::before {
    width: 12px;
    right: 0;
  }
}
.q-assiette-dessert_faq .sg-details .sg-summary::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-outline);
  transition: 0.5s;
  opacity: 1;
}
@media (width <= 768px) {
  .q-assiette-dessert_faq .sg-details .sg-summary::after {
    height: 12px;
    right: 6px;
  }
}
.q-assiette-dessert_faq .sg-details .sg-phrase {
  font-family: var(--typography-std_jp02_small_regula-font-family);
  font-weight: var(--typography-std_jp02_small_regula-font-weight);
  font-style: var(--typography-std_jp02_small_regula-font-style);
  font-size: var(--typography-std_jp02_small_regula-font-size);
  line-height: var(--typography-std_jp02_small_regula-line-height);
  --letter-spacing: var(--typography-std_jp02_small_regula-letter-spacing);
  padding-block-start: var(--space-block-xs);
}
.q-assiette-dessert_faq .sg-details.is-open .sg-summary::after {
  transition: 0.5s;
  opacity: 0;
}

.q-assiette-dessert_reservation {
  background-color: var(--color-primary);
}
.q-assiette-dessert_reservation .reservation-wrapper {
  display: grid;
  grid-template-columns: 608px 1fr;
  gap: 40px;
}
@media (width <= 1120px) {
  .q-assiette-dessert_reservation .reservation-wrapper {
    grid-template-columns: 470px 1fr;
  }
}
@media (width <= 768px) {
  .q-assiette-dessert_reservation .reservation-wrapper {
    grid-template-columns: 1fr;
  }
}
.q-assiette-dessert_reservation .reservation-img {
  position: relative;
}
.q-assiette-dessert_reservation .reservation-img img {
  position: absolute;
  width: 100%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.q-assiette-dessert_reservation .reservation__group {
  display: grid;
  grid-template-columns: 131px 1fr;
  gap: 76px;
  color: var(--color-light);
}
@media (width <= 1120px) {
  .q-assiette-dessert_reservation .reservation__group {
    gap: 20px;
  }
}
@media (width <= 500px) {
  .q-assiette-dessert_reservation .reservation__group {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.q-assiette-dessert_reservation .reservation__group:first-child {
  margin-block-end: var(--space-block-xs);
  padding-block-end: var(--space-block-xs);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.q-assiette-dessert_reservation .reservation__group._center {
  align-items: center;
}
.q-assiette-dessert_reservation .reservation__title {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
  white-space: nowrap;
}
.q-assiette-dessert_reservation .reservation__tel-number {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-style: var(--typography-std_jp_xxl_bold-font-style);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
  line-height: 1;
}
.q-assiette-dessert_reservation .reservation__datail {
  font-family: var(--typography-std_jp02_small_regula-font-family);
  font-weight: var(--typography-std_jp02_small_regula-font-weight);
  font-style: var(--typography-std_jp02_small_regula-font-style);
  font-size: var(--typography-std_jp02_small_regula-font-size);
  line-height: var(--typography-std_jp02_small_regula-line-height);
  --letter-spacing: var(--typography-std_jp02_small_regula-letter-spacing);
  white-space: nowrap;
}

.q-contact-complet .c-title-kasou {
  text-align: center;
  white-space: nowrap;
}
@media (width <= 768px) {
  .q-contact-complet .contact-complet__text {
    text-align: start;
  }
}
@media (width > 768px) {
  .q-contact-complet .contact-complet__text a {
    text-decoration: none;
    pointer-events: none;
  }
}

.q-contact_top .intro {
  max-width: 721px;
  margin: 0 auto;
  width: 100%;
}
@media (width <= 768px) {
  .q-contact_top .intro p {
    text-align: start;
  }
}
.q-contact_top .intro__border {
  padding-block: var(--space-block-xs);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.q-contact_top .intro__link {
  position: relative;
  text-decoration: underline;
  margin-inline-end: 20px;
}
@media (width <= 768px) {
  .q-contact_top .intro__link {
    margin-inline-end: 0;
  }
}
.q-contact_top .intro__link::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-image: url(../img/cmn/c-icon_arr.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  right: -16px;
  transform: translateY(-45%) rotate(90deg);
}
.q-contact_top .tel__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (width <= 768px) {
  .q-contact_top .tel__wrapper {
    gap: 10px;
    grid-template-columns: 1fr;
  }
}
.q-contact_top .tel__content {
  text-align: center;
  padding-block: var(--space-block-xs);
  background-color: var(--color-ash);
}
.q-contact_top .tel__number {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-style: var(--typography-std_jp_xxl_bold-font-style);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (width <= 768px) {
  .q-contact_top .tel__number {
    flex-flow: column;
    gap: 0;
  }
}
.q-contact_top .tel__number a {
  text-decoration: none;
}
@media (width > 768px) {
  .q-contact_top .tel__number a {
    pointer-events: none;
  }
}
.q-contact_top .tel__store {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
}
.q-contact_top .tel__info {
  font-family: var(--typography-std_jp02_small_regula-font-family);
  font-weight: var(--typography-std_jp02_small_regula-font-weight);
  font-style: var(--typography-std_jp02_small_regula-font-style);
  font-size: var(--typography-std_jp02_small_regula-font-size);
  line-height: var(--typography-std_jp02_small_regula-line-height);
  --letter-spacing: var(--typography-std_jp02_small_regula-letter-spacing);
  white-space: nowrap;
}

.q-contact_form .c-title-kasou {
  text-align: center;
}
.q-contact_form .hissu {
  font-family: var(--typography-std_jp_xs_bold-font-family);
  font-weight: var(--typography-std_jp_xs_bold-font-weight);
  font-style: var(--typography-std_jp_xs_bold-font-style);
  font-size: var(--typography-std_jp_xs_bold-font-size);
  line-height: var(--typography-std_jp_xs_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xs_bold-letter-spacing);
  color: #9D0000;
  background-color: var(--color-light);
  border: 1px solid #9D0000;
  border-radius: 100px;
  padding: 1px 12px;
}
@media (width <= 375px) {
  .q-contact_form .head .c-title-kasou__h2 {
    white-space: nowrap;
  }
}
.q-contact_form .intro .text-red {
  color: #9D0000;
}
.q-contact_form .intro .c-text {
  margin-block-end: 20px;
}
@media (width <= 768px) {
  .q-contact_form .intro .c-text {
    margin-block-end: 0;
    text-align: start;
  }
}
@media (width > 768px) {
  .q-contact_form .intro__list {
    width: fit-content;
    padding: 20px 40px;
    margin: 0 auto;
    border: 1px solid var(--color-ash);
  }
}
.q-contact_form .intro__list li {
  margin-left: 1rem;
  text-indent: -1rem;
}
.q-contact_form .p-form-wrapper {
  background-color: var(--color-ash);
  padding: var(--space-block-md);
  border-radius: 10px;
}
@media (width <= 768px) {
  .q-contact_form .p-form-wrapper {
    padding-inline: 25px;
  }
}
.q-contact_form .p-form {
  display: grid;
  grid-template-columns: 220px 1fr;
  margin-block-end: var(--space-block-sm);
}
@media (width <= 768px) {
  .q-contact_form .p-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.q-contact_form .p-form .hissu {
  margin-inline-end: 10px;
}
@media (width <= 768px) {
  .q-contact_form .p-form .hissu {
    margin-block-end: 6px;
  }
}
.q-contact_form .p-form__title {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-style: var(--typography-std_jp_bold-font-style);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.q-contact_form .p-form__exp {
  font-family: var(--typography-std_jp02_small_regula-font-family);
  font-weight: var(--typography-std_jp02_small_regula-font-weight);
  font-style: var(--typography-std_jp02_small_regula-font-style);
  font-size: var(--typography-std_jp02_small_regula-font-size);
  line-height: var(--typography-std_jp02_small_regula-line-height);
  --letter-spacing: var(--typography-std_jp02_small_regula-letter-spacing);
  opacity: 0.5;
  margin-block-end: 4px;
}
@media (width <= 768px) {
  .q-contact_form .p-form__exp {
    margin-block-end: 3px;
  }
}
.q-contact_form .p-form__input input {
  width: 100%;
  height: 60px;
  border-radius: 6px;
  border: none;
  background-color: var(--color-light);
  padding-inline: 12px;
}
@media (width <= 768px) {
  .q-contact_form .p-form__input input {
    height: 50px;
  }
}
.q-contact_form .p-form__input._s {
  max-width: 400px;
}
.q-contact_form .p-form__input._data {
  max-width: 455px;
}
.q-contact_form .p-form__input._textarea textarea {
  width: 100%;
  min-height: 200px;
  height: 350px;
  border: none;
  border-radius: 6px;
  resize: vertical;
  padding: 12px;
}
@media (width <= 768px) {
  .q-contact_form .p-form__input._textarea textarea {
    min-height: 100px;
    height: 200px;
  }
}
.q-contact_form .p-form__foot .c-btn {
  padding: 19px 60px;
}
.q-contact_form .p-form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
}
.q-contact_form .p-form__privacy input {
  width: 20px;
  height: 20px;
}
.q-contact_form .p-form__privacy span {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-style: var(--typography-std_jp_bold-font-style);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.q-contact_form .p-form__privacy a {
  color: #0000ee;
  text-decoration: underline;
}

.q-information_detail {
  padding-block-start: 143px;
}
.q-information_detail .related-articles {
  display: grid;
  grid-template-columns: 330px 1fr;
}
@media (width <= 900px) {
  .q-information_detail .related-articles {
    grid-template-columns: 280px 1fr;
  }
}
@media (width <= 768px) {
  .q-information_detail .related-articles {
    grid-template-columns: 1fr;
  }
}
.q-information_detail .related-articles__content {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.q-information_detail .related-articles__head {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.q-information_detail .related-articles__wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.q-information .information__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
@media (width <= 900px) {
  .q-information .information__grid {
    grid-template-columns: 1fr;
  }
  .q-information .information__grid a {
    width: fit-content;
  }
}

.q-line-up_detail_top .head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-block-sm);
}
@media (width <= 768px) {
  .q-line-up_detail_top .head {
    flex-flow: column;
  }
}
.q-line-up_detail_top .head__text {
  max-width: 590px;
}
@media (width <= 768px) {
  .q-line-up_detail_top .head__text {
    max-width: 100%;
  }
}
.q-line-up_detail_top .head__catch {
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
  max-width: 460px;
}
@media (width <= 768px) {
  .q-line-up_detail_top .head__catch {
    max-width: 100%;
  }
}
.q-line-up_detail_top .content {
  padding-inline-start: var(--space-block-sm);
}
@media (width <= 768px) {
  .q-line-up_detail_top .content {
    padding-inline-start: 0;
  }
}
.q-line-up_detail_top .content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (width <= 768px) {
  .q-line-up_detail_top .content__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.q-line-up_detail_top .content__img {
  width: 100%;
}
.q-line-up_detail_top .content__img img {
  width: 100%;
}
.q-line-up_detail_top .content__title {
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
}
.q-line-up_detail_top .content__link {
  text-decoration: underline;
  display: inline-block;
  color: var(--color-primary);
  padding-inline-end: 22px;
  position: relative;
}
.q-line-up_detail_top .content__link::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 8px;
  right: 4px;
  background-image: url(../img/cmn/icon_link.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.q-line-up_detail_recommend .content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (width <= 768px) {
  .q-line-up_detail_recommend .content__grid {
    grid-template-columns: 1fr;
  }
}
.q-line-up_detail_recommend .content__title {
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
}

.q-line-up_detail_menu .content__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 26px;
}
@media (width <= 1120px) {
  .q-line-up_detail_menu .content__grid {
    gap: 40px 10px;
  }
}
@media (width <= 768px) {
  .q-line-up_detail_menu .content__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 9px;
  }
}
@media (width <= 500px) {
  .q-line-up_detail_menu .content__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.q-line-up_detail_menu .content__img {
  width: 100%;
}
.q-line-up_detail_menu .content__title {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
}
.q-line-up_detail_menu .content__list li {
  font-family: var(--typography-std_jp02_small_regula-font-family);
  font-weight: var(--typography-std_jp02_small_regula-font-weight);
  font-style: var(--typography-std_jp02_small_regula-font-style);
  font-size: var(--typography-std_jp02_small_regula-font-size);
  line-height: var(--typography-std_jp02_small_regula-line-height);
  --letter-spacing: var(--typography-std_jp02_small_regula-letter-spacing);
}
@media (width > 900px) {
  .q-line-up_detail_menu .content__list br {
    display: none;
  }
}
@media (width <= 900px) {
  .q-line-up_detail_menu .content__list br {
    display: block;
  }
}

.q-line-up_detail_other-item .content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px 14px;
}
@media (width <= 768px) {
  .q-line-up_detail_other-item .content__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (width <= 500px) {
  .q-line-up_detail_other-item .content__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.q-line-up_detail_other-item .content__img {
  width: 100%;
}
.q-line-up_detail_other-item .content__img img {
  width: 100%;
}
.q-line-up_detail_other-item .content__title {
  font-family: var(--typography-std_jp_bold-font-family);
  font-weight: var(--typography-std_jp_bold-font-weight);
  font-style: var(--typography-std_jp_bold-font-style);
  font-size: var(--typography-std_jp_bold-font-size);
  line-height: var(--typography-std_jp_bold-line-height);
  --letter-spacing: var(--typography-std_jp_bold-letter-spacing);
}
.q-line-up_detail_other-item .content__title img {
  margin-block-end: 3px;
}
@media (width <= 768px) {
  .q-line-up_detail_other-item .content__title img {
    margin-block-end: 1px;
  }
}

.q-line-up .line-up__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
}
@media (width <= 768px) {
  .q-line-up .line-up__grid {
    grid-template-columns: 1fr;
  }
}
.q-line-up .line-up__title {
  display: flex;
  align-items: center;
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
  gap: 10px;
}
.q-line-up .line-up__title img {
  transform: translateY(3px);
}
.q-line-up .c-hover_zoom-boder__zoom {
  width: fit-content;
}
@media (width <= 768px) {
  .q-line-up .c-hover_zoom-boder__zoom {
    width: 100%;
  }
  .q-line-up .c-hover_zoom-boder__zoom img {
    width: 100%;
  }
}

.q-privacy .privacy__content {
  margin-block-end: 20px;
}
.q-privacy .privacy__content:last-child {
  margin-block-end: 0;
}
.q-privacy .privacy__title {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
  margin-block-end: 10px;
}
.q-privacy .privacy__text {
  font-family: var(--typography-std_jp_regular-font-family);
  font-weight: var(--typography-std_jp_regular-font-weight);
  font-style: var(--typography-std_jp_regular-font-style);
  font-size: var(--typography-std_jp_regular-font-size);
  line-height: var(--typography-std_jp_regular-line-height);
  --letter-spacing: var(--typography-std_jp_regular-letter-spacing);
}

@media (width <= 1000px) {
  .q-store_thoughts .u-lg2 {
    display: block;
  }
}
@media (width > 1000px) {
  .q-store_thoughts .u-lg2 {
    display: none;
  }
}
@media (width <= 1000px) {
  .q-store_thoughts .c-text-layout_1 .group._title500 {
    grid-template-columns: 290px auto;
    gap: 10px;
  }
}
@media (width <= 768px) {
  .q-store_thoughts .c-text-layout_1 .group._title500 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.q-store_thoughts .thoughts-img {
  margin-inline-end: calc(50% - 50vw);
  position: relative;
  z-index: 2;
}
.q-store_thoughts .thoughts-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.q-store .content {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 30px;
}
@media (width <= 1120px) {
  .q-store .content {
    grid-template-columns: 420px 1fr;
    gap: 20px;
  }
}
@media (width <= 768px) {
  .q-store .content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.q-store .content__wrapper {
  margin-block-end: 160px;
}
.q-store .content__wrapper:last-child {
  margin-block-end: 0;
}
.q-store .content__profile-titel {
  font-family: var(--typography-std_en_small_italic-font-family);
  font-weight: var(--typography-std_en_small_italic-font-weight);
  font-style: var(--typography-std_en_small_italic-font-style);
  font-size: var(--typography-std_en_small_italic-font-size);
  line-height: var(--typography-std_en_small_italic-line-height);
  --letter-spacing: var(--typography-std_en_small_italic-letter-spacing);
  padding-inline-start: 14px;
  margin-block-end: var(--space-block-xxs);
  color: var(--color-primary);
  position: relative;
}
.q-store .content__profile-titel::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.q-store .content__table tr {
  font-family: var(--typography-std_jp_regular-font-family);
  font-weight: var(--typography-std_jp_regular-font-weight);
  font-style: var(--typography-std_jp_regular-font-style);
  font-size: var(--typography-std_jp_regular-font-size);
  line-height: var(--typography-std_jp_regular-line-height);
  --letter-spacing: var(--typography-std_jp_regular-letter-spacing);
}
@media (width <= 768px) {
  .q-store .content__table tr {
    white-space: nowrap;
  }
}
.q-store .content__table th {
  padding-inline-end: 20px;
  color: var(--color-primary);
}
@media (width <= 768px) {
  .q-store .content__table th {
    padding-inline-end: 10px;
  }
}
.q-store .content__tel {
  text-decoration: none;
}
@media (width > 768px) {
  .q-store .content__tel {
    pointer-events: none;
  }
}
.q-store .content__map iframe {
  width: 100%;
  height: 248px;
}
.q-store .gallery {
  display: grid;
  grid-template-columns: 1fr 178px;
  gap: 12px;
  min-height: 620px;
}
@media (width <= 768px) {
  .q-store .gallery {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
  }
}
.q-store .gallery__main {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (width <= 768px) {
  .q-store .gallery__main {
    aspect-ratio: 325/218;
  }
}
.q-store .gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.q-store .gallery__thumbs {
  display: flex;
  flex-flow: column;
  gap: 8px;
  justify-content: space-between;
}
@media (width <= 768px) {
  .q-store .gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }
}
.q-store .gallery .thumb {
  position: relative;
}
@media (width <= 768px) {
  .q-store .gallery .thumb {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 108/70;
  }
  .q-store .gallery .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.q-store .gallery .thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color-base);
  opacity: 0.5;
  pointer-events: none;
}
.q-store .gallery .thumb.active {
  position: relative;
}
.q-store .gallery .thumb.active::before {
  opacity: 0 !important;
}

.q-top-mv .top-mv {
  height: 100vh;
  position: relative;
  padding: 20px;
}
@media (width <= 768px) {
  .q-top-mv .top-mv {
    padding: 5px;
  }
}
.q-top-mv .top-mv .mv {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (width <= 768px) {
  .q-top-mv .top-mv .mv {
    height: 83%;
  }
}
.q-top-mv .top-mv__catch-group {
  width: 100%;
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-light);
  text-align: center;
}
@media (width <= 768px) {
  .q-top-mv .top-mv__catch-group {
    bottom: 35%;
  }
}
.q-top-mv .top-mv__catch-group .en {
  font-family: var(--typography-dsp_en_xxl-font-family);
  font-weight: var(--typography-dsp_en_xxl-font-weight);
  font-style: var(--typography-dsp_en_xxl-font-style);
  font-size: var(--typography-dsp_en_xxl-font-size);
  line-height: var(--typography-dsp_en_xxl-line-height);
  --letter-spacing: var(--typography-dsp_en_xxl-letter-spacing);
}
@media (width <= 768px) {
  .q-top-mv .top-mv__catch-group .en {
    font-size: 34px;
  }
}
.q-top-mv .top-mv__catch-group .jp {
  font-family: var(--typography-std_jp_xxl_bold-font-family);
  font-weight: var(--typography-std_jp_xxl_bold-font-weight);
  font-style: var(--typography-std_jp_xxl_bold-font-style);
  font-size: var(--typography-std_jp_xxl_bold-font-size);
  line-height: var(--typography-std_jp_xxl_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xxl_bold-letter-spacing);
  margin-block-end: var(--space-block-xxs);
}
@media (width <= 768px) {
  .q-top-mv .top-mv__catch-group .jp {
    font-size: 26px;
    margin-block-end: 3px;
  }
}
.q-top-mv .top-mv__catch-group .jp-s {
  font-family: var(--typography-std_jp_large_bold-font-family);
  font-weight: var(--typography-std_jp_large_bold-font-weight);
  font-style: var(--typography-std_jp_large_bold-font-style);
  font-size: var(--typography-std_jp_large_bold-font-size);
  line-height: var(--typography-std_jp_large_bold-line-height);
  --letter-spacing: var(--typography-std_jp_large_bold-letter-spacing);
}
@media (width <= 768px) {
  .q-top-mv .top-mv__catch-group .jp-s {
    font-size: 12px;
  }
}
.q-top-mv .top-mv__news-img {
  width: 100px;
}
@media (width <= 600px) {
  .q-top-mv .top-mv__news-img {
    width: 90px;
    min-width: 90px;
  }
}
.q-top-mv .top-mv__news {
  padding: 20px 20px 20px 40px;
  background-color: var(--color-ash);
  display: flex;
  gap: 18px;
  align-items: center;
  position: absolute;
  bottom: 19px;
  left: 0;
}
@media (width <= 768px) {
  .q-top-mv .top-mv__news {
    bottom: 4px;
  }
}
@media (width <= 600px) {
  .q-top-mv .top-mv__news {
    width: 100%;
    bottom: -1px;
    padding: 10px 25px 64px 25px;
    gap: 10px;
  }
}
.q-top-mv .top-mv__news .info .data {
  font-family: var(--typography-std_jp_xs_bold-font-family);
  font-weight: var(--typography-std_jp_xs_bold-font-weight);
  font-style: var(--typography-std_jp_xs_bold-font-style);
  font-size: var(--typography-std_jp_xs_bold-font-size);
  line-height: var(--typography-std_jp_xs_bold-line-height);
  --letter-spacing: var(--typography-std_jp_xs_bold-letter-spacing);
  font-size: 12px;
  margin-block-end: 4px;
}
.q-top-mv .top-mv__news .info .text-arr {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (width <= 600px) {
  .q-top-mv .top-mv__news .info .text-arr {
    gap: 5px;
  }
}
.q-top-mv .top-mv__news .info .text {
  font-family: var(--typography-std_jp_small_bold-font-family);
  font-weight: var(--typography-std_jp_small_bold-font-weight);
  font-style: var(--typography-std_jp_small_bold-font-style);
  font-size: var(--typography-std_jp_small_bold-font-size);
  line-height: var(--typography-std_jp_small_bold-line-height);
  --letter-spacing: var(--typography-std_jp_small_bold-letter-spacing);
  font-size: 14px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 342px;
  width: fit-content;
}
@media (width <= 600px) {
  .q-top-mv .top-mv__news .info .text {
    width: 100%;
  }
}
.q-top-mv .top-mv__news .info .arr {
  display: block;
}
@media (width <= 600px) {
  .q-top-mv .top-mv__news .info .arr {
    min-width: 14px;
    width: 14px;
  }
}

.q-top-story {
  padding-block-start: 134px;
}
@media (width <= 768px) {
  .q-top-story {
    padding-block-start: 80px;
  }
}
@media (width <= 600px) {
  .q-top-story {
    padding-block-start: 34px;
  }
}
.q-top-story .head {
  display: flex;
  gap: 40px;
}
@media (width <= 1000px) {
  .q-top-story .head {
    gap: 20px;
  }
}
@media (width <= 768px) {
  .q-top-story .head {
    gap: 0;
  }
}
.q-top-story .head__img01 {
  margin-block-start: -100px;
  max-width: 220px;
}
@media (width <= 1000px) {
  .q-top-story .head__img01 {
    margin-block-start: -50px;
    max-width: 150px;
  }
}
.q-top-story .head__img01 img {
  width: 100%;
}
.q-top-story .bottom {
  margin-block-start: 40px;
}
.q-top-story .bottom .flex {
  display: flex;
  gap: 54px;
  margin-block-end: 70px;
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .q-top-story .bottom .flex {
    justify-content: space-between;
    gap: 20px;
    margin-block-end: 4%;
  }
}
@media (width <= 375px) {
  .q-top-story .bottom .flex {
    gap: 16px;
    margin-block-end: 20px;
  }
}
.q-top-story .bottom .img03 {
  max-width: 356px;
  width: 100%;
  margin-block-start: 113px;
  position: relative;
}
@media (width <= 768px) {
  .q-top-story .bottom .img03 {
    margin-block-start: 16%;
  }
}
@media (width <= 375px) {
  .q-top-story .bottom .img03 {
    margin-block-start: 33px;
    max-width: 103px;
  }
}
.q-top-story .bottom .img03 img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.q-top-story .bottom .img02 {
  max-width: 700px;
}
@media (width <= 768px) {
  .q-top-story .bottom .img02 {
    max-width: 67%;
  }
}
@media (width <= 375px) {
  .q-top-story .bottom .img02 {
    max-width: 206px;
  }
}
.q-top-story .bottom .img04 {
  margin: 0 auto;
  max-width: 1060px;
}
@media (width <= 768px) {
  .q-top-story .bottom .img04 {
    max-width: 95%;
  }
}
@media (width <= 375px) {
  .q-top-story .bottom .img04 {
    max-width: 307px;
  }
}

.q-top-loopslide .loop-slide {
  overflow: hidden;
  width: 100%;
}
.q-top-loopslide .loop-slide__track {
  display: flex;
  animation: top-loop 80s linear infinite;
}
@media (width <= 768px) {
  .q-top-loopslide .loop-slide__track {
    animation: top-loop 100s linear infinite;
  }
}
.q-top-loopslide .loop-slide__img {
  flex-shrink: 0;
  width: 3330px;
}
@media (width <= 768px) {
  .q-top-loopslide .loop-slide__img {
    width: 1480px;
  }
}
.q-top-loopslide .loop-slide__img img {
  width: 100%;
  display: block;
}
@keyframes top-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-2200px);
    @media (width <= 768px) {
      .q-top-loopslide {
        transform: translateX(-1000px);
      }
    }
  }
}

.q-top-line-up {
  margin-block-start: -64px;
  position: relative;
  z-index: 2;
}
.q-top-line-up .c-h2 {
  margin: 0 auto;
  text-align: center;
}
@media (width <= 768px) {
  .q-top-line-up .c-text._center {
    text-align: start;
  }
}
.q-top-line-up .content-wrapper {
  margin-block-start: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (width <= 768px) {
  .q-top-line-up .content-wrapper {
    grid-template-columns: 1fr;
  }
}
.q-top-line-up .content {
  padding-inline-start: 28px;
  position: relative;
}
@media (width > 768px) {
  .q-top-line-up .content {
    max-width: 528px;
  }
  .q-top-line-up .content:last-child {
    margin: 0 0 0 auto;
  }
}
@media (width <= 768px) {
  .q-top-line-up .content {
    width: 100%;
    padding-inline-start: 27px;
  }
}
.q-top-line-up .content__title {
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
}
.q-top-line-up .content__title-en {
  font-family: var(--typography-std_en_small_italic-font-family);
  font-weight: var(--typography-std_en_small_italic-font-weight);
  font-style: var(--typography-std_en_small_italic-font-style);
  font-size: var(--typography-std_en_small_italic-font-size);
  line-height: var(--typography-std_en_small_italic-line-height);
  --letter-spacing: var(--typography-std_en_small_italic-letter-spacing);
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  transform-origin: top left;
  transform: rotate(90deg) translate(0, -100%);
  top: 50px;
  left: 0;
}
@media (width <= 768px) {
  .q-top-line-up .content__title-en {
    top: 45px;
  }
}
.q-top-line-up .content__title-en::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--color-outline);
}
.q-top-line-up .content__img {
  max-width: 500px;
}
@media (width <= 768px) {
  .q-top-line-up .content__img {
    max-width: 100%;
  }
  .q-top-line-up .content__img img {
    width: 100%;
  }
}
@media (width <= 768px) {
  .q-top-line-up .content .c-btn {
    width: 100%;
    max-width: 400px;
  }
  .q-top-line-up .content .c-btn .text {
    margin: 0 auto;
  }
}

.q-top-news__inner {
  display: grid;
  grid-template-columns: 290px 63%;
  gap: 10px;
  justify-content: space-between;
}
@media (width <= 768px) {
  .q-top-news__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.q-top-news .content-wrapper {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
.q-top-news .content-wrapper .c-news-card {
  width: fit-content;
}

.q-top-assiette-dessert {
  position: relative;
  padding-block-start: 100px;
}
@media (width <= 768px) {
  .q-top-assiette-dessert {
    padding-block-start: 0;
    padding-block-end: 80px;
    background-color: var(--color-ash);
  }
}
.q-top-assiette-dessert__bg {
  content: "";
  width: 100%;
  height: calc(100% - 40px);
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/top/top-assiette-dessert-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (width <= 768px) {
  .q-top-assiette-dessert__bg {
    top: auto;
    bottom: 0;
    background-image: url(../img/top/top-assiette-dessert-bg_sp.jpg);
  }
}
.q-top-assiette-dessert__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (width <= 768px) {
  .q-top-assiette-dessert__inner {
    flex-flow: column;
    gap: 40px;
    justify-content: center;
  }
}
.q-top-assiette-dessert .main-img {
  max-width: 440px;
}
@media (width <= 900px) {
  .q-top-assiette-dessert .main-img {
    display: flex;
    align-items: flex-end;
  }
}
@media (width <= 768px) {
  .q-top-assiette-dessert .main-img {
    max-width: 100%;
  }
  .q-top-assiette-dessert .main-img img {
    width: 100%;
  }
}
@media (width > 768px) {
  .q-top-assiette-dessert .content-wrapper {
    min-width: 445px;
  }
}
.q-top-assiette-dessert .content-wrapper .catch-text, .q-top-assiette-dessert .content-wrapper .c-text {
  color: var(--color-light);
  text-align: center;
}
.q-top-assiette-dessert .content-wrapper .catch-text {
  font-family: var(--typography-std_jp_xl_bold_tight-font-family);
  font-weight: var(--typography-std_jp_xl_bold_tight-font-weight);
  font-style: var(--typography-std_jp_xl_bold_tight-font-style);
  font-size: var(--typography-std_jp_xl_bold_tight-font-size);
  line-height: var(--typography-std_jp_xl_bold_tight-line-height);
  --letter-spacing: var(--typography-std_jp_xl_bold_tight-letter-spacing);
}
.q-top-assiette-dessert .content-wrapper .btn-group {
  display: flex;
  gap: 20px 10px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (width <= 768px) {
  .q-top-assiette-dessert .content-wrapper .c-btn {
    padding: 18px 0;
    width: 243px;
  }
  .q-top-assiette-dessert .content-wrapper .c-btn .text {
    margin: 0 auto;
  }
}

.q-top-store .head {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-end;
}
@media (width <= 768px) {
  .q-top-store .head {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}
.q-top-store .head .c-h2 {
  min-width: 200px;
}
.q-top-store .head__content {
  max-width: 740px;
}
.q-top-store .head .c-btn {
  margin: 0 0 0 auto;
}
@media (width <= 768px) {
  .q-top-store .head .c-btn {
    margin: 0 auto;
  }
}
.q-top-store .main-img {
  margin-right: calc(50% - 50vw);
  height: 580px;
}
@media (width <= 768px) {
  .q-top-store .main-img {
    height: 160px;
  }
}
.q-top-store .main-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* 追加20260515 */
.q-contact_form .p-form__privacy._advance{
  gap: 5px;
}
.q-contact_form .p-form__privacy._advance ._text{
  transform: translateY(-2px);
}
.q-contact_form .p-form__privacy._advance .hissu{
  display: inline-block;
  margin-left: 5px;
  font-family: var(--typography-std_jp_xs_bold-font-family);
  font-weight: var(--typography-std_jp_xs_bold-font-weight);
  font-style: var(--typography-std_jp_xs_bold-font-style);
  font-size: var(--typography-std_jp_xs_bold-font-size);
  line-height: 1.3;
  padding: 2px 12px 1px 12px;
  /* line-height: var(--typography-std_jp_xs_bold-line-height); */
  --letter-spacing: var(--typography-std_jp_xs_bold-letter-spacing);
}
@media (width <= 768px) {
.q-contact_form .p-form__privacy._advance{
  gap: 10px;
}
}