@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-font-base: #fff;
  --color-font-gray: #535353;
  --color-font-light-gray: #868585;
  --color-font-link: #3336d3;
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #ecd252;
  --color-dark-green: #092f10;
  --color-brand-beer: #ffd500;
  --color-brand-sweets: #99d88f;
  --color-brand-food: #eeab8c;
  --color-to-top: #ffe564;
  --color-bg-gray: #5b5b5b;
  --color-bg-off-white: rgba(255, 255, 255, 0.7);
  --color-bg-dark-gray: #252525;
  --color-bg-button-overlay: rgba(0, 0, 0, 0.3);
  --color-bg-privacy-overlay: rgba(254, 254, 254, 0.95);
  --color-bg-gradation: linear-gradient(180deg, #000 52.68%, #666 100%);
  --color-access-timeline: linear-gradient(180deg, #fff 9%, #fff 93%, rgba(153, 153, 153, 0) 100%);
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 920px;
  --width-content: 1260px;
}

/*!
global > font
------------------------------
*/
:root {
  /* 英字（ゴシック）を先頭に置く */
  --font-family-en: "Noto Sans", sans-serif;
  --font-family-base: "Noto Serif JP", serif;
  --font-family-accent: "Sawarabi Mincho", serif;
  --font-family-sub: "Noto Serif", serif;
  --font-family-gothic: "Noto Sans JP", sans-serif;
  --font-family-cursive: "Alex Brush", cursive;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
}

iframe {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
body {
  line-height: 1.8;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  background-color: var(--color-black);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-ptb {
  padding: 50px 0 33px;
}
@media screen and (min-width: 768px) {
  .u-ptb {
    padding: 70px 0;
  }
}

.u-fade-item {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.u-fade-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.u-cc {
  filter: grayscale(1); /* 白黒 */
  transition: filter 1s ease-out;
  will-change: filter;
}

.u-cc.is-active {
  filter: grayscale(0);
}

.u-fade-cc {
  opacity: 0;
  transform: translateY(50px);
  filter: grayscale(1);
  /* transition を1本に統合して競合を防ぐ */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, filter 1s ease-out 0.4s;
  will-change: opacity, transform, filter;
}

.u-fade-cc.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: grayscale(0);
}

.u-hover-underline {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s;
  padding-bottom: 4px;
}

@media (any-hover: hover) {
  .u-hover-underline:hover {
    background-size: 100% 1px;
  }
}
.u-hover-color-change-white {
  transition: color 0.3s, background-color 0.3s;
}
@media (any-hover: hover) {
  .u-hover-color-change-white:hover {
    color: var(--color-black);
    background-color: var(--color-bg-off-white);
  }
}

.u-icon-external-link {
  display: block;
  width: 15px;
  height: 15px;
  -webkit-mask-image: url("../img/common/icon-external.svg");
          mask-image: url("../img/common/icon-external.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: currentColor;
}
.u-icon-external-link--white {
  background-color: var(--color-white);
}
.u-icon-external-link--contact {
  width: 18px;
  height: 14px;
  -webkit-mask-image: url("../img/common/icon-mail.svg");
          mask-image: url("../img/common/icon-mail.svg");
}

/*!
component > button
------------------------------
*/
.c-button {
  max-width: 273px;
  width: 100%;
}
.c-button a,
.c-button span {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: auto 28px;
  gap: 8px;
  padding: 6.5px 0;
  border: 1px solid var(--color-white);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button a,
  .c-button span {
    gap: 19px;
    letter-spacing: 0em;
  }
}
.c-button a::after,
.c-button span::after {
  content: "";
  display: block;
  width: 28px;
  height: 6px;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  right: 0;
  margin-right: 21px;
  transform: translateY(-50%);
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .c-button a:hover,
  .c-button span:hover {
    background-color: var(--color-bg-off-white);
    color: var(--color-black);
  }
  .c-button a:hover::after,
  .c-button span:hover::after {
    background-color: var(--color-black);
  }
}

.c-button--beer a {
  color: var(--color-brand-beer);
  border: 1px solid var(--color-brand-beer);
}
.c-button--beer a::after {
  background-color: var(--color-brand-beer);
}
@media (any-hover: hover) {
  .c-button--beer a:hover {
    background-color: var(--color-brand-beer);
  }
  .c-button--beer a:hover::after {
    background-color: var(--color-black);
  }
}

.c-button--sweets a {
  border: 1px solid var(--color-brand-sweets);
  color: var(--color-brand-sweets);
}
.c-button--sweets a::after {
  background-color: var(--color-brand-sweets);
}
@media (any-hover: hover) {
  .c-button--sweets a:hover {
    background-color: var(--color-brand-sweets);
  }
  .c-button--sweets a:hover::after {
    background-color: var(--color-black);
  }
}

.c-button--food a {
  border: 1px solid var(--color-brand-food);
  color: var(--color-brand-food);
}
.c-button--food a::after {
  background-color: var(--color-brand-food);
}
@media (any-hover: hover) {
  .c-button--food a:hover {
    background-color: var(--color-brand-food);
  }
  .c-button--food a:hover::after {
    background-color: var(--color-black);
  }
}

.c-button--membership a {
  color: var(--color-black);
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.c-button--membership a::after {
  background-color: var(--color-black);
}
@media (any-hover: hover) {
  .c-button--membership a:hover {
    color: var(--color-primary);
    background-color: var(--color-black);
  }
  .c-button--membership a:hover::after {
    background-color: var(--color-primary);
  }
}

.c-button--preparing a {
  border: 1px solid var(--color-white);
  color: var(--color-white);
}
.c-button--preparing a::after {
  background-color: var(--color-white);
}
@media (any-hover: hover) {
  .c-button--preparing a:hover {
    color: var(--color-black);
    background-color: var(--color-bg-off-white);
  }
  .c-button--preparing a:hover::after {
    background-color: var(--color-black);
  }
}

.c-button--preparing-white a {
  border: 1px solid var(--color-white);
  color: var(--color-black);
  background-color: var(--color-white);
}
.c-button--preparing-white a::after {
  background-color: var(--color-black);
}
@media (any-hover: hover) {
  .c-button--preparing-white a:hover {
    color: var(--color-white);
    background-color: var(--color-black);
  }
  .c-button--preparing-white a:hover::after {
    background-color: var(--color-bg-off-white);
  }
}

.c-button--single {
  max-width: 245px;
}
@media screen and (min-width: 768px) {
  .c-button--single {
    max-width: 336px;
  }
}
.c-button--single a {
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 12.5px 0;
  padding-left: 0;
}
.c-button--single a::after {
  -webkit-mask-image: url(../img/common/arrow-reverse.svg);
          mask-image: url(../img/common/arrow-reverse.svg);
  background-color: var(--color-white);
  right: auto;
  left: 0;
  margin-right: 0;
  margin-left: 30px;
}
@media screen and (min-width: 768px) {
  .c-button--single a::after {
    left: 40px;
  }
}
@media (any-hover: hover) {
  .c-button--single a:hover {
    color: var(--color-black);
    background-color: var(--color-bg-off-white);
  }
  .c-button--single a:hover::after {
    background-color: var(--color-black);
  }
}

.c-cta-buttons {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .c-cta-buttons {
    margin-top: 62px;
  }
}
.c-cta-buttons .c-button a {
  text-align: left;
  padding-left: 66px;
}
.c-cta-buttons .c-button--single a {
  padding-left: 81px;
}
@media screen and (min-width: 768px) {
  .c-cta-buttons .c-button--single a {
    padding-left: 126px;
  }
}
.c-cta-buttons .c-button--header a {
  padding-left: 26px;
}
@media screen and (min-width: 768px) {
  .c-cta-buttons .c-button--header a {
    text-align: center;
    padding-left: 62px;
  }
}

/*!
component > title
------------------------------
*/
/*!
component > title
------------------------------
*/
.c-banner {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .c-banner {
    flex-direction: row;
    justify-content: center;
    gap: 50px;
  }
}

.c-banner-text {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-banner-text {
    font-size: 24px;
  }
}

.c-banner-button img {
  filter: brightness(1);
  transition: filter 0.3s ease;
}
@media (any-hover: hover) {
  .c-banner-button:hover img {
    filter: brightness(0.6);
  }
}

/*!
component > post
------------------------------
*/
.c-post {
  max-width: 333px;
  aspect-ratio: 333/539;
  box-shadow: 0px 0px 30px 0px rgba(255, 213, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .c-post {
    aspect-ratio: 333/546;
  }
}

@media (any-hover: hover) {
  .c-post-link:hover .c-button span {
    background-color: var(--color-bg-off-white);
    color: var(--color-black);
  }
}

.c-post-image {
  aspect-ratio: 333/320;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-post-summary {
  padding: 25px 35px;
  background-color: var(--color-bg-off-white);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .c-post-summary {
    gap: 7px;
  }
}

.c-post-time {
  color: var(--color-font-gray);
  font-family: var(--font-family-gothic);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-post-time {
    font-size: 16px;
  }
}

.c-post-tag {
  padding: 1px 12px;
  background-color: var(--color-dark-green);
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .c-post-tag {
    padding: 0 12px;
  }
}
.c-post-tag span {
  display: inline-block;
  font-family: var(--font-family-gothic);
  font-size: 14px;
  line-height: 1.36;
}

.c-post-title {
  font-family: var(--font-family-gothic);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-black);
  min-height: 61px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* ← ここで2行固定 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-post-title {
    font-size: 19px;
    min-height: 68px;
  }
}
.c-post-title span {
  display: block;
}

.c-post-button span,
.c-post-button a {
  text-align: center;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}
.c-post-button span::after,
.c-post-button a::after {
  background-color: var(--color-black);
  margin-right: 66px;
}

/*!
component > pagination
------------------------------
*/
.c-pagination {
  padding: 70px 0 80px;
}
@media screen and (min-width: 768px) {
  .c-pagination {
    padding: 120px 0;
  }
}

.c-pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.c-pagination-number,
.c-pagination-link {
  padding: 5px 11px;
  font-family: var(--font-family-gothic);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .c-pagination-number,
  .c-pagination-link {
    padding: 7px 12px;
    font-size: 16px;
  }
}

.c-pagination-number--current {
  display: inline-block;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 100% 1px;
  background-repeat: no-repeat;
}

.c-pagination-link {
  display: inline-block;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}
@media (any-hover: hover) {
  .c-pagination-link:hover {
    background-size: 100% 1px;
  }
}

.c-pagination-icon {
  padding: 0px 11px;
  display: block;
  width: 8px;
  height: 13px;
  aspect-ratio: 8/13;
  position: relative;
  background-image: url("../img/common/icon-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  overflow: visible;
}
.c-pagination-icon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 1px;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background-size 0.3s;
}
@media (any-hover: hover) {
  .c-pagination-icon:hover::after {
    background-size: 100% 1px;
  }
}

/*!
component > recommend-button
------------------------------
*/
.c-recommend-button {
  position: fixed;
  top: 80%;
  right: 12px;
  width: 85px;
  aspect-ratio: 1/1;
  border-radius: 100vh;
  background-color: var(--color-black);
  display: grid;
  place-items: center;
  z-index: var(--z-index-menu);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-recommend-button {
    top: 70%;
    width: 155px;
    right: 38px;
  }
}
.c-recommend-button.is-visible {
  opacity: 1;
  visibility: visible;
}
.c-recommend-button a {
  width: 81px;
  aspect-ratio: 1/1;
  border-radius: 100vh;
  border: 1px solid var(--color-white);
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-recommend-button a {
    width: 147px;
    gap: 7px;
  }
}
.c-recommend-button a p {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.12em;
  text-align: center;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-recommend-button a p {
    font-size: 20px;
    line-height: 31px;
    letter-spacing: 0;
  }
}
.c-recommend-button a p span {
  display: block;
}
@media (any-hover: hover) {
  .c-recommend-button a:hover {
    background-color: var(--color-bg-off-white);
    border-color: var(--color-black);
  }
  .c-recommend-button a:hover p {
    color: var(--color-black);
  }
  .c-recommend-button a:hover .c-recommend-button {
    background-color: var(--color-bg-off-white);
  }
  .c-recommend-button a:hover .c-recommend-button-arrow {
    background-color: var(--color-black);
  }
}
@media (any-hover: hover) {
  .c-recommend-button:has(a:hover) {
    background-color: var(--color-white);
  }
}

.c-recommend-button-arrow {
  -webkit-mask-image: url("../img/common/arrow.svg");
          mask-image: url("../img/common/arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-white);
  display: block;
  width: 27px;
  height: 4px;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-recommend-button-arrow {
    width: 50px;
    height: 6px;
  }
}

/*!
component > post
------------------------------
*/
.c-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 画面を常に覆うサイズ */
  width: 177.78vh;
  height: 100vh;
  min-width: 100vw;
  min-height: 177.78vw;
}
@media screen and (min-width: 768px) {
  .c-video-wrapper {
    width: 100vw;
    height: 56.25vw; /* 16:9 */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 */
  }
}

.c-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none; /* 動画上のクリック無効化 */
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  width: min(90%, var(--width-content-s));
  margin-inline: auto;
}

.l-container {
  width: min(90%, var(--width-content));
  margin-inline: auto;
}

/*!
layout > header
------------------------------
*/
.l-header {
  width: 100%;
  z-index: var(--z-index-header);
  position: fixed;
  top: 0;
  left: 0;
}

.l-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
  z-index: var(--z-index-header);
  color: var(--color-white);
}
@media screen and (min-width: 1080px) {
  .l-header-inner {
    padding: 0 40px;
  }
}

.l-header--top {
  position: absolute;
  opacity: 0;
  transform: translateY(-20px);
}

.l-header.is-active {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.l-header-logo {
  display: block;
  padding: 10px 0 0 0;
}
.l-header-logo img {
  display: block;
  max-width: 46px;
  aspect-ratio: 218/278;
}
@media screen and (min-width: 1080px) {
  .l-header-logo img {
    max-width: 93px;
  }
}

@media screen and (min-width: 1080px) {
  .l-header-menu-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}

.l-header-menu {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/common/dialog-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: calc(var(--z-index-header) - 1);
}
@media screen and (min-width: 1080px) {
  .l-header-menu {
    overflow: visible;
    position: static;
    display: block;
    width: auto;
    height: auto;
    background: transparent;
  }
}
.l-header-menu::backdrop {
  display: none;
}

.l-header-menu-head {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 1080px) {
  .l-header-menu-head {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .l-header-menu-close-button {
    display: none;
  }
}
.l-header-menu-close-button img {
  width: 20px;
  height: 16px;
}

.l-header-nav {
  height: 100%;
  padding: 48px 70px 0 20px;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 1080px) {
  .l-header-nav {
    background-color: transparent;
    padding: 0;
  }
}

.l-header-nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  max-width: 276px;
}
@media screen and (min-width: 1080px) {
  .l-header-nav-list {
    padding: 0;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
    margin-left: inherit;
    max-width: none;
  }
}

.l-header-nav-item {
  width: 100%;
  font-family: var(--font-family-en);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 1080px) {
  .l-header-nav-item {
    color: inherit;
    width: -moz-max-content;
    width: max-content;
    font-size: 18px;
    max-width: 276px;
  }
}
.l-header-nav-item a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.l-header-nav-details {
  position: relative;
}

.l-header-nav-summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
@media screen and (min-width: 1080px) {
  .l-header-nav-summary {
    gap: 10px;
  }
}

.l-header-nav-icon {
  width: 10px;
  height: 5px;
  -webkit-mask-image: url("../img/common/icon-header-arrow.svg");
          mask-image: url("../img/common/icon-header-arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-white);
  transition: -webkit-mask-image 0.3s ease;
  transition: mask-image 0.3s ease;
  transition: mask-image 0.3s ease, -webkit-mask-image 0.3s ease;
}

@media (min-width: 500px) and (max-width: 1079px) {
  .l-header-nav-icon {
    display: none;
  }
  .l-header-nav-summary {
    padding-right: 0;
  }
}
.l-header-nav-summary.is-open .l-header-nav-icon {
  transition: rotate(180deg);
  transition: rotate 0.3s ease, -webkit-mask-image 0.3s ease;
  transition: mask-image 0.3s ease, rotate 0.3s ease;
  transition: mask-image 0.3s ease, rotate 0.3s ease, -webkit-mask-image 0.3s ease;
}

.l-header-submenu-wrap {
  overflow: hidden;
  height: auto;
}
@media screen and (min-width: 1080px) {
  .l-header-submenu-wrap {
    position: absolute;
    top: 28px;
    left: -20px;
  }
}

.l-header-submenu {
  margin-top: 18px;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1080px) {
  .l-header-submenu {
    gap: 25px;
    width: -moz-max-content;
    width: max-content;
    min-width: 231px;
  }
}

.l-header-submenu-item a {
  font-family: var(--font-family-base);
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1080px) {
  .l-header-submenu-item a {
    font-size: 16px;
    letter-spacing: 0;
  }
}
.l-header-submenu-item--brand a {
  font-family: var(--font-family-en);
  letter-spacing: 0.2em;
}

.l-header-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.l-header-select-language {
  font-family: var(--font-family-en);
  font-size: 12px;
  line-height: 1.3;
  color: var(--color-font-light-gray);
}
@media screen and (min-width: 1080px) {
  .l-header-select-language {
    font-size: 16px;
  }
}

.l-header-select-language span.is-active {
  color: var(--color-white);
}

.l-header-select-language--dialog {
  color: var(--color-font-light-gray);
}

.l-header-select-language--dialog span.is-active {
  color: var(--color-white);
}

.l-header-menu-open-button {
  width: 20px;
  aspect-ratio: 20/16;
}
@media screen and (min-width: 1080px) {
  .l-header-menu-open-button {
    display: none;
  }
}

.l-header-icon {
  display: block;
  width: 20px;
  height: 17px;
  background-color: var(--color-white);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.l-header-icon--open {
  -webkit-mask-image: url("../img/common/icon-open-button.svg");
          mask-image: url("../img/common/icon-open-button.svg");
}
.l-header-icon--close {
  -webkit-mask-image: url("../img/common/icon-close-button.svg");
          mask-image: url("../img/common/icon-close-button.svg");
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  position: relative;
  background-image: url("../img/common/footer-bg-sp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer {
    background-image: url("../img/common/footer-bg.jpg");
  }
}

.l-footer-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 30px 0 #000;
  top: 34px;
  left: 0;
  width: 100%;
  height: calc(100% - 119px);
  z-index: calc(var(--z-index-default) - 1);
}
@media screen and (min-width: 768px) {
  .l-footer-overlay {
    top: 60px;
    height: calc(100% - 171px);
  }
}

.l-footer-wrapper {
  padding: 50px 0 30px;
}
@media screen and (min-width: 768px) {
  .l-footer-wrapper {
    padding: 90px 0 117px;
  }
}

.l-footer-inner {
  max-width: 206px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer-inner {
    max-width: 510px;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-inner {
    max-width: 979px;
  }
}

.l-footer-nav-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer-nav-list {
    grid-template-columns: repeat(2, auto);
    gap: 25px 60px;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-nav-list {
    grid-template-columns: repeat(4, auto);
  }
}

.l-footer-nav-item {
  font-family: var(--font-family-en);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .l-footer-nav-item {
    font-size: 16px;
  }
}

.l-footer-nav-item--bottom {
  margin-bottom: -4px;
}
.l-footer-nav-item--bottom a {
  line-height: 1;
}

.l-footer-nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 1080px) {
  .l-footer-nav-item > a {
    padding-bottom: 4px;
  }
}

@media screen and (min-width: 768px) {
  .l-footer-nav-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-nav-item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/5;
  }
}

.l-footer-nav-item:nth-child(2) {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .l-footer-nav-item:nth-child(2) {
    margin-top: 0;
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-nav-item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1/5;
  }
}

@media screen and (min-width: 768px) {
  .l-footer-nav-item:nth-child(3) {
    grid-column: 1/2;
    grid-row: 2/8;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-nav-item:nth-child(3) {
    grid-column: 3/4;
    grid-row: 1/5;
  }
}

@media screen and (min-width: 768px) {
  .l-footer-nav-item:nth-child(4) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-nav-item:nth-child(4) {
    grid-column: 4/5;
    grid-row: 1/2;
  }
}

@media screen and (min-width: 768px) {
  .l-footer-nav-item:nth-child(5) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-nav-item:nth-child(5) {
    grid-column: 4/5;
    grid-row: 2/3;
  }
}

@media screen and (min-width: 768px) {
  .l-footer-nav-item:nth-child(6) {
    grid-column: 2/3;
    grid-row: 4/5;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer-nav-item:nth-child(6) {
    grid-column: 4/5;
    grid-row: 3/4;
  }
}

.l-footer-submenu {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .l-footer-submenu {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
  }
}

.l-footer-submenu-item {
  display: flex;
}
.l-footer-submenu-item a {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: -4px;
}
@media screen and (min-width: 768px) {
  .l-footer-submenu-item a {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.l-footer-submenu-item::before {
  content: "―";
}
.l-footer-submenu-item:not(:first-child) {
  margin-top: 10px;
}

.l-footer-submenu-item--gift {
  padding-top: 5px;
}

@media screen and (min-width: 768px) {
  .l-footer-foot {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}

.l-footer-sns-icons {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .l-footer-sns-icons {
    margin-top: 0;
    padding-left: 114px;
  }
}

.l-footer-sns-icon span {
  -webkit-mask-image: url("../img/common/icon-cart.svg");
          mask-image: url("../img/common/icon-cart.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-white);
  display: block;
  width: 28px;
  aspect-ratio: 1/1;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .l-footer-sns-icon span:hover {
    background-color: var(--color-bg-off-white);
  }
}

.l-footer-sns-icon:nth-of-type(2) span {
  -webkit-mask-image: url("../img/common/icon-insta.svg");
          mask-image: url("../img/common/icon-insta.svg");
}

.l-footer-sns-icon:nth-of-type(3) span {
  -webkit-mask-image: url("../img/common/icon-facebook.svg");
          mask-image: url("../img/common/icon-facebook.svg");
}

.l-footer-privacy {
  position: relative;
  margin-top: 17px;
  padding-bottom: 30px;
  text-align: center;
  display: block;
  font-family: var(--font-family-gothic);
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .l-footer-privacy {
    margin-top: 0;
    margin-right: 69px;
    padding-bottom: 0;
    letter-spacing: 0.2em;
  }
}

.l-footer-copyright {
  padding: 12px 0;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-family: var(--font-family-gothic);
  font-size: 10px;
  line-height: 1.2;
  background-color: var(--color-dark-green);
}
@media screen and (min-width: 768px) {
  .l-footer-copyright {
    padding: 20px 0;
    font-size: 16px;
  }
}

/*!
page > top > top-common
------------------------------
*/
#concept h2,
#news h2 {
  position: relative;
  display: inline-block;
  height: 45px;
  line-height: 158px;
  font-size: 24px;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  #concept h2,
  #news h2 {
    height: 50px;
    line-height: 200px;
    font-size: 36px;
    letter-spacing: 5.4px;
  }
}

#concept h2::before,
#news h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 1px;
  height: 45px;
  margin: auto;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  #concept h2::before,
  #news h2::before {
    height: 50px;
  }
}

.top-common-title {
  font-family: var(--font-family-en);
  font-weight: 600;
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  position: relative;
  height: 300vh; /* FVの高さ */
}

.top-kv-inner {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
}

.top-kv-scroll-text,
.top-kv-message {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity 1s ease;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .top-kv-scroll-text,
  .top-kv-message {
    padding-top: 70px;
  }
}
.top-kv-scroll-text.is-visible,
.top-kv-message.is-visible {
  opacity: 1;
}

.top-kv-scroll-text {
  display: grid;
  place-items: center;
  transition: opacity 0.8s ease;
}
.top-kv-scroll-text p {
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0.21em;
}
@media screen and (min-width: 768px) {
  .top-kv-scroll-text p {
    font-size: 36px;
  }
}

.top-kv-message {
  transition: opacity 1s ease;
}

.top-kv-message-text {
  position: relative;
  display: inline-flex;
  align-self: flex-end;
}
.top-kv-message-text p {
  writing-mode: vertical-rl;
  white-space: pre;
  text-orientation: upright;
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0.2em;
  font-feature-settings: "vert" on;
}
@media screen and (min-width: 768px) {
  .top-kv-message-text p {
    font-size: 48px;
  }
}
.top-kv-message-text p span {
  display: block;
}
.top-kv-message-text::after {
  content: "";
  width: 89px;
  height: 45px;
  background-image: url("../img/top/fv-text.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 9px;
  right: -4px;
}
@media screen and (min-width: 1080px) {
  .top-kv-message-text::after {
    width: 180px;
    height: 95px;
    bottom: 13px;
    right: -3px;
  }
}

.top-kv-message-text2 {
  margin-top: 31px;
  display: flex;
  text-align: center;
  align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .top-kv-message-text2 {
    margin-top: 43px;
  }
}
.top-kv-message-text2 p {
  font-family: var(--font-family-accent);
  font-size: 13px;
  line-height: 1.9;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-kv-message-text2 p {
    font-size: 15px;
  }
}
.top-kv-message-text2 p span {
  display: block;
}

/*!
page > top > top-concept
------------------------------
*/
#concept {
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.top-concept {
  position: relative;
  overflow: hidden;
  z-index: calc(var(--z-index-default) + 1);
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .top-concept {
    padding-top: 119px;
  }
}
.top-concept::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 77.33%, rgb(0, 0, 0) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: calc(var(--z-index-default) - 2);
}

.top-concept-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: calc(var(--z-index-default) - 2);
  overflow: hidden;
}

.top-concept-bg img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center center;
  transform: scale(1.2); /* 初期拡大 */
  transition: transform 0.08s linear;
  will-change: transform;
}

.top-concept-container {
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .top-concept-container {
    padding-inline: 18px;
    padding-bottom: 130px;
  }
}

.top-concept-1,
.top-concept-2 {
  display: block;
}
@media screen and (min-width: 768px) {
  .top-concept-1,
  .top-concept-2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 9%;
  }
}

.top-concept-2 {
  padding-top: 158px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-concept-2 {
    flex-direction: row-reverse;
    gap: 105px;
  }
}

.top-concept-1 {
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-concept-1 {
    padding-top: 116px;
  }
}

.top-concept-text1 {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .top-concept-text1 {
    margin-top: 0;
  }
}

.top-concept-1 h3,
.top-concept-2 h3 {
  font-size: 25px;
  writing-mode: vertical-rl;
  text-indent: -5em;
  letter-spacing: 0.2em;
  line-height: 45px;
  margin: 0 auto;
  font-family: var(--font-family-accent);
}
@media screen and (min-width: 768px) {
  .top-concept-1 h3,
  .top-concept-2 h3 {
    font-size: 40px;
    line-height: 60px;
    margin-top: 3em;
  }
}

.top-concept-2 h3 {
  text-indent: -6.5em;
}
@media screen and (min-width: 768px) {
  .top-concept-2 h3 {
    margin-top: 4em;
  }
}

.top-concept-1 P,
.top-concept-2 P {
  font-family: var(--font-family-accent);
  padding-top: 38px;
  padding-bottom: 42px;
  text-align: justify;
  line-height: 1.98;
  font-size: 15px;
  letter-spacing: 0.2em;
  max-width: 246px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .top-concept-1 P,
  .top-concept-2 P {
    padding-top: 50px;
    padding-bottom: 0;
    line-height: 30px;
    max-width: 300px;
  }
}

.top-concept-2 P {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .top-concept-2 P {
    padding-top: 50px;
  }
}

.top-concept-img1,
.top-concept-img2 {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .top-concept-img1,
  .top-concept-img2 {
    width: 60%;
    margin: 0;
  }
}
.top-concept-img1 img,
.top-concept-img2 img {
  aspect-ratio: 333/215;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top-concept-img1 img,
  .top-concept-img2 img {
    aspect-ratio: 734/465;
  }
}

.top-concept-img2 img {
  aspect-ratio: 333/243;
}
@media screen and (min-width: 768px) {
  .top-concept-img2 img {
    aspect-ratio: 733/463;
  }
}

#concept-3 {
  margin-top: 120px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #concept-3 {
    margin-top: 108px;
  }
}

#concept-3 h3 {
  font-size: 27px;
  line-height: 46px;
  letter-spacing: 3px;
}
@media screen and (min-width: 768px) {
  #concept-3 h3 {
    font-size: 40px;
    line-height: 70px;
    letter-spacing: 4.4px;
  }
}

