/* ============================================
   パンくずリスト
   ============================================ */
.c-breadcrumbs {
  max-width: 1280px;
  margin: 0 auto;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  line-height: 1.5;
  padding-top: 90px;
  overflow-x: auto;
}

/* リストアイテム共通 */
.c-breadcrumbs__item {
  color: #c22b1f; /* 指定色 */
  text-decoration: none;
  transition: opacity 0.3s;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

/* リンク（現在のページ以外） */
a.c-breadcrumbs__item {
  opacity: 0.5; /* 透明度50% */
}

a.c-breadcrumbs__item:hover {
  opacity: 1;
}

/* 現在のページ */
.c-breadcrumbs__item.is-current {
  opacity: 1;
}

/* 矢印SVG */
.c-breadcrumbs__separator {
  margin: 0 10px; /* 矢印の間隔 */
  vertical-align: middle;
  width: 8px;
  height: 13px;
  display: inline-block;
  flex-shrink: 0;
}

/* スマホ表示の調整（必要に応じて） */
@media screen and (max-width: 767px) {
  .c-breadcrumbs {
  padding-top: 65px;
  width: 374px;
  overflow-x: scroll;
  white-space: nowrap;
  flex-wrap: nowrap;
  }
}

/* ===============================================
 * instagram
 * ===============================================
 */
.instagram {
  width: 100%;
  position: relative;
  background-image: url(../../img/common/bg-pattern.png);
  background-repeat: repeat;
}

.instagram__images {
  display: flex;
  width: 100%;
  border-top: 2px solid #c33b1f;
  border-bottom: 2px solid #c22b1f;
}
@media screen and (max-width: 768px) {
  .instagram__images {
    flex-wrap: wrap;
  }
}

.instagram__images #sb_instagram #sbi_images {
  padding: 0;
}

.instagram__image {
  /* flex: 1; */
  /* width: calc(100% / 6); */
  aspect-ratio: 1 / 1;
}
@media screen and (max-width: 768px) {
  .instagram__image {
    width: calc(100% / 3);
    flex: auto;
  }
}

.instagram__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instagram__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding: 13px 0;
  margin-right: 29px;
}
@media screen and (max-width: 768px) {
  .instagram__link {
    padding: 14px 0;
    margin-right: 18px;
  }
}

.instagram__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.instagram__text {
  font-family: acumin-pro, sans-serif;
  font-size: 15px;
  color: #c22b1f;
  text-decoration: none;
}

.instagram__arrow {
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='18px' height='18px'%3E%3Cpath fill-rule='evenodd' fill='%23c22b1f' d='M0.515,16.071 L13.950,2.636 C14.340,2.246 14.973,2.246 15.364,2.636 C15.754,3.027 15.754,3.660 15.364,4.050 L1.929,17.485 C1.538,17.876 0.905,17.876 0.515,17.485 C0.124,17.095 0.124,16.462 0.515,16.071 Z'/%3E%3Cpath fill-rule='evenodd' fill='%23c22b1f' d='M7.586,4.757 L17.485,0.515 L12.536,5.464 L7.586,4.757 Z'/%3E%3Cpath fill-rule='evenodd' fill='%23c22b1f' d='M13.243,10.414 L17.485,0.515 L12.536,5.464 L13.243,10.414 Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===============================================
 * banner
 * ===============================================
 */
.banner {
  width: 100%;
  position: relative;
  background-image: url(../../img/common/bg-pattern.png);
  background-repeat: repeat;
  padding-top: 92px;
  padding-bottom: 27px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  .banner {
    padding-top: 78px;
    padding-bottom: 70px;
  }
}

.banner__inner {
  position: relative;
  width: 100%;
  max-width: 1290px;
  margin: 0 auto;
  margin-bottom: 130px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .banner__inner {
    margin-bottom: 77px;
  }
}

.banner__swiper {
  width: 100%;
  max-width: 1016px;
  margin: 0 auto;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .banner__swiper {
    width: 100%;
    max-width: 100%;
  }
}

.banner__swiper .swiper-slide {
  width: 310px;
  flex-shrink: 0;
  margin-right: 43px;
}
@media screen and (max-width: 768px) {
  .banner__swiper .swiper-slide {
    width: 258px;
    margin-inline: 16px;
  }
}

.banner__slide-link {
  display: block;
  width: 310px;
}
@media screen and (max-width: 768px) {
  .banner__slide-link {
    width: 258px;
  }
}

.banner__slide-link img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.banner__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .banner__button {
    width: 66px;
    height: 66px;
  }
}

