/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers
*/
article, aside, main, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-site-primary: #000;
  --color-site-secondary: #fff;
  --color-site-tertiary: #1C1C1C;
  --color-site-yellow01: #FCC109;
  --color-site-yellow02: #C3A345;
  --color-site-gray01: #C9C9C9;
  --color-site-gray02: #6E6E6E;
  --color-site-gray03: #797979;
  --color-site-gray04: #d9d9d9;
}

::selection {
  color: var(--color-site-primary);
  background-color: var(--color-site-secondary);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  margin: 0;
  padding: 0;
  color: var(--color-site-secondary);
  background-color: var(--color-site-primary);
  text-decoration-skip: none;
  -webkit-text-size-adjust: 100%;
}
@media print, screen and (width > 768px) {
  body {
    font-size: 16px;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

@media only screen and (width <= 768px) {
  .u-use--pc {
    display: none !important;
  }
}

@media print, screen and (width > 768px) {
  .u-use--sp {
    display: none !important;
  }
}

.l-header {
  display: grid;
  height: 70px;
  padding-top: 5px;
  background: var(--color-site-secondary);
  place-items: center;
}
@media print, screen and (width > 768px) {
  .l-header {
    height: 75px;
    padding-left: 85px;
    place-items: center start;
  }
}

.l-main__inner {
  margin: 0 auto 0;
  width: calc(100% - 40px);
}
@media print, screen and (width > 768px) {
  .l-main__inner {
    width: calc(100% - 40px);
    max-width: 1200px;
  }
}

.l-footer {
  position: relative;
  padding: 80px 0 45px;
}
@media print, screen and (width > 768px) {
  .l-footer {
    padding-top: 128px;
    padding-bottom: 66px;
  }
}

.c-btn {
  position: relative;
  display: grid;
  width: 170px;
  height: 42px;
  margin: auto;
  border-radius: 30px;
  background-color: var(--color-site-secondary);
  place-items: center;
}
@media (hover: hover) {
  .c-btn:where(:any-link, :enabled, summary):hover {
    transition: opacity 0.3s;
    opacity: 0.7;
  }
}
.c-btn::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 10px;
  margin-top: -5px;
  content: "";
  background-color: var(--color-site-primary);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.c-btn__inner {
  color: var(--color-site-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.c-data {
  display: grid;
  margin-bottom: 20px;
  grid-template-columns: 70px 1fr;
  gap: 8px 10px;
  place-items: start;
}
@media print, screen and (width > 768px) {
  .c-data {
    grid-template-columns: 77px 1fr;
    gap: 9px 15px;
  }
}
.c-data__term {
  width: 100%;
  padding: 1px 0;
  text-align: center;
  border: 1px solid var(--color-site-gray01);
  border-radius: 20px;
  background-color: var(--color-site-tertiary);
  font-size: 13px;
  line-height: 1.42;
}
@media print, screen and (width > 768px) {
  .c-data__term {
    padding: 2px 0;
    font-size: 15px;
    line-height: 1.4;
  }
}
@media print, screen and (width > 768px) {
  .c-data__desc {
    line-height: 1.5;
  }
}

.c-tag {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
  gap: 5px 10px;
}
@media print, screen and (width > 768px) {
  .c-tag {
    flex-direction: row;
  }
}
.c-tag__item {
  padding: 3px 8px;
  border: 1px solid var(--color-site-gray02);
  border-radius: 5px;
  background-color: var(--color-site-tertiary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.42;
}
@media print, screen and (width > 768px) {
  .c-tag__item {
    padding: 3px 13px;
    font-size: 15px;
  }
}
.c-tag--watch {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 7px auto 10px;
}
@media print, screen and (width > 768px) {
  .c-tag--watch {
    margin-top: 17px;
    margin-bottom: 13px;
  }
}
.c-tag--watch__item {
  padding: 2px 5px;
  background-color: var(--color-site-yellow02);
  color: var(--color-site-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media print, screen and (width > 768px) {
  .c-tag--watch__item {
    padding: 3px 8px;
    font-size: 16px;
  }
}

.p-logo__img {
  width: 100%;
}
.p-logo--header {
  width: 86px;
}
.p-logo--footer {
  width: 304px;
  margin: auto;
}
@media print, screen and (width > 768px) {
  .p-logo--footer {
    width: 372px;
  }
}

.p-jumbotron {
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
}
@media print, screen and (width > 768px) {
  .p-jumbotron {
    grid-template-columns: repeat(2, 50%);
  }
}
.p-jumbotron__title {
  display: grid;
  padding: 9px 0 12px;
  place-items: center;
  row-gap: 9px;
  grid-column: 1/2;
  grid-row: 2/3;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__title {
    padding-top: 15px;
    padding-bottom: 20px;
    grid-column: 1/3;
  }
}
.p-jumbotron__title__main {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.4;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__title__main {
    font-size: min(6.04svw, 55px);
  }
}
.p-jumbotron__title__sub {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-size: 17px;
  line-height: 1.35;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__title__sub {
    font-size: 25px;
  }
}
.p-jumbotron__picture {
  aspect-ratio: 375/199;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__picture {
    aspect-ratio: 960/675;
  }
}
.p-jumbotron__picture:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.p-jumbotron__picture:nth-of-type(2) {
  grid-column: 1/2;
  grid-row: 3/4;
}
@media print, screen and (width > 768px) {
  .p-jumbotron__picture:nth-of-type(2) {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.p-jumbotron__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-fair {
  position: relative;
  margin-top: 78px;
  margin-bottom: 85px;
  padding-top: 43px;
  padding-bottom: 33px;
  border-radius: 5px;
  background: var(--color-site-secondary);
}
@media print, screen and (width > 768px) {
  .p-fair {
    margin-top: 93px;
    margin-bottom: 143px;
    padding-top: 134px;
    padding-bottom: 73px;
    border-radius: 15px;
  }
}
.p-fair::after {
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 100%;
  height: 70px;
  content: "";
  border-radius: 5px;
  background: linear-gradient(#6c6c6c 0%, rgba(128, 128, 128, 0) 100%);
  filter: blur(5px);
}
@media print, screen and (width > 768px) {
  .p-fair::after {
    border-radius: 15px;
  }
}
.p-fair__label {
  position: absolute;
  top: -48px;
  left: 50%;
  height: 82px;
  padding: 9px 14px 12px;
  border: 1px solid var(--color-site-gray03);
  border-radius: 10px 10px 0 0;
  background: var(--color-site-tertiary);
  translate: -50% 0;
}
@media print, screen and (width > 768px) {
  .p-fair__label {
    top: -72px;
    height: 158px;
    padding: 20px 58px;
  }
}
.p-fair__label::before, .p-fair__label::after {
  content: "";
  position: absolute;
  bottom: 1px;
  width: 6px;
  height: calc(100% - 48px);
  background-color: var(--color-site-gray04);
}
@media print, screen and (width > 768px) {
  .p-fair__label::before, .p-fair__label::after {
    width: 13px;
    height: 84px;
  }
}
.p-fair__label::before {
  left: -6px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media print, screen and (width > 768px) {
  .p-fair__label::before {
    left: -13px;
  }
}
.p-fair__label::after {
  right: -6px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media print, screen and (width > 768px) {
  .p-fair__label::after {
    right: -13px;
  }
}
.p-fair__name {
  margin-bottom: 2px;
  text-align: center;
  color: var(--color-site-yellow01);
  font-size: 17px;
  font-weight: 700;
}
@media print, screen and (width > 768px) {
  .p-fair__name {
    margin-bottom: 3px;
    font-size: 30px;
    font-weight: 900;
  }
}
.p-fair__period {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}
.p-fair__period__term {
  margin-right: 5px;
  margin-bottom: 3px;
  padding: 0 5px 1px;
  border: 1px solid;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
@media print, screen and (width > 768px) {
  .p-fair__period__term {
    margin-right: 10px;
    margin-bottom: 7px;
    padding: 1px 13px 3px;
    border-radius: 10px;
    font-size: 28px;
  }
}
.p-fair__period__date {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
@media print, screen and (width > 768px) {
  .p-fair__period__date {
    font-size: 32px;
  }
}
.p-fair__period__big {
  font-size: 22px;
}
@media print, screen and (width > 768px) {
  .p-fair__period__big {
    font-size: 48px;
  }
}
.p-fair__inner {
  width: 290px;
  margin: auto;
}
@media print, screen and (width > 768px) {
  .p-fair__inner {
    display: grid;
    width: min(95.9%, 940px);
    grid-template-columns: 295px 1fr;
    column-gap: 42px;
  }
}
.p-fair__img {
  width: 100%;
}
@media only screen and (width <= 768px) {
  .p-fair__img {
    display: block;
    width: max(230px, 61.333svw);
    margin: 0 auto 6px;
  }
}
.p-fair__txt {
  margin-bottom: 9px;
  color: var(--color-site-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}
@media print, screen and (width > 768px) {
  .p-fair__txt {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 2;
  }
}
.p-fair__em {
  font-size: 16px;
  font-weight: 700;
}
@media print, screen and (width > 768px) {
  .p-fair__em {
    font-size: 22px;
  }
}
.p-fair__note {
  color: var(--color-site-primary);
  font-weight: 500;
}

.p-movie {
  margin-bottom: 125px;
}
@media print, screen and (width > 768px) {
  .p-movie {
    margin-bottom: 250px;
  }
}
.p-movie__title {
  margin-bottom: 12px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
@media print, screen and (width > 768px) {
  .p-movie__title {
    margin-bottom: 28px;
    font-size: 40px;
  }
}
.p-movie__inner {
  width: 100%;
  aspect-ratio: 335/188;
}
@media print, screen and (width > 768px) {
  .p-movie__inner {
    aspect-ratio: 1200/675;
  }
}
.p-movie__inner iframe {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.p-brand {
  margin-bottom: 50px;
  container-type: inline-size;
  container-name: brand;
}
@media print, screen and (width > 768px) {
  .p-brand {
    margin-bottom: 100px;
  }
}
.p-brand__title {
  width: 233px;
  margin: 0 auto 30px;
}
@media print, screen and (width > 768px) {
  .p-brand__title {
    width: 346px;
    margin-bottom: 65px;
  }
}
.p-brand__logo {
  width: 100%;
}
.p-brand__inner {
  display: grid;
  width: max(257px, 68.533vw);
  margin: auto;
  row-gap: 75px;
}
@media print, screen and (width > 768px) {
  .p-brand__inner {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 10.41cqw 7.625cqw;
  }
}

.p-item__name {
  margin-bottom: 3px;
  text-align: center;
  color: var(--color-site-yellow01);
  font-size: 30px;
  font-weight: 700;
}
@media print, screen and (width > 768px) {
  .p-item__name {
    margin-bottom: 0;
    font-size: 35px;
  }
}
.p-item__price {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
}
@media print, screen and (width > 768px) {
  .p-item__price {
    font-size: 26px;
  }
}
.p-item__tax {
  font-size: 16px;
}
@media print, screen and (width > 768px) {
  .p-item__tax {
    font-size: 21px;
  }
}
.p-item__model {
  margin-top: 8px;
  margin-bottom: 12px;
  padding: 7px 0;
  text-align: center;
  color: var(--color-site-gray01);
  border-top: 1px solid var(--color-site-gray01);
  border-bottom: 1px solid var(--color-site-gray01);
  font-weight: 700;
}
@media print, screen and (width > 768px) {
  .p-item__model {
    margin-top: 17px;
    margin-bottom: 22px;
    padding: 13px 0;
    line-height: 1.5;
  }
}
.p-item__txt {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.875;
}
@media print, screen and (width > 768px) {
  .p-item__txt {
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 2.222;
  }
}
.p-item__img {
  width: 100%;
  margin-bottom: 8px;
}
@media print, screen and (width > 768px) {
  .p-item__img {
    margin-bottom: 15px;
  }
}
.p-item--big {
  display: grid;
  margin-bottom: 75px;
  grid-template-columns: 100%;
  row-gap: 10px;
}
@media print, screen and (width > 768px) {
  .p-item--big {
    margin-bottom: 100px;
    grid-template-columns: 48.333% 1fr;
    gap: 0 5.8333%;
  }
}
.p-item--big__images {
  width: 100%;
}
.p-item--big__images .swiper-slider {
  width: 100%;
  margin-bottom: 6px;
  aspect-ratio: 335/323;
}
@media print, screen and (width > 768px) {
  .p-item--big__images .swiper-slider {
    margin-bottom: 9px;
    aspect-ratio: 580/560;
  }
}
.p-item--big__images .swiper-slider img {
  width: 100%;
}
.p-item--big__images .swiper-thumbnail .swiper-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 6px;
}
@media print, screen and (width > 768px) {
  .p-item--big__images .swiper-thumbnail .swiper-wrapper {
    column-gap: 12px;
  }
}
.p-item--big__images .swiper-thumbnail .swiper-slide {
  width: calc((100% - 18px) / 4) !important;
  aspect-ratio: 78/75;
  cursor: pointer;
}
.p-item--big__images .swiper-thumbnail .swiper-slide:not(.swiper-slide-thumb-active) {
  position: relative;
}
.p-item--big__images .swiper-thumbnail .swiper-slide:not(.swiper-slide-thumb-active)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
@media print, screen and (width > 768px) {
  .p-item--big__images .swiper-thumbnail .swiper-slide {
    width: calc((100% - 36px) / 4) !important;
    aspect-ratio: 135/131;
  }
}
.p-item--big__images .swiper-thumbnail .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (width > 768px) {
  .p-item--big .p-item__head {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 25px;
  }
}
.p-item--big .p-item__name {
  font-size: 40px;
}
@media print, screen and (width > 768px) {
  .p-item--big .p-item__name {
    margin-bottom: 0;
    font-size: 50px;
  }
}
@media print, screen and (width > 768px) {
  .p-item--big .p-item__price {
    margin-top: 15px;
  }
}
@media only screen and (width <= 768px) {
  .p-item--big .p-item__model {
    font-size: 15px;
  }
}
@media print, screen and (width > 768px) {
  .p-item--big .p-item__model {
    text-align: left;
  }
}
.p-item--big .c-tag--watch {
  margin-top: 10px;
  margin-bottom: 14px;
}
@media print, screen and (width > 768px) {
  .p-item--big .c-tag--watch {
    justify-content: flex-start;
    margin-bottom: 17px;
  }
}
.p-item--big .c-tag--watch__item {
  padding: 3px 8px;
  font-size: 16px;
}
@media print, screen and (width > 768px) {
  .p-item--big .c-tag--watch__item {
    padding: 4px 11px;
    font-size: 18px;
  }
}
@media only screen and (width <= 768px) {
  .p-item--big .c-data {
    grid-template-columns: 74px 1fr;
    gap: 14px 9px;
  }
}
@media only screen and (width <= 768px) {
  .p-item--big .c-data__term {
    padding: 2px 8px;
    font-size: 14px;
  }
}
@media only screen and (width <= 768px) {
  .p-item--big .c-data__desc {
    font-size: 16px;
  }
}
@media print, screen and (width > 768px) {
  .p-item--big .c-btn {
    margin-left: 0;
  }
}

.p-shop {
  container-type: inline-size;
  container-name: shop;
}
.p-shop__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
}
@media print, screen and (width > 768px) {
  .p-shop__title {
    margin-bottom: 50px;
    font-size: 30px;
  }
}
.p-shop__inner {
  display: grid;
  gap: 30px 0;
}
@media print, screen and (width > 768px) {
  .p-shop__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 7.08cqw 6.6cqw;
  }
}
.p-shop__img {
  width: 100%;
  margin-bottom: 10px;
}
@media print, screen and (width > 768px) {
  .p-shop__img {
    margin-bottom: 20px;
  }
}
.p-shop__name {
  margin-bottom: 6px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}
@media print, screen and (width > 768px) {
  .p-shop__name {
    margin-bottom: 10px;
    font-size: 22px;
  }
}
.p-shop__address {
  text-align: center;
  color: var(--color-site-gray01);
}

.p-pagetop {
  position: absolute;
  top: 49px;
  right: 10px;
  width: 40px;
  height: 40px;
}
@media print, screen and (width > 768px) {
  .p-pagetop {
    top: 0;
    right: 40px;
    bottom: 40px;
  }
  .p-pagetop:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}

.p-copyright {
  margin-top: 30px;
  text-align: center;
  color: var(--color-site-secondary);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.16;
}
@media print, screen and (width > 768px) {
  .p-copyright {
    margin-top: 50px;
    font-size: 13px;
  }
}