#concept-3 p {
  font-size: 15px;
  line-height: 30px;
  padding: 29px 0 41px 0;
  line-height: 1.9;
  letter-spacing: 0.2em;
  margin: auto;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  #concept-3 p {
    font-size: 20px;
    line-height: 38px;
    padding: 20px 0 60px 0;
    letter-spacing: 4px;
    text-align: center;
    width: auto;
  }
}

.top-concept-br {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-concept-br {
    display: block;
  }
}

.top-concept-button {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-concept-button {
    max-width: 358px;
  }
}
@media screen and (min-width: 768px) {
  .top-concept-button a {
    font-size: 20px;
    padding: 20px 45px;
    grid-template-columns: auto 50px;
  }
}
@media screen and (min-width: 768px) {
  .top-concept-button a::after {
    margin-right: 40px;
  }
}

/*!
page > top > top-concept-message
------------------------------
*/
.top-concept-message {
  position: relative;
  max-height: 497px;
}

.top-concept-message-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 375/300;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-concept-message-inner {
    aspect-ratio: 1440/497;
  }
}

.top-concept-message-text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  text-align: center;
  line-height: 1.9;
  letter-spacing: 0.15em;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .top-concept-message-text {
    font-size: 32px;
  }
}
.top-concept-message-text span {
  display: block;
}