.banner__button:hover {
  opacity: 0.7;
}

.banner__button svg {
  width: 100%;
  height: 100%;
}

.banner__button--prev {
  left: 0;
}
@media screen and (max-width: 768px) {
  .banner__button--prev {
    left: 18px;
  }
}

.banner__button--next {
  right: 0;
}
@media screen and (max-width: 768px) {
  .banner__button--next {
    right: 20px;
  }
}

.banner__ticker {
}
@media screen and (max-width: 768px) {
  .banner__ticker {
  }
}

/* ===============================================
 * visual
 * ===============================================
 */
.visual {
  width: 100%;
  position: relative;
  background-image: url(../../img/common/bg-pattern.png);
  background-repeat: repeat;
}

.visual__ticker {
  width: 100%;
  overflow: clip;
  position: relative;
}

.visual__ticker .c-ticker__inner {
  display: flex;
  width: fit-content;
  gap: 2px;
  animation: visual-ticker-scroll 37s linear infinite;
}

.visual__ticker .c-ticker__item {
  flex-shrink: 0;
  width: 812px;
  height: 506px;
}
@media screen and (max-width: 768px) {
  .visual__ticker .c-ticker__inner {
    animation: visual-ticker-scroll 28s linear infinite;
  }

  .visual__ticker .c-ticker__item {
    width: 360px;
    height: 224px;
  }
}

.visual__ticker .c-ticker__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes visual-ticker-scroll {
  0% {
    transform: translateX(calc(-812px * 3 - 2px * 2));
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  @keyframes visual-ticker-scroll {
    0% {
      transform: translateX(calc(-360px * 3 - 2px * 2));
    }
    100% {
      transform: translateX(0);
    }
  }
}

/* ===============================================
 * news-letter
 * ===============================================
 */
.news-letter {
  background-image: url(../../img/common/bg-pattern-red.png);
  background-repeat: repeat;
  padding: 69px 0 74px;
  position: relative;
  overflow: clip;
  border-bottom: 1px solid rgb(255 255 255 / 0.24);
}
@media screen and (max-width: 768px) {
  .news-letter {
    padding: 62px 0 86px;
    border-bottom: 1px solid rgb(255 255 255 / 0.24);
  }
}

.news-letter__title {
  font-family: kepler-std-condensed-display, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 0;
  color: #ffffff;
  padding-left: 21px;
  max-width: 1300px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .news-letter__title {
    font-size: 85px;
    padding-left: 21px;
    letter-spacing: -0.05em;
  }
}

.news-letter__title span {
  position: relative;
  display: inline-block;
}

.news-letter__title span span {
  display: inline-block;
}

.news-letter__title span span:first-child {
  font-weight: 500;
}

.news-letter-title-news {
  top: 0px;
  left: 0px;
}

.news-letter-title-letter {
  top: 0px;
  left: 0px;
}

.news-letter__inner {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  z-index: 2;
}

.news-letter__content {
  position: absolute;
  margin-inline: auto;
  z-index: 2;
  right: 130px;
  top: -78px;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .news-letter__content {
    position: relative;
    right: 0;
    top: 0;
    margin-top: 23px;
    margin-inline: 20px;
  }
}

.news-letter__text {
  font-family: vdl-v7mincho, sans-serif;
  transform: scaleY(0.9);
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  line-height: 29px;
  margin-bottom: 22px;
  max-width: 800px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .news-letter__text {
    font-size: 14px;
    margin-bottom: 19px;
    line-height: 23px;
  }
}

.news-letter__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .news-letter__note {
    font-size: 12px;
  }
}

.news-letter__form-block {
  width: 522px;
  margin-left: 91px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .news-letter__form-block {
    width: 91%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 44px;
  }
}

