@charset "UTF-8";



/*!
 * 愛眼 × たっくー LP - style.scss
 *
 * テーマ aigan の master.css / layout.css 等が global にあてる reset / base スタイルを
 * 上書きしないよう、本LPでは foundation/_reset / _base / _form / _attr を読み込まない。
 * LP内で必要な最低限のリセットは object/project/_p-top.scss 内に「.p-top」スコープで記述。
 */
:root {

  /* ウィンドウサイズ */
  --vw: 100vw;
  --vh: 100vh;

  /* 三角形 */
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);

  /**
     * svgをbackgroundで使う
     * 色：#ffffff -> %23ffffff
     */
  --icon-btn-arrow: url('data:image/svg+xml;utf8,<svg width="37" height="6" viewBox="0 0 37 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 5H36L26.2703 1" stroke="%230C4A6E"/></svg>');

  /* ヘッダー高さ */
  --header-height: 60px;
}

.js-fadeIn {
  visibility: hidden;
  opacity: 0;
}

.js-fadeInUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInLeft {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
  visibility: hidden;
  opacity: 0;
}

.js-fadeInRight {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  visibility: hidden;
  opacity: 0;
}

@-webkit-keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {

  from {
    -webkit-transform: translate3d(-2%, 0, 0);
    transform: translate3d(-2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInRight {

  from {
    -webkit-transform: translate3d(2%, 0, 0);
    transform: translate3d(2%, 0, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUp {

  from {
    -webkit-transform: translate3d(0, 2%, 0);
    transform: translate3d(0, 2%, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {

  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeIn,
.fadeOut {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

.fadeInLeft {
  -webkit-animation-name: fadeinleft;
  animation-name: fadeInLeft;
}

.fadeInRight {
  -webkit-animation-name: fadeinright;
  animation-name: fadeInRight;
}

.fadeInUp {
  -webkit-animation-name: fadeinup;
  animation-name: fadeInUp;
}

.fadeIn {
  -webkit-animation-name: fadein;
  animation-name: fadeIn;
}

.fadeOut {
  opacity: 1;
  -webkit-animation-name: fadeout;
  animation-name: fadeOut;
}

/************************************************************************
* swiper
************************************************************************/
.swiper-button-prev,
.swiper-button-next {
  aspect-ratio: 1;
  z-index: 1;
  cursor: pointer;
  background: transparent no-repeat center center/contain;
  width: calc(1.875 * var(--fz-base));
}

.swiper-button-prev {
  rotate: 180deg;
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-button-next {
  background-image: url('../img/common/icon-slider-arrow.svg');
}

.swiper-pagination {
  font-size: 0;
}

.swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  background-color: #D5D5D5;
  width: 5px;
  height: 5px;
}

.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0C4A6E;
}

/* rtl ******************************************************************/
.swiper[dir=rtl] .swiper-button-prev {
  background-image: url('../img/common/icon-chevron-right.svg');
}

.swiper[dir=rtl] .swiper-button-next {
  background-image: url('../img/common/icon-chevron-left.svg');
}

.swiper[dir=rtl] .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-right: 5px;
  margin-left: 0;
}

/************************************************************************
* swiper end
************************************************************************/
html:has(.p-top) #header {
  top: -100px;
  -webkit-transition: top .3s;
  transition: top .3s;
}

html:has(.p-top) body.is-fvPassed #header {
  top: 0;
}

html:has(.p-top) #pagetop {
  bottom: 60px;
}

/************************************************************************
* l-body
*
* 愛眼 × たっくー LP 固有カスタム:
* - フローティングメニュー（画面下端 fixed / `l-floatingMenu`）分の余白を確保。
*   本LPは共通ヘッダー / フッターをテンプレート側で読み込む運用のため、
*   ヘッダー分の margin-top / min-height は使用しない（既存のコメントアウトを維持）。
*
* フローティングメニュー高さ（Phase 2-2 の `_l-floatingMenu.scss` と必ず一致させる）:
*   - PC: 57px
*   - SP: 51px
*
* 連携メモ（Phase 2-2 並列作業との整合）:
*   - Phase 2-2 側で `$lp-floatingMenu-height-pc` / `$lp-floatingMenu-height-sp`
*     （もしくは `--lp-floatingMenu-height-*`）が定義される想定。
*   - 変数が `_l-floatingMenu.scss` / `_variable.scss` に確定次第、
*     下記のリテラル値を変数参照に差し替える。
*     （現時点では並列タスクとの競合回避のため直値で記述）
************************************************************************/
.l-body {
  padding-bottom: var(--floatingMenu-height, 51px);
}

.l-container {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 500px;
}

.l-container.l-container--full {
  margin-left: calc((100% - 100vw) / 2);
  width: 100vw;
  max-width: none;
}

/************************************************************************
* l-content
*
* 愛眼 × たっくー LP ではコンテンツ領域に固有の max-width / margin / padding は設けない。
* 理由:
*  - 各セクションの配置・余白は `_p-top.scss` の `p-top__{sectionId}` で個別管理する方針
*    （context-summary.md / CODING-PROMPT.md 準拠）。
*  - FV・registerCta 等は full-width 背景が必要なため、`l-content` で幅を絞ると崩れる。
*  - フローティングメニュー分の下余白は `l-body` 側で確保済み（重複させない）。
*
* 本LPでは `<main class="l-content">` は透過的なラッパとしてのみ機能する。
************************************************************************/
:root {
  --floatingMenu-height: calc(4.375 * var(--fz-base));
}

.l-floatingMenu {
  inset: auto 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  z-index: 30;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
  height: calc(4.375 * var(--fz-base));
  pointer-events: none;
}

body.is-fvPassed .l-floatingMenu {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.l-floatingMenu__left {
  gap: calc(.25 * var(--fz-base));
  padding-inline: calc(.25 * var(--fz-base));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -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;
  -webkit-transition: background-color .2s ease, color .2s ease;
  transition: background-color .2s ease, color .2s ease;
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

.l-floatingMenu__left:focus-visible {
  opacity: 1;
  background-color: #fff;
  color: #000;
}

.l-floatingMenu__right {
  padding-inline: calc(.75 * var(--fz-base));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  -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;
  -webkit-transition: background-color .2s ease, color .2s ease;
  transition: background-color .2s ease, color .2s ease;
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

.l-floatingMenu__right:focus-visible {
  opacity: 1;
  background-color: #000;
  color: #fff;
}

.l-floatingMenu__lead {
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

.l-floatingMenu__lead br {
  display: none;
}

.l-floatingMenu__cta {
  gap: calc(.3125 * var(--fz-base));
  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;
  font-size: max(.9375 * var(--fz-base), 12px);
  line-height: 1.6;
  white-space: nowrap;
}

.l-floatingMenu__icon {
  aspect-ratio: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -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;
  width: 1.4666666667em;
}

.l-floatingMenu__icon svg {
  display: block;
  height: 100%;
}

.l-floatingMenu__label {
  display: inline-block;
  font-weight: 500;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: -110%;
  left: 0;
  z-index: 20;
  -webkit-transition: top .3s ease 0s;
  transition: top .3s ease 0s;
  width: 100%;
}

.l-header.is-fixed {
  top: 0;
  -webkit-box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
  box-shadow: 0 3px 6px rgba(117, 117, 117, .16);
}

.c-btn {
  gap: calc(.5 * var(--fz-base));
  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;
  -webkit-transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .3s ease;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, opacity .3s ease;
  padding: calc(1.625 * var(--fz-base)) calc(1.5 * var(--fz-base));
  font-size: calc(1 * var(--fz-base));
  font-weight: 500;
  text-align: center;
}

.c-btn__label {
  display: inline-block;
}

.c-btn__icon {
  aspect-ratio: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -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;
  width: 1.625em;
}

.c-btn__icon svg {
  display: block;
  height: 100%;
}

.c-btn.c-btn--dark {
  border: 1px solid;
  background-color: #000;
  color: #fff;
}

.c-btn.c-btn--dark:focus-visible {
  opacity: 1;
  background-color: #fff;
  color: #000;
}

.c-btn.c-btn--light {
  background-color: #fff;
  color: #000;
}

.c-btn.c-btn--light:focus-visible {
  opacity: 1;
  background-color: #000;
  color: #fff;
}

.c-btn.c-btn--ghost {
  border: 0;
  background-color: transparent;
  padding: 0;
  color: inherit;
}

.c-btn.c-btn--solid {
  border: 1px solid rgba(255, 255, 255, .4);
  background-color: #000;
  padding: calc(1 * var(--fz-base)) calc(2 * var(--fz-base));
  color: #fff;
  text-transform: uppercase;
}

.c-btn.c-btn--solid:focus-visible {
  opacity: 1;
  border-color: rgba(0, 0, 0, .4);
  background-color: #fff;
  color: #000;
}

.c-sectionTitle {
  font-family: 'Cinzel', 'Shippori Mincho', serif;
}

.c-sectionTitle__en {
  gap: calc(.75 * var(--fz-base));
  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;
  font-size: max(calc(.9375 * var(--fz-base)), 13px);
  line-height: 1;
  text-transform: uppercase;
}

.c-sectionTitle__en::after {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 calc(3.125 * var(--fz-base));
  -ms-flex: 0 1 calc(3.125 * var(--fz-base));
  flex: 0 1 calc(3.125 * var(--fz-base));
  background-color: #B8B8B8;
  height: 1px;
  content: '';
}

.c-sectionTitle__en span {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.c-sectionTitle__ja {
  margin-top: calc(.625 * var(--fz-base));
  font-family: 'Shippori Mincho', serif;
  font-size: max(calc(1.5 * var(--fz-base)), 20px);
  letter-spacing: .03em;
  line-height: 1.5;
}

.c-takkuLogo {
  display: block;
  line-height: 0;
}

.c-takkuLogo__svg {
  display: block;
  width: 100%;
  height: auto;
}

.c-totop {
  display: block;
  position: fixed;
  right: calc(1.25 * var(--fz-base));
  bottom: calc(1.25 * var(--fz-base));
  visibility: hidden;
  opacity: 0;
  z-index: 30;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  background-color: #65a7ce;
  width: calc(3.125 * var(--fz-base));
  height: calc(3.125 * var(--fz-base));
}

.c-totop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
  transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  width: calc(1.25 * var(--fz-base));
  height: calc(1.25 * var(--fz-base));
  content: '';
}

.c-totop.is-active {
  visibility: visible;
  opacity: .7;
}

.c-totop.is-active:focus-visible {
  opacity: 1;
}

.c-videoPlaceholder {
  aspect-ratio: 16/9;
  display: block;
  position: relative;
  background-color: #000;
  width: 100%;
  overflow: hidden;
}

.c-videoPlaceholder:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.c-videoPlaceholder img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}

.c-videoPlaceholder__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -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;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: background-color .3s ease;
  transition: background-color .3s ease;
  border-radius: calc(.5 * var(--fz-base));
  background-color: rgba(0, 0, 0, .7);
  width: calc(3 * var(--fz-base));
  height: calc(2.125 * var(--fz-base));
  pointer-events: none;
}

.c-videoPlaceholder__btn::before {
  border-width: calc(.4375 * var(--fz-base)) 0 calc(.4375 * var(--fz-base)) calc(.75 * var(--fz-base));
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  content: '';
}

.c-videoPlaceholder:focus-visible .c-videoPlaceholder__btn {
  background-color: #f00;
}

.c-videoPlaceholder iframe,
.c-videoPlaceholder video {
  inset: 0;
  aspect-ratio: 16/9;
  display: block;
  position: absolute;
  background-color: #000;
  width: 100%;
}

.p-fv {
  position: relative;
  background-color: #000;
  height: 720px;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
}

.p-fv__bg {
  inset: 0;
  position: absolute;
  z-index: 1;
}

.p-fv__bgImg {
  inset: 0;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.p-fv__bgImg.is-active {
  opacity: 1;
}

.p-fv__bgImg.p-fv__bgImg img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-fv__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 10;
  padding-bottom: calc(3.75 * var(--fz-base));
  height: 100%;
}

.p-fv__copy {
  gap: calc(1 * var(--fz-base));
  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-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: right;
}

.p-fv__title {
  font-family: 'Cinzel', 'Shippori Mincho', serif;
  font-size: calc(2.375 * var(--fz-base));
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.p-fv__sub {
  gap: calc(1 * var(--fz-base));
  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;
}

.p-fv__sub::after {
  display: block;
  background-color: #757575;
  width: 1px;
  height: 100%;
  content: '';
}

.p-fv__subText {
  font-size: max(.8125 * var(--fz-base), 12px);
  letter-spacing: .16em;
  line-height: 1.8;
}

.p-fv__logo {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  width: calc(6.5 * var(--fz-base));
}

.p-registerCta {
  padding-block: calc(6.875 * var(--fz-base));
  position: relative;
  overflow: hidden;
  color: #fff;
}

.p-registerCta__bg {
  inset: 0;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.p-registerCta__bgImg {
  height: 100%;
}

.p-registerCta__bgImg.p-registerCta__bgImg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-registerCta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-registerCta__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: calc(1.5 * var(--fz-base));
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.6;
}

.p-registerCta__btns {
  gap: calc(1.875 * var(--fz-base));
  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-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: calc(3.75 * var(--fz-base));
}

.p-registerCta__btnItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}

.p-registerCta__btnItem .c-btn {
  padding-block: calc(1.25 * var(--fz-base));
  width: 100%;
  font-size: max(.9375 * var(--fz-base), 12px);
}

.p-registerCta__btnItem.p-registerCta__btnItem--store {
  padding-block: calc(2.0625 * var(--fz-base)) calc(1.75 * var(--fz-base));
}

.p-registerCta__btnPrefix {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  font-size: max(.9375 * var(--fz-base), 12px);
}

.p-registerCta__btnNote {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-size: max(.6875 * var(--fz-base), 12px);
}

.p-registerCta__logo {
  position: absolute;
  right: calc(1.25 * var(--fz-base));
  bottom: calc(1.25 * var(--fz-base));
  opacity: .5;
  z-index: 1;
  width: calc(6.125 * var(--fz-base));
  color: #fff;
}

.p-socialShare {
  padding-block: calc(6.25 * var(--fz-base));
}

.p-socialShare__title {
  font-family: 'Cinzel', 'Shippori Mincho', serif;
  font-size: calc(2.125 * var(--fz-base));
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.p-socialShare__right {
  gap: calc(1.25 * var(--fz-base));
  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;
  margin-top: calc(2.5 * var(--fz-base));
}

.p-socialShare__hashtags {
  gap: calc(.625 * var(--fz-base));
  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;
  background-color: #F8F8F8;
  padding: calc(.375 * var(--fz-base)) calc(1 * var(--fz-base));
}

.p-socialShare__tagList {
  gap: calc(.625 * var(--fz-base));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-socialShare__tag {
  font-size: max(.875 * var(--fz-base), 12px);
  line-height: 1.6;
}

.p-socialShare__send {
  aspect-ratio: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: calc(1.625 * var(--fz-base));
}

.p-socialShare__sns {
  gap: calc(.625 * var(--fz-base));
  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-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;
}

.p-socialShare__snsLabel {
  font-size: max(.9375 * var(--fz-base), 12px);
  line-height: 1.3;
}

.p-socialShare__snsList {
  gap: calc(1.875 * var(--fz-base));
  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;
}

.p-socialShare__snsItem {
  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;
}

.p-socialShare__snsLink {
  display: block;
}

.p-socialShare__snsIcon {
  display: block;
  width: calc(1.25 * var(--fz-base));
}

.p-socialShare__snsIcon img {
  aspect-ratio: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-socialShare__snsIcon--wide {
  aspect-ratio: 24/20;
  width: calc(1.5 * var(--fz-base));
}

/**
 * LP本体ラッパー（.p-top）
 *
 * 本LPは aigan テーマ（master.css / layout.css 等）の global reset / base に
 * 依存しつつ、LP 内のタイポ・余白基準は親テーマと切り離して運用する。
 *
 * 方針:
 * - `html { font-size: 62.5% }` は親テーマ固定 → 触らない。
 * - `.p-top` を container-type: inline-size のクエリ対象にし、
 *   `--fz-base` を `cqi` で算出して「LP内 rem 単位」とする。
 * - rem() 関数は `calc(N/16 * var(--fz-base))` を返すので、既存 SCSS 側は無修正。
 * - 親テーマ `.wrapper { padding: 0 15px }` を打ち消すため左右 -15px のネガマージン。
 */

/* `.p-top` 外で c-* 等が rem() を使った場合のフォールバック */
:root {
  --fz-base: 16px;
  --fz-base: 1rem;
}

.breadcrumb {
  display: none;
}

.container-fluid {
  padding-bottom: 0;
}

.container-inner {
  width: initial;
  max-width: initial;
}

.box-post {
  padding-top: 0;
}

.p-top {
  container-type: inline-size;
  container-name: top;
  --fz-base: min(calc(16cqi / 13), 16px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: -15px;
  margin-left: -15px;
  background: #E5E5E5;
  color: #222;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: max(calc(1 * var(--fz-base)), 14px);
  font-weight: 400;
  letter-spacing: 0;
  line-break: strict;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-break: normal;
  overflow-wrap: anywhere;
}

.p-top *,
.p-top *::before,
.p-top *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.p-top img,
.p-top svg {
  display: block;
  vertical-align: top;
  width: 100%;
  max-width: 100%;
  height: auto;
}

:where(.p-top) a {
  -webkit-transition: opacity .3s ease, color .2s ease, background-color .2s ease, border-color .2s ease;
  transition: opacity .3s ease, color .2s ease, background-color .2s ease, border-color .2s ease;
  color: inherit;
  text-decoration: none;
}

:where(.p-top) a:hover {
  opacity: .7;
  color: inherit;
  text-decoration: none;
}

:where(.p-top) p:not(:last-child) {
  margin-bottom: 0;
}

:where(.p-top) button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
}

.p-top__registerCta1 {
  margin-top: calc(4.375 * var(--fz-base));
}

.p-top__topShapeColor {
  margin-top: calc(5.625 * var(--fz-base));
}

.p-top__topSpec {
  margin-top: calc(5.625 * var(--fz-base));
}

.p-top__topAccessory {
  margin-top: calc(5.625 * var(--fz-base));
}

.p-top__topQuality {
  margin-top: calc(5.625 * var(--fz-base));
}

.p-topAbout {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(transparent));
  background-image: linear-gradient(to bottom, #222 calc(100% - 2.25 * var(--fz-base)), transparent calc(100% - 2.25 * var(--fz-base)));
  padding-top: calc(5 * var(--fz-base));
  color: #fff;
}

.p-topAbout__release {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-topAbout__releaseInner {
  border: 1px solid #505050;
  padding: calc(2.9375 * var(--fz-base)) calc(1.25 * var(--fz-base));
  width: 100%;
  max-width: calc(46.25 * var(--fz-base));
  letter-spacing: .05em;
  text-align: center;
}

.p-topAbout__releaseLead {
  font-size: max(.9375 * var(--fz-base), 12px);
}

.p-topAbout__releaseDate {
  margin-top: calc(1.0625 * var(--fz-base));
  font-family: 'Cinzel', 'Shippori Mincho', serif;
  font-size: calc(1.75 * var(--fz-base));
}

.p-topAbout__releaseNote {
  font-size: calc(1 * var(--fz-base));
}

.p-topAbout__harmony {
  container-type: inline-size;
  container-name: about-container;
  position: relative;
  margin-top: calc(5 * var(--fz-base));
}

.p-topAbout__harmonyMediaTop {
  aspect-ratio: 334/311;
  position: relative;
  margin-right: calc(50% - 50cqi);
  margin-left: auto;
  width: calc(334 / 390 * 100cqi);
  max-width: calc(334 / 350 * 100%);
}

.p-topAbout__photo {
  position: absolute;
  overflow: hidden;
}

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

.p-topAbout__photo.p-topAbout__photo--hero {
  top: 0;
  right: 0;
  width: calc(267 / 334 * 100%);
}

.p-topAbout__photo.p-topAbout__photo--hero img {
  aspect-ratio: 267/277;
}

.p-topAbout__photo.p-topAbout__photo--mid {
  bottom: 0;
  left: 0;
  width: calc(186 / 334 * 100%);
}

.p-topAbout__photo.p-topAbout__photo--mid img {
  aspect-ratio: 186/131;
}

.p-topAbout__harmonyText {
  margin-top: calc(3.125 * var(--fz-base));
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

.p-topAbout__heading {
  font-family: 'Shippori Mincho', serif;
  font-size: calc(1.5 * var(--fz-base));
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.5;
}

.p-topAbout__body {
  margin-top: calc(2 * var(--fz-base));
  font-size: max(.8125 * var(--fz-base), 12px);
  letter-spacing: 0;
  line-height: 2.2;
}

.p-topAbout__body p + p {
  margin-top: 1.3846153846em;
}

.p-topAbout__bodyEn {
  margin-top: calc(1.75 * var(--fz-base));
  font-size: 10px;
  font-weight: 100;
  letter-spacing: 0;
  line-height: 1.6;
}

.p-topAbout__harmonyMediaBottom {
  margin-top: calc(3.125 * var(--fz-base));
  margin-left: calc(50% - 50cqi);
  width: calc(198 / 390 * 100cqi);
  max-width: calc(198 / 350 * 100%);
}

.p-topAbout__photo.p-topAbout__photo--side {
  position: static;
}

.p-topAbout__photo.p-topAbout__photo--side img {
  aspect-ratio: 198/266;
}

.p-topAbout__videoWrap {
  margin-top: calc(5 * var(--fz-base));
}

.p-topAbout__video--making {
  margin-top: calc(1 * var(--fz-base));
}

.p-topAbout__storyVideo {
  margin-inline: auto;
  margin-top: calc(3.125 * var(--fz-base));
}

.p-topAbout__storyLabel {
  gap: calc(.75 * var(--fz-base));
  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;
  font-family: 'Cinzel', 'Shippori Mincho', serif;
  font-size: max(.9375 * var(--fz-base), 12px);
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.p-topAbout__storyLabel::after {
  display: inline-block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(3.125 * var(--fz-base));
  -ms-flex: 0 0 calc(3.125 * var(--fz-base));
  flex: 0 0 calc(3.125 * var(--fz-base));
  opacity: .5;
  margin-top: -.2666666667em;
  background-color: currentColor;
  height: 1px;
  content: '';
}

.p-topAbout__storyLabelText {
  display: inline-block;
}

.p-topAbout__storyVideo .p-topAbout__heading {
  margin-top: calc(.625 * var(--fz-base));
}

.p-topAccessory {
  container-type: inline-size;
  container-name: accessory-container;
}

.p-topAccessory__header .c-sectionTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.p-topAccessory__items {
  margin-top: calc(1.875 * var(--fz-base));
}

.p-topAccessory__item + .p-topAccessory__item {
  margin-top: calc(2.5 * var(--fz-base));
}

.p-topAccessory__media {
  margin-inline: calc(50% - 50cqi);
}

.p-topAccessory__media img {
  aspect-ratio: 720/300;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-topAccessory__itemBody {
  margin-top: calc(.625 * var(--fz-base));
}

.p-topAccessory__label {
  font-family: 'Cinzel', 'Shippori Mincho', serif;
  font-size: calc(1.75 * var(--fz-base));
  text-transform: uppercase;
}

.p-topAccessory__body {
  font-size: max(.8125 * var(--fz-base), 12px);
}

/************************************************************************
* modifier
************************************************************************/
.p-topColorDetail {
  container-type: inline-size;
  container-name: color-detail-container;
  color: #fff;
}

.p-topColorDetail__item + .p-topColorDetail__item {
  margin-top: calc(2.5 * var(--fz-base));
}

.p-topColorDetail__card {
  position: relative;
  padding-bottom: calc(5.625 * var(--fz-base));
  font-family: 'Noto Sans JP', sans-serif;
}

.p-topColorDetail__slide {
  position: relative;
  height: 100%;
}

.p-topColorDetail__mainImage {
  height: 100%;
}

.p-topColorDetail__mainImage img {
  aspect-ratio: 390/530;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-topColorDetail__assets {
  inset: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 2;
  pointer-events: none;
}

.p-topColorDetail__textCard {
  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: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

.p-topColorDetail__name {
  font-family: 'Cinzel', 'Shippori Mincho', serif;
  font-size: calc(1.75 * var(--fz-base));
  text-transform: uppercase;
}

.p-topColorDetail__desc {
  font-size: max(.8125 * var(--fz-base), 12px);
}

.p-topColorDetail__pagination {
  gap: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: static;
  margin: 0;
  width: 100%;
  height: calc(.0625 * var(--fz-base));
  line-height: 0;
}

.p-topColorDetail__bullet {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  opacity: .3;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  cursor: pointer;
  border-radius: 0;
  background-color: currentColor;
  height: 100%;
}

.p-topColorDetail__bullet.is-active {
  opacity: 1;
}

.p-topColorDetail__nav {
  gap: calc(1.6875 * var(--fz-base));
  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: calc(.875 * var(--fz-base));
}

.p-topColorDetail__btns {
  gap: calc(.9375 * var(--fz-base));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-topColorDetail__arrow {
  aspect-ratio: 11/22;
  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;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  width: calc(.6875 * var(--fz-base));
  color: inherit;
}

.p-topColorDetail__arrow svg,
.p-topColorDetail__arrow img {
  width: calc(.75 * var(--fz-base));
}

.p-topColorDetail__subImage {
  margin-top: calc(1.125 * var(--fz-base));
  width: calc(296 / 390 * 100%);
}

.p-topColorDetail__subImage img {
  aspect-ratio: 480/260;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-topColorDetail__item:nth-child(odd) .p-topColorDetail__assetsInner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-topColorDetail__item:nth-child(odd) .p-topColorDetail__subImage {
  margin-left: calc(50% - 50cqi);
}

.p-topColorDetail__item:nth-child(even) .p-topColorDetail__subImage {
  margin-right: calc(50% - 50cqi);
  margin-left: auto;
}

.p-topQuality {
  padding-block: calc(6.25 * var(--fz-base));
  background-color: #222;
  color: #fff;
}

.p-topQuality__block {
  container-type: inline-size;
  container-name: quality-container;
  margin-inline: auto;
  max-width: 1920px;
}

.p-topQuality__block + .p-topQuality__block {
  margin-top: calc(3.75 * var(--fz-base));
}

.p-topQuality__blockInner {
  gap: calc(1.25 * var(--fz-base));
  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;
}

.p-topQuality__body {
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}

.p-topQuality__num {
  color: #949494;
  font-family: 'Figtree', 'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1;
}

.p-topQuality__num::after {
  display: block;
  opacity: .3;
  margin-top: calc(1 * var(--fz-base));
  background-color: #fff;
  height: 1px;
  content: '';
}

.p-topQuality__heading {
  margin-top: calc(1 * var(--fz-base));
  font-family: 'Shippori Mincho', serif;
  font-size: calc(1.5 * var(--fz-base));
  font-weight: 500;
  line-height: 1.4;
}

.p-topQuality__lead {
  margin-top: calc(.875 * var(--fz-base));
  font-size: max(.8125 * var(--fz-base), 12px);
}

.p-topQuality__text {
  margin-top: calc(.625 * var(--fz-base));
  font-size: max(.8125 * var(--fz-base), 12px);
}

.p-topQuality__textEn {
  margin-top: calc(.625 * var(--fz-base));
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 100;
  line-height: 1.6;
}

.p-topQuality__price {
  margin-top: calc(.875 * var(--fz-base));
  line-height: 1;
}

.p-topQuality__priceSign {
  vertical-align: middle;
  font-size: calc(1.25 * var(--fz-base));
  letter-spacing: .03em;
}

.p-topQuality__priceYen {
  vertical-align: middle;
  margin-left: calc(.25 * var(--fz-base));
  font-size: calc(1.125 * var(--fz-base));
  letter-spacing: .03em;
}

.p-topQuality__priceNum {
  vertical-align: middle;
  margin-left: calc(.25 * var(--fz-base));
  font-size: calc(1.25 * var(--fz-base));
}

.p-topQuality__priceTax {
  vertical-align: middle;
  margin-left: calc(.375 * var(--fz-base));
  font-size: max(.8125 * var(--fz-base), 12px);
  line-height: 1.6;
}

.p-topQuality__priceLensType {
  vertical-align: middle;
  margin-left: calc(.25 * var(--fz-base));
  font-size: max(.8125 * var(--fz-base), 12px);
  line-height: 1.6;
}

.p-topQuality__note {
  margin-top: calc(.75 * var(--fz-base));
  font-size: max(.8125 * var(--fz-base), 12px);
  line-height: 1.8;
}

.p-topQuality__media {
  position: relative;
}

.p-topQuality__photo1,
.p-topQuality__photo2 {
  position: absolute;
}

.p-topQuality__photo1 img,
.p-topQuality__photo2 img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-topQuality__block:nth-child(1) {
  max-width: 1300px;
}

.p-topQuality__block:nth-child(1) .p-topQuality__media {
  aspect-ratio: 350/260;
}

.p-topQuality__block:nth-child(1) .p-topQuality__photo1 {
  top: 0;
  right: 0;
  width: calc(294 / 350 * 100%);
}

.p-topQuality__block:nth-child(1) .p-topQuality__photo1 img {
  aspect-ratio: 294/128;
}

.p-topQuality__block:nth-child(1) .p-topQuality__photo2 {
  bottom: 0;
  left: 0;
  width: calc(294 / 350 * 100%);
}

.p-topQuality__block:nth-child(1) .p-topQuality__photo2 img {
  aspect-ratio: 294/128;
}

.p-topQuality__block:nth-child(2) .p-topQuality__media {
  aspect-ratio: 350/225;
}

.p-topQuality__block:nth-child(2) .p-topQuality__photo1 {
  top: 0;
  left: 0;
  z-index: 1;
  width: calc(132 / 350 * 100%);
}

.p-topQuality__block:nth-child(2) .p-topQuality__photo1 img {
  aspect-ratio: 132/200;
}

.p-topQuality__block:nth-child(2) .p-topQuality__photo2 {
  right: 0;
  bottom: 0;
  width: calc(246 / 350 * 100%);
}

.p-topQuality__block:nth-child(2) .p-topQuality__photo2 img {
  aspect-ratio: 246/175;
}

.p-topQuality__block:nth-child(3) .p-topQuality__media {
  aspect-ratio: 350/192;
}

.p-topQuality__block:nth-child(3) .p-topQuality__photo1 {
  top: 0;
  left: 0;
  z-index: 1;
  width: calc(183 / 350 * 100%);
}

.p-topQuality__block:nth-child(3) .p-topQuality__photo1 img {
  aspect-ratio: 183/104;
}

.p-topQuality__block:nth-child(3) .p-topQuality__photo2 {
  right: 0;
  bottom: 0;
  width: calc(232 / 350 * 100%);
}

.p-topQuality__block:nth-child(3) .p-topQuality__photo2 img {
  aspect-ratio: 232/140;
}

/************************************************************************
* 愛眼の品質
************************************************************************/
.p-topQuality__aigan {
  margin-top: calc(4.375 * var(--fz-base));
}

.p-topQuality__aiganInner {
  background-color: #000;
  padding: calc(3.75 * var(--fz-base)) calc(1.875 * var(--fz-base));
}

.p-topQuality__aiganTitle .c-sectionTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-topQuality__aiganBody {
  margin-top: calc(1.25 * var(--fz-base));
  font-size: max(.8125 * var(--fz-base), 12px);
}

.p-topQuality__aiganBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  margin-top: calc(1.875 * var(--fz-base));
}

.p-topQuality__aiganBtn .c-btn {
  position: relative;
  padding: calc(1.125 * var(--fz-base)) calc(2.5 * var(--fz-base));
  width: 100%;
  font-size: max(.875 * var(--fz-base), 12px);
  font-weight: 700;
  line-height: 1.6;
}

.p-topQuality__aiganBtn .c-btn__icon {
  position: absolute;
  top: 50%;
  right: calc(.875 * var(--fz-base));
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1.7142857143em;
}

.p-topShapeColor__blocks {
  margin-top: calc(1.875 * var(--fz-base));
}

.p-topShapeColor__block + .p-topShapeColor__block {
  margin-top: calc(3.125 * var(--fz-base));
}

.p-topShapeColor__media img {
  aspect-ratio: 350/340;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.p-topShapeColor__text {
  margin-top: calc(1.5 * var(--fz-base));
}

.p-topShapeColor__heading {
  position: relative;
  padding-bottom: calc(.875 * var(--fz-base));
  font-family: 'Cinzel', 'Shippori Mincho', serif;
  font-size: calc(1.75 * var(--fz-base));
  line-height: 1;
  text-transform: uppercase;
}

.p-topShapeColor__heading::after {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .5;
  background-color: #B8B8B8;
  width: 100%;
  height: 1px;
  content: '';
}

.p-topShapeColor__lead {
  margin-top: calc(.875 * var(--fz-base));
  font-size: max(calc(.8125 * var(--fz-base)), 12px);
  line-height: 2;
}

.p-topShapeColor__leadEn {
  margin-top: calc(.625 * var(--fz-base));
  color: #464646;
  font-size: 10px;
  font-weight: 100;
  line-height: 1.6;
}

.p-topShapeColor__colorDetail {
  margin-top: calc(5.625 * var(--fz-base));
}

.p-topSpec {
  padding-block: calc(6.25 * var(--fz-base));
  background-color: #222;
  color: #fff;
}

.p-topSpec__block {
  gap: calc(1.5 * var(--fz-base));
  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;
}

.p-topSpec__block + .p-topSpec__block {
  margin-top: calc(5 * var(--fz-base));
}

.p-topSpec__gallery {
  gap: calc(.375 * var(--fz-base));
  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;
  width: 100%;
}

.p-topSpec__galleryMain {
  aspect-ratio: 350/233;
  position: relative;
  background-color: #fff;
}

.p-topSpec__galleryMainImg {
  inset: 0;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .4s ease, visibility 0s linear .4s;
  transition: opacity .4s ease, visibility 0s linear .4s;
}

.p-topSpec__galleryMainImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-topSpec__galleryMainImg.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .4s ease, visibility 0s linear 0s;
  transition: opacity .4s ease, visibility 0s linear 0s;
}

.p-topSpec__galleryColorSlide {
  inset: 0;
  display: block;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .4s ease, visibility 0s linear .4s;
  transition: opacity .4s ease, visibility 0s linear .4s;
}

.p-topSpec__galleryColorSlide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-topSpec__galleryColorSlide.is-active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity .4s ease, visibility 0s linear 0s;
  transition: opacity .4s ease, visibility 0s linear 0s;
}

.p-topSpec__galleryThumbs {
  gap: calc(.375 * var(--fz-base));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.p-topSpec__galleryThumb {
  aspect-ratio: 164/109;
  position: relative;
  cursor: pointer;
  background-color: #fff;
}

.p-topSpec__galleryThumb:not(.is-active)::after {
  inset: 0;
  position: absolute;
  z-index: 1;
  background: rgba(0, 0, 0, .6);
  pointer-events: none;
  content: '';
}

.p-topSpec__galleryThumbBtn {
  display: block;
  width: 100%;
  height: 100%;
}

.p-topSpec__galleryThumbImg {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-topSpec__galleryThumbImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-topSpec__info {
  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;
  width: 100%;
}

.p-topSpec__heading {
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  padding-bottom: calc(1.25 * var(--fz-base));
  font-family: 'Cinzel', 'Shippori Mincho', serif;
  font-size: calc(2 * var(--fz-base));
  line-height: 1;
  text-transform: uppercase;
}

/************************************************************************
* color btn
************************************************************************/
.p-topSpec__swatches {
  gap: calc(1.0625 * var(--fz-base));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: calc(1.4375 * var(--fz-base));
}

.p-topSpec__swatch {
  aspect-ratio: 1;
  display: block;
  opacity: .5;
  -webkit-transition: opacity .2s ease, -webkit-box-shadow .2s ease;
  transition: opacity .2s ease, -webkit-box-shadow .2s ease;
  transition: opacity .2s ease, box-shadow .2s ease;
  transition: opacity .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease;
  border: 0;
  border-radius: 50%;
  background: transparent;
  width: calc(1.75 * var(--fz-base));
}

.p-topSpec__swatch.is-active {
  opacity: 1;
  -webkit-box-shadow: 0 0 0 calc(.1875 * var(--fz-base)) #fff;
  box-shadow: 0 0 0 calc(.1875 * var(--fz-base)) #fff;
}

.p-topSpec__swatch--brown {
  background-color: #aa8461;
}

.p-topSpec__swatch--blue {
  background-color: #6b8cc0;
}

.p-topSpec__swatch--clear {
  background-color: #fff;
}

/************************************************************************
* price
************************************************************************/
.p-topSpec__price {
  margin-top: calc(1.1875 * var(--fz-base));
  font-family: 'Figtree', 'Noto Sans JP', sans-serif;
}

.p-topSpec__currency {
  vertical-align: middle;
}

.p-topSpec__amount {
  vertical-align: middle;
}

.p-topSpec__tax {
  vertical-align: middle;
  font-family: 'Noto Sans JP', sans-serif;
}

.p-topSpec__priceMain {
  font-size: calc(1.25 * var(--fz-base));
  letter-spacing: .03em;
  line-height: 1;
}

.p-topSpec__priceMain .p-topSpec__currency {
  font-size: calc(1.25 * var(--fz-base));
}

.p-topSpec__priceMain .p-topSpec__amount {
  margin-left: calc(.25 * var(--fz-base));
  font-size: calc(1.375 * var(--fz-base));
  font-weight: 500;
}

.p-topSpec__priceMain .p-topSpec__tax {
  margin-left: calc(.375 * var(--fz-base));
  color: #A1A1A1;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.6;
}

.p-topSpec__priceSub {
  vertical-align: middle;
  margin-top: calc(.3125 * var(--fz-base));
  color: #C7C7C7;
  font-size: max(.9375 * var(--fz-base), 12px);
  line-height: 1;
}

.p-topSpec__priceSub .p-topSpec__currency {
  margin-left: calc(.25 * var(--fz-base));
  font-size: calc(1.125 * var(--fz-base));
  letter-spacing: .03em;
}

.p-topSpec__priceSub .p-topSpec__amount {
  margin-left: calc(.25 * var(--fz-base));
  font-size: calc(1.25 * var(--fz-base));
  font-weight: 500;
}

.p-topSpec__priceSub .p-topSpec__tax {
  margin-left: calc(.375 * var(--fz-base));
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.6;
}

.p-topSpec__priceSubText {
  vertical-align: middle;
  line-height: 1.6;
}

.p-topSpec__plus {
  margin-left: calc(.5 * var(--fz-base));
  font-size: calc(1.25 * var(--fz-base));
  letter-spacing: .03em;
}

/************************************************************************
* btn
************************************************************************/
.p-topSpec__cta {
  margin-top: calc(1.25 * var(--fz-base));
}

.p-topSpec__viewMore {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-family: 'Cinzel', 'Shippori Mincho', serif;
  font-size: calc(1 * var(--fz-base));
}

/************************************************************************
* modifiler
************************************************************************/

.clearfix::after {
  display: block;
  clear: both;
  content: '';
}

/************************************************************************
* visible device
************************************************************************/
.u-onlyPc {
  display: none;
}

.u-onlyTab {
  display: none;
}

.u-onlySp {
  display: none;
}

.u-inlineBlock {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-hidden {
  display: none !important;
}

.u-overflowHidden {
  overflow: hidden !important;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {

  :root {
    --header-height: 80px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: calc(2.5 * var(--fz-base));
  }

  .l-container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1360px;
  }

  .l-container.l-container--narrow {
    max-width: 1140px;
  }

  .l-container.l-container--wide {
    max-width: 1620px;
  }

  :root {
    --floatingMenu-height: calc(3.125 * var(--fz-base));
  }

  .l-floatingMenu {
    height: calc(3.125 * var(--fz-base));
  }

  .l-floatingMenu__left {
    gap: calc(1.5 * var(--fz-base));
    padding-inline: calc(1.5 * var(--fz-base));
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .l-floatingMenu__right {
    padding-inline: calc(1.5 * var(--fz-base));
  }

  .l-floatingMenu__lead {
    font-size: 11px;
    text-align: right;
    white-space: normal;
  }

  .l-floatingMenu__lead br {
    display: inline;
  }

  .l-floatingMenu__cta {
    gap: calc(.625 * var(--fz-base));
    font-size: max(.9375 * var(--fz-base), 12px);
  }

  .c-btn {
    gap: calc(.625 * var(--fz-base));
  }

  .c-sectionTitle__en {
    font-size: max(calc(1 * var(--fz-base)), 14px);
  }

  .c-sectionTitle__ja {
    margin-top: calc(.875 * var(--fz-base));
    font-size: max(calc(1.625 * var(--fz-base)), 22px);
  }

  .c-videoPlaceholder__btn {
    border-radius: calc(.75 * var(--fz-base));
    width: calc(4.25 * var(--fz-base));
    height: calc(3 * var(--fz-base));
  }

  .c-videoPlaceholder__btn::before {
    border-width: calc(.625 * var(--fz-base)) 0 calc(.625 * var(--fz-base)) calc(1.125 * var(--fz-base));
  }

  .p-fv {
    aspect-ratio: 1440/800;
    height: revert;
    min-height: revert;
  }

  .p-fv__inner {
    gap: calc(2 * var(--fz-base));
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: calc(5.4375 * var(--fz-base));
  }

  .p-fv__copy {
    gap: calc(1.5 * var(--fz-base));
  }

  .p-fv__title {
    font-size: calc(2.6875 * var(--fz-base));
  }

  .p-fv__sub {
    gap: calc(1.5625 * var(--fz-base));
  }

  .p-fv__subText {
    font-size: max(.875 * var(--fz-base), 12px);
  }

  .p-registerCta {
    padding-block: calc(11.25 * var(--fz-base)) calc(10.6875 * var(--fz-base));
  }

  .p-registerCta__heading {
    font-size: calc(1.875 * var(--fz-base));
  }

  .p-registerCta__btns {
    gap: calc(3.125 * var(--fz-base));
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -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;
    margin-top: calc(4.375 * var(--fz-base));
  }

  .p-registerCta__btnItem {
    width: calc(27.5 * var(--fz-base));
  }

  .p-registerCta__btnItem .c-btn {
    padding-block: calc(1.625 * var(--fz-base));
    font-size: calc(1 * var(--fz-base));
  }

  .p-registerCta__btnItem.p-registerCta__btnItem--store {
    padding-block: calc(2.4375 * var(--fz-base)) calc(2.125 * var(--fz-base));
  }

  .p-registerCta__btnItem.p-registerCta__btnItem--online {
    padding-block: calc(2.4375 * var(--fz-base)) calc(2.125 * var(--fz-base));
  }

  .p-registerCta__logo {
    width: calc(7.125 * var(--fz-base));
  }

  .p-socialShare {
    padding-block: calc(8.75 * var(--fz-base));
  }

  .p-socialShare__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .p-socialShare__title {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: calc(2.75 * var(--fz-base));
  }

  .p-socialShare__right {
    gap: 0;
    margin-top: 0;
    margin-left: calc(9 * var(--fz-base));
  }

  .p-socialShare__hashtags {
    gap: calc(1.5 * var(--fz-base));
    padding: calc(.375 * var(--fz-base)) calc(1.875 * var(--fz-base));
  }

  .p-socialShare__tagList {
    gap: calc(1.5 * var(--fz-base));
  }

  .p-socialShare__tag {
    font-size: calc(1 * var(--fz-base));
  }

  .p-socialShare__sns {
    gap: calc(3.125 * var(--fz-base));
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: calc(2.0625 * var(--fz-base));
  }

  .p-top__registerCta1 {
    margin-top: calc(6.875 * var(--fz-base));
  }

  .p-top__topShapeColor {
    margin-top: calc(6.25 * var(--fz-base));
  }

  .p-top__topSpec {
    margin-top: calc(8.75 * var(--fz-base));
  }

  .p-top__topAccessory {
    margin-top: calc(8.125 * var(--fz-base));
  }

  .p-top__topQuality {
    margin-top: calc(8.75 * var(--fz-base));
  }

  .p-topAbout {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(transparent));
    background-image: linear-gradient(to bottom, #222 calc(100% - 4.75 * var(--fz-base)), transparent calc(100% - 4.75 * var(--fz-base)));
  }

  .p-topAbout__releaseDate {
    font-size: calc(1.9375 * var(--fz-base));
  }

  .p-topAbout__releaseNote {
    font-size: calc(1.0625 * var(--fz-base));
  }

  .p-topAbout__harmony {
    margin-inline: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: calc(120 * var(--fz-base));
    max-width: 100%;
  }

  .p-topAbout__harmonyInner {
    display: contents;
  }

  .p-topAbout__harmonyMediaTop {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 calc(39.9375 * var(--fz-base));
    -ms-flex: 1 1 calc(39.9375 * var(--fz-base));
    flex: 1 1 calc(39.9375 * var(--fz-base));
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-right: 0;
    margin-left: calc(4.375 * var(--fz-base));
  }

  .p-topAbout__harmonyText {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(20.6875 * var(--fz-base));
    -ms-flex: 0 0 calc(20.6875 * var(--fz-base));
    flex: 0 0 calc(20.6875 * var(--fz-base));
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-top: calc(5.5 * var(--fz-base));
    margin-left: calc(5 * var(--fz-base));
    padding-right: 0;
  }

  .p-topAbout__heading {
    font-size: calc(1.625 * var(--fz-base));
  }

  .p-topAbout__body {
    margin-top: calc(3.5 * var(--fz-base));
  }

  .p-topAbout__bodyEn {
    margin-top: calc(2.5 * var(--fz-base));
  }

  .p-topAbout__harmonyMediaBottom {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 calc(20 * var(--fz-base));
    -ms-flex: 1 1 calc(20 * var(--fz-base));
    flex: 1 1 calc(20 * var(--fz-base));
    margin-top: calc(12.75 * var(--fz-base));
    margin-left: 0;
    width: revert;
  }

  .p-topAbout__videoWrap {
    margin-top: calc(8.75 * var(--fz-base));
  }

  .p-topAbout__video--making {
    margin-top: calc(1.5 * var(--fz-base));
  }

  .p-topAbout__storyVideo {
    margin-top: calc(4.375 * var(--fz-base));
  }

  .p-topAbout__storyLabel {
    font-size: calc(1 * var(--fz-base));
  }

  .p-topAbout__storyVideo .p-topAbout__heading {
    margin-top: calc(.875 * var(--fz-base));
  }

  .p-topAccessory__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: calc(2.5 * var(--fz-base));
  }

  .p-topAccessory__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }

  .p-topAccessory__item + .p-topAccessory__item {
    margin-top: 0;
  }

  .p-topAccessory__media {
    margin-inline: revert;
  }

  .p-topAccessory__itemBody {
    margin-top: calc(1.875 * var(--fz-base));
  }

  .p-topAccessory__label {
    font-size: calc(1.875 * var(--fz-base));
    white-space: nowrap;
  }

  .p-topAccessory__body {
    margin-top: calc(.6875 * var(--fz-base));
  }

  .p-topAccessory__item:nth-child(odd) .p-topAccessory__media {
    margin-right: -1px;
    margin-left: min((1300px - 100cqi) / 2, -30px);
  }

  .p-topAccessory__item:nth-child(even) {
    text-align: right;
  }

  .p-topAccessory__item:nth-child(even) .p-topAccessory__media {
    margin-right: min((1300px - 100cqi) / 2, -30px);
    margin-left: -1px;
  }

  .p-topColorDetail__item + .p-topColorDetail__item {
    margin-top: calc(10.1875 * var(--fz-base));
  }

  .p-topColorDetail__card {
    padding-bottom: 0;
  }

  .p-topColorDetail__mainImage img {
    aspect-ratio: 1440/512;
  }

  .p-topColorDetail__assets {
    pointer-events: revert;
  }

  .p-topColorDetail__assetsInner {
    padding-bottom: calc(3.5625 * var(--fz-base));
  }

  .p-topColorDetail__textCard {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0;
  }

  .p-topColorDetail__textWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-topColorDetail__name {
    font-size: calc(1.875 * var(--fz-base));
  }

  .p-topColorDetail__desc {
    text-align: right;
  }

  .p-topColorDetail__nav {
    gap: calc(2.125 * var(--fz-base));
    margin-top: calc(2.375 * var(--fz-base));
  }

  .p-topColorDetail__btns {
    gap: calc(1.25 * var(--fz-base));
  }

  .p-topColorDetail__subImage {
    position: absolute;
    bottom: calc(-5.1875 * var(--fz-base));
    margin-top: 0;
    width: calc(30 * var(--fz-base));
  }

  .p-topColorDetail__item:nth-child(odd) .p-topColorDetail__textCard {
    margin-left: calc(50% - 50cqi);
    padding-left: calc(33.25 * var(--fz-base));
  }

  .p-topColorDetail__item:nth-child(odd) .p-topColorDetail__subImage {
    left: 0;
  }

  .p-topColorDetail__item:nth-child(even) .p-topColorDetail__textCard {
    margin-right: calc(50% - 50cqi);
    padding-right: calc(33.25 * var(--fz-base));
  }

  .p-topColorDetail__item:nth-child(even) .p-topColorDetail__subImage {
    right: 0;
  }

  .p-topQuality {
    padding-block: calc(8.75 * var(--fz-base));
  }

  .p-topQuality__block + .p-topQuality__block {
    margin-top: calc(2.5 * var(--fz-base));
  }

  .p-topQuality__blockInner {
    gap: calc(5.625 * var(--fz-base));
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-topQuality__body {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(29.375 * var(--fz-base));
    -ms-flex: 0 0 calc(29.375 * var(--fz-base));
    flex: 0 0 calc(29.375 * var(--fz-base));
  }

  .p-topQuality__num::after {
    margin-top: calc(1.75 * var(--fz-base));
  }

  .p-topQuality__heading {
    margin-top: calc(1.75 * var(--fz-base));
    font-size: calc(1.625 * var(--fz-base));
  }

  .p-topQuality__lead {
    margin-top: calc(2.5 * var(--fz-base));
  }

  .p-topQuality__text {
    margin-top: calc(.75 * var(--fz-base));
  }

  .p-topQuality__textEn {
    margin-top: calc(1.5 * var(--fz-base));
  }

  .p-topQuality__price {
    margin-top: calc(1.5 * var(--fz-base));
  }

  .p-topQuality__priceNum {
    font-size: calc(1.75 * var(--fz-base));
  }

  .p-topQuality__priceTax {
    font-size: max(.8125 * var(--fz-base), 12px);
  }

  .p-topQuality__priceLensType {
    font-size: max(.8125 * var(--fz-base), 12px);
  }

  .p-topQuality__note {
    font-size: max(.6875 * var(--fz-base), 12px);
  }

  .p-topQuality__media {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0;
  }

  .p-topQuality__block:nth-child(1) .p-topQuality__media {
    margin-right: min((1080px - 100cqi) / 2, -30px);
  }

  .p-topQuality__block:nth-child(2) .p-topQuality__media {
    margin-left: min((1080px - 100cqi) / 2, -30px);
  }

  .p-topQuality__block:nth-child(3) .p-topQuality__media {
    margin-right: min((1080px - 100cqi) / 2, -30px);
  }

  .p-topQuality__block:nth-child(even) .p-topQuality__blockInner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-topQuality__aigan {
    margin-top: calc(3.75 * var(--fz-base));
    text-align: center;
  }

  .p-topQuality__aiganInner {
    padding-block: calc(4.375 * var(--fz-base));
  }

  .p-topQuality__aiganTitle .c-sectionTitle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .p-topQuality__aiganTitle .c-sectionTitle__en {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: calc(-3.125 * var(--fz-base));
  }

  .p-topQuality__aiganBody {
    margin-top: calc(2 * var(--fz-base));
  }

  .p-topQuality__aiganBtn {
    margin-top: calc(2.5 * var(--fz-base));
  }

  .p-topQuality__aiganBtn .c-btn {
    font-size: max(.9375 * var(--fz-base), 12px);
  }

  .p-topQuality__aiganBtn .c-btn__icon {
    right: calc(1.125 * var(--fz-base));
  }

  .p-topQuality__aiganBtn {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: calc(2.5 * var(--fz-base));
  }

  .p-topQuality__aiganBtn .c-btn {
    width: auto;
    min-width: calc(23.75 * var(--fz-base));
  }

  .p-topShapeColor__blocks {
    margin-top: calc(3.125 * var(--fz-base));
  }

  .p-topShapeColor__block {
    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: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-column-gap: calc(8.4375 * var(--fz-base));
    -moz-column-gap: calc(8.4375 * var(--fz-base));
    column-gap: calc(8.4375 * var(--fz-base));
  }

  .p-topShapeColor__block + .p-topShapeColor__block {
    margin-top: 0;
  }

  .p-topShapeColor__media {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 calc(32.8125 * var(--fz-base));
    -ms-flex: 0 1 calc(32.8125 * var(--fz-base));
    flex: 0 1 calc(32.8125 * var(--fz-base));
  }

  .p-topShapeColor__text {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(25.625 * var(--fz-base));
    -ms-flex: 0 0 calc(25.625 * var(--fz-base));
    flex: 0 0 calc(25.625 * var(--fz-base));
    margin-top: 0;
  }

  .p-topShapeColor__heading {
    padding-bottom: calc(2.5 * var(--fz-base));
    font-size: calc(1.875 * var(--fz-base));
  }

  .p-topShapeColor__lead {
    margin-top: calc(2.5 * var(--fz-base));
  }

  .p-topShapeColor__leadEn {
    margin-top: calc(1.4375 * var(--fz-base));
  }

  .p-topShapeColor__block:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .p-topShapeColor__colorDetail {
    margin-top: calc(6.875 * var(--fz-base));
  }

  .p-topSpec {
    padding-block: calc(10 * var(--fz-base));
  }

  .p-topSpec__block {
    gap: calc(4.375 * var(--fz-base));
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-topSpec__block + .p-topSpec__block {
    margin-top: calc(7.5 * var(--fz-base));
  }

  .p-topSpec__gallery {
    gap: calc(1.125 * var(--fz-base));
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0;
    -ms-flex: 1 0 0;
    flex: 1 0 0;
  }

  .p-topSpec__galleryThumbs {
    gap: calc(1 * var(--fz-base));
  }

  .p-topSpec__info {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(32.5 * var(--fz-base));
    -ms-flex: 0 0 calc(32.5 * var(--fz-base));
    flex: 0 0 calc(32.5 * var(--fz-base));
  }

  .p-topSpec__heading {
    padding-bottom: calc(3.125 * var(--fz-base));
    font-size: calc(2.3125 * var(--fz-base));
  }

  .p-topSpec__swatches {
    margin-top: calc(3.3125 * var(--fz-base));
  }

  .p-topSpec__price {
    margin-top: calc(1.8125 * var(--fz-base));
  }

  .p-topSpec__priceSub {
    margin-top: calc(.625 * var(--fz-base));
  }

  .p-topSpec__cta {
    margin-top: calc(3.125 * var(--fz-base));
  }

  .p-topSpec__viewMore {
    font-size: calc(1 * var(--fz-base));
  }

  .p-topSpec__block:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {

  .u-onlyTab {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {

  .u-hidden--tab {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {

  .u-onlyPc {
    display: block;
  }

  .u-hidden--pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {

  .p-fv__logo {
    width: calc(4 * var(--fz-base));
  }

  .p-top {
    --fz-base: min(calc(16cqi / 3.9), 16px);
    margin-top: -50px;
  }

  .u-onlySp {
    display: block;
  }

  .u-hidden--sp {
    display: none !important;
  }
}

@media (any-hover: hover) {

  .l-floatingMenu__left:hover {
    opacity: 1;
    background-color: #fff;
    color: #000;
  }

  .l-floatingMenu__right:hover {
    opacity: 1;
    background-color: #000;
    color: #fff;
  }

  .c-btn.c-btn--dark:hover {
    opacity: 1;
    background-color: #fff;
    color: #000;
  }

  .c-btn.c-btn--light:hover {
    opacity: 1;
    background-color: #000;
    color: #fff;
  }

  .c-btn.c-btn--solid:hover {
    opacity: 1;
    border-color: rgba(0, 0, 0, .4);
    background-color: #fff;
    color: #000;
  }

  .c-totop.is-active:hover {
    opacity: 1;
  }

  .c-videoPlaceholder:hover .c-videoPlaceholder__btn {
    background-color: #f00;
  }

  .p-topSpec__swatch:hover {
    opacity: 1;
  }
}