@charset "UTF-8";
:root {
  --font-base: Noto Sans JP, system-ui, -apple-system, sans-serif;
  --font-gothic: 游ゴシック体, YuGothic, 游ゴシック Medium, Yu Gothic Medium, 游ゴシック, Yu Gothic, sans-serif;
  --font-en: Montserrat, system-ui, -apple-system, sans-serif;
  --color-text: #101010;
  --color-main: #b10c15;
  --color-accent: #E94D96;
  --color-green: #82CCD2;
  --color-black: #000;
  --color-yellow: #FFF9B9;
  --color-pink: #F8DFEC;
  --content-width: 1100px;
  --content-width-sm: 1000px;
  --content-width-l: 1400px;
  --z-header: 1000;
  --z-overlay: 2000;
  --shadow: 10px 10px 0px var(--color-main);
  --shadow-pink: 10px 10px 0px var(--color-accent);
  --shadow-pink--sm: 5px 5px 0px var(--color-accent);
}

.l-wrapper {
  overflow-x: clip;
}

.p-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
}

.p-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: grid;
  grid-template-columns: 359fr 723fr;
  gap: 4.2459736457vw;
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
  padding-block: 36px 18px;
}
@media screen and (max-width: 1024px) {
  .p-header__inner {
    padding-block: 14px 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-header__logo {
  width: clamp(240px, 26.2811127379vw, 359px);
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    width: 220px;
  }
}

.p-header__logo img {
  width: 100%;
}

.p-header__nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.196193265vw;
}