.news-letter__form {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news-letter__form {
    margin-bottom: 8px;
  }
}

.news-letter__input {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 14px;
  outline: none;
}
@media screen and (max-width: 768px) {
  .news-letter__input {
    font-size: 15px;
    padding: 12px 12px;
  }
}

.news-letter__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.news-letter__input:focus {
  border-color: #ffffff;
}

.news-letter__submit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-left: none;
  padding: 14px 19px;
  cursor: pointer;
  white-space: nowrap;
  outline: none;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news-letter__submit {
    font-size: 14px;
    padding: 13px 16px;
  }
}

.news-letter__submit:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.news-letter__line-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news-letter__line-btn {
    padding: 13px 10px;
    padding-right: 17px;
  }
}

.news-letter__line-icon {
  width: 23px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news-letter__line-icon {
    width: 16px;
  }
}

.news-letter__line-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  .news-letter__line-text {
    font-size: 14px;
    margin-left: 8px;
  }
}

.news-letter__line-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .news-letter__line-arrow {
    width: 16px;
    height: 16px;
  }
}

/* ニュースレター登録完了ポップアップ */
.news-letter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0s 0.4s,
    opacity 0.3s ease-out;
}

.news-letter-popup.is-open {
  visibility: visible;
  opacity: 1;
  transition:
    visibility 0s 0s,
    opacity 0.3s ease-out;
}

.news-letter-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.news-letter-popup.is-open .news-letter-popup__overlay {
  opacity: 1;
}

.news-letter-popup__content {
  position: relative;
  width: 540px;
  height: 270px;
  background-color: #fcf9df;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 20px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.news-letter-popup.is-open .news-letter-popup__content {
  opacity: 1;
}

.news-letter-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.news-letter-popup__close-line {
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #c22b1f;
  transform-origin: center;
}

.news-letter-popup__close-line:first-child {
  transform: rotate(45deg);
}

.news-letter-popup__close-line:last-child {
  transform: rotate(-45deg);
}

.news-letter-popup__text {
  text-align: center;
  font-family: vdl-v7mincho, sans-serif;
  transform: scaleY(0.9);
  font-weight: 500;
  font-weight: bold;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  color: #c22b1f;
}

.news-letter-popup__logo {
  width: 87px;
  height: auto;
  margin: 0 auto;
}

.news-letter-popup__logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .news-letter-popup__content {
    width: 90%;
    max-width: 540px;
    height: auto;
    min-height: 270px;
    padding: 40px 20px 30px;
  }

  .news-letter-popup__text {
    font-size: 14px;
  }
}

/* ===============================================
 * access
 * ===============================================
 */
.access {
  background-image: url(../../img/common/bg-pattern-red.png);
  background-repeat: repeat;
  color: #fff;
  padding: 54px 0 54px;
  position: relative;
  border-bottom: 1px solid rgb(255 255 255 / 0.24);
}
@media screen and (max-width: 768px) {
  .access {
    padding: 54px 0 90px;
  }
}

.access__inner {
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 0 70px;
}
@media screen and (max-width: 768px) {
  .access__inner {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }
}

.access__left {
  flex: 1;
  padding-left: 19px;
}

.access__label {
  font-family: acumin-pro, sans-serif;
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 7px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .access__label {
    font-size: 11px;
    margin-bottom: 5px;
  }
}

.access__title {
  font-family: kepler-std-condensed-display, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 0;
  color: #fff;
  padding-left: 10px;
}
.access__title span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .access__title {
    font-size: 85px;
    padding-left: 5px;
    letter-spacing: -0.04em;
  }
}

.access__shop-name {
  font-family: vdl-v7mincho, sans-serif;
  transform: scaleY(0.9);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-top: 15px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .access__shop-name {
    font-size: 18px;
    margin-top: 17px;
  }
}

.access__postal-code {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15.86px;
  color: #fff;
  margin-top: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .access__postal-code {
    font-size: 14px;
    margin-top: 27px;
  }
}

.access__address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15.86px;
  color: #fff;
  margin-top: 1px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .access__address {
    font-size: 14px;
    margin-top: 0px;
  }
}

.access__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .access__note {
    font-size: 11px;
    margin-top: 6px;
  }
}

