@charset "UTF-8";

/* =========================================================
   共通クラス：ページタイトル
   ========================================================= */
.page-title {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 70px;
  line-height: 1;
  letter-spacing: .05em;
  color: var(--color-base);
}

/* =========================================================
   共通クラス：セクションタイトル（英字 + 和文サブ）
   ========================================================= */
.section-title {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-weight: 400;
}
.section-title__en {
  font-family: var(--font-en);
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: .05em;
  white-space: nowrap;
  font-weight: 400;
  color: var(--color-base);
}
.section-title__ja {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -.02em;
  color: var(--color-text);
}

/* =========================================================
   共通クラス：ボタン（margin / width を持たせない）
   ========================================================= */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.6rem 2.5rem;
  font-family: var(--font-gothic);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--color-primary);
  background-color: #fff;
  box-shadow: inset 0 0 0 1px var(--color-primary);
  cursor: pointer;
}

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative;
  overflow: visible;
  width: 100%;
  /*
  aspect-ratio: 1512 / 1260;
  max-height: 1260px;
  */
}
.hero + .content{
    padding: 163px 0 0;
}
.hero__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  top: 0px
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  /*
  padding-inline: var(--side-gutter);
  */
}
.hero__head {
    position:relative;
    z-index: 3;
    padding: 307px 0 0;
}
.page-title__sub {
  margin-top: 33px;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: -.02em;
  color: var(--color-base);
}
.hero__circle {
  position: absolute;
  top: 6.3492%;
  right: 30px;
  width: 58.3333%;
  max-width: 700px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background-color: #d9d9d9;
  z-index: 2;
}
.hero__circle img { width: 100%; height: 100%; object-fit: cover; }
.hero__lead {
  position: relative;
  max-width: 580px;
  padding: 60px 50px;
  background-color: rgba(255, 255, 255, .6);
  z-index: 4;
  margin: 190px 0 0;
}
.hero__lead-title {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.55;
  letter-spacing: -.02em;
  color: var(--color-base);
}
.hero__lead-text {
  margin-top: 66px;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text);
}

.page-title,
.hero__circle,
.hero__lead{
     opacity: 0;
}

/* =========================================================
   コンテンツセクション（共通ラッパ）
   ========================================================= */

/* =========================================================
   ブランド
   ========================================================= */
.brands { padding-block: 10rem; }
.brands__title { margin-bottom: 7rem; }
.brand {
  display: grid;
  grid-template-columns: 25% 425px 1fr;
  align-items: flex-start;
  padding: 0;
  background-color: rgba(255, 255, 255, .8);
}
.brand + .brand { margin-top: 30px; }
.brand__visual { display: flex; }
.brand__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 11rem;
  /*width: 31rem;*/
}
.brand__logo img { max-height: 100%; width: auto;max-width: 90%;  }
.brand__photo { width: 100%; aspect-ratio: 425 / 300; object-fit: cover;flex: 1; }
.brand__name {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.75;
}
.brand__body {
    padding: 32px 30px 30px 40px;
    position: relative;
    height: 100%;
}
.brand__bio {
  margin-top: 30px;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: -.02em;
  color: var(--color-text);
}
.brand__action { 
    position: absolute;
    width: 200px;
    right: 30px;
    bottom: 30px;
    height: 56px;
}
.brand__action .button{ 
    display: block;
    text-align: center;
    width: 100%;
}

/* =========================================================
   CONTACT / STORE
   ========================================================= */
.info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 8rem;
}
.info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 4.5rem 4rem;
  text-align: center;
}
.info-box--contact {
  background-color: var(--color-contact-bg);
  border-top: 2px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  border-left: 1px solid var(--color-primary);
}
.info-box--store {
  background-color: var(--color-store-bg);
  border-top: 2px solid var(--color-store);
  border-bottom: 1px solid var(--color-store);
  border-right: 1px solid var(--color-store);
}
.info-box__title {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 4.6rem;
  letter-spacing: .05em;
}
.info-box--contact .info-box__title { color: var(--color-primary); }
.info-box--store   .info-box__title { color: var(--color-base); }
.info-box__text {
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: -.02em;
  color: var(--color-text);
}
.info-box__tel {
  font-family: var(--font-en);
  font-size: 4.6rem;
  letter-spacing: .05em;
  color: var(--color-base);
}
.info-box .button { margin-top: 1rem; }

/* =========================================================
   フッター
   ========================================================= */