/*!
page > top > top-brand
------------------------------
*/
#brand {
  position: relative;
  background-image: url("../img/top/brand_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding-bottom: 140px;
}
@media screen and (min-width: 768px) {
  #brand {
    padding-bottom: 190px;
  }
}

.top-brand {
  padding-top: 140px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-brand {
    padding-top: 276px;
  }
}
.top-brand::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  aspect-ratio: 375/65;
  max-height: 65px;
  background-color: var(--color-black);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
@media screen and (min-width: 768px) {
  .top-brand::after {
    aspect-ratio: 1440/141;
    max-height: 141px;
  }
}

.top-brand-title {
  margin-top: -15px;
  font-size: 24px;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .top-brand-title {
    font-size: 36px;
    letter-spacing: 5.4px;
  }
}
.top-brand-title::before {
  content: "";
  position: absolute;
  top: -55px;
  left: 0;
  right: 0;
  width: 1px;
  height: 45px;
  margin: auto;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .top-brand-title::before {
    height: 50px;
    top: -70px;
  }
}

#brand-sub {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  #brand-sub {
    margin-top: 26px;
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .top-brand-1,
  .top-brand-2,
  .top-brand-3 {
    margin: 50px 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5.6%;
    padding-right: 5.1%;
  }
}

@media screen and (min-width: 768px) {
  .top-brand-2 {
    flex-direction: row-reverse;
    margin-left: 52px;
  }
}

.top-brand-img1,
.top-brand-img2,
.top-brand-img3 {
  margin-top: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1080px) {
  .top-brand-img1,
  .top-brand-img2,
  .top-brand-img3 {
    max-width: 81%;
    margin-top: 0;
    flex-grow: 1;
  }
}
.top-brand-img1 img,
.top-brand-img2 img,
.top-brand-img3 img {
  aspect-ratio: 335/259;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top-brand-img1 img,
  .top-brand-img2 img,
  .top-brand-img3 img {
    aspect-ratio: 772/533;
  }
}

@media screen and (min-width: 1080px) {
  .top-brand-tex1,
  .top-brand-tex2,
  .top-brand-tex3 {
    text-align: justify;
    width: 37%;
    min-width: 353px;
  }
}

.top-brand-tex1 h3,
.top-brand-tex2 h3,
.top-brand-tex3 h3 {
  margin-top: 14px;
  font-family: var(--font-family-en);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 3.75px;
}
@media screen and (min-width: 1080px) {
  .top-brand-tex1 h3,
  .top-brand-tex2 h3,
  .top-brand-tex3 h3 {
    margin-top: 0;
    font-size: 30px;
    letter-spacing: 4.5px;
    text-align: justify;
    padding: 0;
  }
}

