@charset "utf-8";
.product__item, .products__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.products__item, .mv__content, .common__container, .common__container--small {
  box-sizing: content-box;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .products__item, .mv__content, .common__container, .common__container--small {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.common__container--small {
  max-width: 840px;
}

[v-cloak] {
  display: none;
}

body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: none;
}
body.fixed {
  overflow: hidden;
  touch-action: none;
}
@media screen and (min-width: 769px) {
  body.fixed {
    padding-right: 15px;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.str-main {
  overflow-y: hidden;
}

.common {
  position: relative;
}
.common__contents {
  width: 100%;
}
.common__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.common__container--small {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .common__container--small {
    width: 89.3333333333vw;
  }
}
.common .innerlink-target {
  position: absolute;
  width: 1px;
  height: 200px;
  top: -200px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .common .innerlink-target {
    height: 150px;
    top: -150px;
  }
}
.common picture {
  display: block;
}
.common img {
  display: block;
}
@media screen and (max-width: 768px) {
  .common img {
    width: 100%;
  }
}
.common__container--white {
  position: relative;
  background-color: #fff;
}

a {
  transition: opacity 0.3s;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}

.mod-link-text {
  /* /assets/css/common.cssから移植 */
  vertical-align: top;
  color: #333;
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  padding-left: 22px;
}

.mod-link-text::before {
  background-image: url(/assets/images/icon-arrow-02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  transition: transform 0.2s ease-in-out;
}

@media screen and (min-width: 769px) {
  .mod-link-text {
    padding-left: 24px;
  }
  .mod-link-text::before {
    top: 3px;
    width: 16px;
    height: 16px;
  }
  .mod-link-text:active::before,
  .mod-link-text:focus::before,
  .mod-link-text:hover::before {
    transform: translate3d(4px, 0, 0);
  }
}
/**
 * ----------------------------------------
 * Vue.js animation
 * ----------------------------------------
 */
.fade-enter-active {
  transition: opacity 1s;
}
.fade-leave-active {
  transition: opacity 1s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}

:root {
  --fade-translate-x: 0px;
  --fade-translate-y: 0px;
  --fade-duration: 500ms;
}

/* 表示方向 */
.up {
  --fade-translate-x: 0px;
  --fade-translate-y: 50px;
}

.down {
  --fade-translate-x: 0px;
  --fade-translate-y: -50px;
}

.fromLeft {
  --fade-translate-x: -50px;
  --fade-translate-y: 0px;
}

.fromRight {
  --fade-translate-x: 50px;
  --fade-translate-y: 0px;
}

.jsFade {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
  transition-delay: 0ms;
  transform: translate(var(--fade-translate-x), var(--fade-translate-y));
}
.jsFade.speed--100 {
  transition-delay: 100ms;
}
.jsFade.speed--200 {
  transition-delay: 200ms;
}
.jsFade.speed--300 {
  transition-delay: 300ms;
}
.jsFade.speed--400 {
  transition-delay: 400ms;
}
.jsFade.speed--500 {
  transition-delay: 500ms;
}
.jsFade.speed--600 {
  transition-delay: 600ms;
}
.jsFade.speed--700 {
  transition-delay: 700ms;
}
.jsFade.speed--800 {
  transition-delay: 800ms;
}
.jsFade.speed--900 {
  transition-delay: 900ms;
}
.jsFade.speed--1000 {
  transition-delay: 1000ms;
}
.jsFade.speed--1100 {
  transition-delay: 1100ms;
}
.jsFade.speed--1200 {
  transition-delay: 1200ms;
}
.jsFade.speed--1300 {
  transition-delay: 1300ms;
}
.jsFade.speed--1400 {
  transition-delay: 1400ms;
}
.jsFade.speed--1500 {
  transition-delay: 1500ms;
}
.jsFade.speed--1600 {
  transition-delay: 1600ms;
}
.jsFade.speed--1700 {
  transition-delay: 1700ms;
}
.jsFade.speed--1800 {
  transition-delay: 1800ms;
}
.jsFade.speed--1900 {
  transition-delay: 1900ms;
}
.jsFade.speed--2000 {
  transition-delay: 2000ms;
}
.jsFade.speed--2100 {
  transition-delay: 2100ms;
}
.jsFade.speed--2200 {
  transition-delay: 2200ms;
}
.jsFade.speed--2300 {
  transition-delay: 2300ms;
}
.jsFade.speed--2400 {
  transition-delay: 2400ms;
}
.jsFade.speed--2500 {
  transition-delay: 2500ms;
}
.jsFade.speed--2600 {
  transition-delay: 2600ms;
}
.jsFade.speed--2700 {
  transition-delay: 2700ms;
}
.jsFade.speed--2800 {
  transition-delay: 2800ms;
}
.jsFade.speed--2900 {
  transition-delay: 2900ms;
}
.jsFade.speed--3000 {
  transition-delay: 3000ms;
}
.jsFade.delay--100 {
  transition-delay: 100ms;
}
.jsFade.delay--200 {
  transition-delay: 200ms;
}
.jsFade.delay--300 {
  transition-delay: 300ms;
}
.jsFade.delay--400 {
  transition-delay: 400ms;
}
.jsFade.delay--500 {
  transition-delay: 500ms;
}
.jsFade.delay--600 {
  transition-delay: 600ms;
}
.jsFade.delay--700 {
  transition-delay: 700ms;
}
.jsFade.delay--800 {
  transition-delay: 800ms;
}
.jsFade.delay--900 {
  transition-delay: 900ms;
}
.jsFade.delay--1000 {
  transition-delay: 1000ms;
}
.jsFade.delay--1100 {
  transition-delay: 1100ms;
}
.jsFade.delay--1200 {
  transition-delay: 1200ms;
}
.jsFade.delay--1300 {
  transition-delay: 1300ms;
}
.jsFade.delay--1400 {
  transition-delay: 1400ms;
}
.jsFade.delay--1500 {
  transition-delay: 1500ms;
}
.jsFade.delay--1600 {
  transition-delay: 1600ms;
}
.jsFade.delay--1700 {
  transition-delay: 1700ms;
}
.jsFade.delay--1800 {
  transition-delay: 1800ms;
}
.jsFade.delay--1900 {
  transition-delay: 1900ms;
}
.jsFade.delay--2000 {
  transition-delay: 2000ms;
}
.jsFade.delay--2100 {
  transition-delay: 2100ms;
}
.jsFade.delay--2200 {
  transition-delay: 2200ms;
}
.jsFade.delay--2300 {
  transition-delay: 2300ms;
}
.jsFade.delay--2400 {
  transition-delay: 2400ms;
}
.jsFade.delay--2500 {
  transition-delay: 2500ms;
}
.jsFade.delay--2600 {
  transition-delay: 2600ms;
}
.jsFade.delay--2700 {
  transition-delay: 2700ms;
}
.jsFade.delay--2800 {
  transition-delay: 2800ms;
}
.jsFade.delay--2900 {
  transition-delay: 2900ms;
}
.jsFade.delay--3000 {
  transition-delay: 3000ms;
}

.jsScrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.mv {
  position: relative;
  z-index: 5;
}
.mv__container {
  background-image: url(../images/pc/20250714/index-bg-mv.jpg);
  background-position: top center;
  background-size: cover;
  height: 15vw;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 2000px) {
  .mv__container {
    height: 300px;
  }
}
@media screen and (max-width: 1120px) {
  .mv__container {
    height: 26.7857142857vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__container {
    background-image: url(../images/sp/20250714/index-bg-mv.jpg);
    height: 40vw;
  }
}
.mv__content {
  height: 100%;
}
@media screen and (min-width: 2001px) {
  .mv__content {
    max-width: 54vw;
  }
}
.mv__text {
  height: 100%;
  width: auto;
}
.mv__text img {
  width: 100%;
}

.products {
  position: relative;
}
.products .std__wrapper {
  padding: 120px 0 400px 0;
  background: url(../images/pc/20250714/index-bg-std.jpg) no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 1120px) {
  .products .std__wrapper {
    padding: 10.7142857143% 0 35.7142857143% 0;
  }
}
@media screen and (max-width: 768px) {
  .products .std__wrapper {
    padding: 16vw 0 40vw 0;
    background: url(../images/sp/20250714/index-bg-std.jpg) no-repeat center top;
    background-size: cover;
  }
}
.products .muto__wrapper {
  margin-top: -340px;
  padding: 200px 0 260px 0;
  background: url(../images/pc/20250714/index-bg-muto.jpg) no-repeat center top;
  background-size: cover;
  clip-path: polygon(0 0, 100% 12.2897800776%, 100% 100%, 0 100%);
}
@media screen and (max-width: 1120px) {
  .products .muto__wrapper {
    margin-top: -30.3571428571%;
    padding: 17.8571428571% 0 23.2142857143% 0;
  }
}
@media screen and (max-width: 768px) {
  .products .muto__wrapper {
    margin-top: -26.6666666667vw;
    padding: 26.6666666667vw 0 40vw 0;
    background: url(../images/sp/20250714/index-bg-muto.jpg) no-repeat center top;
    background-size: cover;
    clip-path: polygon(0 0, 100% 4.9977283053%, 100% 100%, 0 100%);
  }
}
.products .mottainai__wrapper {
  margin-top: -200px;
  padding: 200px 0 244px 0;
  background: url(../images/pc/20250714/index-bg-mottainai.jpg) no-repeat center top;
  background-size: cover;
  clip-path: polygon(0 14.3830431491%, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 1120px) {
  .products .mottainai__wrapper {
    margin-top: -17.8571428571%;
    padding: 17.8571428571% 0 21.7857142857% 0;
  }
}
@media screen and (max-width: 768px) {
  .products .mottainai__wrapper {
    margin-top: -26.6666666667vw;
    padding: 26.6666666667vw 0 41.3333333333vw 0;
    background: url(../images/sp/20250714/index-bg-mottainai.jpg) no-repeat center top;
    background-size: cover;
    clip-path: polygon(0 7.1151358344%, 100% 0, 100% 100%, 0 100%);
  }
}
.products .zero__wrapper {
  margin-top: -200px;
  padding: 200px 0 250px 0;
  background-color: #04baf6;
  clip-path: polygon(0 0, 100% 14.5038167939%, 100% 100%, 0 100%);
}
@media screen and (max-width: 1120px) {
  .products .zero__wrapper {
    margin-top: -17.8571428571%;
    padding: 17.8571428571% 0 22.3214285714% 0;
  }
}
@media screen and (max-width: 768px) {
  .products .zero__wrapper {
    padding: 26.6666666667vw 0 41.3333333333vw 0;
    clip-path: polygon(0 0, 100% 6.7859346083%, 100% 100%, 0 100%);
  }
}
.products .strong__wrapper {
  margin-top: -210px;
  padding: 210px 0 230px 0;
  background-color: #194b96;
  clip-path: polygon(0 13.6789056875%, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 1120px) {
  .products .strong__wrapper {
    margin-top: -18.75%;
    padding: 18.75% 0 20.5357142857% 0;
  }
}
@media screen and (max-width: 768px) {
  .products .strong__wrapper {
    margin-top: -26.6666666667vw;
    padding: 26.6666666667vw 0 26.6666666667vw 0;
    clip-path: polygon(0 6.8322981366%, 100% 0, 100% 100%, 0 100%);
  }
}

.product__btn {
  width: 50%;
}

.product__image.limited__seven, .product__image.limited__period, .product__image.limited__winter02, .product__image.limited__winter01, .product__image.limited__green, .product__image.limited, .product__image.txtnewdesign, .product__image.txtnew, .product__image.new, .product__image.renew {
  position: relative;
}
.product__image.limited__seven::after, .product__image.limited__period::after, .product__image.limited__winter02::after, .product__image.limited__winter01::after, .product__image.limited__green::after, .product__image.limited::after, .product__image.txtnewdesign::after, .product__image.txtnew::after, .product__image.new::after, .product__image.renew::after {
  position: absolute;
  top: -15.2838427948%;
  left: -29.1666666667%;
  width: 59.1666666667%;
  height: 31.0043668122%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  content: "";
}

.product__title {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .product__title {
    width: 81.3333333333vw;
  }
}
.product__text {
  width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 1120px) {
  .product__text {
    margin-top: 5.3571428571%;
  }
}
@media screen and (max-width: 768px) {
  .product__text {
    width: 81.3333333333vw;
    margin-top: 9.3333333333vw;
  }
}
.product__caution {
  margin-top: 30px;
}
@media screen and (max-width: 1120px) {
  .product__caution {
    margin-top: 2.6785714286%;
  }
}
@media screen and (max-width: 768px) {
  .product__caution {
    width: 86.4vw;
    margin-top: 5.0666666667vw;
  }
}
.product__note {
  width: 81.0185185185%;
  margin: 30px auto 0 auto;
  text-align: left;
  color: #ffffff;
  line-height: 1;
  font-size: 1.8rem;
}
@media screen and (max-width: 1120px) {
  .product__note {
    margin-top: 2.6785714286%;
  }
}
@media screen and (max-width: 768px) {
  .product__note {
    width: 81.3333333333%;
    margin-top: 4vw;
    font-size: 2.4vw;
  }
}
.product__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 88.8888888889%;
  margin: auto;
  margin-top: 20px;
}
@media screen and (max-width: 1120px) {
  .product__list {
    margin-top: 1.7857142857%;
  }
}
@media screen and (max-width: 768px) {
  .product__list {
    width: 98%;
    margin-top: 3.7333333333vw;
  }
}
.product__item {
  width: 25%;
  margin-top: 50px;
}
@media screen and (max-width: 1120px) {
  .product__item {
    margin-top: 5.3571428571%;
  }
}
@media screen and (max-width: 768px) {
  .product__item {
    width: 33.3333333333%;
    margin-top: 6.4vw;
  }
}
.product__item--pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .product__item--pc {
    display: none;
  }
}
.product__image {
  position: relative;
  width: 60%;
}
.product__image.renew::after {
  background-image: url(../images/index-icon-renew.png);
}
.product__image.new::after {
  background-image: url(../images/index-icon-new.png);
}
.product__image.txtnew::after {
  top: -8.6956521739%;
  left: -8.3333333333%;
  width: 61.1111111111%;
  height: 19.1304347826%;
  background-image: url(../images/pc/20241008/index-icon-txtnew.png);
}
@media screen and (max-width: 768px) {
  .product__image.txtnew::after {
    top: -2.1333333333vw;
    left: -1.8666666667vw;
    width: 9.8666666667vw;
    height: 4.9333333333vw;
  }
}
.product__image.txtnewdesign::after {
  top: -11.3043478261%;
  left: -6.9444444444%;
  width: 59.0277777778%;
  height: 19.5652173913%;
  background-image: url(../images/pc/20241112/index-icon-txtnewdesign.png);
}
@media screen and (max-width: 768px) {
  .product__image.txtnewdesign::after {
    top: -4.2666666667vw;
    left: -1.0666666667vw;
    width: 13.3333333333vw;
    height: 6.8vw;
  }
}
.product__image.limited::after {
  background-image: url(../images/index-icon-limited.png);
}
.product__image.limited__green::after {
  background-image: url(../images/index-icon-limited-green.png);
}
.product__image.limited__winter01::after {
  top: -17.4672489083%;
  left: -51.6666666667%;
  background-image: url(../images/index-icon-winter-01.png);
}
.product__image.limited__winter02::after {
  top: -17.4672489083%;
  left: -51.6666666667%;
  background-image: url(../images/index-icon-winter-02.png);
}
.product__image.limited__period::after {
  background-image: url(../images/index-icon-limit-period.png);
}
.product__image.limited__seven::after {
  top: -13.0434782609%;
  left: -27.7777777778%;
  width: 47.9166666667%;
  height: 30%;
  background-image: url(../images/pc/20250924/index-icon-limited.png);
}
@media screen and (max-width: 768px) {
  .product__image.limited__seven::after {
    top: -6.6666666667vw;
    left: -6.6666666667vw;
    width: 11.4666666667vw;
    height: 11.4666666667vw;
    background-image: url(../images/sp/20250924/index-icon-limited.png);
  }
}
.product__name {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .product__name {
    font-size: 2.6666666667vw;
  }
}
.product__name sup {
  display: inline-block;
  top: -0.25em;
  font-size: 1em;
  transform: scale(0.75);
}
@media screen and (max-width: 374px) {
  .product__name .small {
    display: inline-block;
    margin-right: -5em;
    margin-left: -5em;
    transform: scale(0.85);
  }
}
.product__name span {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .product__name span {
    font-size: 2.6666666667vw;
    line-height: 0.8333333333;
  }
}
.muto .product__name {
  color: #002f82;
}
.mottainai .product__name {
  color: #623e1b;
}
.product__note {
  font-size: 1.2rem;
  line-height: 1.16;
  color: #623e1b;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .product__note {
    width: 100%;
    margin-top: 0.6666666667vw;
    white-space: nowrap;
    font-size: 2.4vw;
    line-height: 1.2;
  }
}
.product__btn {
  width: 64.1666666667%;
}
@media screen and (max-width: 768px) {
  .product__btn {
    width: 79.1836734694%;
  }
}
.product__btn img {
  width: 100%;
}
.product__detail {
  width: 34.4444444444%;
  margin: 3.1481481481% auto 0 auto;
}
@media screen and (max-width: 768px) {
  .product__detail {
    width: 68.2666666667%;
    margin-top: 5.6vw;
  }
}
.product__detail a {
  display: block;
}
.product__top {
  width: 50.1851851852%;
  margin: 8.7962962963% auto 0 auto;
}
@media screen and (max-width: 768px) {
  .product__top {
    width: 85.8666666667%;
    margin-top: 20.2666666667vw;
  }
}

.float {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
  z-index: 3000;
}
@media screen and (min-width: 769px) {
  .float {
    margin-bottom: 50px;
  }
}
.float__container {
  position: relative;
  height: 162px;
}
@media screen and (max-width: 768px) {
  .float__container {
    height: 14.8vw;
  }
}
.float__brandsite {
  transition: all 0.3s;
}
.float__brandsite:hover {
  opacity: 0.7;
  cursor: pointer;
}
.float__brandsite.fixed {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 3000;
}
@media screen and (max-width: 768px) {
  .float__brandsite.fixed {
    bottom: 0;
  }
}