@charset "UTF-8";
/*
|---------------------------------------------------------------
| v2025 gourmet
|---------------------------------------------------------------
*/
:root {
  --gourmet-sp-header-height: 55px;
  --gourmet-pc-header-height: 100px;
}

/* reset */
.pane-contents {
  padding: 0;
}

.block-topic-details {
  margin: 0;
}

@media screen and (min-width: 750.02px) {
  .d-none--pc {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .d-none--sp {
    display: none !important;
  }
}
.is-placeholder {
  pointer-events: none;
}

/*
 * Button
------------------------------------------------*/
.v2025gourmet-btn {
  width: 16.47em;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  line-height: 1.25;
  padding: 0.7em 1.5em;
  font-weight: bold;
  text-align: center;
  border-radius: 1.5em;
  text-decoration: none !important;
  overflow: hidden;
  margin: 0 auto;
  color: #ffffff;
  background: #cc0000;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-btn {
    width: 15.38em;
    font-size: min(26px, 2.17vw);
    line-height: 1.25;
    padding: 0.72em 1.5em;
    letter-spacing: 0.05em;
  }
}
.v2025gourmet-btn[href]::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: currentColor;
  flex-shrink: 0;
  transform: rotate(-45deg) scale(58.82%);
  clip-path: path("M16 16 L16,3 A2,2 0,0,1 20,4 L20 20 L4 20 A2,2 0,0,1 4,16 L4 16 L16 16");
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-btn[href]::after {
    transform: rotate(-45deg) scale(0.9);
    margin-left: 0.25em;
  }
}