.access__left .c-link {
  margin-top: 28px;
  color: #fff;
  border-top-color: #fff;
  border-bottom-color: #fff;
}
@media screen and (max-width: 768px) {
  .access__left .c-link {
    margin-top: 20px;
  }
}

.access__right {
  width: 818px;
  position: relative;
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .access__right {
    width: 100%;
    margin-top: 4px;
  }
}

.access__img-box {
  position: relative;
  width: 100%;
  overflow: clip;
}

.access__img-box__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.access__img-box__img:first-child {
  position: relative;
  z-index: 2;
}

.access__img-box__img img {
  width: 100%;
  height: auto;
  display: block;
}

.access__img-box__img.--active {
  opacity: 1;
  z-index: 2;
}

.access__indicator {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 20px;
  padding-right: 4px;
}
@media screen and (max-width: 768px) {
  .access__indicator {
    padding-right: 20px;
  }
}

.access__indicator__item {
  position: relative;
  width: 9px;
  height: 9px;
}

.access__indicator__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.access__indicator__item.--active .access__indicator__dot {
  background-color: #ffffff;
}

.access__indicator__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 15px;
  height: 15px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.access__indicator__item.--active .access__indicator__circle {
  opacity: 1;
}

.access__indicator__circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 2;
}

.access__indicator__circle-progress {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-dasharray: 62.83;
  stroke-dashoffset: 62.83;
  transition: stroke-dashoffset 3s linear;
}

.access__indicator__item.--active .access__indicator__circle-progress {
  stroke-dashoffset: 0;
}

/* ===============================================
 * footer
 * ===============================================
 */
.footer {
  background-image: url(../../img/common/bg-pattern-red.png);
  background-repeat: repeat;
  color: #fff;
}

.footer__upper {
  border-bottom: 1px solid rgb(255 255 255 / 0.24);
  padding: 65px 0 73px;
}

.footer__inner {
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  padding: 0 90px;
}

.footer__logo-block {
  flex-shrink: 0;
}

.footer__logo {
  width: 279px;
  height: auto;
  display: block;
}

.footer__info-block {
  margin-left: 102px;
  margin-top: 35px;
}

.footer__info-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 29px;
  align-items: start;
}

.footer__info-grid-3col {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 6px 35px;
  align-items: start;
  margin-top: 50px;
}

.footer__info-grid-3col > .footer__info-label:first-child {
  grid-row: 1 / span 7;
}

.footer__info-grid-3col .footer__info-value {
  white-space: nowrap;
  width: fit-content;
}

.footer__info-label {
  font-family: acumin-pro, sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin-top: 4px;
}