.top-brand-tex1 h3 {
  color: var(--color-brand-beer);
}

.top-brand-tex2 h3 {
  color: var(--color-brand-sweets);
}

.top-brand-tex3 h3 {
  color: var(--color-brand-food);
}

.top-brand-tex1 P,
.top-brand-tex2 P,
.top-brand-tex3 P {
  margin-top: 5px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (min-width: 1080px) {
  .top-brand-tex1 P,
  .top-brand-tex2 P,
  .top-brand-tex3 P {
    margin-top: 15px;
  }
}

.top-brand-text span {
  display: block;
}

.top-brand-button {
  margin-top: 20px;
  margin-inline: auto;
  width: 234px;
}
@media screen and (min-width: 768px) {
  .top-brand-button {
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) {
  .top-brand-button a {
    padding: 8px 20px;
  }
}
@media screen and (min-width: 768px) {
  .top-brand-button a::after {
    margin-right: 34px;
  }
}

/*!
page > top > top-news
------------------------------
*/
#news {
  text-align: center;
  padding: 27px 0 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #news {
    padding: 54px 0 60px;
  }
}

#news-img {
  position: absolute;
  top: 30%;
  right: 0;
  width: 80%;
  aspect-ratio: 800/1042;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.3;
}
@media screen and (min-width: 768px) {
  #news-img {
    top: auto;
    bottom: 60px;
    right: 2%;
    width: 70%;
    max-width: 800px;
  }
}

.top-topics {
  display: block;
  width: 100%;
  max-width: 293px;
  margin: 0 auto;
  padding: 30px 0 0 0;
  z-index: var(--z-index-default);
}
@media screen and (min-width: 768px) {
  .top-topics {
    max-width: 606px;
  }
}
@media screen and (min-width: 1200px) {
  .top-topics {
    max-width: 1149px;
    padding: 74px 0 0 0;
  }
}

.slick-prev,
.slick-next {
  top: 54%;
}

.slick-prev {
  left: -15px;
}

.slick-next {
  right: -15px;
}

.top-news-contents-wrap {
  padding: 0 15px;
  max-width: 293px;
}
@media screen and (min-width: 768px) {
  .top-news-contents-wrap {
    max-width: 303px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  .top-news-contents-wrap {
    max-width: 383px;
    padding: 0 25px;
  }
}
@media (any-hover: hover) {
  .top-news-contents-wrap:hover .c-button span {
    background-color: var(--color-bg-off-white);
    color: var(--color-black);
  }
}

.top-news-contents {
  width: 100%;
  margin: 0;
  box-shadow: 0px 0px 30px 0px rgba(255, 213, 0, 0.2);
}

.top-news-text {
  background: rgba(255, 255, 255, 0.75);
  padding: 25px 20px;
}
@media screen and (min-width: 768px) {
  .top-news-text {
    padding: 29px 35px;
  }
}

.top-news-contents img {
  aspect-ratio: 263/214;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top-news-contents img {
    width: 100%;
    aspect-ratio: 333/320;
  }
}

.top-news-contents p {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .top-news-contents p {
    text-align: justify;
  }
}

.top-day {
  display: block;
  text-align: left;
  font-size: 13px;
  color: var(--color-font-gray);
  font-family: var(--font-family-gothic);
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .top-day {
    font-size: 16px;
  }
}

.top-osirase {
  margin-top: 10px;
  font-family: var(--font-family-sub);
  font-size: 10px;
  line-height: 1.4;
  background-color: var(--color-dark-green);
  padding: 2px 6px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .top-osirase {
    margin-top: 15px;
    font-size: 14px;
    padding: 5px 13px;
  }
}

.top-text {
  margin-top: 10px;
  margin-bottom: 3px;
  font-family: var(--font-family-gothic);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-black);
  min-height: 68px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* ← ここで2行固定 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .top-text {
    margin-top: 15px;
    margin-bottom: 18px;
    font-size: 19px;
    min-height: 68px;
  }
}

.top-news-text span {
  border: 1px solid var(--color-black);
  font-size: 13px;
  color: var(--color-black);
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-news-text span {
    font-size: 15px;
  }
}
.top-news-text span::after {
  margin-right: 40px;
}

.top-news-button {
  margin-inline: auto;
  margin-top: 40px;
  width: 234px;
}
@media screen and (min-width: 768px) {
  .top-news-button {
    margin-top: 47px;
    max-width: none;
    width: 326px;
  }
}
@media screen and (min-width: 768px) {
  .top-news-button a {
    padding: 8px 100px;
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .top-news-button a::after {
    margin-right: 82px;
  }
}

.top-news-link {
  margin-top: 54px;
}

.top-news-link-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
  position: relative;
  z-index: var(--z-index-default);
}
@media screen and (min-width: 768px) {
  .top-news-link-text {
    font-size: 24px;
  }
}

.top-news-banner {
  width: 66.5%;
  max-width: 400px;
  margin-top: 23px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .top-news-banner {
    width: 58.5%;
    max-width: 850px;
    margin-top: 36px;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
  }
}

.top-news-banner img {
  aspect-ratio: 250/75;
}
@media screen and (min-width: 768px) {
  .top-news-banner img {
    aspect-ratio: 400/120;
  }
}

/*!
page > top > top-shop
------------------------------
*/
#shop {
  background-image: url(../img/top/shop-sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0 152px;
  background-position: 0% 98%;
  background-color: var(--color-black);
  position: relative;
}
@media screen and (min-width: 768px) {
  #shop {
    background-image: url(../img/top/shop.jpg);
    background-size: cover;
    padding: 191px 0 73px;
  }
}
#shop::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  aspect-ratio: 375/65;
  max-height: 65px;
  background-color: var(--color-black);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media screen and (min-width: 768px) {
  #shop::before {
    aspect-ratio: 1440/141;
    max-height: 141px;
  }
}

.top-stores-title {
  margin-top: 95px;
  font-size: 24px;
  text-align: center;
  line-height: 1.46;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .top-stores-title {
    margin-top: 85px;
    font-size: 36px;
    letter-spacing: 5.4px;
  }
}
.top-stores-title::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  width: 1px;
  height: 45px;
  margin: auto;
  background-color: var(--color-white);
  z-index: calc(var(--z-index-default) + 1);
}
@media screen and (min-width: 768px) {
  .top-stores-title::before {
    height: 50px;
  }
}

.top-shop-list {
  margin-inline: auto;
  width: 290px;
  padding-left: 5px;
}
@media screen and (min-width: 768px) {
  .top-shop-list {
    padding-left: 0;
    width: 436px;
  }
}

.top-shop-2 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .top-shop-2 {
    margin-top: 50px;
  }
}

.top-shop-3 {
  margin-top: 26px;
}
@media screen and (min-width: 768px) {
  .top-shop-3 {
    margin-top: 60px;
  }
}

.top-shop-1 h3,
.top-shop-2 h3,
.top-shop-3 h3 {
  display: inline-block;
  border-left: 2px solid var(--color-white); /*線の設定*/
  padding: 0 14px; /*余白の設定*/
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .top-shop-1 h3,
  .top-shop-2 h3,
  .top-shop-3 h3 {
    font-size: 20px;
  }
}

.top-shop-1 h3 {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .top-shop-1 h3 {
    margin-top: 30px;
  }
}

.top-shop-link {
  margin-top: 6px;
  width: 290px;
}
@media screen and (min-width: 768px) {
  .top-shop-link {
    margin-top: 24px;
    width: 415px;
  }
}
@media screen and (min-width: 768px) {
  .top-shop-link:nth-child(2) {
    margin-top: 21px;
  }
}

.top-shop-button {
  width: 290px;
}
@media screen and (min-width: 768px) {
  .top-shop-button {
    max-width: none;
    width: 415px;
  }
}
.top-shop-button a {
  font-weight: 500;
  font-size: 13px;
  padding: 6.5px 20px;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .top-shop-button a {
    font-size: 20px;
    padding: 7.5px 20px;
  }
}
@media screen and (min-width: 768px) {
  .top-shop-button a::after {
    margin-right: 47px;
  }
}

.top-shop-button--en a {
  font-family: var(--font-family-en);
}

.top-shop-text {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .top-shop-text {
    margin-top: 10px;
  }
}
.top-shop-text span {
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 768px) {
  .top-shop-text span {
    font-size: 20px;
  }
}

.top-shop-text--en {
  font-family: var(--font-family-en);
}

/*!
page > top > top-tour
------------------------------
*/
#tour {
  text-align: center;
}

.top-tour {
  padding: 140px 0 60px;
  background-color: var(--color-bg-dark-gray);
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-tour {
    padding: 215px 0 140px;
  }
}
.top-tour::before, .top-tour::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  aspect-ratio: 375/65;
  max-height: 65px;
  background-color: var(--color-black);
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
@media screen and (min-width: 768px) {
  .top-tour::before, .top-tour::after {
    aspect-ratio: 1440/141;
    max-height: 141px;
  }
}
.top-tour::before {
  top: -1px;
}
.top-tour::after {
  bottom: -1px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.top-tour-title {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .top-tour-title {
    font-size: 36px;
    letter-spacing: 5.4px;
  }
}
.top-tour-title::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  width: 1px;
  height: 45px;
  margin: auto;
  background-color: var(--color-white);
  z-index: calc(var(--z-index-default) + 1);
}
@media screen and (min-width: 768px) {
  .top-tour-title::before {
    height: 50px;
  }
}

#sub-text {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 2.6px;
}
@media screen and (min-width: 768px) {
  #sub-text {
    font-size: 20px;
    line-height: 38px;
    letter-spacing: 4px;
  }
}

#tour-img {
  display: block;
  width: 100%;
  margin: 0 auto;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  #tour-img {
    display: flex;
    justify-content: center;
  }
}

.top-tour-list {
  margin-top: 30px;
  padding-bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .top-tour-list {
    margin-top: 44px;
    padding-bottom: 60px;
    max-width: 1241px;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 28px;
  }
}

.top-tour-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 395px;
  aspect-ratio: 335/279;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-tour-item {
    width: 395px;
  }
}
.top-tour-item a {
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .top-tour-item a:hover .top-tour-button span {
    color: var(--color-black);
    background-color: var(--color-bg-off-white);
  }
  .top-tour-item a:hover .top-tour-button span::after {
    background-color: var(--color-black);
  }
}

.top-tour-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.top-tour-image img {
  width: 100%;
  aspect-ratio: 335/279;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.6);
}
@media screen and (min-width: 768px) {
  .top-tour-image img {
    aspect-ratio: 395/330;
  }
}

.top-tour-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  position: relative;
  z-index: calc(var(--z-index-default) + 1);
}

.top-tour-title-en {
  font-family: var(--font-family-cursive);
  font-size: 24px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .top-tour-title-en {
    line-height: 1.25;
  }
}

.top-tour-title-ja {
  font-size: 35px;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .top-tour-title-ja {
    font-size: 45px;
    line-height: 62px;
    letter-spacing: -0.05em;
  }
}

.top-tour-button {
  margin-inline: auto;
  margin-top: 10px;
  max-width: 237px;
}
.top-tour-button span {
  color: var(--color-white);
  background-color: var(--color-bg-button-overlay);
  border: 1px solid var(--color-white);
  padding: 9.5px 0;
}
@media screen and (min-width: 768px) {
  .top-tour-button span {
    font-size: 16px;
  }
}
.top-tour-button span::after {
  background-color: var(--color-white);
}

/*!
page > top > top-membership
------------------------------
*/
#membership {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0) 67.22%, rgba(239, 187, 103, 0.83) 100%), #000;
  padding: 142px 0 32px 0;
  text-align: center;
  margin-top: -120px;
}
@media screen and (min-width: 768px) {
  #membership {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0) 50.71%, rgba(239, 187, 103, 0.83) 100%), #000;
    padding: 166px 0 68px 0;
    margin-top: -110px;
  }
}

.top-membership-title {
  margin-top: 61px;
  font-size: 24px;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .top-membership-title {
    font-size: 36px;
    letter-spacing: 5.4px;
  }
}
.top-membership-title::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  width: 1px;
  height: 45px;
  margin: auto;
  background-color: var(--color-white);
  z-index: calc(var(--z-index-default) + 1);
}
@media screen and (min-width: 768px) {
  .top-membership-title::before {
    height: 50px;
  }
}

#membership-sub {
  font-size: 13px;
  letter-spacing: 2.6px;
}
@media screen and (min-width: 768px) {
  #membership-sub {
    font-size: 20px;
    letter-spacing: 4px;
  }
}

#membership-contents {
  margin-top: 28px;
  margin-inline: -20px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  #membership-contents {
    margin-top: 45px;
    margin-inline: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
}

#membership-img {
  width: 100%;
  aspect-ratio: 375/234;
}
@media screen and (min-width: 768px) {
  #membership-img {
    width: 37%;
    aspect-ratio: 469/291;
    max-width: 470px;
  }
}

#membership-text {
  text-align: center;
  padding: 30px 25px 0 25px;
}
@media screen and (min-width: 768px) {
  #membership-text {
    text-align: justify;
    padding: 0;
  }
}

#membership-text p {
  text-align: justify;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  #membership-text p {
    max-width: 500px;
    font-size: 16px;
    letter-spacing: 3.2px;
  }
}

#membership-text span {
  display: block;
}

.top-membership-button {
  margin-top: 32px;
  margin-inline: auto;
  max-width: 237px;
}
@media screen and (min-width: 768px) {
  .top-membership-button {
    margin-inline: inherit;
    max-width: 304px;
  }
}
.top-membership-button a {
  padding: 7px 0;
}
@media screen and (min-width: 768px) {
  .top-membership-button a {
    font-size: 20px;
    padding: 8px 45px;
  }
}
@media screen and (min-width: 768px) {
  .top-membership-button a::after {
    margin-right: 48px;
  }
}

/*!
page > about > header
------------------------------
*/
.about-header {
  position: relative;
}

.about-header-bg img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 375/378;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 428px;
}
@media screen and (min-width: 768px) {
  .about-header-bg img {
    aspect-ratio: 1440/428;
  }
}

.about-header-title {
  text-align: center;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .about-header-title {
    font-size: 36px;
    letter-spacing: 0.15em;
    text-align: center;
  }
}
.about-header-title span {
  display: inline;
}
@media screen and (min-width: 768px) {
  .about-header-title span {
    display: block;
  }
}

/*!
page > about > philosophy
------------------------------
*/
.about-philosophy {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 95.87%, rgb(0, 0, 0) 100%), url("../img/about/philosophy-bg-sp.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .about-philosophy {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 95.87%, rgb(0, 0, 0) 100%), url("../img/about/philosophy-bg.webp");
  }
}

.about-philosophy-list {
  max-width: 1268px;
}
@media screen and (min-width: 768px) {
  .about-philosophy-list {
    margin-inline: auto;
  }
}

.about-philosophy-item {
  padding: 56px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 33px;
}
@media screen and (min-width: 768px) {
  .about-philosophy-item {
    padding: 80px 0 70px;
    align-items: center;
    justify-content: center;
    gap: 46px;
  }
}

.about-philosophy-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 0.4;
  letter-spacing: 0.5em;
  font-feature-settings: "vert" on;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about-philosophy-title {
    font-size: 40px;
    letter-spacing: 0.2em;
  }
}
.about-philosophy-title span {
  display: block;
}
.about-philosophy-title span:last-child {
  margin: 3em 1em 0 0;
}
.about-philosophy-title::after {
  content: "";
  width: 52px;
  height: 110px;
  background-image: url("../img/about/title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .about-philosophy-title::after {
    width: 85px;
    height: 180px;
  }
}

.about-philosophy-item:nth-child(2) .about-philosophy-title span:last-child {
  margin: 6em 1em 0 0;
}

.about-philosophy-item:nth-child(3) .about-philosophy-title span:last-child {
  margin: 1.5em 1em 0 0;
}

@media screen and (min-width: 768px) {
  .about-philosophy-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
}