.site-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12rem;
  background-color: #fff;
}
.footer-top {
  position: absolute;
  left: 50%;
  top: 2.4rem;
  transform: translateX(-50%);
  display: inline-flex;
}
.footer-top svg { width: 2.5rem; height: 3rem; fill: var(--color-primary); }
.footer-shop {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: -.02em;
  color: var(--color-text);
}
.footer-copyright {
  position: absolute;
  left: 4rem;
  bottom: 2rem;
  font-family: "Inter", var(--font-gothic);
  font-size: 1.2rem;
  color: var(--color-text);
}
.footer-privacy {
  position: absolute;
  right: 4rem;
  bottom: 2rem;
  font-family: "Noto Sans JP", var(--font-gothic);
  font-size: 1.4rem;
  color: var(--color-base);
}


.product-list__item{
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    cursor: pointer;
}
.product-list__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.product-list__item img{
}

.swiper-button-prev,
.swiper-button-next {
  width: 17px;
  height: 33px;
}

/* デフォルトのarrowを非表示 */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

/* 独自画像を設定 */
.swiper-button-prev {
  background-image: url('../images/common/icon-arrow-prev.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.swiper-button-next {
  background-image: url('../images/common/icon-arrow-next.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: modal-fade-in .3s ease forwards;
}

@keyframes modal-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.modal-overlay--close {
    animation: modal-fade-out .3s ease forwards;
}

@keyframes modal-fade-out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.modal {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #e9e6e2;
    padding: 5rem 6rem;
    max-width: 900px;
    width: 90%;
}

.modal__close {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 34.6px;
    height: 20px;
    background: none;
    cursor: pointer;
    line-height: 1;
    padding: 0.40px;
    opacity: 1;
    background: url(../images/common/icon-close.svg) center / contain no-repeat;
}

.modal__prev,
.modal__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: #000;
    font-size: 4rem;
    width: 17px;
    height: 33px;
    cursor: pointer;
    line-height: 1;
    padding: 1rem;
    opacity: 1;
}

.modal__prev {
    left: 40px;
        background: url(../images/common/icon-arrow-prev.svg) center / contain no-repeat;
}

.modal__next {
    right: 40px;
        background: url(../images/common/icon-arrow-next.svg) center / contain no-repeat;
}

.modal__img {
    max-width: 580px;
    max-height: 580px;
    object-fit: contain;
    display: block;
}

.modal__caption {
    color: #000;
    margin-top: 1.2rem;
    font-size: 1.4rem;
    text-align: center;
}


/* =========================================================
   レスポンシブ（SP: 〜767px）
   ========================================================= */
@media (max-width: 767px) {
  :root { --side-gutter: 2.5rem; }


  main{overflow: hidden;}
  .hero__inner{padding-inline: var(--side-gutter);}
  .page-title { font-size: 4.8rem; letter-spacing: .03em; }
  .section-title__en { font-size: 3.8rem; white-space: normal; }
  .button { width: 22rem; padding: 1.6rem 2rem; }

  /* ヒーロー */
  .hero { overflow: visible; }
  .hero__head { padding: 60px 0 0; }
  .hero__bg{ top: 0px;}
  .page-title__sub { margin: 2.5rem 0 0;font-size: 1.8rem; }
  .hero__circle {
    top: 198px;
    right: -12.8%;
    width: 106.66%;
    margin: 0;
  }
  .hero__lead { margin: 506px 0 0; max-width: 100%; padding: 4rem 2.5rem; }
  .hero__lead-title { font-size: 2rem; }
  .hero__lead-text { font-size: 1.6rem; line-height: 1.75; }
  .hero + .content{
      padding: 108px 0 0;
  }

  /* ブランド */
  .brands {  padding: 80px 0 60px; }
  .brand { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 0; }
  .brand__action { text-align: center; }
  .brand__logo{ width: 100%;}
  .brands__title{
      margin: 0 0 4rem;
  }
  .brand + .brand {
        margin-top: 40px;
    }
  .brand {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
  .brand__logo {
    padding: 30px 0;
  }
  .brand__body {
    padding: 30px 30px 126px;
  }
  .brand__action{
      right: unset;
      left: 50%;
      bottom: 40px;
      transform: translateX(-50%);
  }
    .modal {
        padding: 30px 25px 50px;
        width: 100%;
    }
    .modal__close {
        bottom: 25px;
        right: 25px;

    }

    .modal__prev {
        left: 15px;
    }

    .modal__next {
        right: 15px;
    }

    .modal__img {
        width: 100%;
    }

}