.footer__info-value {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.footer__mail-link {
  color: #fff;
  text-decoration: underline;
}

.footer__external-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer__external-link::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-image: url(../../img/common/external-link-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__service-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
  /* margin-left: 63px; */
  margin-top: 37px;
  position: absolute;
  right: 155px;
}
@media screen and (max-width: 768px) {
  .footer__service-block {
    position: relative;
    right: 0;
    margin-top: 40px;
  }
}

.footer__service-labels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__service-labels-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer__service-label {
  display: inline-block;
  padding: 3px 14px;
  border: 1px solid #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 3px;
}

.footer__service-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer__service-icon {
  width: 60.46px;
  height: auto;
  display: block;
}

.footer__lower {
  padding: 47px 0;
}

.footer__lower-inner {
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 31px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.footer__link {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}

.footer__copyright {
  font-family: acumin-pro, sans-serif;
  font-size: 12px;
  font-weight: 400;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .footer__upper {
    padding: 78px 0 64px;
  }

  .footer__inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .footer__logo-block {
    order: 3;
    margin-top: 60px;
  }

  .footer__info-block {
    order: 1;
    margin: 0;
  }

  .footer__service-block {
    order: 2;
    margin: 0 auto;
    gap: 22px;
  }

  .footer__logo {
    width: 94%;
    margin-inline: auto;
  }

  .footer__info-grid {
    gap: 12px 26px;
  }

  .footer__info-grid-3col {
    grid-template-columns: auto 1fr;
    gap: 12px 26px;
  }

  .footer__info-label {
    font-size: 11px;
  }

  .footer__info-value {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer__service-block {
    margin-top: 40px;
  }

  .footer__service-label {
    width: fit-content;
  }

  .footer__lower-inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 0 20px;
  }

  .footer__links {
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
  }

  .footer__copyright {
    font-size: 11px;
    margin-inline: auto;
    margin-top: 55px;
  }
}

/* ===============================================
 * faq
 * ===============================================
 */
.faq {
  padding-top: 40px;
  padding-bottom: 135px;
  background-image: url(../../img/common/bg-pattern.png);
  background-repeat: repeat;
  position: relative;
}
@media (max-width: 767px) {
  .faq {
    padding-top: 50px;
    padding-bottom: 85px;
  }
}

@media (max-width: 767px) {
  .faq__inner {
    overflow: clip;
  }
}

.faq__header {
  max-width: 1280px;
  margin-inline: auto;
  border-top: 1px solid #c22b1f;
  padding-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .faq__header {
    width: 374px;
    padding-top: 34px;
  }
}

.faq__label {
  font-family: acumin-pro, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #c22b1f;
  margin-bottom: 7px;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .faq__label {
    font-size: 11px;
    margin-bottom: 1px;
  }
}

.faq__title-en {
  font-family: kepler-std-condensed-display, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 130px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  color: #c22b1f;
  padding-left: 35px;
}
@media (max-width: 767px) {
  .faq__title-en {
    font-size: 75px;
    padding-left: 0;
    position: relative;
    white-space: nowrap;
  }
}

.faq__title-en span {
  position: relative;
  display: inline-block;
}

.faq__title-en span span:first-child {
  font-weight: 500;
}

.faq-all {
  top: 0px;
  left: 0px;
}
@media (max-width: 767px) {
  .faq__title-en .faq-all {
    left: -3px;
  }
}

.faq-you {
  top: 0px;
  left: 0px;
}
@media (max-width: 767px) {
  .faq__title-en .faq-you {
    top: 0px;
    left: -5px;
  }
}

.faq-need {
  top: 0px;
  left: 0px;
}
@media (max-width: 767px) {
  .faq__title-en .faq-need {
    left: -7px;
  }
}

.faq-to {
  top: -44px;
  left: 8px;
  font-size: 70px;
}
@media (max-width: 767px) {
  .faq__title-en .faq-to {
    top: -26px;
    left: 0px;
    font-size: 45px;
  }
}

.faq__title-en .faq-to span:first-child {
  font-weight: 300;
}

.faq-know {
  top: -9px;
  left: -29px;
  font-family: "nautica", sans-serif;
  font-size: 120px;
  letter-spacing: -0.01em;
}
@media (max-width: 767px) {
  .faq__title-en .faq-know {
    font-size: 75px;
    left: -43px;
    top: 0;
  }
}

.faq__slide {
  margin-top: 28px;
  padding-left: 80px;
}
@media (max-width: 767px) {
  .faq__slide {
    margin-top: 42px;
    padding-left: 19px;
  }
}

.faq-swiper {
  width: 100%;
}

.faq-swiper .swiper-wrapper {
  align-items: stretch;
  gap: 50px;
  padding-bottom: 2px;
}
@media (max-width: 767px) {
  .faq-swiper .swiper-wrapper {
    gap: 20px;
  }
}

.faq-swiper .swiper-slide {
  width: 390px;
  height: auto;
}
@media (max-width: 767px) {
  .faq-swiper .swiper-slide {
    width: 315px;
  }
}

.faq-card {
  width: 390px;
  padding: 40px 15px;
  border: 1px solid #c22b1f;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
@media (max-width: 767px) {
  .faq-card {
    padding: 50px 24px 50px;
    width: 315px;
  }
}

.faq-card__title {
  font-family: vdl-v7mincho, sans-serif;
  transform: scaleY(0.9);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #c22b1f;
  letter-spacing: 0.2em;
}

.faq-card__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #c22b1f;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-inline: auto;
}

.faq-card__text a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq__btn {
  margin-top: 94px;
  margin-inline: auto;
  width: fit-content;
}
@media (max-width: 767px) {
  .faq__btn {
    margin-top: 50px;
  }
}

/* ===============================================
 * stockist
 * ===============================================
 */
.stockist {
  position: relative;
  padding-top: 57px;
  padding-bottom: 98px;
  background-image: url(../../img/common/bg-pattern.png);
  background-repeat: repeat;
  border-top: 2px solid #c33b1f;
}
@media screen and (max-width: 768px) {
  .stockist {
    padding-top: 55px;
    padding-bottom: 102px;
  }
}

.stockist__inner {
  position: relative;
  max-width: 1300px;
  margin-inline: auto;
  margin-top: -40px;
}
@media screen and (max-width: 768px) {
  .stockist__inner {
    padding-left: 17px;
    margin-top: 7px;
    overflow: scroll;
  }
}

.stockist__header {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 767px) {
  .stockist__header {
    flex-direction: column;
  }
}

.stockist__title {
  font-family: kepler-std-condensed-display, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 0;
  color: #c22b1f;
  padding-left: 14px;
  max-width: 1300px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .stockist__title {
    font-size: 90px;
    padding-left: 21px;
    letter-spacing: -0.06em;
  }
}

.stockist__title span {
  position: relative;
  display: inline-block;
}

.stockist__title span span {
  display: inline-block;
}

.stockist__title span span:first-child {
  font-weight: 500;
}

.stockist-title-stockist {
  top: 0px;
  left: 0px;
}

.stockist__content {
  position: relative;
  z-index: 2;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .stockist__content {
    margin-top: 29px;
    gap: 30px;
  }
}

.stockist__tabs {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .stockist__tabs {
    gap: 21px;
    margin-top: 10px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 600px;
  }
}

.stockist__tab {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #c22b1f;
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 0.5;
  position: relative;
}
@media screen and (max-width: 768px) {
  .stockist__tab {
    font-size: 12px;
  }
}

.stockist__tab:hover {
  opacity: 0.7;
}

.stockist__tab.active {
  opacity: 1;
  font-weight: 700;
  padding-left: 12px;
}

.stockist__tab.active::before {
  content: "・";
  position: absolute;
  left: 0;
}

.stockist__panels {
  position: relative;
  min-width: 1000px;
}
@media screen and (max-width: 768px) {
  .stockist__panels {
    padding-right: 20px;
  }
}

.stockist__panel {
  display: none;
}

.stockist__panel.active {
  display: block;
}

.stockist__row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(194, 43, 31, 0.1);
}
@media screen and (max-width: 768px) {
  .stockist__row {
    gap: 12px;
    padding: 10px 0;
  }
}

.stockist__row:first-child {
  border-top: 1px solid #c22b1f;
}

.stockist__row:last-child {
  border-bottom: 1px solid #c22b1f;
}

.stockist__name {
  font-family: vdl-v7mincho, sans-serif;
  transform: scaleY(0.9);
  font-weight: 700;
  font-size: 13px;
  color: #c22b1f;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .stockist__name {
    font-size: 12px;
  }
}

.stockist__address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #c22b1f;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.stockist__address span {
  position: relative;
}
.stockist__address span::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 4px;
  margin-bottom: 3px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='18px' height='18px'%3E%3Cpath fill-rule='evenodd' fill='%23c22b1f' d='M0.515,16.071 L13.950,2.636 C14.340,2.246 14.973,2.246 15.364,2.636 C15.754,3.027 15.754,3.660 15.364,4.050 L1.929,17.485 C1.538,17.876 0.905,17.876 0.515,17.485 C0.124,17.095 0.124,16.462 0.515,16.071 Z'/%3E%3Cpath fill-rule='evenodd' fill='%23c22b1f' d='M7.586,4.757 L17.485,0.515 L12.536,5.464 L7.586,4.757 Z'/%3E%3Cpath fill-rule='evenodd' fill='%23c22b1f' d='M13.243,10.414 L17.485,0.515 L12.536,5.464 L13.243,10.414 Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .stockist__address {
    font-size: 12px;
  }
}

.stockist__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #c22b1f;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .stockist__description {
    font-size: 10px;
  }
}