@media screen and (min-width: 768px) {
  .about-philosophy-item:nth-child(2n) .about-philosophy-content {
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .about-philosophy-content--double:nth-child(2n) {
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .about-philosophy-img {
    width: 45.6%;
  }
}

.about-philosophy-item:nth-child(2) .about-philosophy-img {
  aspect-ratio: 335/346;
}
@media screen and (min-width: 768px) {
  .about-philosophy-item:nth-child(2) .about-philosophy-img {
    aspect-ratio: 560/450;
  }
}

.about-philosophy-description {
  margin-top: 54px;
}
@media screen and (min-width: 768px) {
  .about-philosophy-description {
    margin-top: 0;
    width: 42%;
  }
}

.about-philosophy-item:nth-child(1) {
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .about-philosophy-item:nth-child(1) .about-philosophy-description {
    width: 37%;
  }
}

.about-philosophy-subtitle {
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 1.98;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .about-philosophy-subtitle {
    font-size: 32px;
  }
}
.about-philosophy-subtitle span {
  display: inline-block;
}

.about-philosophy-text-wrapper {
  margin-top: 35px;
  line-height: 1.98;
  letter-spacing: 0.1em;
}

.about-philosophy-text:not(:first-child) {
  text-indent: 0.5em;
}

.about-philosophy-contents {
  display: flex;
  flex-direction: column;
  gap: 119px;
}
@media screen and (min-width: 768px) {
  .about-philosophy-contents {
    gap: 50px;
  }
}

/*!
page > about > vision
------------------------------
*/
.about-vison {
  margin-inline: auto;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .about-vison {
    padding-top: 80px;
  }
}

.about-vison-title-wrap {
  margin-inline: auto;
  max-width: 310px;
}
@media screen and (min-width: 768px) {
  .about-vison-title-wrap {
    max-width: 100%;
  }
}

.about-vison-title {
  text-align: center;
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 1.98;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .about-vison-title {
    font-size: 32px;
  }
}
.about-vison-title span {
  display: inline-block;
}

.about-vison-title-2 {
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .about-vison-title-2 {
    margin-top: 0;
  }
}

.about-vison-text-wrap {
  margin-inline: auto;
  margin-top: 15px;
  max-width: 310px;
}
@media screen and (min-width: 768px) {
  .about-vison-text-wrap {
    margin-top: 30px;
    max-width: 642px;
  }
}

.about-vison-text {
  text-align: center;
  line-height: 1.98;
  letter-spacing: 0.1em;
}
.about-vison-text span {
  display: inline-block;
}

.about-vision-image {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .about-vision-image {
    margin-top: 27px;
  }
}
.about-vision-image img {
  max-width: 281px;
}
@media screen and (min-width: 768px) {
  .about-vision-image img {
    max-width: 522px;
  }
}

/*!
page > about > cta
------------------------------
*/
.about-cta {
  padding: 46px 0 122px;
}
@media screen and (min-width: 768px) {
  .about-cta {
    padding: 50px 0 134px;
  }
}

.about-cta-wrap {
  max-width: 600px;
}

.about-cta-image {
  aspect-ratio: 331/214;
}
@media screen and (min-width: 768px) {
  .about-cta-image {
    aspect-ratio: 600/400;
  }
}

.about-cta-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .about-cta-content {
    gap: 30px;
  }
}

.about-cta-title {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.38;
}
@media screen and (min-width: 768px) {
  .about-cta-title {
    font-size: 48px;
  }
}

.about-cta-text {
  text-align: center;
  line-height: 1.98;
  letter-spacing: 0.1em;
}
.about-cta-text span {
  display: inline-block;
}

.about-cta-button--membership {
  color: var(--color-black);
  background-color: var(--color-primary);
}
.about-cta-button--membership a::after {
  background-color: var(--color-black);
}

/*!
page > brand > brand-header
------------------------------
*/
.brand-header {
  background-image: url("../img/brand/beer/header-sp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 375/387;
  display: grid;
  place-items: center;
  max-height: 428px;
}
@media screen and (min-width: 768px) {
  .brand-header {
    background-image: url("../img/brand/beer/header-pc.jpg");
    aspect-ratio: 1440/428;
  }
}

.brand-header--sweets {
  background-image: url("../img/brand/sweets/header-sp.jpg");
}
@media screen and (min-width: 768px) {
  .brand-header--sweets {
    background-image: url("../img/brand/sweets/header-pc.jpg");
  }
}

.brand-header--food {
  background-image: url("../img/brand/food/header-sp.jpg");
}
@media screen and (min-width: 768px) {
  .brand-header--food {
    background-image: url("../img/brand/food/header-pc.jpg");
  }
}

.brand-name span {
  display: block;
  text-align: center;
  font-family: var(--font-family-en);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: var(--color-brand-beer);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-accent);
}
@media screen and (min-width: 768px) {
  .brand-name span {
    display: inline;
    font-size: 36px;
  }
}

.brand-name--sweets span {
  color: var(--color-brand-sweets);
}

.brand-name--food span {
  color: var(--color-brand-food);
}

/*!
page > brand > brand-introduction
------------------------------
*/
.brand-kv {
  padding: 58px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .brand-kv {
    padding: 100px 0 70px 6%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 9.4%;
  }
}

.brand-kv-tagline {
  writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-text-orientation: upright;
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.23em;
  font-feature-settings: "vert" on, "vkrn" on;
}
@media screen and (min-width: 768px) {
  .brand-kv-tagline {
    font-size: 40px;
    letter-spacing: 0.2em;
  }
}

.brand-kv-tagline-color {
  color: var(--color-brand-beer);
}

.brand-kv-tagline-color--sweets {
  color: var(--color-brand-sweets);
}

.brand-kv-tagline-color--food {
  color: var(--color-brand-food);
}

.brand-kv-tagline-break {
  display: block;
  margin: 2em 1em 0 0;
}

.brand-kv-tagline-noto {
  font-family: var(--font-family-base);
}

.brand-kv-image {
  aspect-ratio: 333/274;
  max-width: 550px;
}
@media screen and (min-width: 768px) {
  .brand-kv-image {
    width: 41.2%;
    aspect-ratio: 550/451;
  }
}

.brand-title {
  margin: 57px auto 0;
  padding-bottom: 21px;
  border-bottom: 3px solid var(--color-brand-beer);
  max-width: 550px;
}
@media screen and (min-width: 768px) {
  .brand-title {
    margin: 50px auto 0;
    padding-bottom: 25px;
    border-bottom: 5px solid var(--color-brand-beer);
    max-width: 1260px;
  }
}

.brand-title--sweets {
  border-bottom: 3px solid var(--color-brand-sweets);
}
@media screen and (min-width: 768px) {
  .brand-title--sweets {
    border-bottom: 5px solid var(--color-brand-sweets);
  }
}

.brand-title--food {
  border-bottom: 3px solid var(--color-brand-food);
}
@media screen and (min-width: 768px) {
  .brand-title--food {
    border-bottom: 5px solid var(--color-brand-food);
  }
}

.brand-title-en {
  color: var(--color-brand-beer);
  font-family: var(--font-family-en);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.2em;
  display: block;
}
@media screen and (min-width: 768px) {
  .brand-title-en {
    font-size: 40px;
  }
}

.brand-title-en--sweets {
  color: var(--color-brand-sweets);
}

.brand-title-en--food {
  color: var(--color-brand-food);
}

.brand-feature {
  padding-bottom: 77px;
}

.brand-feature-list {
  counter-reset: feature;
}
@media screen and (min-width: 1080px) {
  .brand-feature-list {
    margin-top: 50px;
  }
}

.brand-feature-item {
  position: relative;
}
.brand-feature-item:nth-of-type(2) {
  background-color: var(--color-bg-dark-gray);
  padding: 65px 0;
}
@media screen and (min-width: 768px) {
  .brand-feature-item:nth-of-type(2) {
    padding: 121px 0;
  }
  .brand-feature-item:nth-of-type(2) .brand-feature-content {
    order: 2;
  }
}

.brand-feature-item--diagonal {
  position: relative;
}
.brand-feature-item--diagonal::before, .brand-feature-item--diagonal::after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: var(--color-black);
}
.brand-feature-item--diagonal::before {
  top: -1px;
  aspect-ratio: 375/65;
  max-height: 65px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (min-width: 768px) {
  .brand-feature-item--diagonal::before {
    aspect-ratio: 1440/141;
    max-height: 141px;
  }
}
.brand-feature-item--diagonal::after {
  bottom: -1px;
  aspect-ratio: 375/65;
  max-height: 65px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
@media screen and (min-width: 768px) {
  .brand-feature-item--diagonal::after {
    aspect-ratio: 1440/141;
    max-height: 141px;
  }
}

.brand-feature-bg,
.brand-feature-bg2 {
  position: absolute;
  width: 100%;
  aspect-ratio: 375/65;
  max-height: 65px;
  background-color: var(--color-black);
}
@media screen and (min-width: 768px) {
  .brand-feature-bg,
  .brand-feature-bg2 {
    aspect-ratio: 1440/141;
    max-height: 141px;
  }
}

.brand-feature-bg {
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.brand-feature-bg2 {
  bottom: 0;
  left: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.brand-feature-item-inner {
  margin-inline: auto;
  max-width: 550px;
}
@media screen and (min-width: 768px) {
  .brand-feature-item-inner {
    margin-inline: auto;
    width: min(90%, var(--width-content));
    display: grid;
    grid-template-columns: 1fr 47.6%;
    align-items: center;
    gap: 50px;
    max-width: 1260px;
  }
}

.brand-feature-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.brand-feature-title h3 {
  margin-left: 16px;
}
@media screen and (min-width: 1080px) {
  .brand-feature-title h3 {
    margin-left: 15px;
  }
}
.brand-feature-title span {
  display: block;
  font-family: var(--font-family-accent);
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.11em;
}
@media screen and (min-width: 1080px) {
  .brand-feature-title span {
    font-size: 32px;
  }
}
.brand-feature-title span .brand-feature-title-break {
  display: inline-block;
}
.brand-feature-title::before {
  content: counter(feature, decimal-leading-zero);
  counter-increment: feature;
  color: var(--color-brand-beer);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 1080px) {
  .brand-feature-title::before {
    font-size: 96px;
  }
}

.brand-feature-title--sweets::before {
  color: var(--color-brand-sweets);
}

.brand-feature-title--food::before {
  color: var(--color-brand-food);
}

.brand-feature-text {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1080px) {
  .brand-feature-text {
    font-size: 16px;
  }
}
.brand-feature-text:nth-of-type(1) {
  margin-top: 46px;
}
@media screen and (min-width: 1080px) {
  .brand-feature-text:nth-of-type(1) {
    margin-top: 19px;
  }
}
.brand-feature-text span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .brand-feature-text span {
    display: inline;
  }
}

.brand-feature-image {
  margin-top: 50px;
  aspect-ratio: 333/215;
}
@media screen and (min-width: 1080px) {
  .brand-feature-image {
    margin-top: 0;
    aspect-ratio: 6/4;
  }
}

/*!
page > brand > brand-cta
------------------------------
*/
@media screen and (min-width: 768px) {
  .brand-cta {
    padding: 90px 0;
    background-image: var(--color-bg-gradation);
  }
}

.brand-cta-inner {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .brand-cta-inner {
    max-width: 723px;
    display: grid;
    grid-template-columns: 53.3% 1fr;
    gap: 50px;
  }
}

.brand-cta-inner--beer {
  max-width: 688px;
  grid-template-columns: 50.3% 1fr;
}

.brand-cta-image {
  aspect-ratio: 375/357;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 590px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .brand-cta-image {
    aspect-ratio: 290/370;
  }
}
.brand-cta-image--sweets {
  aspect-ratio: 373/288;
}
@media screen and (min-width: 768px) {
  .brand-cta-image--sweets {
    aspect-ratio: 400/325;
  }
}
.brand-cta-image--food {
  aspect-ratio: 375/250;
}
@media screen and (min-width: 768px) {
  .brand-cta-image--food {
    aspect-ratio: 400/270;
  }
}

.brand-cta-content {
  background-image: var(--color-bg-gradation);
  padding: 53px 0 84px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .brand-cta-content {
    background-image: none;
    display: flex;
    align-items: center;
    padding: 0;
    margin-inline: initial;
  }
}

@media screen and (min-width: 768px) {
  .brand-cta-content-inner {
    width: 100%;
  }
}

.brand-cta-title {
  text-align: center;
  font-family: var(--font-family-en);
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: 0.15em;
  white-space: nowrap;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .brand-cta-title {
    font-size: 32px;
  }
}

.brand-cta-buttons {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .brand-cta-buttons {
    margin-top: 62px;
  }
}

/*!
component > shoplist > header
------------------------------
*/
.shoplist-header {
  position: relative;
}

.shoplist-header-bg img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 375/240;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 428px;
}
@media screen and (min-width: 768px) {
  .shoplist-header-bg img {
    aspect-ratio: 1440/428;
  }
}

.shoplist-header-title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  display: block;
}
@media screen and (min-width: 768px) {
  .shoplist-header-title {
    font-size: 36px;
    letter-spacing: 0.15em;
    display: inline;
  }
}

/*!
page > shoplist > shoplist-nav
------------------------------
*/
.shoplist-nav {
  padding: 60px 0 0 8.8%;
}
@media screen and (min-width: 768px) {
  .shoplist-nav {
    padding: 154px 0 20px;
    max-width: 518px;
  }
}

.shoplist-list {
  display: flex;
  justify-content: flex-start;
  gap: 19px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .shoplist-list {
    justify-content: center;
    gap: 20px 40px;
  }
}

.shoplist-item a {
  font-family: var(--font-family-accent);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .shoplist-item a {
    font-size: 19px;
  }
}

/*!
page > shoplist > shoplist-content
------------------------------
*/
.shoplist-content {
  max-width: 962px;
  padding-bottom: 140px;
}
@media screen and (min-width: 768px) {
  .shoplist-content {
    padding-bottom: 120px;
  }
}

.shoplist-prefecture:not(:first-child) {
  margin-top: 60px;
}

.shoplist-prefecture-title {
  width: 100%;
  text-align: center;
  margin-top: 130px;
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .shoplist-prefecture-title {
    margin-top: 150px;
    font-size: 26px;
  }
}
.shoplist-prefecture-title::before {
  content: "";
  width: 1px;
  height: 45px;
  background-color: var(--color-white);
  position: absolute;
  top: calc(-2em - 15px);
  left: 50%;
}
@media screen and (min-width: 768px) {
  .shoplist-prefecture-title::before {
    height: 50px;
    top: calc(-1.5em - 30px);
  }
}
.shoplist-prefecture-title span {
  display: block;
}

.shoplist-city-wrap {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .shoplist-city-wrap {
    margin-top: 58px;
  }
}

.shoplist-city:not(:first-child) {
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .shoplist-city:not(:first-child) {
    margin-top: 32px;
  }
}

.shoplist-city-title {
  padding: 7px 10px;
  background-color: var(--color-dark-green);
}
@media screen and (min-width: 768px) {
  .shoplist-city-title {
    padding: 8px 10px;
  }
}
.shoplist-city-title h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .shoplist-city-title h3 {
    font-size: 20px;
  }
}

.shoplist-shop-details {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-details {
    grid-template-columns: 252px 1fr;
    align-items: center;
  }
}
.shoplist-shop-details:not(:last-child) {
  border-bottom: 1px solid var(--color-white);
}

.shoplist-shop-summary {
  padding: 20px 5px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-summary {
    padding: 40px 10px;
  }
}

.shoplist-shop-name {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-name {
    display: flex;
    flex-direction: column;
    line-height: 1.9;
    text-align: center;
  }
}

.shoplist-shop-text {
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-text {
    font-size: 18px;
  }
}
.shoplist-shop-text span {
  display: inline-block;
}

.shoplist-shop-industry {
  font-size: 14px;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-industry {
    font-size: 15px;
    line-height: 1.9;
  }
}

