@charset "utf-8";
.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) {
  .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-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  body::before {
    background-image: url(../images/pc/20250714/index-bg.jpg);
  }
}
@media screen and (max-width: 768px) {
  body::before {
    background-image: url(../images/sp/20250714/index-bg.jpg);
  }
}
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;
  background: url(../images/pc/20250714/index-bg-bubble.png) repeat-y center center;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .str-main {
    background: url(../images/sp/20250714/index-bg-bubble.png) repeat-y center top;
    background-size: 100%;
  }
}

.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__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: 1200px) {
  .mv__container {
    height: 25vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__container {
    background-image: url(../images/sp/20250714/index-bg-mv.jpg);
    height: 40vw;
  }
}
.mv__content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.mv__text {
  width: 100%;
}

.lead__container {
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
}
@media screen and (max-width: 2000px) {
  .lead__container {
    background-size: 2000px;
  }
}
@media screen and (min-width: 769px) {
  .lead__container {
    background-image: url(../images/pc/20250714/index-bg-lead.jpg);
  }
}
@media screen and (max-width: 768px) {
  .lead__container {
    background-image: url(../images/sp/20250714/index-bg-lead.jpg);
    background-size: 100%;
  }
}
.lead__content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .lead__content {
    flex-direction: column;
  }
}
.lead__img {
  width: 50.2777777778%;
}
@media screen and (max-width: 768px) {
  .lead__img {
    width: 100%;
  }
}
.lead__text {
  width: 60.8333333333%;
}
@media screen and (max-width: 768px) {
  .lead__text {
    width: 100%;
  }
}

.package__item--2024, .package__item--2023, .package__item--2022, .package__item--2019, .package__item--2016, .package__item--2013, .package__item--2011, .package__item--2010, .package__item--2007, .package__item--2006, .package__item--2004, .package__item--2002, .package__item--2001 {
  position: absolute;
  width: 50%;
}
.right.package__item--2024, .right.package__item--2023, .right.package__item--2022, .right.package__item--2019, .right.package__item--2016, .right.package__item--2013, .right.package__item--2011, .right.package__item--2010, .right.package__item--2007, .right.package__item--2006, .right.package__item--2004, .right.package__item--2002, .right.package__item--2001 {
  right: 0;
}
.left.package__item--2024, .left.package__item--2023, .left.package__item--2022, .left.package__item--2019, .left.package__item--2016, .left.package__item--2013, .left.package__item--2011, .left.package__item--2010, .left.package__item--2007, .left.package__item--2006, .left.package__item--2004, .left.package__item--2002, .left.package__item--2001 {
  left: 0;
}

.package {
  position: relative;
  background: url(../images/pc/20250714/index-bg-package-bubble.png) no-repeat center top;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .package {
    background: url(../images/sp/20250714/index-bg-package-bubble.png) no-repeat center top;
    background-size: 100%;
  }
}
.package__content {
  position: relative;
  width: 100%;
}
.package__item--2001 {
  width: 100%;
  top: 0;
}
@media screen and (min-width: 769px) {
  .package__item--2002 {
    top: 5.2420509883%;
  }
}
@media screen and (max-width: 768px) {
  .package__item--2002 {
    top: 8.7650954422%;
  }
}
@media screen and (min-width: 769px) {
  .package__item--2004 {
    top: 12.4892580922%;
  }
}
@media screen and (max-width: 768px) {
  .package__item--2004 {
    top: 15.8356057655%;
  }
}
@media screen and (min-width: 769px) {
  .package__item--2006 {
    top: 19.7078201089%;
  }
}
@media screen and (max-width: 768px) {
  .package__item--2006 {
    top: 23.334631866%;
  }
}
@media screen and (min-width: 769px) {
  .package__item--2007 {
    top: 26.9550272128%;
  }
}
@media screen and (max-width: 768px) {
  .package__item--2007 {
    top: 30.4440981691%;
  }
}
@media screen and (min-width: 769px) {
  .package__item--2010 {
    top: 34.1735892294%;
  }
}
@media screen and (max-width: 768px) {
  .package__item--2010 {
    top: 37.9820802493%;
  }
}
@media screen and (min-width: 769px) {
  .package__item--2011 {
    top: 41.4207963334%;
  }
}
@media screen and (max-width: 768px) {
  .package__item--2011 {
    top: 45.0136345929%;
  }
}
@media screen and (min-width: 769px) {
  .package__item--2013 {
    top: 48.63935835%;
  }
}
@media screen and (max-width: 768px) {
  .package__item--2013 {
    top: 52.5516166732%;
  }
}
@media screen and (min-width: 769px) {
  .package__item--2016 {
    top: 55.886565454%;
  }
}
@media screen and (max-width: 768px) {
  .package__item--2016 {
    top: 59.5636930269%;
  }
}
@media screen and (min-width: 769px) {
  .package__item--2019 {
    top: 63.1051274706%;
  }
}
@media screen and (max-width: 768px) {
  .package__item--2019 {
    top: 67.1016751071%;
  }
}
@media screen and (min-width: 769px) {
  .package__item--2022 {
    top: 70.2663993125%;
  }
}
@media screen and (max-width: 768px) {
  .package__item--2022 {
    top: 74.4838332684%;
  }
}
@media screen and (min-width: 769px) {
  .package__item--2023 {
    top: 77.4849613291%;
  }
}
@media screen and (max-width: 768px) {
  .package__item--2023 {
    top: 81.8659914297%;
  }
}
.package__item--2024 {
  bottom: 0;
  width: 100%;
}

.product__item--2024, .product__item--2020, .product__item--2017, .product__item--2016, .product__item--2014, .product__item--2013, .product__item--2008-02, .product__item--2008-01, .product__item--2005, .product__item--2003, .product__item--2001 {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .product__item--2024, .product__item--2020, .product__item--2017, .product__item--2016, .product__item--2014, .product__item--2013, .product__item--2008-02, .product__item--2008-01, .product__item--2005, .product__item--2003, .product__item--2001 {
    position: absolute;
  }
}

.product {
  overflow-x: hidden;
  position: relative;
}
.product::before {
  display: block;
  position: absolute;
  top: -540px;
  left: 50%;
  width: 2000px;
  height: 1374px;
  background: url(../images/pc/20250714/index-bg-product-bubble.png) no-repeat center top;
  background-size: 100%;
  content: "";
  transform: translateX(-50%);
}
@media screen and (min-width: 2001px) {
  .product::before {
    top: -27vw;
    width: 100%;
    height: 68.7vw;
  }
}
@media screen and (max-width: 1120px) {
  .product::before {
    top: -48.2142857143vw;
    width: 178.5714285714vw;
    height: 122.6785714286vw;
  }
}
@media screen and (max-width: 768px) {
  .product::before {
    top: -54.6666666667vw;
    width: 100%;
    height: 132.6666666667vw;
    background: url(../images/sp/20250714/index-bg-product-bubble.png) no-repeat center top;
    background-size: 100%;
  }
}
@media screen and (min-width: 769px) {
  .product__container {
    padding-bottom: 240px;
  }
}
@media screen and (max-width: 768px) {
  .product__container {
    padding-bottom: 34.6666666667vw;
  }
}
.product__content {
  position: relative;
  width: 100%;
}
.product__item--2001 {
  top: 0;
  width: 100%;
}
.product__item--2003 {
  top: 8.2177531207%;
}
.product__item--2005 {
  top: 17.3023578363%;
}
.product__item--2008-01 {
  top: 25.866851595%;
}
.product__item--2008-02 {
  top: 25.866851595%;
}
.product__item--2013 {
  top: 45.2843273232%;
}
.product__item--2014 {
  top: 54.1262135922%;
}
.product__item--2016 {
  top: 62.7600554785%;
}
.product__item--2017 {
  top: 72.052704577%;
}
.product__item--2020 {
  top: 80.2357836338%;
}
.product__item--2024 {
  bottom: 0;
}

@media screen and (min-width: 769px) {
  .can__text--03, .can__text--02, .can__text--01 {
    position: absolute;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .can__text--03, .can__text--02, .can__text--01 {
    width: 100%;
  }
}

.can {
  position: relative;
}
.can__container {
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100%;
  border-bottom: 20px solid #ffffff;
}
@media screen and (max-width: 2000px) {
  .can__container {
    background-size: 2000px;
  }
}
@media screen and (min-width: 769px) {
  .can__container {
    background-image: url(../images/pc/20250714/index-bg-can.jpg);
  }
}
@media screen and (max-width: 768px) {
  .can__container {
    background-image: url(../images/sp/20250714/index-bg-can.jpg);
    background-size: 100%;
    border-bottom: none;
  }
}
.can__title {
  width: 100%;
}
.can__top-text {
  width: 100%;
}
.can__info {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .can__image {
    width: 75.7333333333vw;
    margin: auto;
  }
}
@media screen and (min-width: 769px) {
  .can__text--01 {
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .can__text--01 {
    margin-top: 10.6666666667vw;
  }
}
@media screen and (min-width: 769px) {
  .can__text--02 {
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 769px) {
  .can__text--03 {
    bottom: 0;
    right: 0;
  }
}
.can__evolution {
  width: 100%;
  margin-top: 9.2592592593%;
}
@media screen and (max-width: 768px) {
  .can__evolution {
    margin-top: 17.3333333333vw;
  }
}
.can__btn {
  width: 50.1851851852%;
  margin: 9.6296296296% auto 21.2962962963% auto;
}
@media screen and (max-width: 768px) {
  .can__btn {
    width: 85.8666666667%;
    margin: 21.3333333333vw auto 26.6666666667vw auto;
  }
}
.can__btn a {
  display: block;
}