@charset "UTF-8";
:root {
  --section-space-sp: 50px;
  --section-space-pc: 112px;
}

body {
  background-attachment: fixed;
  color: #e2c694;
  font-family: "Noto Sans JP", BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 1.6px;
  line-height: 2;
}
@media (width >= 768px) {
  body {
    font-size: 1rem;
  }
}
body.is-fixed {
  block-size: 100%;
  overflow: hidden;
}
body.is-fixed::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
svg {
  block-size: 100%;
  inline-size: 100%;
}

img {
  inline-size: 100%;
  block-size: auto;
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
}

ul li {
  list-style: none;
}

small {
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  line-height: normal;
  text-transform: uppercase;
  --letter-spacing: 0.6px;
  letter-spacing: var(--letter-spacing);
  text-indent: var(--letter-spacing);
}

.c-text-yellow {
  color: #e2c694;
}

.c-text-black {
  color: #000;
}

.c-text-white {
  color: #fff;
}

.c-bg-black {
  background-color: #000;
}

.c-bg-brown {
  background-color: #7c6d51;
}

.c-bg-gray {
  background-color: transparent;
}

.c-bg-white-opacity {
  background: rgba(255, 255, 255, 0.5);
}

.u-text-none {
  text-transform: none !important;
}

.c-section-title {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  text-align: center;
}
.c-section-title__en {
  font-family: "Jost", sans-serif;
  font-size: clamp(2.625rem, 1.778vw + 35.333px, 3.875rem);
  text-transform: uppercase;
  margin: 0;
  font-weight: 300;
  text-wrap: balance;
  --letter-spacing: 3.1px;
  letter-spacing: var(--letter-spacing);
  text-indent: var(--letter-spacing);
}
.c-section-title__ja {
  font-family: "Noto Sans JP", BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  text-transform: uppercase;
  margin: 0;
  --letter-spacing: 1.6px;
  letter-spacing: var(--letter-spacing);
  text-indent: var(--letter-spacing);
}
@media (width >= 768px) {
  .c-section-title__ja {
    font-size: 1rem;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;
}
.c-button--gold {
  background-color: #cdb277;
  color: #fff;
  padding: 0.9em 2.8em;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-size: clamp(1.125rem, 0.533vw + 16px, 1.5rem);
}
.c-button--gold:hover {
  background-color: #fff;
  color: #e2c694;
}
.c-button--gold:hover .c-button__icon svg path {
  fill: #e2c694;
}
.c-button--outline {
  padding: 1em 2em;
  border: 1px solid currentColor;
  color: #fff;
  font-family: "Noto Sans JP", BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  transition: all 0.3s ease;
  text-transform: none;
  border-radius: 0;
}
@media (width >= 576px) {
  .c-button--outline {
    padding: 1em 4em;
    width: auto;
  }
}
.c-button--outline:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #000;
}
.c-button__icon {
  display: block;
  inline-size: 0.5em;
  block-size: 1em;
  position: absolute;
  right: 1em;
  top: 50%;
  translate: 0 -50%;
}
.c-button__icon svg {
  inline-size: 100%;
  block-size: 100%;
  display: block;
  transition: fill 0.3s ease;
}
.c-button__icon svg path {
  transition: fill 0.3s ease;
}

.c-button-bg {
  background-color: #cdb277;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-button-bg:hover {
    background-color: #fff;
    color: #e2c694;
  }
  .c-button-bg:hover + svg {
    stroke: #e2c694;
  }
}

.p-bg-button {
  position: relative;
}
.p-bg-button a {
  border-radius: 4px;
  font-family: "Jost", sans-serif;
  font-size: clamp(1.125rem, 0.533vw + 16px, 1.5rem);
  line-height: normal;
  padding-block: clamp(0.9em, 0.178vw + 13.833px, 1.03em);
  padding-inline: clamp(2.7em, 0.133vw + 43px, 2.8em);
  text-align: center;
  text-transform: uppercase;
}
.p-bg-button svg {
  position: absolute;
  right: 1em;
  top: 50%;
  transition: all 0.3s ease;
  translate: 0 -50%;
  inline-size: 0.5rem;
}

.p-header {
  block-size: auto;
  left: 0;
  padding-block: 1em;
  position: fixed;
  top: 0;
  inline-size: 100%;
  z-index: 100;
  transition: background-color 0.3s ease, padding 0.3s ease;
  background-color: transparent;
}
@media (width >= 992px) {
  .p-header {
    padding-block: 1.5em;
  }
}
.p-header.is-scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  padding-block: 0.5em;
}
@media (width >= 992px) {
  .p-header.is-scrolled {
    padding-block: 1em;
  }
}
.p-header.is-menu-open {
  background-color: rgba(0, 0, 0, 0.9);
}
.p-header__inner {
  padding-inline: 0.75em;
}
.p-header__logo {
  display: none;
  margin-bottom: 0;
  inline-size: 116px;
  transition: opacity 0.3s ease;
}
@media (width >= 576px) {
  .p-header__logo {
    display: block;
  }
}
.p-header__logo img {
  block-size: auto;
  vertical-align: top;
}
.p-header__logo-link {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-header__logo-link:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
@media (width >= 992px) {
  .p-header__logo-link {
    padding-inline-start: 0.75em;
  }
}
@media (width >= 576px) {
  .p-header__nav {
    gap: 1.5em;
  }
}
.p-header__nav .p-select-wrap {
  position: relative;
}
@media (width >= 992px) {
  .p-header__nav .p-select-wrap {
    margin-inline-end: 0.75em;
  }
}
.p-header__nav .p-select-wrap img {
  block-size: 10.48px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  translate: 0 calc(-50% + 1px);
  inline-size: 7.57px;
  object-fit: contain;
}
.p-header__nav select {
  text-align: center;
  border: none;
  border-radius: 4px;
  font-size: 0.75rem;
  line-height: 1;
  padding-block: 0.625em;
  padding-inline: 1em 1.375em;
  text-transform: uppercase;
  appearance: none;
}
.p-header__list {
  column-gap: 0.75em;
  margin-bottom: 0;
}
.p-header__list li a {
  inline-size: 1.5em;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-header__list li a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.p-drawer__icon-wrap {
  gap: 1em;
  justify-items: center;
  left: 50%;
  position: fixed;
  top: 1.125em;
  inline-size: 100px;
  z-index: 102;
  transition: translate 0.5s ease, top 0.3s ease;
  translate: -50% -200%;
}
.p-drawer__icon-wrap.js-show {
  translate: -50% 0;
}
.p-header.is-scrolled ~ .p-drawer__icon-wrap {
  top: 0.75em;
}

.p-drawer__icon-image {
  transition: opacity 0.3s ease;
  inline-size: 70px;
}
.p-drawer__icon-image a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-drawer__icon-image a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.p-drawer__icon-image img {
  inline-size: 100%;
  block-size: auto;
}
@media (width >= 768px) {
  .p-drawer__icon-image {
    inline-size: 100px;
  }
}

.p-drawer__icon {
  block-size: 1em;
  padding: 0;
  inline-size: 2em;
  z-index: 102;
}
.p-drawer__icon--bar {
  block-size: 1px;
  transition: all 0.3s ease;
  inline-size: 100%;
}
.p-drawer__icon.js-show {
  --transition-delay: 0.4s;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  transition-delay: var(--transition-delay);
  translate: 0 0.46875em;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  scale: 0;
  transition-delay: var(--transition-delay);
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  transition-delay: var(--transition-delay);
  translate: 0 -0.46875em;
}

.p-drawer {
  --drawer-position: calc(100px + 1.125em);
  --duration-menu: 0.7s;
  --duration-lists: 0.3s;
  left: 50%;
  overflow-y: auto;
  position: fixed;
  top: var(--drawer-position);
  translate: -50%;
  inline-size: 275px;
  z-index: 101;
  transition: top 0.3s ease;
  animation-delay: 0s;
  animation-duration: var(--duration-menu);
  animation-fill-mode: both;
  animation-timing-function: ease;
  clip-path: inset(0 100% 100% 100%);
}
.p-header.is-scrolled ~ .p-drawer {
  --drawer-position: calc(100px + 0.75em);
}
.p-drawer.js-show {
  animation-delay: 0s;
  animation-name: open-menu;
}
.p-drawer.js-show .p-drawer__list {
  animation-delay: var(--duration-menu);
  animation-name: fade-in-up;
}
.p-drawer.js-close {
  animation-delay: var(--duration-lists);
  animation-name: close-menu;
}
.p-drawer.js-close .p-drawer__list {
  animation-delay: 0s;
  animation-name: fade-out-down;
}
.p-drawer .p-drawer__body {
  block-size: fit-content;
  padding-block: 4.5625em 3.125em;
  padding-inline: 1em;
  inline-size: 100%;
}
.p-drawer .p-drawer__list {
  margin-bottom: 0;
  padding-left: 0;
  position: relative;
  row-gap: 1.625em;
  animation-duration: var(--duration-lists);
  animation-fill-mode: both;
  animation-timing-function: ease;
}
@media (width >= 992px) {
  .p-drawer .p-drawer__list {
    row-gap: 1em;
  }
}
.p-drawer .p-drawer__list li {
  inline-size: 100%;
}
.p-drawer .p-drawer__list li a {
  --letter-spacing: 1.6px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: var(--letter-spacing);
  line-height: normal;
  padding-block: 0.5em;
  text-align: center;
  text-indent: var(--letter-spacing);
  text-transform: uppercase;
  inline-size: 100%;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-drawer .p-drawer__list li a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
@media (width >= 992px) {
  .p-drawer .p-drawer__list li a {
    font-size: 1.25rem;
  }
}

@keyframes open-menu {
  0% {
    clip-path: inset(0 100% 100% 100%);
  }
  50% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes close-menu {
  0% {
    clip-path: inset(0 0 0 0);
  }
  50% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 100% 100% 100%);
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    translate: 0 0.25em;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes fade-out-down {
  0% {
    opacity: 1;
    translate: 0 0;
  }
  100% {
    opacity: 0;
    translate: 0 0.25em;
  }
}
.p-footer {
  padding-block-end: 40px;
  padding-block-start: 24px;
}
.p-footer__content {
  --gap-adjust: 8px;
  gap: calc(16px - var(--gap-adjust));
}
.p-footer__image {
  inline-size: 80px;
}
@media (width >= 992px) {
  .p-footer__image {
    inline-size: 100px;
  }
}

.p-page-top {
  position: fixed;
  bottom: 20px;
  right: 2px;
  z-index: 1000;
}
.p-page-top a {
  display: block;
  inline-size: 64px;
  block-size: 64px;
}

.p-mv {
  position: relative;
}
body:not(.index) .p-mv {
  padding-block-start: 7em;
}
@media (width >= 992px) {
  body:not(.index) .p-mv {
    padding-block-start: 0;
  }
}
.p-mv__image picture {
  inline-size: 100%;
}
.p-mv__image img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.p-fv__image-top {
  position: relative;
  block-size: 85svh;
  min-block-size: 500px;
}
.p-fv__image-top img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: contain;
  object-position: center;
}
.p-fv__image-top::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  block-size: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (width >= 768px) {
  .p-fv__image-top {
    block-size: 85svh;
    min-block-size: 600px;
  }
  .p-fv__image-top::before {
    content: none;
  }
}
@media (width >= 1440px) {
  .p-fv__image-top {
    block-size: 85svh;
    min-block-size: 700px;
  }
}
.p-fv__image-bottom {
  margin-block-start: 240px;
  margin-inline: auto;
  inline-size: 80px;
}
@media (width >= 768px) {
  .p-fv__image-bottom {
    margin-block-start: 10px;
    inline-size: 160px;
  }
}
.p-fv__copy {
  position: absolute;
  right: 50%;
  text-align: center;
  top: calc(50% - 129px);
  translate: 50% -50%;
  inline-size: 100%;
  z-index: 2;
}
@media (width >= 768px) {
  .p-fv__copy {
    right: calc(50% + clamp(94px, 22.814vw - 81.213px, 261px));
    text-align: left;
    top: calc(50% + 38px);
    translate: 0 -50%;
    inline-size: auto;
  }
}
.p-fv__copy-text {
  font-size: clamp(1.5rem, 1.067vw + 21.333px, 2rem);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  letter-spacing: 4.8px;
  line-height: 2.5;
  margin-bottom: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
@media (width >= 768px) {
  .p-fv__copy-text {
    line-height: 3;
  }
}
.p-fv__banner {
  --element-width: 210px;
  bottom: 122px;
  position: absolute;
  right: 50%;
  translate: 50%;
  inline-size: var(--element-width);
}
@media (width >= 768px) {
  .p-fv__banner {
    --element-width: 260px;
    bottom: -67px;
    right: 29px;
    translate: 0%;
  }
}
.p-fv__banner-link {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-fv__banner-link:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.p-fv__menu {
  margin-block-start: 16px;
  padding-block: 120px;
}
.p-fv__nav {
  padding-block: 8px;
}
.p-fv__nav-list {
  --adjust: 11px;
  margin-bottom: 0;
  padding-left: 0;
  position: relative;
  row-gap: calc(24px - var(--adjust));
}
.p-fv__nav-list::before, .p-fv__nav-list::after {
  --vertical-position: calc(100% + 16px);
  content: "";
  block-size: 120px;
  left: 50%;
  position: absolute;
  translate: -50%;
  inline-size: 4px;
}
.p-fv__nav-list::before {
  background: url(/assets/images/warsteiner/common/menu-icon-top.webp) no-repeat center center/contain;
  bottom: var(--vertical-position);
}
.p-fv__nav-list::after {
  background: url(/assets/images/warsteiner/common/menu-icon-bottom.webp) no-repeat center center/contain;
  top: var(--vertical-position);
}
.p-fv__nav-list li a {
  --letter-spacing: 1.6px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  letter-spacing: var(--letter-spacing);
  line-height: normal;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-fv__nav-list li a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.p-our-style {
  padding-block: 68px var(--section-space-sp);
}
@media (width >= 992px) {
  .p-our-style {
    padding-block: 36px 81px;
  }
}
.p-our-style__inner {
  margin-inline: auto;
  max-inline-size: 1244px;
  padding-inline: 20px;
}
@media (width >= 768px) {
  .p-our-style__inner {
    padding-inline: 40px;
  }
}
.p-our-style__image {
  margin-inline-start: auto;
  inline-size: 100%;
}
@media (width >= 768px) {
  .p-our-style__image {
    inline-size: 662px;
  }
}
.p-our-style__text-wrap {
  --position: 0px;
  margin-block-end: 0;
  position: relative;
  top: var(--position);
}
@media (width >= 768px) {
  .p-our-style__text-wrap {
    --position: calc(-89px + -94px);
    margin-block-end: -244px;
  }
}
.p-our-style__text {
  margin-block-start: 40px;
}
.p-our-style__text p {
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
}
.p-our-style__button {
  margin-block-start: 40px;
  margin-inline: auto;
  inline-size: fit-content;
}
@media (width >= 768px) {
  .p-our-style__button {
    margin-block-start: 64px;
  }
}

.p-story {
  padding-block: var(--section-space-sp);
  position: relative;
}
@media (width >= 992px) {
  .p-story {
    padding-block: 68px var(--section-space-pc);
  }
}
.p-story .box-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.p-story .box-link::after {
  content: "READ MORE";
  font-family: "Jost", sans-serif;
  font-size: clamp(1.125rem, 1.5vw + 12px, 1.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e2c694;
  padding: 1em 2em;
  border: 1px solid #e2c694;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  translate: 0 10px;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
@media (hover: hover) {
  .p-story .box-link:hover {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .p-story .box-link:hover::after {
    opacity: 1;
    translate: 0 0;
  }
}
@media (hover: none) {
  .p-story .box-link:active::after {
    opacity: 1;
    translate: 0 0;
  }
}
.p-story__content {
  position: relative;
}
@media (width >= 992px) {
  .p-story__title {
    left: 50%;
    position: absolute;
    top: clamp(62px, 31.299vw - 248.488px, 221px);
    translate: -50%;
    z-index: 2;
  }
}
.p-story__swiper-container, .p-story__swiper, .p-story__swiper-wrapper, .p-story__swiper-slide {
  position: relative;
}
.p-story__swiper-container {
  margin-block-start: 60px;
}
.p-story__swiper-slide {
  position: relative;
}
.p-story__swiper-slide .p-story__swiper-image {
  position: relative;
}
.p-story__swiper-slide .p-story__swiper-image::before {
  background: linear-gradient(360deg, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  bottom: 0;
  content: "";
  block-size: 73.333px;
  left: 0;
  position: absolute;
  inline-size: 100%;
}
@media (width >= 992px) {
  .p-story__swiper-slide .p-story__swiper-image::before {
    block-size: 220px;
  }
}
.p-story__swiper-text {
  display: none;
}
@media (width >= 768px) {
  .p-story__swiper-text {
    --bottom-adjust: 2px;
    bottom: calc(35px - var(--bottom-adjust));
    display: block;
    left: 50%;
    margin-inline: auto;
    max-inline-size: 818px;
    padding-inline: 20px;
    position: absolute;
    translate: -50%;
    inline-size: 100%;
    z-index: 2;
  }
}
.p-story__swiper-text h3 {
  --line-height-adjust: 0.5;
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  line-height: calc(2 - var(--line-height-adjust));
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  --letter-spacing: 3.2px;
  letter-spacing: var(--letter-spacing);
  text-indent: var(--letter-spacing);
}
.p-story__swiper-text p {
  font-family: "Jost", sans-serif;
  letter-spacing: 1.6px;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: unset;
  left: unset;
  margin: 0;
  padding: 0;
  right: unset;
  top: unset;
}

.swiper-button-prev,
.swiper-button-next {
  block-size: 40px;
  position: absolute;
  top: 50%;
  transition: opacity 0.3s ease;
  translate: 0 -50%;
  inline-size: 12px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}
@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
@media (width >= 992px) {
  .swiper-button-prev,
  .swiper-button-next {
    --vertical-adjust: 22px;
    block-size: 75px;
    top: calc(50% + var(--vertical-adjust)) !important;
    inline-size: 22px;
  }
}
.swiper-button-prev svg,
.swiper-button-next svg {
  fill: none;
  block-size: 100%;
  inline-size: 100%;
}

.swiper-button-prev {
  left: 20px !important;
}
@media (width >= 992px) {
  .swiper-button-prev {
    left: 30px !important;
  }
}

.swiper-button-next {
  right: 20px !important;
}
@media (width >= 992px) {
  .swiper-button-next {
    right: 30px !important;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
}

.p-beer {
  padding-block: var(--section-space-sp);
}
@media (width >= 992px) {
  .p-beer {
    padding-block: var(--section-space-pc);
  }
}
.p-beer__content {
  margin-inline: auto;
  max-inline-size: 1048px;
  padding-inline: 20px;
}
@media (width >= 992px) {
  .p-beer__content {
    max-inline-size: 1088px;
    padding-inline: 40px;
  }
}
.p-beer__content .p-bg-button {
  margin-block-start: 40px;
  margin-inline: auto;
  inline-size: fit-content;
}
@media (width >= 768px) {
  .p-beer__content .p-bg-button {
    margin-block-start: 85px;
  }
}
.p-beer__button {
  margin-top: 40px;
  margin-inline: auto;
  inline-size: fit-content;
}
.p-beer__title + div {
  --margin-adjust: 10px;
  margin-block-start: calc(55px - var(--margin-adjust));
}
.p-beer__title + div ul {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}
@media (width >= 576px) {
  .p-beer__title + div ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 992px) {
  .p-beer__title + div ul {
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}
.p-beer__title + div ul li a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .p-beer__title + div ul li a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
.p-beer__title + div ul li a span {
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
  margin-block-start: 1em;
  text-transform: uppercase;
}

.p-top-beer__card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em;
  text-align: center;
}
.p-top-beer__card-inner img {
  block-size: auto;
  inline-size: auto;
  max-block-size: 150px;
  max-inline-size: 100%;
  object-fit: contain;
}
@media (width >= 768px) {
  .p-top-beer__card-inner img {
    max-block-size: 300px;
  }
}
@media (width >= 992px) {
  .p-top-beer__card-inner img {
    max-block-size: 350px;
  }
}
.p-top-beer [data-saletype] {
  position: relative;
}
.p-top-beer [data-saletype]::before {
  display: inline-block;
  padding: 0.3em 0.8em;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  position: absolute;
  top: 0.5em;
  left: calc(var(--bs-gutter-x) * 0.5 + 0.5em);
  z-index: 2;
}
@media (width >= 992px) {
  .p-top-beer [data-saletype]::before {
    font-size: 0.875rem;
  }
}
.p-top-beer [data-saletype][data-saletype=limited]::before {
  content: "限定";
  background-color: #a60505;
}
.p-top-beer [data-saletype][data-saletype=standard]::before {
  content: "定番";
  background-color: #b69d6b;
}
.p-top-beer [data-saletype][data-saletype=regular]::before {
  content: "定期";
  background-color: #8ca9b1;
}
.p-top-beer__image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.5em;
}
.p-top-beer__image img {
  max-block-size: 250px;
  inline-size: auto;
  max-inline-size: 100%;
  object-fit: contain;
}
@media (width >= 768px) {
  .p-top-beer__image img {
    max-block-size: 300px;
  }
}
@media (width >= 992px) {
  .p-top-beer__image img {
    max-block-size: 350px;
  }
}
.p-top-beer__text {
  text-align: center;
  font-weight: 300;
  margin-block-start: 0.75em;
  font-size: 0.875rem;
  line-height: 1.2;
  word-break: keep-all;
}
@media (width >= 992px) {
  .p-top-beer__text {
    font-size: 1.125rem;
  }
}

.blog-section {
  padding-block-end: var(--section-space-sp);
}
@media (width >= 768px) {
  .blog-section {
    padding-block-end: var(--section-space-pc);
  }
}
.blog-section .section-title {
  font-family: "Jost", sans-serif;
  font-size: clamp(2.625rem, 1.778vw + 35.333px, 3.875rem);
  font-weight: 300;
  color: #e2c694;
  text-transform: uppercase;
  --letter-spacing: 3.1px;
  letter-spacing: var(--letter-spacing);
  text-indent: var(--letter-spacing);
}
.blog-section .section-subtitle {
  font-family: "Noto Sans JP", BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  color: #e2c694;
  font-weight: 400;
  letter-spacing: 1.6px;
}
@media (width >= 768px) {
  .blog-section .section-subtitle {
    font-size: 1rem;
  }
}
.blog-section .bloglist {
  padding-inline: 0.5em;
}
@media (width >= 768px) {
  .blog-section .bloglist {
    padding-inline: 0;
  }
}
.blog-section .bloglist > .col-lg-4,
.blog-section .bloglist > .col-md-6,
.blog-section .bloglist > [class*=col-] {
  position: relative;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body,
.blog-section .bloglist > .col-md-6 .c-news-card__body,
.blog-section .bloglist > [class*=col-] .c-news-card__body {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: translate 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  block-size: 100%;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body::before {
  content: attr(data-category-label);
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  padding-block: 0.5em;
  padding-inline: 1em;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-radius: 0;
  z-index: 2;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body:not([data-category-label])::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body:not([data-category-label])::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body:not([data-category-label])::before {
  display: none;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body .c-news-card_inner,
.blog-section .bloglist > .col-md-6 .c-news-card__body .c-news-card_inner,
.blog-section .bloglist > [class*=col-] .c-news-card__body .c-news-card_inner {
  padding: 1em;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (width >= 768px) {
  .blog-section .bloglist > .col-lg-4 .c-news-card__body .c-news-card_inner,
  .blog-section .bloglist > .col-md-6 .c-news-card__body .c-news-card_inner,
  .blog-section .bloglist > [class*=col-] .c-news-card__body .c-news-card_inner {
    padding: 1.5em;
  }
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body .column-image,
.blog-section .bloglist > .col-md-6 .c-news-card__body .column-image,
.blog-section .bloglist > [class*=col-] .c-news-card__body .column-image {
  aspect-ratio: 4/3;
  object-fit: cover;
  inline-size: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body .c-news-card__date,
.blog-section .bloglist > .col-md-6 .c-news-card__body .c-news-card__date,
.blog-section .bloglist > [class*=col-] .c-news-card__body .c-news-card__date {
  color: #e2c694;
  font-size: 0.8125rem;
  margin-block-end: 0.5em;
  font-weight: 500;
  flex-shrink: 0;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body .c-news-card__title,
.blog-section .bloglist > .col-md-6 .c-news-card__body .c-news-card__title,
.blog-section .bloglist > [class*=col-] .c-news-card__body .c-news-card__title {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  margin-block-end: 0;
  flex-grow: 1;
  font-weight: 500;
}
@media (width >= 768px) {
  .blog-section .bloglist > .col-lg-4 .c-news-card__body .c-news-card__title,
  .blog-section .bloglist > .col-md-6 .c-news-card__body .c-news-card__title,
  .blog-section .bloglist > [class*=col-] .c-news-card__body .c-news-card__title {
    font-size: 1rem;
  }
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body[data-category=tag-19]::before, .blog-section .bloglist > .col-lg-4 .c-news-card__body[data-template="19"]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-category=tag-19]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-template="19"]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-category=tag-19]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-template="19"]::before {
  background-color: #ec1c24;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body[data-category=tag-15]::before, .blog-section .bloglist > .col-lg-4 .c-news-card__body[data-template="15"]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-category=tag-15]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-template="15"]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-category=tag-15]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-template="15"]::before {
  background-color: #33c9ff;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body[data-category=tag-13]::before, .blog-section .bloglist > .col-lg-4 .c-news-card__body[data-template="13"]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-category=tag-13]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-template="13"]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-category=tag-13]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-template="13"]::before {
  background-color: #27ae60;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body[data-category=tag-17]::before, .blog-section .bloglist > .col-lg-4 .c-news-card__body[data-template="17"]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-category=tag-17]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-template="17"]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-category=tag-17]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-template="17"]::before {
  background-color: #ffd700;
  color: #333;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__body[data-category=tag-14]::before, .blog-section .bloglist > .col-lg-4 .c-news-card__body[data-template="14"]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-category=tag-14]::before,
.blog-section .bloglist > .col-md-6 .c-news-card__body[data-template="14"]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-category=tag-14]::before,
.blog-section .bloglist > [class*=col-] .c-news-card__body[data-template="14"]::before {
  background-color: #f5941d;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__link,
.blog-section .bloglist > .col-md-6 .c-news-card__link,
.blog-section .bloglist > [class*=col-] .c-news-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}
.blog-section .bloglist > .col-lg-4 .c-news-card__link:focus-visible,
.blog-section .bloglist > .col-md-6 .c-news-card__link:focus-visible,
.blog-section .bloglist > [class*=col-] .c-news-card__link:focus-visible {
  outline: 2px solid #e2c694;
  outline-offset: 0.25em;
}
.blog-section .bloglist > .col-lg-4:hover .c-news-card__body,
.blog-section .bloglist > .col-md-6:hover .c-news-card__body,
.blog-section .bloglist > [class*=col-]:hover .c-news-card__body {
  translate: 0 -0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}
.blog-section .bloglist > .col-lg-4:hover .c-news-card__body .column-image,
.blog-section .bloglist > .col-md-6:hover .c-news-card__body .column-image,
.blog-section .bloglist > [class*=col-]:hover .c-news-card__body .column-image {
  transform: scale(1.05);
}

.p-page-our-style {
  padding-block-start: 0;
}
@media (width >= 992px) {
  .p-page-our-style {
    padding-block-start: 258px;
  }
}
.p-page-our-style .p-mv__inner {
  padding-inline: 20px;
}
@media (width >= 992px) {
  .p-page-our-style .p-mv__inner {
    padding-inline: 40px;
  }
}
@media (width >= 992px) {
  .p-page-our-style .p-mv__content {
    gap: 25px;
    padding-inline-start: 14px;
  }
}
@media (width >= 576px) {
  .p-page-our-style .p-mv__text-wrap {
    max-inline-size: 575px;
  }
}
@media (width >= 992px) {
  .p-page-our-style .p-mv__text-wrap {
    margin-block-start: 21px;
  }
}
@media (width >= 992px) {
  .p-page-our-style .p-mv__title .c-section-title {
    inline-size: fit-content;
  }
}
.p-page-our-style .p-mv__text {
  margin-block-start: 36px;
}
@media (width >= 992px) {
  .p-page-our-style .p-mv__text {
    margin-block-start: 69px;
  }
}
.p-page-our-style .p-mv__text p {
  font-family: "Noto Sans JP", BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 2;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (width >= 992px) {
  .p-page-our-style .p-mv__text p {
    font-size: 1rem;
  }
}
.p-page-our-style .p-mv__image {
  max-inline-size: 403px;
}
.p-page-our-style .p-our-style {
  padding-block: 83px;
}
@media (width >= 992px) {
  .p-page-our-style .p-our-style {
    padding-block: 157px;
  }
}
.p-page-our-style .p-our-style__inner {
  margin-inline: 0;
  max-inline-size: none;
  padding-inline: 0;
}
.p-page-our-style .p-our-style__title h2 {
  font-family: "Jost", sans-serif;
  font-size: clamp(2.625rem, 1.778vw + 35.333px, 3.875rem);
  line-height: normal;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  --letter-spacing: 3.1px;
  letter-spacing: var(--letter-spacing);
  text-indent: var(--letter-spacing);
}
.p-page-our-style .p-our-style__content-wrap {
  margin-inline: auto;
  max-inline-size: 1500px;
  padding-block-start: 42px;
}
@media (width >= 992px) {
  .p-page-our-style .p-our-style__content-wrap {
    padding-block-start: 86px;
  }
}
.p-page-our-style .p-our-style-item {
  flex-direction: column-reverse;
  gap: 24px;
  max-inline-size: 600px;
  padding-inline: 20px;
}
@media (width >= 992px) {
  .p-page-our-style .p-our-style-item {
    flex-direction: row-reverse;
    gap: 49px;
    max-inline-size: none;
    padding-inline: 0;
  }
}
@media (width >= 992px) {
  .p-page-our-style .p-our-style-item:nth-child(odd) {
    padding-inline-end: 40px;
  }
}
.p-page-our-style .p-our-style-item:nth-child(even) {
  flex-direction: column-reverse;
}
@media (width >= 992px) {
  .p-page-our-style .p-our-style-item:nth-child(even) {
    flex-direction: row;
    padding-inline-start: 40px;
  }
}
.p-page-our-style .p-our-style-item:not(:first-child) {
  margin-block-start: 60px;
}
@media (width >= 992px) {
  .p-page-our-style .p-our-style-item:not(:first-child) {
    margin-block-start: 0;
  }
}
.p-page-our-style .p-our-style-item__text-wrap {
  gap: 1em;
  max-inline-size: 575px;
}
@media (width >= 992px) {
  .p-page-our-style .p-our-style-item__text-wrap {
    gap: clamp(1px, 12.205vw - 120.071px, 63px);
  }
}
.p-page-our-style .p-our-style-item__title h3 {
  text-align: center;
  font-family: "Noto Sans JP", BlinkMacSystemFont, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: var(--letter-spacing);
  line-height: 2;
  margin-bottom: 0;
  text-indent: var(--letter-spacing);
  text-transform: uppercase;
  text-wrap: balance;
}
@media (width >= 992px) {
  .p-page-our-style .p-our-style-item__title h3 {
    font-size: clamp(1.5rem, 2.362vw + 0.567px, 2.25rem);
  }
}
.p-page-our-style .p-our-style-item__text p {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 1.6px;
  line-height: 2;
  margin-bottom: 0;
  text-transform: uppercase;
}
@media (width >= 992px) {
  .p-page-our-style .p-our-style-item__text p {
    font-size: 1rem;
  }
}
@media (width >= 992px) {
  .p-page-our-style .p-our-style-item__image {
    flex-shrink: 0;
    inline-size: clamp(496px, 50.086vw - 0.855px, 750.438px);
  }
}

@media (width >= 992px) {
  .p-page-story {
    margin-block-start: 52px;
  }
}
@media (width >= 992px) {
  .p-page-story .p-mv__title {
    left: 50%;
    position: absolute;
    top: clamp(159px, 6.496vw + 94.559px, 192px);
    translate: -50%;
  }
}
.p-page-story .p-mv__content {
  gap: 32px;
}
@media (width >= 992px) {
  .p-page-story .p-mv__content {
    gap: 0;
  }
}

.p-chronology {
  padding-block-end: 63.25px;
  padding-block-start: 32px;
}
@media (width >= 992px) {
  .p-chronology {
    padding-block-end: 126.5px;
    padding-block-start: 72px;
  }
}
.p-chronology__inner {
  padding-inline: 20px;
}
@media (width >= 992px) {
  .p-chronology__inner {
    padding-inline: 40px;
  }
}
.p-chronology__wrap {
  margin-inline: auto;
  max-inline-size: 1232px;
}
.p-chronology__wrap + .p-chronology__wrap {
  padding-block-start: 48px;
}
@media (width >= 992px) {
  .p-chronology__wrap + .p-chronology__wrap {
    padding-block-start: 64px;
  }
}
.p-chronology__title h2 {
  font-family: "Jost", sans-serif;
  font-size: clamp(2rem, 2.844vw + 21.333px, 4rem);
  font-weight: 400;
  letter-spacing: 6.4px;
  line-height: 2;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}
.p-chronology__body {
  margin-block-start: 8px;
  max-inline-size: 600px;
}
@media (width >= 992px) {
  .p-chronology__body {
    margin-block-start: 85px;
    max-inline-size: none;
  }
}
.p-chronology__text {
  margin-block-end: -20px;
  padding-block: 45px;
  padding-inline: 32px;
  position: relative;
  top: -20px;
  inline-size: 100%;
  z-index: 2;
}
@media (width >= 992px) {
  .p-chronology__text {
    left: 0;
    margin-block-end: 0;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    inline-size: 56.899%;
  }
}
@media (width >= 1200px) {
  .p-chronology__text {
    min-block-size: 217px;
    top: calc(50% + 40.5px);
    translate: 0 -50%;
  }
}
.p-chronology__text p {
  font-family: "Noto Sans JP", BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 1.6px;
  line-height: 2;
  margin-bottom: 0;
  text-transform: uppercase;
  text-wrap: pretty;
}
@media (width >= 992px) {
  .p-chronology__text p {
    font-size: 1rem;
  }
}
@media (width >= 992px) {
  .p-chronology__image {
    margin-inline-start: auto;
    inline-size: 51.299%;
  }
}

.p-brewery {
  padding-block-end: 70.5px;
  padding-block-start: 63.25px;
}
@media (width >= 992px) {
  .p-brewery {
    padding-block-end: 141px;
    padding-block-start: 126.5px;
  }
}
.p-brewery__inner {
  padding-inline: 20px;
}
@media (width >= 992px) {
  .p-brewery__inner {
    margin-inline: auto;
    max-inline-size: 1312px;
    padding-inline: 40px;
  }
}
.p-brewery__gallery {
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-block-start: 48px;
  margin-inline: auto;
  max-inline-size: 600px;
}
@media (width >= 992px) {
  .p-brewery__gallery {
    --gap-size: clamp(16px, 14.764vw - 130.457px, 91px);
    column-gap: var(--gap-size);
    grid-template-columns: repeat(3, 1fr);
    margin-block-start: 71px;
    max-inline-size: none;
    row-gap: var(--gap-size);
  }
}
.p-brewery__gallery-item {
  aspect-ratio: 1/1;
}
.p-brewery__gallery-item img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

@media (width >= 992px) {
  .p-page-beer .p-mv__title {
    left: calc(50% + clamp(218px, 13.976vw + 79.354px, 289px));
    position: absolute;
    top: calc(50% + 37.5px);
  }
}

.p-product {
  background: url(/assets/images/warsteiner/beer/product-bg.webp) no-repeat left top/contain;
  margin-block-start: 43.5px;
  padding-block: 43.5px;
}
@media (width >= 992px) {
  .p-product {
    margin-block-start: 0;
    padding-block: 174px;
  }
}
.p-product__inner {
  padding-inline: 20px;
}
@media (width >= 992px) {
  .p-product__inner {
    grid-template-columns: 13.2vw 78.933vw 7.867vw;
    padding-inline: 0;
  }
}
.p-product__content {
  gap: 60px;
  grid-template-columns: repeat(1, 1fr);
}
@media (width >= 576px) {
  .p-product__content {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width >= 992px) {
  .p-product__content {
    gap: 81px;
    grid-column: 2/3;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-product-item {
  flex-direction: column-reverse;
  gap: 24px;
  margin-inline: auto;
  max-inline-size: 1184px;
}
@media (width >= 576px) {
  .p-product-item {
    gap: 40px;
  }
}
@media (width >= 992px) {
  .p-product-item {
    flex-direction: row-reverse;
    gap: 56px;
  }
}
.p-product-item > div:first-child {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  block-size: 100%;
  justify-content: space-between;
}
.p-product-item > div:first-child > div:first-child > div:nth-child(1) span {
  background-color: #a60505;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  left: 0;
  line-height: normal;
  font-size: 0.875rem;
  padding-block: 0.4em;
  padding-inline: 1.25em;
}
@media (width >= 992px) {
  .p-product-item > div:first-child > div:first-child > div:nth-child(1) span {
    margin-block-start: clamp(7px, 2.79vw - 3.46px, 30px);
    font-size: 1rem;
    padding-block: 0.625em;
    padding-inline: 1.875em;
  }
}
.p-product-item > div:first-child > div:first-child > div:nth-child(1) span.m-seasonal {
  background-color: #7fa3af;
}
.p-product-item > div:first-child > div:first-child > div:nth-child(2) {
  max-inline-size: 628px;
}
.p-product-item > div:first-child > div:first-child > div:nth-child(2) h2 {
  color: #cdb277;
  font-family: "Jost", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 2.4px;
  line-height: 2;
  margin-bottom: 0;
  text-wrap: balance;
}
@media (width >= 992px) {
  .p-product-item > div:first-child > div:first-child > div:nth-child(2) h2 {
    font-size: 1.5rem;
    inline-size: fit-content;
  }
}
.p-product-item > div:first-child > div:first-child > div:nth-child(3) {
  margin-block-start: 0.5em;
}
@media (width >= 576px) {
  .p-product-item > div:first-child > div:first-child > div:nth-child(3) {
    margin-block-start: 1em;
  }
}
@media (width >= 992px) {
  .p-product-item > div:first-child > div:first-child > div:nth-child(3) {
    margin-block-start: clamp(10px, 3.74vw - 27.102px, 29px);
  }
}
.p-product-item > div:first-child > div:first-child > div:nth-child(3) p {
  color: #fff;
  font-family: "Noto Sans JP", BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  letter-spacing: 1.6px;
  margin-bottom: 0;
  text-wrap: pretty;
}
.p-product-item > div:first-child > div:nth-child(2) {
  margin-block: 40px 0;
  margin-inline: auto;
  text-align: center;
  inline-size: 100%;
}
@media (width >= 576px) {
  .p-product-item > div:first-child > div:nth-child(2) {
    inline-size: fit-content;
  }
}
@media (width >= 992px) {
  .p-product-item > div:first-child > div:nth-child(2) {
    margin-block: auto 37px;
    margin-block-end: clamp(0px, 7.283vw - 72.252px, 37px);
  }
}
.p-product-item > div:nth-child(2) {
  position: relative;
}
@media (width >= 992px) {
  .p-product-item > div:nth-child(2) {
    flex-shrink: 0;
    inline-size: 42.23%;
  }
}
.p-product-item > div:nth-child(2) span {
  background-color: #a60505;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  left: 0;
  line-height: normal;
  padding-block: 17px;
  padding-inline: 47px;
  position: absolute;
  top: 0;
  z-index: 2;
}
@media (width >= 992px) {
  .p-product-item:nth-child(even) {
    flex-direction: row;
    gap: 22px;
  }
}
@media (width >= 992px) {
  .p-product-item:nth-child(even) > div:first-child > div:first-child {
    margin-inline-start: 34px;
  }
}
.p-product-item:nth-child(2) > div:nth-child(2) span {
  background-color: #7fa3af;
}
.p-product-item:nth-child(3) > div:nth-child(2) span {
  background-color: #7fa3af;
}
.p-product-item:nth-child(4) > div:nth-child(2) span {
  background-color: #cdb277;
}
.p-product-item:nth-child(5) > div:nth-child(2) span {
  background-color: #cdb277;
}

.beer-item {
  margin-block-end: 3em;
  padding: 1em;
  padding-block-end: 2em;
  text-align: center;
  block-size: auto;
  border-block-end: 1px solid rgba(255, 255, 255, 0.15);
}
@media (width >= 768px) {
  .beer-item {
    margin-block-end: 3em;
    padding: 1.5em;
  }
}
@media (width >= 992px) {
  .beer-item {
    margin-block-end: 5em;
    padding-block-end: 1.5em;
    block-size: 100%;
    border-block-end: none;
  }
}
.beer-item .beer-image {
  padding: 1.5em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (width >= 768px) {
  .beer-item .beer-image {
    padding: 2em;
  }
}
@media (width >= 992px) {
  .beer-item .beer-image {
    padding: 3em;
  }
}
.beer-item .beer-image img {
  max-block-size: 250px;
  inline-size: auto;
  max-inline-size: 100%;
  object-fit: contain;
}
@media (width >= 768px) {
  .beer-item .beer-image img {
    max-block-size: 300px;
  }
}
@media (width >= 992px) {
  .beer-item .beer-image img {
    max-block-size: 350px;
  }
}
.beer-item .beer-name {
  font-weight: 400;
  font-size: 1.125rem;
}
@media (width >= 992px) {
  .beer-item .beer-name {
    font-size: 1.125rem;
  }
}
@media (width >= 992px) {
  .beer-item:nth-child(even) .beer-image {
    order: 2;
  }
  .beer-item:nth-child(even) .beer-inner {
    order: 1;
  }
}
.beer-item .beer-inner {
  padding: 0.5em;
  text-align: start;
  position: relative;
}
@media (width >= 768px) {
  .beer-item .beer-inner {
    padding: 1.5em;
  }
}
@media (width >= 992px) {
  .beer-item .beer-inner {
    padding: 2em;
  }
}
.beer-item .beer-inner[data-saletype=limited]::before {
  content: "限定";
  background-color: #a60505;
  padding: 0.3em 0.8em;
  color: #fff;
}
.beer-item .beer-inner[data-saletype=standard]::before {
  content: "定番";
  background-color: #b69d6b;
  padding: 0.3em 0.8em;
  color: #fff;
}
.beer-item .beer-inner[data-saletype=regular]::before {
  content: "定期";
  background-color: #8ca9b1;
  padding: 0.3em 0.8em;
  color: #fff;
}
.beer-item .beer-inner .btn-wrapper {
  position: static;
  bottom: auto;
  left: auto;
  translate: none;
  display: flex;
  justify-content: center;
  margin-block-start: 1.5em;
}
@media (width >= 992px) {
  .beer-item .beer-inner .btn-wrapper {
    position: absolute;
    bottom: 4em;
    left: 50%;
    translate: -50%;
    margin-block-start: 0;
  }
}

.btn-wrapper {
  position: absolute;
  bottom: -2em;
  left: 50%;
  translate: -50%;
}
@media (width >= 576px) {
  .btn-wrapper {
    bottom: 4em;
  }
}