.shoplist-shop-icon {
  width: 20px;
  height: 10px;
  -webkit-mask-image: url("../img/shoplist/icon-close.svg");
          mask-image: url("../img/shoplist/icon-close.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-white);
  transition: -webkit-mask-image 0.3s ease;
  transition: mask-image 0.3s ease;
  transition: mask-image 0.3s ease, -webkit-mask-image 0.3s ease;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-icon {
    display: none;
  }
}

.shoplist-shop-details.is-open .shoplist-shop-icon {
  -webkit-mask-image: url("../img/shoplist/icon-open.svg");
          mask-image: url("../img/shoplist/icon-open.svg");
  transition: -webkit-mask-image 0.3s ease;
  transition: mask-image 0.3s ease;
  transition: mask-image 0.3s ease, -webkit-mask-image 0.3s ease;
}

.shoplist-shop-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.shoplist-shop-tags {
  margin-top: -4px;
  height: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-tags {
    margin-top: 0;
    padding-top: 40px;
  }
}
.shoplist-shop-tags span:not(:first-child) {
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-tags span:not(:first-child) {
    margin-left: 5px;
  }
}

.shoplist-shop-tag {
  padding: 2px 10.5px;
  color: var(--color-black);
  font-family: var(--font-family-gothic);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  border-radius: 2px;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-tag {
    padding: 2px 11.5px;
    font-size: 16px;
  }
}

.shoplist-shop-tag--has {
  background-color: var(--color-white);
}

.shoplist-shop-tag--not {
  background-color: var(--color-bg-gray);
}

.shoplist-shop-address {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-address {
    font-size: 16px;
  }
}
.shoplist-shop-address .address-block {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-address .address-block {
    display: inline;
  }
}
.shoplist-shop-address .address-main {
  display: inline-block;
}
.shoplist-shop-address .address-sub {
  display: block;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-address .address-sub {
    display: inline-block;
    margin-left: 0.5em;
  }
}

.shoplist-shop-products {
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 0 0 20px 0;
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-products {
    font-size: 16px;
    padding: 5px 0 39px 0;
  }
}

.shoplist-shop-product--tag {
  padding: 2px 7px;
  line-height: 1.2;
  border: 1px solid var(--color-white);
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-product--tag {
    padding: 3px 9px;
  }
}

.shoplist-shop-product--name {
  margin-left: 12px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .shoplist-shop-product--name {
    margin-left: 14px;
  }
}
.shoplist-shop-product--name span {
  display: inline-block;
}
.shoplist-shop-product--name span:not(:last-child)::after {
  content: "／";
}

/*!
page > shoplist > shoplist-to-top
------------------------------
*/
.shoplist-circle {
  width: 55px;
  height: 55px;
  background-color: var(--color-to-top);
  border: 2px solid var(--color-to-top);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  z-index: calc(var(--z-index-default) + 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, background-color 0.6s ease;
}
@media screen and (min-width: 768px) {
  .shoplist-circle {
    width: 80px;
    height: 80px;
    bottom: 70px;
    right: 70px;
  }
}
@media (any-hover: hover) {
  .shoplist-circle:hover {
    background-color: var(--color-black);
  }
  .shoplist-circle:hover .shoplist-circle-arrow {
    background-color: var(--color-to-top);
  }
  .shoplist-circle:hover .shoplist-circle-arrow::before {
    border-color: var(--color-to-top);
  }
  .shoplist-circle:hover .shoplist-circle-arrow::after {
    background-color: var(--color-to-top);
  }
}

.shoplist-circle.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* 矢印の縦線 */
.shoplist-circle-arrow {
  position: relative;
  width: 2px;
  height: 20px;
  top: 5px;
  background-color: var(--color-black); /* 縦線 */
  display: flex;
  justify-content: center;
  transition: background-color 0.3s ease;
}

/* 矢印の先端（上向き） */
.shoplist-circle-arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%) rotate(45deg);
  width: 13px;
  height: 13px;
  border-top: 2px solid var(--color-black);
  border-left: 2px solid var(--color-black);
  transition: border-color 0.3s ease;
}

/* 上の横線 */
.shoplist-circle-arrow::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background-color: var(--color-black);
  transition: background-color 0.3s ease;
}

/*!
page > access > header
------------------------------
*/
.access-header {
  position: relative;
}

.access-header-bg img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 375/240;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 428px;
}
@media screen and (min-width: 768px) {
  .access-header-bg img {
    aspect-ratio: 1440/428;
  }
}

.access-header-title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.access-header-title span {
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  display: block;
}
@media screen and (min-width: 768px) {
  .access-header-title span {
    font-size: 36px;
    letter-spacing: 0.15em;
    display: inline;
  }
}

/*!
page > access > access-company
------------------------------
*/
.access-company {
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .access-company {
    padding-bottom: 71px;
  }
}

.access-section-title {
  width: 100%;
  text-align: center;
  margin-top: 130px;
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .access-section-title {
    margin-top: 230px;
    font-size: 36px;
  }
}
.access-section-title::before {
  content: "";
  width: 1px;
  height: 45px;
  background-color: var(--color-white);
  position: absolute;
  top: calc(-2em - 15px);
  left: 50%;
}
@media screen and (min-width: 768px) {
  .access-section-title::before {
    height: 50px;
    top: calc(-1.5em - 30px);
  }
}
.access-section-title span {
  display: block;
}

@media screen and (min-width: 768px) {
  .access-section-title--shop {
    margin-top: 140px;
  }
}

.access-company-table-wrap {
  margin-top: 25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .access-company-table-wrap {
    padding-inline: 20px;
    margin-top: 70px;
  }
}
.access-company-table-wrap::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .access-company-table-wrap::after {
    display: block;
    content: "";
    background-image: url("../img/access/company.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 72%;
    max-width: 48%;
    aspect-ratio: 691/935;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: -17%;
    right: 0;
  }
}

.access-company-table {
  padding-bottom: 9px;
}

.access-company-table-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .access-company-table-body {
    margin-inline: auto;
    max-width: 962px;
  }
}

.access-company-table-item {
  display: grid;
  grid-template-columns: subgrid;
  align-items: center;
  grid-column: 1/-1;
  gap: 18px;
  padding: 25px 0 24px;
  border-bottom: 1px solid var(--color-white);
  font-size: 14px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .access-company-table-item {
    gap: 100px;
    padding: 25px 0 25px 20px;
    line-height: 2;
  }
}
.access-company-table-item--phone {
  padding: 19px 0 18px;
}
@media screen and (min-width: 768px) {
  .access-company-table-item--phone {
    padding: 25px 0 30px;
  }
}
.access-company-table-item th {
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .access-company-table-item th {
    letter-spacing: 0.2em;
    font-size: 19px;
  }
}
@media screen and (min-width: 768px) {
  .access-company-table-item td {
    font-size: 17px;
    letter-spacing: 0.2em;
  }
}
.access-company-table-item td span {
  display: block;
}
.access-company-table-item td .access-company-table-item-br {
  display: inline;
}
@media screen and (min-width: 768px) {
  .access-company-table-item td .access-company-table-item-br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .access-company-table-item td .access-company-table-item-phone,
  .access-company-table-item td .access-company-table-item-small,
  .access-company-table-item td .access-company-table-item-bank {
    display: inline;
  }
}

.access-company-table-item-small {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .access-company-table-item-small {
    font-size: 16px;
  }
}

/*!
page > access > access-timeline
------------------------------
*/
.access-timeline {
  background-color: var(--color-bg-dark-gray);
  position: relative;
  padding: 56px 0 65px;
}
@media screen and (min-width: 768px) {
  .access-timeline {
    padding: 42px 0 141px;
  }
}
.access-timeline::before, .access-timeline::after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: var(--color-black);
  aspect-ratio: 375/65;
  max-height: 65px;
}
@media screen and (min-width: 768px) {
  .access-timeline::before, .access-timeline::after {
    aspect-ratio: 1440/141;
    max-height: 141px;
  }
}
.access-timeline::before {
  top: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.access-timeline::after {
  bottom: 0;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.access-timeline-wrap {
  margin-top: 45px;
  margin-inline: auto;
  padding-inline: 20px;
  padding-bottom: 88px;
  max-width: 962px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .access-timeline-wrap {
    margin-top: 70px;
    padding-bottom: 130px;
    padding-inline: 0;
  }
}
.access-timeline-wrap::before {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--color-access-timeline);
  position: absolute;
  top: 15px;
  left: 82px;
}
@media screen and (min-width: 768px) {
  .access-timeline-wrap::before {
    width: 1.6px;
    left: 142px;
  }
}

.access-timeline-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
}
@media screen and (min-width: 768px) {
  .access-timeline-list {
    gap: 59px;
  }
}

.access-timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: baseline;
  gap: 25px;
}
@media screen and (min-width: 768px) {
  .access-timeline-item {
    grid-template-columns: auto 1fr;
    gap: 80px;
  }
}

.access-timeline-date time {
  font-family: var(--font-family-accent);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.57;
}
@media screen and (min-width: 768px) {
  .access-timeline-date time {
    font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 1.5;
  }
}

.access-timeline-content h3,
.access-timeline-content p {
  font-size: 14px;
  line-height: 1.64;
}
@media screen and (min-width: 768px) {
  .access-timeline-content h3,
  .access-timeline-content p {
    font-size: 17px;
    letter-spacing: 0.05em;
    line-height: 1.7;
  }
}
.access-timeline-content--multiple {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
.access-timeline-content span:not(:first-child) {
  padding-left: 0.5em;
}

.access-timeline-br {
  display: block;
}
@media screen and (min-width: 768px) {
  .access-timeline-br {
    display: inline;
  }
}

.access-timeline-br-pc {
  display: inline;
}
@media screen and (min-width: 768px) {
  .access-timeline-br-pc {
    display: block;
  }
}

.access-timeline-content h3 {
  position: relative;
}
.access-timeline-content h3::before {
  content: "";
  width: 7px;
  aspect-ratio: 1/1;
  border-radius: 100vh;
  background-color: var(--color-white);
  position: absolute;
  top: 8px;
  left: -18px;
}
@media screen and (min-width: 768px) {
  .access-timeline-content h3::before {
    width: 13px;
    left: -28px;
  }
}

/*!
page > access > access-store
------------------------------
*/
.access-store-title1 {
  letter-spacing: 0.15em;
}

.access-store-title2 {
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .access-store-title2 {
    letter-spacing: 0.15em;
  }
}

.access-store-wrap {
  margin-top: 70px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .access-store-wrap {
    margin-top: 78px;
    max-width: 1112px;
  }
}

.access-store-info {
  margin-inline: auto;
  padding-inline: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.64;
}
@media screen and (min-width: 768px) {
  .access-store-info {
    display: grid;
    grid-template-columns: 48% 1fr;
    gap: 50px;
    padding-inline: 0;
    font-size: 16px;
    letter-spacing: 0em;
    line-height: 1.62;
  }
}

.access-store-image img {
  aspect-ratio: 335/253;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .access-store-image img {
    aspect-ratio: 533/515;
  }
}

.access-store-details {
  margin-top: 24px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .access-store-details {
    margin-top: 0;
  }
}

.access-store-description span {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .access-store-description span {
    display: inline;
    text-indent: 0;
    padding-left: 0;
  }
}

.access-store-hours,
.access-store-seats {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .access-store-hours,
  .access-store-seats {
    margin-top: 50px;
    font-size: 16px;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .access-store-seats {
    gap: 11px;
  }
}

.access-store-hours-title,
.access-store-seats-title {
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding-left: 15px;
  border-left: 2px solid var(--color-white);
}
@media screen and (min-width: 768px) {
  .access-store-hours-title,
  .access-store-seats-title {
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }
}

@media screen and (min-width: 768px) {
  .access-store-hours-list,
  .access-store-seats-details {
    margin-top: 14px;
  }
}

.access-store-hours-item {
  line-height: 1.9;
  letter-spacing: 0em;
}
@media screen and (min-width: 768px) {
  .access-store-hours-item {
    letter-spacing: 0.1em;
  }
}

.access-store-seats {
  line-height: 1.9;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .access-store-seats {
    letter-spacing: 0em;
  }
}

.access-store-seats-detail {
  letter-spacing: 0;
}

.access-store-map {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .access-store-map {
    margin-top: 55px;
  }
}
.access-store-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 375/328;
}
@media screen and (min-width: 768px) {
  .access-store-map iframe {
    aspect-ratio: 962/521;
  }
}

.access-store-transport {
  padding: 40px 44px 70px 44px;
}
@media screen and (min-width: 768px) {
  .access-store-transport {
    padding: 50px 0 139px;
  }
}

.access-store-transport-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .access-store-transport-list {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 50px 74px;
  }
}