/*
 * Header
------------------------------------------------*/
.v2025gourmet-header {
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--gourmet-sp-header-height, 55px);
  padding: 4px 0;
  border-bottom: 2px solid #00214a;
  color: #00214a;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10005;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-header {
    height: var(--gourmet-pc-header-height, 100px);
    border: 0;
  }
}
.v2025gourmet-header .lso_container {
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-header .lso_container {
    max-width: 1260px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.v2025gourmet-header__layout {
  width: 100%;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 120px;
  grid-gap: 30px;
  grid-template-areas: "_ brand menu";
  align-items: center;
}
.v2025gourmet-header__layout__brand {
  grid-area: brand;
}
.v2025gourmet-header__layout__nav {
  grid-area: nav;
}
@media screen and (max-width: 750px) {
  .v2025gourmet-header__layout__nav {
    position: absolute;
  }
}
.v2025gourmet-header__layout__menu {
  grid-area: menu;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-header__layout {
    grid-template-areas: "brand nav menu";
    grid-template-columns: 90px minmax(0, 1fr) 50px;
    grid-gap: 40px;
    grid-gap: clamp(20px, 2.67vw, 40px);
  }
}

body {
  padding-top: var(--gourmet-sp-header-height, 55px);
}
@media screen and (min-width: 750.02px) {
  body {
    padding-top: var(--gourmet-pc-header-height, 100px);
  }
}

/*--------------- ブランドロゴ ---------------*/
.v2025gourmet-headerBrand {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.v2025gourmet-headerBrand__link {
  display: block;
  width: auto;
  max-width: 51px;
  flex: 0 0 auto;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-headerBrand__link {
    max-width: 80px;
  }
}
.v2025gourmet-headerBrand__link img {
  display: block;
  width: 100%;
  height: auto;
}

/*--------------- Nav ---------------*/
.v2025gourmet-headerNav {
  display: block;
  width: 100%;
  overflow: hidden;
}
.v2025gourmet-headerNav__content {
  display: block;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .v2025gourmet-headerNav {
    position: fixed;
    top: var(--gourmet-sp-header-height, 55px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10010;
    color: #ffffff;
    background: rgba(32, 11, 0, 0.7);
  }
  .v2025gourmet-headerNav__content {
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
.v2025gourmet-headerNav__list {
  list-style: none;
  padding: 0;
  display: block;
  width: 100%;
}
.v2025gourmet-headerNav__list__item {
  display: block;
  width: 100%;
}
.v2025gourmet-headerNav__list__item + .v2025gourmet-headerNav__list__item {
  border-top: 1px solid #d9cbb3;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-headerNav__list {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .v2025gourmet-headerNav__list__item {
    width: auto;
  }
  .v2025gourmet-headerNav__list__item + .v2025gourmet-headerNav__list__item {
    border: 0;
    margin-left: clamp(20px, 2.67vw, 40px);
  }
}

.v2025gourmet-headerNav-link {
  display: block;
  width: 100%;
  color: inherit;
  font-size: 20px;
  font-size: clamp(14px, 1.87vw, 18px);
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .v2025gourmet-headerNav-link {
    height: auto;
    font-size: 16px;
    line-height: 1.5;
    padding: 0.81em 15px;
    color: #4e1b00;
    background: #f8eede;
  }
  .v2025gourmet-headerNav-link[href] {
    position: relative;
    padding-right: 40px;
    text-decoration: none !important;
  }
  .v2025gourmet-headerNav-link[href]::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: currentColor;
    transform: rotate(-45deg) scale(62.5%);
    position: absolute;
    top: 0;
    left: auto;
    right: 15px;
    bottom: 0;
    z-index: 1;
    margin: auto;
    clip-path: path("M16 16 L16,4 A2,2 0,0,1 20,4 L20 20 L4 20 A2,2 0,0,1 4,16 L4 16 L16 16");
  }
}

@media screen and (max-width: 750px) {
  .v2025gourmet-headerNav {
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
  }
  .v2025gourmet-header.js--opened .v2025gourmet-headerNav {
    opacity: 1;
    visibility: visible;
  }
}
/*--------------- Menu ---------------*/
.v2025gourmet-headerMenu {
  display: block;
  width: 100%;
}
.v2025gourmet-headerMenu__list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.v2025gourmet-headerMenu__list__item {
  display: block;
  width: 100%;
  flex: 0 0 25px;
  max-width: 25px;
  margin-left: 20px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-headerMenu__list__item {
    flex: 0 0 40px;
    max-width: 40px;
  }
}

.v2025gourmet-headerMenu-link {
  display: block;
  width: 100%;
}
.v2025gourmet-headerMenu-link img {
  display: block;
  width: 100%;
  height: auto;
}

/*--------------- ハンバーガーメニュー ---------------*/
.v2025gourmet-barMenu {
  --bar-height: 3px;
  display: block;
  width: auto;
  height: auto;
  margin-left: -2px;
  aspect-ratio: 54/44;
  position: relative;
}
.v2025gourmet-barMenu::before, .v2025gourmet-barMenu::after {
  content: "";
}
.v2025gourmet-barMenu::before, .v2025gourmet-barMenu::after,
.v2025gourmet-barMenu i {
  display: block;
  height: var(--bar-height, 3px);
  border-radius: 2px;
  background: #00214a;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  margin: auto;
  pointer-events: none;
  transition: all 0.25s;
}
.v2025gourmet-barMenu::before {
  top: 0;
}
.v2025gourmet-barMenu::after {
  bottom: 0;
}
.v2025gourmet-barMenu i {
  top: 0;
  bottom: 0;
}

.v2025gourmet-header.js--opened .v2025gourmet-barMenu i {
  display: none;
}
.v2025gourmet-header.js--opened .v2025gourmet-barMenu::before {
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
}
.v2025gourmet-header.js--opened .v2025gourmet-barMenu::after {
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
}

/*
 * Footer
------------------------------------------------*/
.v2025gourmet-footer {
  display: block;
  width: 100%;
  overflow: hidden;
}
.v2025gourmet-footer .lso_container {
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-footer .lso_container {
    max-width: 1260px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.v2025gourmet-footer__guide {
  display: block;
  width: 100%;
  padding: 30px 0;
  color: #40291e;
  background: #fdf7ea;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-footer__guide {
    padding: 50px 0;
  }
}
.v2025gourmet-footer__menu {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: #ffffff;
  background: #412a1e;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-footer__menu {
    padding: 12px 0;
  }
}
.v2025gourmet-footer__copyright {
  display: block;
  width: 100%;
  padding: 15px 0 15px;
  color: #ffffff;
  background: #412a1e;
  border-top: 1px solid #67554b;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-footer__copyright {
    padding: 20px 0;
  }
}

/*--------------- Guide ---------------*/
.v2025gourmet-footerGuide {
  width: 100%;
  display: grid;
  grid-gap: 25px;
  grid-template-columns: minmax(0, 1fr);
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-footerGuide {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-gap: 50px 30px;
  }
}

.v2025gourmet-guide {
  display: block;
  width: 100%;
  font-size: 14px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-guide {
    font-size: clamp(14px, 1.87vw, 16px);
  }
}
.v2025gourmet-guide__head {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
  padding: 0;
  font-size: 1.07em;
  font-weight: bold;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-guide__head {
    font-size: clamp(16px, 2.13vw, 20px);
  }
}
.v2025gourmet-guide__body {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1.43;
}
.v2025gourmet-guide p {
  margin: 0;
}
.v2025gourmet-guide p + p {
  margin-top: 0.25em;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-guide p + p {
    margin-top: 1.5em;
  }
}
.v2025gourmet-guide a {
  color: inherit;
  text-decoration: underline;
}

.v2025gourmet-payment {
  display: block;
  width: 100%;
  max-width: 238px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-payment {
    max-width: 280px;
  }
}
.v2025gourmet-payment dt {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: normal;
}
.v2025gourmet-payment dd {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: normal;
}
.v2025gourmet-payment img {
  display: block;
  width: 100%;
  height: auto;
}

/*--------------- Nav ---------------*/
.v2025gourmet-footerNav {
  display: block;
  width: 100%;
  font-size: 13px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-footerNav {
    font-size: 14px;
  }
}
.v2025gourmet-footerNav__content {
  width: auto;
  margin: 0 -15px 0 0;
}
.v2025gourmet-footerNav__list {
  list-style: none;
  padding: 0;
  width: 100%;
  display: block;
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
.v2025gourmet-footerNav__list__item {
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
  display: block;
  width: 100%;
  padding: 5px 0;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-footerNav__list {
    -moz-column-count: auto;
    column-count: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: auto;
    margin: 0 -1em;
  }
  .v2025gourmet-footerNav__list__item {
    display: block;
    width: auto;
    flex: 0 0 auto;
    max-width: 100%;
    padding: 0.5em 1em;
  }
}

.v2025gourmet-footerNav-link {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
}

/*--------------- Copyright ---------------*/
.v2025gourmet-copyright {
  display: block;
  width: 100%;
  font-size: 10px;
  text-align: center;
}
.v2025gourmet-copyright__ja {
  display: block;
  width: 100%;
  font-size: 1em;
  font-weight: bold;
}
.v2025gourmet-copyright__en {
  display: block;
  width: 100%;
  font-size: 0.8em;
  font-weight: normal;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-copyright {
    font-size: 18px;
  }
  .v2025gourmet-copyright__en {
    font-size: 0.67em;
    margin-top: 0.25em;
  }
}

/*
|---------------------------------------------------------------
| Home
|---------------------------------------------------------------
*/
.v2025gourmet-home {
  display: block;
  width: 100%;
  overflow: hidden;
}
.v2025gourmet-home ~ .home_section__header, .v2025gourmet-home ~ .home_section__body {
  display: none;
}
.v2025gourmet-home .lso_container {
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-home .lso_container {
    max-width: 1260px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.v2025gourmet-home__mv {
  display: block;
  width: 100%;
  overflow: hidden;
}
.v2025gourmet-home__mv .lso_container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.v2025gourmet-home__main {
  display: block;
  width: 100%;
  padding: clamp(20px, 2.67vw, 40px) 0;
  color: #40291e;
  background-color: #f8e3c5;
  background-image: url("/images/gourmet/v2025/bg.jpg");
  background-repeat: repeat;
  background-size: 500px 500px;
  background-position: left top;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-home__main {
    background-size: 1000px 1000px;
  }
}
.v2025gourmet-home__lead {
  display: block;
  width: 100%;
}
.v2025gourmet-home__lead .lso_container {
  padding-left: 17.5px;
  padding-right: 17.5px;
}
.v2025gourmet-home__lead::before, .v2025gourmet-home__lead::after {
  content: "";
  display: block;
  width: 100%;
  height: 38.93vw;
  background-repeat: repeat-x;
  background-position: left center;
}
.v2025gourmet-home__lead::before {
  background-image: url("/images/gourmet/v2025/lead/bg_01.png");
  animation: slideleft 180000s linear infinite;
  background-size: 895px 150px;
}
.v2025gourmet-home__lead::after {
  background-image: url("/images/gourmet/v2025/lead/bg_02.png");
  animation: slideright 180000s linear infinite;
  background-size: 860px 150px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-home__lead::before, .v2025gourmet-home__lead::after {
    height: 300px;
  }
  .v2025gourmet-home__lead::before {
    background-size: 1790px 300px;
  }
  .v2025gourmet-home__lead::after {
    background-size: 1720px 300px;
  }
}
@keyframes slideleft {
  from {
    background-position: 0 center;
  }
  to {
    background-position: -6157600px center;
  }
}
@keyframes slideright {
  from {
    background-position: 0 center;
  }
  to {
    background-position: 6157600px center;
  }
}
.v2025gourmet-home__campaign {
  display: block;
  width: 100%;
  padding: clamp(20px, 2.67vw, 60px) 0;
  margin: 0 0 20px;
}
.v2025gourmet-home__campaign.js-wrapper:not(.js--active) {
  visibility: hidden;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-home__campaign .lso_container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.v2025gourmet-home__recommend {
  display: block;
  width: 100%;
  padding: clamp(20px, 2.67vw, 40px) 0;
  position: relative;
}
.v2025gourmet-home__recommend::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 750/562;
  background-image: url("/images/gourmet/v2025/recommend/bg_sp.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 1;
  margin: auto;
  transform: translateY(-15%);
  pointer-events: none;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-home__recommend::before {
    max-width: 1400px;
    aspect-ratio: 1400/440;
    background-image: url("/images/gourmet/v2025/recommend/bg_pc.png");
    transform: translate(0%, -6%);
  }
}
.v2025gourmet-home__banners {
  display: block;
  width: 100%;
  padding: clamp(20px, 2.67vw, 40px) 0;
}
.v2025gourmet-home__information {
  display: block;
  width: 100%;
  padding: clamp(40px, 5.33vw, 80px) 0;
  color: #40291e;
  background-color: #ffffff;
}

/*
 * MV
------------------------------------------------*/
.v2025gourmet-homeMv {
  display: block;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
}
.v2025gourmet-homeMv:not(.js--active) {
  padding-bottom: 50px;
}

.v2025gourmet-mv {
  display: block;
  width: 100%;
}
.v2025gourmet-mv__list {
  list-style: none;
  padding: 0;
}
.v2025gourmet-mv__list__item {
  display: block;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-mv__list__item {
    max-width: 1000px;
  }
}
.v2025gourmet-mv:not(.swiper-initialized) .v2025gourmet-mv__list {
  display: flex;
  justify-content: center;
}
.v2025gourmet-mv:not(.swiper-initialized) .v2025gourmet-mv__list__item {
  width: 100%;
}
.v2025gourmet-mv:not(.swiper-initialized) .v2025gourmet-mv__list__item:not(:first-child) {
  display: none;
}
@media screen and (max-width: 750px) {
  .v2025gourmet-mv:not(.swiper-initialized) .v2025gourmet-mv__list__item {
    width: 100%;
  }
  .v2025gourmet-mv:not(.swiper-initialized) .v2025gourmet-mv__list__item:not(:first-child) {
    display: none;
  }
}

.v2025gourmet-homeMv .swiper-pagination {
  margin: 0 auto;
  padding: 10px 0 20px;
  position: static;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-homeMv .swiper-pagination {
    padding: 30px 0 50px;
  }
}
.v2025gourmet-homeMv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background: #d2ba8a;
  opacity: 1;
  width: 50px;
  height: 8px;
  border-radius: 4px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-homeMv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 80px;
    height: 10px;
    border-radius: 5px;
    margin: 0 8px;
  }
}
.v2025gourmet-homeMv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #04224a;
}

.v2025gourmet-mv-block {
  display: block;
  width: 100%;
  height: auto;
}
.v2025gourmet-mv-block__image {
  display: block;
  width: 100%;
  height: auto;
}
.v2025gourmet-mv-block__image img {
  display: block;
  width: 100%;
  height: auto;
  background-color: #f9f9f9;
}

.is-placeholder .v2025gourmet-mv-block__image {
  background: rgba(239, 239, 239, 0.85);
  aspect-ratio: 1/1;
}
@media screen and (min-width: 750.02px) {
  .is-placeholder .v2025gourmet-mv-block__image {
    aspect-ratio: 1920/1080;
  }
}

/*
 * Lead
------------------------------------------------*/
.v2025gourmet-homeLead {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: clamp(15px, 2vw, 30px) auto;
}
.v2025gourmet-homeLead__title {
  display: block;
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
}
.v2025gourmet-homeLead__title img {
  display: block;
  width: 100%;
  height: auto;
}
.v2025gourmet-homeLead__nav {
  display: block;
  width: 100%;
  margin: clamp(15px, 2vw, 30px) 0 0;
  padding: 0;
}

/*
 * Campaign
------------------------------------------------*/
.v2025gourmet-homeCampaign {
  display: block;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.v2025gourmet-campaign {
  display: block;
  width: 100%;
}
.v2025gourmet-campaign__list {
  list-style: none;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 16px;
}
.v2025gourmet-campaign__list__item {
  display: block;
  width: 100%;
}

.v2025gourmet-campaign-block {
  display: block;
  width: 100%;
}
.v2025gourmet-campaign-block img {
  display: block;
  width: 100%;
  height: auto;
}

/*
 * Lineup
------------------------------------------------*/
.v2025gourmet-homeRecommend {
  display: block;
  width: 100%;
  position: relative;
  z-index: 2;
}
.v2025gourmet-homeRecommend__header {
  display: block;
  width: 100%;
  margin: 0 0 20px;
}
.v2025gourmet-homeRecommend__body {
  display: block;
  width: 100%;
}
.v2025gourmet-homeRecommend__content {
  display: block;
  width: 100%;
}
.v2025gourmet-homeRecommend__nav {
  display: block;
  width: 100%;
  margin: clamp(20px, 2.67vw, 40px) 0 0;
}

.v2025gourmet-homeRecommend-title {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
  padding: 1em 0 0;
  position: relative;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
.v2025gourmet-homeRecommend-title::before {
  content: "";
  display: block;
  width: 5.89em;
  height: auto;
  aspect-ratio: 330/48;
  background-image: url("/images/gourmet/v2025/recommend/title.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 1;
  margin: auto;
  pointer-events: none;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-homeRecommend-title {
    font-size: min(48px, 4vw);
  }
}

.v2025gourmet-lineup {
  display: block;
  width: 100%;
}
.v2025gourmet-lineup__list {
  list-style: none;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 15px 11px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-lineup__list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 25px;
  }
}
.v2025gourmet-lineup__list__item {
  display: block;
  width: 100%;
}

.v2025gourmet-lineup-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none !important;
}
.v2025gourmet-lineup-block__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 10px;
  aspect-ratio: 1/1;
  background-color: rgba(239, 239, 239, 0.85);
}
.v2025gourmet-lineup-block__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.v2025gourmet-lineup-block__body {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.v2025gourmet-lineup-block__name {
  display: block;
  width: 100%;
  margin: 0 0 0.25em;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  white-space: pre-line;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-lineup-block__name {
    font-size: 18px;
  }
}
.v2025gourmet-lineup-block__price {
  display: block;
  width: 100%;
  margin: auto 0 0.25em;
  font-size: 13px;
  text-align: left;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-lineup-block__price {
    font-size: 16px;
  }
}
.v2025gourmet-lineup-block__price .lso_price__main__addon,
.v2025gourmet-lineup-block__price .lso_price__addon {
  font-size: 1em;
}
.v2025gourmet-lineup-block__price .lso_price__addon {
  display: none;
}

/*--------------- placeholder ---------------*/
.is-placeholder .v2025gourmet-lineup-block__name {
  min-height: 3em;
  background-image: linear-gradient(rgba(239, 239, 239, 0.85) 0%, rgba(239, 239, 239, 0.85) 100%), linear-gradient(rgba(239, 239, 239, 0.85) 0%, rgba(239, 239, 239, 0.85) 100%);
  background-repeat: no-repeat;
  background-position: left top 0.25em, left bottom 0.25em;
  background-size: 100% 1em, 8em 1em;
}
.is-placeholder .v2025gourmet-lineup-block__price {
  min-height: 1.5em;
  background-image: linear-gradient(rgba(239, 239, 239, 0.85) 0%, rgba(239, 239, 239, 0.85) 100%);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 5em 1em;
}

/*
 * バナーエリア
------------------------------------------------*/
.v2025gourmet-homeBanners {
  display: block;
  width: 100%;
}
.v2025gourmet-homeBanners__content {
  display: block;
  width: 100%;
}
.v2025gourmet-homeBanners__nav {
  display: block;
  width: 100%;
  margin: clamp(24px, 3.2vw, 40px) 0 0;
}

.v2025gourmet-banners {
  display: block;
  width: 100%;
}
.v2025gourmet-banners__list {
  list-style: none;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 16px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-banners__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 25px;
  }
}
.v2025gourmet-banners__list__item {
  display: block;
  width: 100%;
}

.v2025gourmet-banner {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 702/395;
  background-color: rgba(239, 239, 239, 0.85);
}
.v2025gourmet-banner img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
/*
 * Information
------------------------------------------------*/
.v2025gourmet-homeNews {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
}
.v2025gourmet-homeNews__header {
  display: block;
  width: 100%;
  margin: 0 0 30px;
}
.v2025gourmet-homeNews__body {
  display: block;
  width: 100%;
}
.v2025gourmet-homeNews__content {
  display: block;
  width: 100%;
}
.v2025gourmet-homeNews__more {
  display: block;
  width: 100%;
  text-align: right;
  margin: 20px 0 0;
}
.v2025gourmet-homeNews__more__link {
  font-size: 13px;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-homeNews__more__link {
    font-size: 16px;
  }
}

.v2025gourmet-homeNews-title {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
  padding: 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-homeNews-title {
    font-size: min(50px, 4.17vw);
  }
}

.v2025gourmet-homeNews__list {
  list-style: none;
  padding: 0;
  display: block;
  width: 100%;
}
.v2025gourmet-homeNews__list__item {
  display: block;
  width: 100%;
  margin: clamp(20px, 2.67vw, 30px) 0;
  padding: 0;
}

.v2025gourmet-homeNews-block {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
}
.v2025gourmet-homeNews-block__date {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
  padding: 0;
  color: #9b674d;
  font-size: 11px;
  font-weight: bold;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-homeNews-block__date {
    font-size: min(18px, 1.5vw);
  }
}
.v2025gourmet-homeNews-block__title {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 13px;
}
@media screen and (min-width: 750.02px) {
  .v2025gourmet-homeNews-block__title {
    font-size: min(18px, 1.5vw);
  }
}
.v2025gourmet-homeNews-block[href]:hover .v2025gourmet-homeNews-block__title {
  text-decoration: underline;
}