@media (min-width: 1024px) {
  .p-header__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-header__nav-item {
  font-size: clamp(14px, 1.1713030747vw, 16px);
  white-space: nowrap;
}

.p-header__nav-item a {
  color: #333;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-header__nav-item a:hover {
  opacity: 0.7;
}

.p-header__nav-item--cta {
  position: relative;
}

.p-header__cta {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 184px;
  padding: 10px 16px;
  background: #b10c15;
  white-space: nowrap;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s, border-radius 1.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.2s, border-radius 1.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-header__cta span {
  font-size: 22px;
  color: #fff;
}
.p-header__cta:hover {
  opacity: 0.85;
}
.p-header__cta.is-open {
  border-radius: 12px 12px 0 0;
  -webkit-transition: opacity 0.2s, border-radius 0s;
  transition: opacity 0.2s, border-radius 0s;
}

.p-header__cta-icon {
  width: 29px;
  height: 28px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.p-header__cta-dropdown {
  position: absolute;
  top: 98%;
  right: 0;
  width: 184px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 10px;
  background: #b10c15;
  border-radius: 0 0 12px 12px;
  pointer-events: none;
  -webkit-clip-path: inset(0 0 100% 0 round 0 0 12px 12px);
          clip-path: inset(0 0 100% 0 round 0 0 12px 12px);
  -webkit-transition: -webkit-clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1010;
}
.p-header__cta-dropdown.is-open {
  pointer-events: auto;
  -webkit-clip-path: inset(0 0 0% 0 round 0 0 12px 12px);
          clip-path: inset(0 0 0% 0 round 0 0 12px 12px);
}

.p-header__cta-dropdown-item {
  display: block;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-header__cta-dropdown-item img {
  width: 100%;
  height: auto;
  display: block;
}
.p-header__cta-dropdown-item:hover {
  opacity: 0.85;
}

.p-header__hamburger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

@media (min-width: 1024px) {
  .p-header__hamburger {
    display: none;
  }
}
.p-header__hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.p-header__hamburger.is-active .p-header__hamburger-line {
  width: 27px;
  height: 1px;
}

.p-header__hamburger.is-active .p-header__hamburger-line:nth-child(1) {
  -webkit-transform: translateY(4px) rotate(45deg);
          transform: translateY(4px) rotate(45deg);
}

.p-header__hamburger.is-active .p-header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger.is-active .p-header__hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

.p-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100dvh;
  background: #fff;
  z-index: 1050;
  padding: 40px 54px 45px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-header__drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media (min-width: 1024px) {
  .p-header__drawer {
    display: none;
  }
}
.p-header__drawer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-header__drawer-item a {
  display: block;
  padding: 20px 0;
  font-size: 15.6px;
}

.p-header__drawer-item--cta a {
  padding: 10px 0;
}

.p-header__drawer-item--cta a img {
  width: min(300px, 100%);
}

.p-header__drawer-footer {
  margin-top: 50px;
}

.p-header__drawer-footer-links {
  margin-top: 35px;
}

.p-header__drawer-footer-links li {
  margin-bottom: 30px;
}

.p-header__drawer-footer-links a {
  font-size: 10px;
  color: var(--color-text);
}

.is-drawer-open {
  overflow: hidden;
}

/* ==========================================================
 * p-mv - メインビジュアル
 * ========================================================== */
.p-mv {
  position: relative;
  overflow: hidden;
}

/* ----------------------------------------------------------
 * 背景画像 - 通常フローで高さを確保
 * ---------------------------------------------------------- */
.p-mv__image {
  display: block;
  width: 100%;
  line-height: 0;
}

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

/* ----------------------------------------------------------
 * コピー（キャッチコピー + サブコピー）
 * ---------------------------------------------------------- */
.p-mv__copy {
  position: absolute;
  top: 3.4407027818vh;
  left: 6.0029282577vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-mv__copy {
    top: 9px;
    left: 25px;
  }
}

.p-mv__copy img {
  width: 42.1669106881vw;
  height: auto;
  scale: 1.15;
}
@media screen and (max-width: 768px) {
  .p-mv__copy img {
    width: 77.6vw;
    scale: 1.3;
  }
}

/* ----------------------------------------------------------
 * 商品画像（イヤホン）
 * ---------------------------------------------------------- */
.p-mv__product {
  position: absolute;
  top: 25.8418740849vw;
  left: 9.3704245974vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-mv__product {
    top: unset;
    bottom: 44px;
    left: 9.3333333333vw;
  }
}

.p-mv__product img {
  width: 29.7218155198vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-mv__product img {
    width: 60vw;
  }
}

/* ----------------------------------------------------------
 * ガンマ波エフェクト（JSでフェードイン制御）
 * ---------------------------------------------------------- */
.p-mv__gamma {
  position: absolute;
  top: 7.3938506589vw;
  right: 12.0790629575vw;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, -webkit-transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out, -webkit-transform 1.2s ease-out;
}
@media screen and (max-width: 768px) {
  .p-mv__gamma {
    top: 55.2vw;
    right: 10px;
  }
}

.p-mv__gamma.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-mv__gamma img {
  width: 15.1537335286vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-mv__gamma img {
    width: 28.5333333333vw;
  }
}

.p-mv__sign {
  position: absolute;
  right: 9.5168374817vw;
  top: 28.4773060029vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-mv__sign {
    top: 95.4666666667vw;
    right: 10px;
  }
}

.p-mv__sign img {
  width: 8.2723279649vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-mv__sign img {
    width: 12.5333333333vw;
  }
}

.p-mv__scroll {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  top: 48.3162518302vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-mv__scroll {
    top: unset;
    bottom: 7px;
  }
}

.p-mv__scroll img {
  width: 4.39238653vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-mv__scroll img {
    width: 5.8666666667vw;
  }
}

.p-about {
  background: var(--color-black);
  padding-block: 117px 170px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding-block: 42px;
  }
}
.p-about:before {
  content: "";
  background: #101010;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: -1;
}

.p-about__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 58px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-about__heading {
    font-size: 18px;
  }
}

.p-about__heading span {
  color: var(--color-main);
}

.p-about__description {
  color: #fff;
  font-size: 20px;
  width: min(921px, 100%);
  margin-inline: auto;
  line-height: 2.3;
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .p-about__description {
    font-size: 11px;
    margin-top: 18px;
    width: min(293px, 100%);
    letter-spacing: 0.07em;
  }
}

.p-about__description span {
  font-size: 16px;
  font-weight: 300;
  display: block;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 768px) {
  .p-about__description span {
    font-size: 6px;
  }
}

.p-about__bridge {
  margin-block: 133px 93px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-about__bridge {
    margin-block: 45px;
    width: 44px;
    height: 33px;
  }
}

@media screen and (max-width: 768px) {
  .p-about__bridge img {
    width: 100%;
  }
}

.p-about__sound {
  display: grid;
  grid-template-columns: minmax(0, 583px) 1fr;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .p-about__sound {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.p-about__sound-text {
  font-size: 20px;
  color: #fff;
  line-height: 2.3;
  width: min(580px, 100%);
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-about__sound-text {
    padding-right: 0;
    font-size: 11px;
    width: min(294px, 100%);
    letter-spacing: 0.07em;
    margin-inline: auto;
    margin-top: 6px;
    line-height: 2.0909090909;
  }
}

.p-about__sound-text span {
  font-size: 16px;
  font-weight: 300;
  display: block;
  line-height: 3.0666666667;
}
@media screen and (max-width: 768px) {
  .p-about__sound-text span {
    font-size: 6px;
    line-height: 1.6666666667;
    margin-top: 10px;
  }
}

.p-about__sound-image {
  display: block;
  width: min(583px, 100%);
}

.p-about__sound-image img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about__sound-image img {
    width: 72vw;
  }
}

.p-about__graphic {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 92px;
}
@media screen and (max-width: 768px) {
  .p-about__graphic {
    margin-top: 31px;
  }
}

.p-about__graphic-image img {
  width: 69.3997071742vw;
}
@media screen and (max-width: 768px) {
  .p-about__graphic-image img {
    width: 70.9333333333vw;
  }
}

.p-about__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 97px;
}
@media screen and (max-width: 768px) {
  .p-about__link {
    margin-top: 28px;
    position: relative;
    left: 10px;
  }
}

.p-about__link-btn {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .p-about__link-btn {
    font-size: 12px;
    gap: 6px;
    line-height: 1.75;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (any-hover: hover) {
  .p-about__link-btn:hover {
    text-decoration: underline;
  }
}

.p-about__link-btn:after {
  content: "";
  display: block;
  width: 20px;
  height: 25px;
  background: url(../../assets/img/arrow_right.svg) no-repeat;
  background-size: contain;
  position: relative;
  top: 1px;
}
@media screen and (max-width: 768px) {
  .p-about__link-btn:after {
    width: 13px;
    height: 18px;
  }
}

.p-product {
  background: var(--color-main);
  padding-block: 142px 124px;
}
@media screen and (max-width: 768px) {
  .p-product {
    padding-block: 48px;
  }
}

.p-product__container {
  width: min(100% - 40px, 1060px);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-product__container {
    width: min(100% - 112px, 1060px);
  }
}

.p-product__heading {
  width: min(814px, 100%);
  margin-inline: auto;
}
.p-product__heading img {
  width: 100%;
}

.p-product__images {
  display: grid;
  grid-template-columns: 470fr 631fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-product__images {
    grid-template-columns: 1fr;
    margin-top: 32px;
    padding-inline: 10px;
  }
}

.p-product__images img {
  width: 100%;
}

.p-product__images figcaption {
  color: #fff;
  display: inline-block;
  margin-top: 20px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-product__images figcaption {
    font-size: 9px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .p-product__images-img2 {
    scale: 1.15;
    position: relative;
    top: 20px;
  }
}

.p-product__logo {
  width: 56.2225475842vw;
  margin-inline: auto;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-product__logo {
    width: 66.6666666667vw;
    margin-top: 28px;
  }
}

.p-product__logo img {
  width: 100%;
}

.p-oroduct__list-contents {
  margin-top: 94px;
}
@media screen and (max-width: 768px) {
  .p-oroduct__list-contents {
    margin-top: 33px;
    padding-inline: 10px;
  }
}

.p-product__list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.831625183vw;
}
@media screen and (max-width: 768px) {
  .p-product__list {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 15px;
  }
}

.p-product__list-item img {
  width: 100%;
}

.p-product__list-heading {
  font-size: 25px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-product__list-heading {
    font-size: 13px;
    gap: 7px;
  }
}

.p-product__list-heading:before,
.p-product__list-heading:after {
  content: "";
  background: #fff;
  width: 100%;
  height: 1px;
  display: block;
}

.p-product__list-price {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 29px;
}
@media screen and (max-width: 768px) {
  .p-product__list-price {
    display: block;
  }
}

.p-product__list-price .fz-sm {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-product__list-price .fz-sm {
    font-size: 13px;
  }
}

.p-product__list-price dt {
  font-size: 30px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-product__list-price dt {
    font-size: 18px;
  }
}

.p-product__list-price dd {
  font-size: 18px;
  margin-left: 33px;
  margin-top: 11px;
}
@media screen and (max-width: 768px) {
  .p-product__list-price dd {
    font-size: 11px;
    line-height: 2.0909090909;
    margin-top: 10px;
    margin-left: 0;
  }
}

.p-product__list-price dd span {
  margin-left: 1em;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-product__list-price dd span {
    margin-left: 0;
    display: block;
  }
}

.p-mind {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.p-mind__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
}

.p-mind__slide {
  position: relative;
  height: 100svh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.p-mind__slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-mind__slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-mind {
    height: auto;
    overflow: visible;
  }
  .p-mind__wrapper {
    position: relative;
    height: auto !important;
    overflow: visible;
  }
  .p-mind__slide {
    position: relative !important;
    height: auto !important;
    min-height: 0;
    aspect-ratio: 365/500;
  }
  .p-mind__slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .p-mind__slide-image img {
    opacity: 1 !important;
  }
}
.p-footer {
  background: #fff;
  padding-block: 20px 130px;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding-block: 10px 80px;
  }
}

.p-footer__inner {
  width: calc(100% - 40px);
  margin-inline: auto;
}

.p-footer__top-text {
  text-align: center;
  font-weight: 300;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .p-footer__top-text {
    line-height: 1.5555555556;
    font-size: 9px;
  }
}

.p-footer__logo {
  width: min(100%, 467px);
  margin-inline: auto;
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    width: min(237px, 100%);
    margin-top: 70px;
  }
}

.p-footer__logo img {
  width: 100%;
}

.p-footer__links {
  margin-top: 53px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-footer__links {
    width: min(100%, 220px);
    row-gap: 10px;
    margin-top: 34px;
  }
}

.p-footer__link {
  font-size: 18px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-footer__link {
    font-size: 11px;
  }
}
.p-footer__link:hover {
  text-decoration: underline;
}
.p-footer__link + .p-footer__link {
  margin-left: 2.25em;
  position: relative;
}
.p-footer__link + .p-footer__link::before {
  content: "｜";
  position: absolute;
  left: -1.25em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-footer__link:nth-child(3) {
    margin-left: 0;
  }
  .p-footer__link:nth-child(3)::before {
    content: none;
  }
}

.p-footer__copyright {
  font-size: 18px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 120px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright {
    font-size: 11px;
    margin-top: 56px;
    letter-spacing: 0.07em;
  }
}

/* モーダル */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal.is-open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.modal__img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal__close {
  position: absolute;
  top: -40px;
  right: -5px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
}

/* クリック可能であることを示す */
.p-product__images img,
.p-product__list-item img {
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-product__images img:hover,
.p-product__list-item img:hover {
  opacity: 0.7;
}