.access-store-transport-item {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 8px 6px;
}
@media screen and (min-width: 768px) {
  .access-store-transport-item {
    max-width: 456px;
    grid-template-columns: 35px 1fr;
    gap: 0px 24px;
  }
}
.access-store-transport-item img {
  width: 25px;
  aspect-ratio: 1/1;
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (min-width: 768px) {
  .access-store-transport-item img {
    width: 35px;
  }
}

.access-store-transport-title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.67;
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (min-width: 768px) {
  .access-store-transport-title {
    font-size: 21px;
    line-height: 1.43;
  }
}

.access-store-transport-note {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.64;
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (min-width: 768px) {
  .access-store-transport-note {
    font-size: 17px;
    line-height: 1.76;
  }
}
.access-store-transport-note span {
  display: inline-block;
}

.access-store-transport-item:last-child span {
  display: inline;
}

/*!
page > preparing > header
------------------------------
*/
.preparing-header {
  position: relative;
}

.preparing-header-bg img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 375/387;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .preparing-header-bg img {
    aspect-ratio: 1440/428;
    max-height: 428px;
  }
}

.preparing-header-title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.preparing-header-title span {
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 1.55;
  letter-spacing: 0.15em;
  display: block;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .preparing-header-title span {
    font-size: 36px;
  }
}
.preparing-header-title span:nth-child(2) {
  margin-top: 16px;
  font-family: var(--font-family-en);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .preparing-header-title span:nth-child(2) {
    margin-top: 0;
  }
}

/*!
page > preparing > content
------------------------------
*/
.preparing-content {
  padding: 56px 0 100px;
}
@media screen and (min-width: 768px) {
  .preparing-content {
    padding: 80px 0 120px;
  }
}

.preparing-content-text {
  text-align: center;
  font-family: var(--font-family-accent);
  font-size: 16px;
  line-height: 1.98;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .preparing-content-text {
    font-size: 24px;
    line-height: 2;
  }
}

.preparing-content-br {
  display: block;
}
@media screen and (min-width: 768px) {
  .preparing-content-br {
    display: none;
  }
}

.preparing-cta-image {
  margin-top: 56px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .preparing-cta-image {
    max-width: 600px;
  }
}
.preparing-cta-image img {
  aspect-ratio: 331/214;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .preparing-cta-image img {
    aspect-ratio: 6/4;
  }
}

.preparing-cta-title {
  margin-top: 40px;
  text-align: center;
  font-family: var(--font-family-en);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.38;
}
@media screen and (min-width: 768px) {
  .preparing-cta-title {
    font-size: 48px;
  }
}

.preparing-cta-buttons {
  margin-top: 35px;
}

.preparing-banner {
  margin-top: 50px;
  margin-inline: auto;
  width: 74.3%;
  max-width: 273px;
}
@media screen and (min-width: 768px) {
  .preparing-banner {
    flex-direction: column;
    margin-top: 65px;
    max-width: 400px;
    gap: 35px;
  }
}

/*!
page > news > header
------------------------------
*/
.news-header {
  position: relative;
}

.news-header-bg img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 375/240;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 428px;
}
@media screen and (min-width: 768px) {
  .news-header-bg img {
    aspect-ratio: 1440/428;
  }
}

.news-header-title {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-header-title span {
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  display: block;
}
@media screen and (min-width: 768px) {
  .news-header-title span {
    font-size: 36px;
    letter-spacing: 0.15em;
    display: inline;
  }
}

/*!
page > news > header
------------------------------
*/
.news-archive {
  position: relative;
  padding: 70px 0 0 0;
  display: grid;
  grid-template-columns: 20px 1fr 20px;
}
.news-archive > * {
  grid-column: 1/-1;
}
@media screen and (min-width: 768px) {
  .news-archive {
    padding: 98px 0 0 0;
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 716px) minmax(20px, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .news-archive {
    grid-template-columns: minmax(20px, 1fr) minmax(auto, 1099px) minmax(20px, 1fr);
  }
}
.news-archive::after {
  content: "";
  width: 100%;
  height: 319px;
  background: linear-gradient(180deg, #000 60.9%, #666 99.95%), #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .news-archive::after {
    height: 490px;
    background: linear-gradient(180deg, #000 52.68%, #666 100%);
  }
}

.news-archive-inner {
  width: 100%;
  display: grid;
  grid-template-columns: subgrid;
}
.news-archive-inner > * {
  grid-column: 2/-2;
}

.news-archive-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-inline: auto;
  justify-items: center;
  justify-content: center;
  z-index: calc(var(--z-index-default) + 1);
}
@media screen and (min-width: 768px) {
  .news-archive-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .news-archive-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-archive-pagination {
  position: relative;
  z-index: calc(var(--z-index-default) + 1);
}

/*!
page > single > header
------------------------------
*/
.single-header {
  position: sticky;
  top: 50px;
}
@media screen and (min-width: 1400px) {
  .single-header {
    top: 70px;
  }
}

.single-header-bg img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 375/240;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 428px;
}
@media screen and (min-width: 768px) {
  .single-header-bg img {
    aspect-ratio: 1440/428;
  }
}

.single-header-title {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .single-header-title {
    top: 26%;
  }
}
.single-header-title span {
  font-family: var(--font-family-accent);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  display: block;
}
@media screen and (min-width: 768px) {
  .single-header-title span {
    font-size: 30px;
    letter-spacing: 0.15em;
    display: inline;
  }
}

/*!
page > single > content
------------------------------
*/
.news-single {
  position: relative;
  margin-top: -21px;
  padding-bottom: 75px;
}
@media screen and (min-width: 768px) {
  .news-single {
    margin-top: -107px;
    padding-bottom: 120px;
  }
}
.news-single::after {
  content: "";
  width: 100%;
  height: 607px;
  background: linear-gradient(180deg, #000 60.9%, #666 99.95%), #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .news-single::after {
    height: 300px;
    background: linear-gradient(180deg, #000 52.68%, #666 100%);
  }
}

.news-single-content {
  padding: 25px 19px 60px 19px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-black);
  position: relative;
  z-index: calc(var(--z-index-default) + 1);
}
@media screen and (min-width: 768px) {
  .news-single-content {
    padding: 44px 80px 56px 80px;
    width: 73%;
    margin-inline: auto;
  }
}
.news-single-content h1 {
  margin-top: 16px;
  font-family: var(--font-family-gothic);
  font-weight: 500;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .news-single-content h1 {
    margin-top: 39px;
    font-size: 30px;
    line-height: 1.9;
  }
}
.news-single-content p {
  text-align: justify;
  margin-top: 35px;
  font-family: var(--font-family-gothic);
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .news-single-content p {
    margin-top: 26px;
    font-size: 16px;
    line-height: 1.9;
  }
}
.news-single-content time {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-font-gray);
}
@media screen and (min-width: 768px) {
  .news-single-content time {
    font-size: 16px;
  }
}
.news-single-content span {
  padding: 4px 12px;
  background-color: var(--color-dark-green);
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-family-gothic);
  font-size: 11px;
  line-height: 1.36;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .news-single-content span {
    padding: 5px 20px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .news-single-content br {
    display: none;
  }
}
.news-single-content img {
  margin-top: 53px;
}
@media screen and (min-width: 768px) {
  .news-single-content img {
    margin-top: 37px;
    width: 81%;
  }
}
.news-single-content a {
  color: var(--color-font-link);
  text-decoration: underline;
  transition: text-decoration-color 0.3s;
}
@media (any-hover: hover) {
  .news-single-content a:hover {
    text-decoration-color: transparent;
  }
}

.news-single-content-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .news-single-content-header {
    gap: 20px;
  }
}

.single-cta-buttons {
  margin-top: 70px;
  position: relative;
  z-index: calc(var(--z-index-default) + 1);
}
@media screen and (min-width: 768px) {
  .single-cta-buttons {
    margin-top: 120px;
  }
}

/*!
page > privacy > header
------------------------------
*/
.privacy-header {
  position: relative;
}

.privacy-header-bg img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 375/387;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .privacy-header-bg img {
    aspect-ratio: 1440/428;
  }
}

.privacy-header-title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.privacy-header-title span {
  font-family: var(--font-family-accent);
  font-size: 24px;
  line-height: 1.46;
  letter-spacing: 0.15em;
  display: block;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .privacy-header-title span {
    line-height: 1.36;
    font-size: 36px;
  }
}
.privacy-header-title span:nth-child(2) {
  margin-top: 16px;
  font-family: var(--font-family-sub);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .privacy-header-title span:nth-child(2) {
    margin-top: 0;
  }
}

/*!
page > privacy > content
------------------------------
*/
.privacy-content {
  padding: 30px 0 120px;
}
@media screen and (min-width: 768px) {
  .privacy-content {
    padding: 60px 3.5% 120px;
  }
}

.privacy-content-inner {
  padding: 30px 20px;
  background-color: var(--color-bg-privacy-overlay);
  color: var(--color-black);
}
@media screen and (min-width: 768px) {
  .privacy-content-inner {
    padding: 60px 72.5px;
  }
}
.privacy-content-inner > * {
  font-family: var(--font-family-gothic);
  line-height: 2;
  letter-spacing: 0.1em;
}
.privacy-content-inner div {
  margin-top: 1em;
}
.privacy-content-inner h2 {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .privacy-content-inner h2 {
    font-size: 20px;
  }
}
.privacy-content-inner h3 {
  font-weight: 600;
}
.privacy-content-inner span {
  display: block;
}
.privacy-content-inner ul {
  list-style: inside;
  padding-left: 1em;
}
.privacy-content-inner ol {
  list-style: auto;
  padding-left: 2em;
}
.privacy-content-inner ol ul > li,
.privacy-content-inner p {
  padding-left: 1em;
}
.privacy-content-inner li::maker {
  display: none;
}
.privacy-content-inner strong {
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */