@charset "UTF-8";
/* ==================================================
  import
================================================== */
@import url("https://use.typekit.net/adv2urm.css"); /*Adobe Gurmukhi*/
/* ==================================================
  Variables
================================================== */
/* ---- color ---- */
/* ---- font ---- */
/* ---- layout ---- */
/* ---- font-size ---- */
/* ==================================================
  Mixins / Functions
================================================== */
/* ---- Media Query ---- */
/* ---- VW (SP基準) ---- */
/* ==================================================
  Base
================================================== */
html {
  font-size: 100%;
}

body {
  font-family: "tot-shizukamin-stdn", sans-serif;
  font-size: calc(12 / 16 * 1rem);
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #000;
  background-color: #F4F4F4;
}
body img,
body video,
body svg {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---- Utility ---- */
.pc {
  display: none;
}

.sp {
  display: block;
}

@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* ==================================================
  Animation
================================================== */
.fadein {
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fadein2 {
  opacity: 0;
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fadein2.is-visible {
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ==================================================
  Layout
================================================== */
.lp-container {
  width: 100%;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.15s forwards;
}
@media screen and (min-width: 769px) {
  .lp-container {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  .lp-container .left-block {
    width: 45%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
}
@media screen and (min-width: 769px) {
  .lp-container .right-block {
    width: 55%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

/* ==================================================
  Main Visual
================================================== */
.mv {
  position: relative;
  margin-bottom: calc(50 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .mv {
    margin-bottom: 0;
  }
}
.mv__image {
  position: relative;
  margin-bottom: calc(50 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .mv__image {
    margin-bottom: 0;
  }
}
.mv__image ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.mv__image ul .kv-item {
  position: relative;
}
.mv__image ul .kv-item picture {
  display: block;
}
.mv__image ul .img-b {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.mv__image ul .kv-item.is-active .img-b {
  opacity: 1;
}
.mv__title-block {
  text-align: center;
  line-height: 1;
  margin-bottom: calc(20 / 390 * 100vw);
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .mv__title-block {
    margin: 120px 0 40px;
  }
}
.mv__brand {
  font-size: calc(10 / 390 * 100vw);
  font-weight: 700;
  margin-bottom: calc(5 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .mv__brand {
    font-size: calc(16 / 16 * 1rem);
  }
}
.mv__title {
  font-size: calc(46 / 390 * 100vw);
  line-height: 0.95;
  margin-bottom: calc(10 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .mv__title {
    font-size: calc(68 / 16 * 1rem);
  }
}
.mv__season {
  font-size: calc(18 / 390 * 100vw);
  margin-inline: auto;
  display: flex;
  padding: 3px 0;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.mv__season span {
  display: inline-block;
  width: 14px;
  height: 1px;
  background-color: #000;
}
@media screen and (min-width: 769px) {
  .mv__season {
    font-size: calc(30 / 16 * 1rem);
  }
}
.mv__logo {
  width: calc(202 / 390 * 100vw);
  margin: 0 auto calc(25 / 16 * 1rem);
  display: flex;
  align-items: center;
  gap: 21px;
}
@media screen and (min-width: 769px) {
  .mv__logo {
    width: calc(365 / 16 * 1rem);
    gap: 25px;
  }
}
.mv__logo p:first-child {
  width: calc(106 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .mv__logo p:first-child {
    width: calc(200 / 16 * 1rem);
  }
}
.mv__logo p:last-child {
  width: calc(75 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .mv__logo p:last-child {
    width: calc(140 / 16 * 1rem);
  }
}
.mv__lead {
  width: calc(370 / 390 * 100vw);
  font-size: calc(12 / 16 * 1rem);
  margin: 0 auto;
  text-align: center;
  line-height: 2;
}
.mv__lead p {
  margin-bottom: calc(10 / 390 * 100vw);
}
.mv__lead p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .mv__lead p {
    margin-bottom: calc(20 / 16 * 1rem);
  }
}
@media screen and (min-width: 769px) {
  .mv__lead {
    width: 100%;
    font-size: calc(14 / 16 * 1rem);
    margin-bottom: 100px;
  }
}

/* ==================================================
  item
================================================== */
.item {
  width: calc(370 / 390 * 100vw);
  margin: 0 auto calc(70 / 390 * 100vw);
}
@media screen and (min-width: 769px) {
  .item {
    width: 100%;
    margin: 0 auto 100px;
  }
}
.item__container {
  display: inline-grid;
  row-gap: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  grid-template-rows: repeat(2, fit-content(100%));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.item__block {
  padding: calc(12 / 16 * 1rem) calc(10 / 16 * 1rem);
  letter-spacing: 0.02em;
  box-sizing: border-box;
  background-color: #FFF;
  border-radius: calc(12 / 16 * 1rem);
  font-family: adobe-gurmukhi, sans-serif;
}
@media screen and (min-width: 769px) {
  .item__block {
    padding: 20px 20px;
  }
}
.item__image {
  margin-bottom: calc(12 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .item__image {
    margin-bottom: calc(20 / 16 * 1rem);
  }
}
.item__row {
  line-height: 1;
  margin-bottom: calc(6 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .item__row {
    margin-bottom: calc(10 / 16 * 1rem);
  }
}
.item__row dt {
  font-size: calc(10 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .item__row dt {
    font-size: calc(14 / 16 * 1rem);
  }
}
.item__row dd {
  font-size: calc(14 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .item__row dd {
    font-size: calc(18 / 16 * 1rem);
  }
}
.item__row dd span.yen {
  font-size: calc(12 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .item__row dd span.yen {
    font-size: calc(16 / 16 * 1rem);
  }
}
.item__row dd span.color {
  font-size: calc(11 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .item__row dd span.color {
    font-size: calc(15 / 16 * 1rem);
  }
}
.item__credit .item-d-none {
  display: none;
}
@media screen and (min-width: 769px) {
  .item__credit {
    margin-bottom: 8px;
  }
}
.item__buy {
  width: 100%;
  display: inline-block;
  font-size: calc(12 / 16 * 1rem);
  font-weight: 700;
  color: #fff;
  padding: 7px 0 6px;
  border: 1px solid #000;
  background: #000;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (min-width: 769px) {
  .item__buy {
    font-size: calc(15 / 16 * 1rem);
    padding: 9px 0 8px;
  }
}
.item__buy:hover {
  background: #fff;
  color: #000;
}
.item__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 8px;
       column-gap: 8px;
}

/* ==================================================
  Content
================================================== */
.content {
  position: relative;
}

.content-block {
  margin-bottom: calc(100 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block {
    margin-bottom: calc(160 / 16 * 1rem);
  }
}
.content-block__text {
  padding: calc(20 / 16 * 1rem) calc(12 / 16 * 1rem);
  border-top: 1px solid #000;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  .content-block__text {
    padding: calc(28 / 16 * 1rem) calc(20 / 16 * 1rem);
  }
}
.content-block__name {
  line-height: 0.95;
  font-size: calc(12 / 16 * 1rem);
  letter-spacing: 0.001em;
}
@media screen and (min-width: 769px) {
  .content-block__name {
    font-size: calc(15 / 16 * 1rem);
  }
}
.content-block__name span {
  display: block;
  font-size: calc(27 / 16 * 1rem);
  font-family: adobe-gurmukhi, sans-serif;
}
@media screen and (min-width: 769px) {
  .content-block__name span {
    font-size: calc(32 / 16 * 1rem);
  }
}
.content-block__name span.sm {
  font-size: calc(25 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__name span.sm {
    font-size: calc(32 / 16 * 1rem);
  }
}
.content-block__info {
  font-size: calc(10 / 16 * 1rem);
  text-align: right;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 769px) {
  .content-block__info {
    font-size: calc(13 / 16 * 1rem);
  }
}
.content-block__info li {
  margin-bottom: calc(2 / 16 * 1rem);
}
.content-block__info li span {
  font-size: calc(10 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__info li span {
    font-size: calc(13 / 16 * 1rem);
  }
}
.content-block__info li a {
  text-decoration: underline;
}
.content-block__info li a:hover {
  text-decoration: none;
}
.content-block__kv {
  margin-bottom: calc(30 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__kv {
    margin-bottom: calc(60 / 16 * 1rem);
  }
}
.content-block__item {
  width: calc(340 / 390 * 100vw);
  margin: 0 auto calc(30 / 16 * 1rem);
  padding: calc(23 / 16 * 1rem) 0;
  background-color: #FFF;
  box-sizing: border-box;
  border-radius: calc(12 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__item {
    width: 80%;
    margin: 0 auto calc(60 / 16 * 1rem);
  }
}
.content-block__row {
  line-height: 1;
  margin-bottom: calc(12 / 16 * 1rem);
  text-align: center;
  font-family: adobe-gurmukhi, sans-serif;
}
.content-block__row dt {
  font-size: calc(11 / 16 * 1rem);
  margin-bottom: calc(1 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__row dt {
    font-size: calc(14 / 16 * 1rem);
  }
}
.content-block__row dd {
  font-size: calc(19 / 16 * 1rem);
  position: relative;
}
@media screen and (min-width: 769px) {
  .content-block__row dd {
    font-size: calc(22 / 16 * 1rem);
  }
}
.content-block__row dd span.yen {
  font-size: calc(17 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .content-block__row dd span.yen {
    font-size: calc(20 / 16 * 1rem);
  }
}
.content-block__row dd.circle1 span, .content-block__row dd.circle2 span {
  position: relative;
  display: inline-block;
}
.content-block__row dd.circle1 span::after, .content-block__row dd.circle2 span::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.content-block__row dd.circle1 span::after {
  background-image: url(../img/circle1.svg);
  width: 60px;
  height: 40px;
  top: -11px;
  left: -5px;
}
@media screen and (min-width: 769px) {
  .content-block__row dd.circle1 span::after {
    width: 78px;
    height: 60px;
    top: -15px;
    left: -9px;
  }
}
.content-block__row dd.circle2 span::after {
  background-image: url(../img/circle2.svg);
  width: 38px;
  height: 38px;
  top: -8px;
  left: -10px;
}
@media screen and (min-width: 769px) {
  .content-block__row dd.circle2 span::after {
    width: 42px;
    height: 42px;
    top: -9px;
    left: -11px;
  }
}
.content-block__row dd.circle2 span.pos6::after {
  left: -16px;
}
.content-block__row dd.circle2 span.pos8::after {
  left: -14px;
}
.content-block__buy {
  width: calc(170 / 390 * 100vw);
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .content-block__buy {
    width: calc(240 / 16 * 1rem);
  }
}
.content-block__buy .item-d-none {
  display: none;
}
.content-block__buy .item__buy {
  padding: 8px 0 7px;
}
.content-block__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.content-block__other {
  width: calc(340 / 390 * 100vw);
  margin-inline: auto;
}
@media screen and (min-width: 769px) {
  .content-block__other {
    width: 80%;
  }
}

/* ==================================================
  Footer
================================================== */
.footer {
  position: relative;
  border-top: solid 1px #000;
  padding: 20px;
  background-color: #000;
  color: #FFF;
}
@media screen and (min-width: 769px) {
  .footer {
    padding: 40px;
  }
}
.footer__body {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .footer__body {
    display: flex;
    align-items: center;
    margin-bottom: calc(40 / 16 * 1rem);
  }
}
.footer__staff {
  margin-bottom: calc(40 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__staff {
    margin-bottom: calc(50 / 16 * 1rem);
  }
}
.footer__logo {
  width: calc(100 / 16 * 1rem);
  margin-bottom: calc(20 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__logo {
    width: calc(120 / 16 * 1rem);
    margin-right: calc(60 / 16 * 1rem);
    margin-bottom: 0;
  }
}
.footer__itemList {
  margin-bottom: calc(20 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__itemList {
    display: flex;
    margin-bottom: 0;
  }
}
.footer__item {
  font-family: adobe-gurmukhi, sans-serif;
  margin-bottom: calc(4 / 16 * 1rem);
}
@media screen and (min-width: 769px) {
  .footer__item {
    font-size: calc(15 / 16 * 1rem);
    margin-bottom: 0;
    margin-right: calc(40 / 16 * 1rem);
  }
}
.footer__item a {
  transition: all 0.25s ease-in;
}
.footer__item a:hover {
  opacity: 0.6;
}
.footer__copyright {
  font-size: calc(10 / 16 * 1rem);
}
.footer__pagetop {
  font-size: calc(10 / 16 * 1rem);
}
.footer__pagetop a {
  text-decoration: underline;
}
.footer__pagetop a:hover {
  text-decoration: none;
}

/* ==================================================
  Swiper
================================================== */
.swiper-container .swiper-pagination {
  bottom: 15px;
}

.swiper-container .swiper-pagination-bullet {
  opacity: 1;
  position: relative;
  width: 50px;
  height: 3px;
  border-radius: 0;
  margin: 0 4px;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.swiper-container .swiper-pagination-bullet::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: 0 0;
}

.swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  animation: sliderPagination 3s linear forwards;
}

.swiper-container .swiper-pagination-bullet:hover {
  background-color: #fff;
}

@keyframes sliderPagination {
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */