@charset "UTF-8";
:root {
  --maincolor: #f35072;
  --subcolor: #50c3f3;
  --textcolor: #343434;
  --container: 1200px;
}

/* ======== ↓ common ↓ ======== */
#pbMarche {
  font-size: 16px;
  font-family: "UD新丸ゴ M", "UD Shin Maru Go Medium", "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--textcolor);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #pbMarche {
    font-size: 1.34vw;
  }
}

@media screen and (max-width: 800px) {
  #pbMarche {
    font-size: max(2.2vw,12px);
  }
}

#pbMarche * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#pbMarche *:before, #pbMarche *:after {
  content: none;
  visibility: visible;
  height: initial;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#pbMarche a {
  opacity: 1;
  color: inherit;
  background-color: transparent;
  text-decoration: none !important;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#pbMarche a.hover {
  color: var(--maincolor);
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#pbMarche ul, #pbMarche ol {
  list-style: none;
}

#pbMarche img {
  max-width: 100%;
  height: auto;
  display: block;
}

#pbMarche .cover {
  width: 100%;
  max-width: none;
  height: auto;
}

#pbMarche .sectionWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

#pbMarche .widthWrapper {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1220px) {
  #pbMarche .widthWrapper {
    padding-left: 2%;
    padding-right: 2%;
  }
}

@media screen and (max-width: 800px) {
  #pbMarche .widthWrapper {
    padding-left: 4%;
    padding-right: 4%;
  }
}

#pbMarche .insideWrapper {
  position: relative;
  width: 80%;
  max-width: inherit;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#pbMarche :root {
  --c-flex-gap: 2%;
}

#pbMarche .c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#pbMarche .c-flex.gap > * {
  margin-left: var(--c-flex-gap);
}

#pbMarche .c-flex.gapLarge > * {
  margin-left: calc(var(--c-flex-gap) * 2);
}

#pbMarche .c-flex:not(.c-flex-reverse) > *:first-child {
  margin-left: 0;
}

#pbMarche .c-flex--2 > * {
  width: calc(100% / 2);
}

#pbMarche .c-flex--2.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(2 - 1))) / 2);
}

#pbMarche .c-flex--2.gap > *:nth-child(2n+1) {
  margin-left: 0;
}

#pbMarche .c-flex--3 > * {
  width: calc(100% / 3);
}

#pbMarche .c-flex--3.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(3 - 1))) / 3);
}

#pbMarche .c-flex--3.gap > *:nth-child(3n+1) {
  margin-left: 0;
}

#pbMarche .c-flex--4 > * {
  width: calc(100% / 4);
}

#pbMarche .c-flex--4.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(4 - 1))) / 4);
}

#pbMarche .c-flex--4.gap > *:nth-child(4n+1) {
  margin-left: 0;
}

#pbMarche .c-flex--5 > * {
  width: calc(100% / 5);
}

#pbMarche .c-flex--5.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(5 - 1))) / 5);
}

#pbMarche .c-flex--5.gap > *:nth-child(5n+1) {
  margin-left: 0;
}

#pbMarche .c-flex--6 > * {
  width: calc(100% / 6);
}

#pbMarche .c-flex--6.gap > * {
  width: calc(calc(100% - calc(var(--c-flex-gap) * calc(6 - 1))) / 6);
}

#pbMarche .c-flex--6.gap > *:nth-child(6n+1) {
  margin-left: 0;
}

#pbMarche .c-flex--end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#pbMarche .c-flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#pbMarche .c-flex--between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#pbMarche .c-flex--alignEnd {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#pbMarche .c-flex--alignCenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#pbMarche .c-flex--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#pbMarche .c-flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#pbMarche .c-flex--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#pbMarche .alignCenter {
  text-align: center;
}

#pbMarche .alignRight {
  text-align: right;
}

#pbMarche .alignLeft {
  text-align: left;
}

#pbMarche img.alignCenter {
  margin-left: auto;
  margin-right: auto;
}

#pbMarche img.alignLeft {
  margin-left: 0;
  margin-right: auto;
}

#pbMarche img.alignRight {
  margin-left: auto;
  margin-right: 0;
}

#pbMarche .lh-10 {
  line-height: 1;
}

#pbMarche .lh-15 {
  line-height: 1.5;
}

#pbMarche .lh-20 {
  line-height: 2;
}

#pbMarche .font-10 {
  font-size: 10px !important;
}

#pbMarche .font-12 {
  font-size: 12px !important;
}

#pbMarche .font-14 {
  font-size: 14px !important;
}

#pbMarche .font-16 {
  font-size: 16px !important;
}

#pbMarche .font-18 {
  font-size: 18px !important;
}

#pbMarche .font-20 {
  font-size: 20px !important;
}

#pbMarche .font-22 {
  font-size: 22px !important;
}

#pbMarche .font-24 {
  font-size: 24px !important;
}

#pbMarche .font-26 {
  font-size: 26px !important;
}

#pbMarche .font-28 {
  font-size: 28px !important;
}

#pbMarche .font-30 {
  font-size: 30px !important;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #pbMarche .font-10 {
    font-size: 0.83333vw !important;
  }
  #pbMarche .font-12 {
    font-size: 1vw !important;
  }
  #pbMarche .font-14 {
    font-size: 1.16667vw !important;
  }
  #pbMarche .font-16 {
    font-size: 1.33333vw !important;
  }
  #pbMarche .font-18 {
    font-size: 1.5vw !important;
  }
  #pbMarche .font-20 {
    font-size: 1.66667vw !important;
  }
  #pbMarche .font-22 {
    font-size: 1.83333vw !important;
  }
  #pbMarche .font-24 {
    font-size: 2vw !important;
  }
  #pbMarche .font-26 {
    font-size: 2.16667vw !important;
  }
  #pbMarche .font-28 {
    font-size: 2.33333vw !important;
  }
  #pbMarche .font-30 {
    font-size: 2.5vw !important;
  }
}

@media screen and (max-width: 800px) {
  #pbMarche .font-10 {
    font-size: 1.25vw !important;
  }
  #pbMarche .font-12 {
    font-size: 1.5vw !important;
  }
  #pbMarche .font-14 {
    font-size: 1.75vw !important;
  }
  #pbMarche .font-16 {
    font-size: 2vw !important;
  }
  #pbMarche .font-18 {
    font-size: 2.25vw !important;
  }
  #pbMarche .font-20 {
    font-size: 2.5vw !important;
  }
  #pbMarche .font-22 {
    font-size: 2.75vw !important;
  }
  #pbMarche .font-24 {
    font-size: 3vw !important;
  }
  #pbMarche .font-26 {
    font-size: 3.25vw !important;
  }
  #pbMarche .font-28 {
    font-size: 3.5vw !important;
  }
  #pbMarche .font-30 {
    font-size: 3.75vw !important;
  }
}

#pbMarche .mt-5 {
  margin-top: 0.5em !important;
}

#pbMarche .mt-10 {
  margin-top: 1em !important;
}

#pbMarche .mt-15 {
  margin-top: 1.5em !important;
}

#pbMarche .mt-20 {
  margin-top: 2em !important;
}

#pbMarche .mt-25 {
  margin-top: 2.5em !important;
}

#pbMarche .mt-30 {
  margin-top: 3em !important;
}

#pbMarche .mt-35 {
  margin-top: 3.5em !important;
}

#pbMarche .mt-40 {
  margin-top: 4em !important;
}

#pbMarche .mt-45 {
  margin-top: 4.5em !important;
}

#pbMarche .mt-50 {
  margin-top: 5em !important;
}

#pbMarche .u-bold {
  font-family: "UD新丸ゴ B", "UD Shin Maru Go Bold", "Noto Sans JP", sans-serif;
  font-weight: bold;
}

#pbMarche .u-link {
  color: #ff0035;
  border-bottom: 1px solid currentColor;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

#pbMarche .u-link:hover {
  border-bottom-color: transparent;
}

#pbMarche .u-note {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}

#pbMarche .u-marker {
  padding: 0 0.2em;
  margin: 0 0.2em;
  background: var(--maincolor);
  color: #fff;
}

#pbMarche .u-maincolor {
  color: var(--maincolor);
}

#pbMarche .u-subcolor {
  color: var(--subcolor);
}

#pbMarche .u-hidden {
  display: none;
  visibility: hidden;
}

#pbMarche .c-blockLink a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#pbMarche [data-ruby] {
  position: relative;
  display: inline-block;
  line-height: 1;
}

#pbMarche [data-ruby]:before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  left: 50%;
  font-size: max(0.3em,8px);
  line-height: 1;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

@media screen and (min-width: 801px) {
  #pbMarche .sp {
    display: none !important;
  }
  #pbMarche a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 800px) {
  #pbMarche .pc {
    display: none !important;
  }
}

/* ======== ↑ End common ↑ ======== */
/* ======== ↓ main ↓ ======== */
#cduWrap {
  width: 100%;
  background: #fff;
}

#cduFooter {
  max-width: 1016px;
}

#pbMarche .parallaxWrapper {
  position: relative;
}

#pbMarche .parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  z-index: -1;
}

#pbMarche .parallax .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
}

#pbMarche .parallax .bg > * {
  position: absolute;
}

#pbMarche .parallax .bg > * img {
  width: 100%;
  max-width: none;
}

#pbMarche .parallax .bg .cloud1 {
  top: 33%;
  left: 22.6%;
  width: 61.7578125%;
  -webkit-animation: moveSide 4s ease-in-out 0s infinite alternate forwards running;
          animation: moveSide 4s ease-in-out 0s infinite alternate forwards running;
}

#pbMarche .parallax .bg .cloud2 {
  top: 42%;
  left: 5%;
  width: 89.4875%;
  -webkit-animation: moveSide 6s ease-in-out -2s infinite alternate forwards running;
          animation: moveSide 6s ease-in-out -2s infinite alternate forwards running;
}

#pbMarche .parallax .bg .cloud3 {
  left: 0%;
  bottom: 0%;
  width: 100%;
}

#pbMarche .parallax .bg .balloon1 {
  top: 29%;
  left: 2.7%;
  width: 74.4140625%;
  -webkit-animation: moveVertical 4s ease-in-out 0s infinite alternate forwards running;
          animation: moveVertical 4s ease-in-out 0s infinite alternate forwards running;
}

#pbMarche .parallax .bg .balloon2 {
  top: 23.7%;
  left: 25.7%;
  width: 30.5859375%;
  -webkit-animation: moveVertical 4s ease-in-out -1.33s infinite alternate forwards running;
          animation: moveVertical 4s ease-in-out -1.33s infinite alternate forwards running;
}

#pbMarche .parallax .bg .balloon3 {
  top: 19.7%;
  left: 19.2%;
  width: 78.515625%;
  -webkit-animation: moveVertical 4s ease-in-out -2.66s infinite alternate forwards running;
          animation: moveVertical 4s ease-in-out -2.66s infinite alternate forwards running;
}

@media screen and (max-width: 800px) {
  #pbMarche .parallax .bg .cloud1 {
    left: -12%;
    width: 123.515625%;
  }
  #pbMarche .parallax .bg .cloud2 {
    left: -42%;
    width: 179.375%;
  }
  #pbMarche .parallax .bg .balloon1 {
    width: 148.828125%;
  }
  #pbMarche .parallax .bg .balloon2 {
    top: 52%;
    left: 25.7%;
    width: 61.171875%;
  }
  #pbMarche .parallax .bg .balloon3 {
    top: 8%;
    left: -60%;
    width: 157.03125%;
  }
}

#pbMarche .c-btn a {
  font-family: "UD新丸ゴ B", "UD Shin Maru Go Bold", "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  width: 100%;
  max-width: 15em;
  min-height: 2.86em;
  color: #fff;
  background: #fff;
  border-radius: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.2s cubic-bezier(0, 1, 0.5, 1.5);
  transition: 0.2s cubic-bezier(0, 1, 0.5, 1.5);
  z-index: 1;
}

#pbMarche .c-btn a.center {
  margin-left: auto;
  margin-right: auto;
}

#pbMarche .c-btn a:after {
  content: '';
  position: absolute;
  top: -0.11em;
  left: -0.11em;
  right: -0.11em;
  bottom: -0.11em;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 0.11em solid var(--textcolor);
  -webkit-box-shadow: 0.11em 0.11em 0 0 var(--textcolor);
          box-shadow: 0.11em 0.11em 0 0 var(--textcolor);
  border-radius: inherit;
  z-index: 2;
  -webkit-transition: inherit;
  transition: inherit;
}

#pbMarche .c-btn a:before {
  content: '';
  position: absolute;
  top: 0.22em;
  left: 0.11em;
  width: 100%;
  height: calc(100% - 0.11em);
  background: var(--maincolor);
  border-radius: inherit;
  z-index: 1;
  -webkit-transition: inherit;
  transition: inherit;
}

#pbMarche .c-btn a .wrap {
  width: 100%;
  height: 100%;
  padding: 0.25em 1em;
  display: block;
  position: relative;
  z-index: 3;
}

#pbMarche .c-btn a .wrap:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0.75em;
  bottom: 0;
  margin: auto;
  width: 0.7143em;
  aspect-ratio: 1 / 0.8;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

#pbMarche .c-btn a.blue:before {
  background: var(--subcolor);
}

#pbMarche .c-btn a:hover {
  -webkit-transform: translate(0.11em, 0.11em);
          transform: translate(0.11em, 0.11em);
}

#pbMarche .c-btn a:hover:after {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#pbMarche .c-btn a:hover:before {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
  -webkit-transform: translate(-0.11em, -0.11em);
          transform: translate(-0.11em, -0.11em);
}

#pbMarche .c-btn a:hover .wrap:after {
  right: 0.5em;
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  #pbMarche .c-btn a {
    font-size: 2.34vw;
  }
}

@media screen and (max-width: 800px) {
  #pbMarche .c-btn a {
    font-size: min(3.5vw,28px);
  }
}

#pbMarche .c-ul01 > li {
  padding-left: 1em;
  text-indent: -1em;
}

#pbMarche .c-ul01 > li:before {
  content: '・';
}

#pbMarche .c-noteBlock {
  padding: 20px 70px 70px;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 60px;
}

#pbMarche .c-noteBlock h2 {
  font-family: "UD新丸ゴ B", "UD Shin Maru Go Bold", "Noto Sans JP", sans-serif;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
}

#pbMarche .c-noteBlock h3 {
  font-family: "UD新丸ゴ B", "UD Shin Maru Go Bold", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #ff4e00;
  margin-left: -0.5em;
}

@media screen and (max-width: 1220px) {
  #pbMarche .c-noteBlock {
    padding: 2% 7% 7%;
  }
  #pbMarche .c-noteBlock h2 {
    font-size: 3.84vw;
  }
  #pbMarche .c-noteBlock h3 {
    font-size: 1.34vw;
  }
}

@media screen and (max-width: 800px) {
  #pbMarche .c-noteBlock {
    border-radius: 7.5vw;
  }
  #pbMarche .c-noteBlock h2 {
    font-size: 5vw;
  }
  #pbMarche .c-noteBlock h3 {
    font-size: 3.5vw;
  }
}

#pbMarche .c-scrollWrapper {
  max-height: 50vh;
  overflow: auto;
}

#pbMarche .c-scrollWrapper::-webkit-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--subcolor) rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  width: 8px;
}

#pbMarche .c-scrollWrapper::-webkit-scrollbar-thumb {
  background: var(--subcolor);
  border-radius: 4px;
}

#pbMarche #totop {
  position: absolute;
  right: 0.6vw;
  bottom: 0.9vw;
  width: 9.87vw;
  max-width: 148px;
  aspect-ratio: 1 / 1.216;
  z-index: 15;
  pointer-events: none;
  -webkit-transition: 0.5s cubic-bezier(0.5, -1, 0.5, 2);
  transition: 0.5s cubic-bezier(0.5, -1, 0.5, 2);
  -webkit-transform: translateY(150%);
          transform: translateY(150%);
}

#pbMarche #totop.active {
  -webkit-transform: none;
          transform: none;
  pointer-events: auto;
}

@media screen and (max-width: 800px) {
  #pbMarche #totop {
    right: 2vw;
    bottom: 2vw;
    width: 18.5vw;
  }
}

#pbMarche .p-kv {
  padding-top: 58.28125%;
  overflow: hidden;
  position: relative;
}

#pbMarche .p-kv > * {
  position: absolute;
}

#pbMarche .p-kv img {
  width: 100%;
  max-width: none;
}

#pbMarche .p-kv .bg {
  top: 0%;
  left: 0%;
  width: 100%;
}

#pbMarche .p-kv .cloud1 {
  top: 27.4%;
  left: 0%;
  width: 100%;
}

#pbMarche .p-kv .cloud2 {
  top: 1.9%;
  left: 0%;
  width: 6.796875%;
}

#pbMarche .p-kv .cloud3 {
  top: 2.3%;
  right: 0%;
  width: 7.265625%;
}

#pbMarche .p-kv .cloud4 {
  top: 10.4%;
  left: 21.9%;
  width: 8.59375%;
}

#pbMarche .p-kv .cloud5 {
  top: 11.1%;
  left: 79%;
  width: 8.0078125%;
}

#pbMarche .p-kv .confetti {
  top: 0%;
  left: 0%;
  width: 100%;
}

#pbMarche .p-kv .building {
  top: 8.3%;
  left: 0%;
  width: 100%;
}

#pbMarche .p-kv .flag {
  top: 0%;
  left: 0%;
  width: 100%;
}

#pbMarche .p-kv .ground {
  bottom: 0%;
  left: 0%;
  width: 100%;
}

#pbMarche .p-kv .balloon1 {
  top: 26.7%;
  left: 7.8%;
  width: 2.6171875%;
}

#pbMarche .p-kv .balloon1 img {
  -webkit-animation: balloonL 4s linear 0s infinite normal forwards running;
          animation: balloonL 4s linear 0s infinite normal forwards running;
}

#pbMarche .p-kv .balloon2 {
  top: 6.2%;
  left: 22.4%;
  width: 2.4609375%;
}

#pbMarche .p-kv .balloon2 img {
  -webkit-animation: balloonL 4s linear -1.5s infinite normal forwards running;
          animation: balloonL 4s linear -1.5s infinite normal forwards running;
}

#pbMarche .p-kv .balloon3 {
  top: 21.5%;
  left: 73.9%;
  width: 3.203125%;
}

#pbMarche .p-kv .balloon3 img {
  -webkit-animation: balloonR 4s linear -0.75s infinite normal forwards running;
          animation: balloonR 4s linear -0.75s infinite normal forwards running;
}

#pbMarche .p-kv .balloon4 {
  top: 7.2%;
  left: 79.9%;
  width: 2.4609375%;
}

#pbMarche .p-kv .balloon4 img {
  -webkit-animation: balloonR 4s linear -2s infinite normal forwards running;
          animation: balloonR 4s linear -2s infinite normal forwards running;
}

#pbMarche .p-kv .balloon5 {
  top: 49.8%;
  left: 4.2%;
  width: 6.015625%;
}

#pbMarche .p-kv .balloon6 {
  top: 48.4%;
  left: 72.8%;
  width: 6.7578125%;
}

#pbMarche .p-kv .balloon7 {
  top: 51%;
  left: 91.6%;
  width: 6.015625%;
}

#pbMarche .p-kv .img1 {
  top: 30.7%;
  left: 9.4%;
  width: 20.546875%;
}

#pbMarche .p-kv .img1 img {
  -webkit-animation: kvImg1 0.7s ease-in-out 0s infinite alternate forwards running;
          animation: kvImg1 0.7s ease-in-out 0s infinite alternate forwards running;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

@-webkit-keyframes kvImg1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05, 0.95);
            transform: scale(1.05, 0.95);
  }
}

@keyframes kvImg1 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.05, 0.95);
            transform: scale(1.05, 0.95);
  }
}

#pbMarche .p-kv .catch1 {
  top: 4.8%;
  left: 29.5%;
  width: 40.9765625%;
}

#pbMarche .p-kv .logo1 {
  top: 13.3%;
  left: 24.8%;
  width: 50.3515625%;
}

#pbMarche .p-kv .catch2 {
  top: 43.2%;
  left: 32.4%;
  width: 35.3515625%;
}

#pbMarche .p-kv .catch3 {
  top: 25.2%;
  left: 76.2%;
  width: 14.9609375%;
}

#pbMarche .p-kv .catch3 img {
  -webkit-animation: kvCatch3 0.7s ease-in-out 0s infinite alternate forwards running;
          animation: kvCatch3 0.7s ease-in-out 0s infinite alternate forwards running;
}

@-webkit-keyframes kvCatch3 {
  0% {
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
  }
  100% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

@keyframes kvCatch3 {
  0% {
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
  }
  100% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

#pbMarche .p-kv .logo2 {
  top: 2.3%;
  right: 1.3%;
  width: 12.6171875%;
}

#pbMarche .p-kv .c-btn {
  top: 61.9%;
  left: 36%;
  width: 28.0078125%;
}

#pbMarche .p-kv .c-btn a {
  max-width: none;
  -webkit-box-shadow: 0 0 0 3px #fff;
          box-shadow: 0 0 0 3px #fff;
}

#pbMarche .p-kv .c-btn a:before {
  -webkit-box-shadow: 0 0 0 3px #fff;
          box-shadow: 0 0 0 3px #fff;
}

/*2025/10/09:start*/
#pbMarche .p-kv .attention {
  top: 75%;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.2s ease 3s;
  transition: 0.2s ease 3s;
}
/*2025/10/09:end*/

#pbMarche .p-kv.js-scroll .ground {
  -webkit-transition: 3s ease 0.3s;
  transition: 3s ease 0.3s;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#pbMarche .p-kv.js-scroll .building {
  -webkit-transition: 2s ease 0.8s;
  transition: 2s ease 0.8s;
  opacity: 0;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  -webkit-filter: blur(5px) brightness(0.7);
          filter: blur(5px) brightness(0.7);
}

#pbMarche .p-kv.js-scroll .flag {
  -webkit-transition: 1.2s cubic-bezier(0.33, 0, 0.33, 2) 1.2s;
  transition: 1.2s cubic-bezier(0.33, 0, 0.33, 2) 1.2s;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

#pbMarche .p-kv.js-scroll .confetti {
  -webkit-transition: 1s cubic-bezier(0, 1, 0, 1) 1.5s;
  transition: 1s cubic-bezier(0, 1, 0, 1) 1.5s;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

#pbMarche .p-kv.js-scroll .balloon1, #pbMarche .p-kv.js-scroll .balloon2, #pbMarche .p-kv.js-scroll .balloon3, #pbMarche .p-kv.js-scroll .balloon4 {
  -webkit-transition: 1s ease 1.5s;
  transition: 1s ease 1.5s;
}

#pbMarche .p-kv.js-scroll .balloon5, #pbMarche .p-kv.js-scroll .balloon6, #pbMarche .p-kv.js-scroll .balloon7 {
  -webkit-transition: 1.5s ease 1.5s;
  transition: 1.5s ease 1.5s;
  opacity: 0;
  -webkit-transform: translateY(3vw);
          transform: translateY(3vw);
}

#pbMarche .p-kv.js-scroll .catch1, #pbMarche .p-kv.js-scroll .catch2, #pbMarche .p-kv.js-scroll .catch3, #pbMarche .p-kv.js-scroll .logo1, #pbMarche .p-kv.js-scroll .c-btn {
  -webkit-transition: 1s cubic-bezier(0.2, 0, 0, 1.5) 1.7s;
  transition: 1s cubic-bezier(0.2, 0, 0, 1.5) 1.7s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

#pbMarche .p-kv.js-scroll .catch1 {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

#pbMarche .p-kv.js-scroll .catch2 {
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

#pbMarche .p-kv.js-scroll .catch3 {
  -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0.5, 1.5) 2.5s;
  transition: 0.5s cubic-bezier(0.5, 0, 0.5, 1.5) 2.5s;
}

#pbMarche .p-kv.js-scroll .c-btn {
  -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0.5, 1.5) 2.5s;
  transition: 0.5s cubic-bezier(0.5, 0, 0.5, 1.5) 2.5s;
}

#pbMarche .p-kv.js-scroll .img1 {
  -webkit-transition: 0.8s cubic-bezier(0.3, 0, 0.1, 1.5) 3s;
  transition: 0.8s cubic-bezier(0.3, 0, 0.1, 1.5) 3s;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

#pbMarche .p-kv.js-scroll .logo2 {
  -webkit-transition: 2s ease 3s;
  transition: 2s ease 3s;
  opacity: 0;
}

#pbMarche .p-kv.is-scroll .ground {
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

#pbMarche .p-kv.is-scroll .building, #pbMarche .p-kv.is-scroll .confetti, #pbMarche .p-kv.is-scroll .catch1, #pbMarche .p-kv.is-scroll .catch2, #pbMarche .p-kv.is-scroll .catch3, #pbMarche .p-kv.is-scroll .logo1, #pbMarche .p-kv.is-scroll .c-btn, #pbMarche .p-kv.is-scroll .balloon1, #pbMarche .p-kv.is-scroll .balloon2, #pbMarche .p-kv.is-scroll .balloon3, #pbMarche .p-kv.is-scroll .balloon4, #pbMarche .p-kv.is-scroll .balloon5, #pbMarche .p-kv.is-scroll .balloon6, #pbMarche .p-kv.is-scroll .balloon7, #pbMarche .p-kv.is-scroll .logo2 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

#pbMarche .p-kv.is-scroll .flag, #pbMarche .p-kv.is-scroll .img1 {
  -webkit-transform: none;
          transform: none;
}
/*2025/10/09:start*/
#pbMarche .p-kv.is-scroll .attention {
  opacity: 1;
}
/*2025/10/09:end*/

@media screen and (max-width: 800px) {
  #pbMarche .p-kv {
    padding-top: 99.5%;
  }
  #pbMarche .p-kv .cloud4 {
    left: 2%;
    width: 14.7%;
  }
  #pbMarche .p-kv .cloud5 {
    left: 99%;
    width: 13.7%;
  }
  #pbMarche .p-kv .confetti {
    left: -35%;
    width: 170%;
  }
  #pbMarche .p-kv .building {
    left: -35.5%;
    width: 171%;
  }
  #pbMarche .p-kv .balloon1 {
    top: 17.4%;
    left: 5%;
    width: 4.5%;
  }
  #pbMarche .p-kv .balloon2 {
    top: 1%;
    left: 3.4%;
    width: 4.2%;
  }
  #pbMarche .p-kv .balloon3 {
    top: 21.5%;
    left: 90.9%;
    width: 5.5%;
  }
  #pbMarche .p-kv .balloon4 {
    width: 4.2%;
  }
  #pbMarche .p-kv .balloon5 {
    top: 34%;
    left: 1.5%;
    width: 10.3%;
  }
  #pbMarche .p-kv .balloon6 {
    top: 35.6%;
    left: 87.8%;
    width: 11.6%;
  }
  #pbMarche .p-kv .balloon7 {
    top: 42%;
    left: 75.6%;
    width: 10.3%;
  }
  #pbMarche .p-kv .img1 {
    top: 46.8%;
    left: 1.2%;
    width: 24.6%;
  }
  #pbMarche .p-kv .catch1 {
    left: 16.8%;
    width: 66.7%;
  }
  #pbMarche .p-kv .logo1 {
    top: 16.3%;
    left: 10.5%;
    width: 78.8%;
  }
  #pbMarche .p-kv .catch2 {
    top: 43.7%;
    left: 22.2%;
    width: 55.6%;
  }
  #pbMarche .p-kv .catch3 {
    top: 47%;
    left: 77.65%;
    width: 20.7%;
  }
  #pbMarche .p-kv .logo2 {
    top: 1.8%;
    right: 1.8%;
    width: 13.1%;
  }
  #pbMarche .p-kv .c-btn {
    left: 26%;
    width: 47.7%;
  }
  /*2025/10/09:start*/
  #pbMarche .p-kv .attention {
    top: 82%;
  }
  /*2025/10/09:end*/
}

#pbMarche .p-pickup {
  margin-top: -12.1vw;
  padding-top: 13px;
}

#pbMarche .p-pickup h2 {
  font-size: 30px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.5em;
  margin: 0 auto;
  position: relative;
}

#pbMarche .p-pickup h2:before, #pbMarche .p-pickup h2:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.067em;
  aspect-ratio: 1 / 1.09375;
}

#pbMarche .p-pickup h2:before {
  left: 0;
}

#pbMarche .p-pickup h2:after {
  right: 0;
}

#pbMarche .p-pickup_slider {
  margin-top: 10px;
  padding-bottom: 0.4vw;
  min-height: 18.57067vw;
  overflow: visible;
}

#pbMarche .p-pickup_slider .swiper-wrapper {
  margin-left: -4%;
}

#pbMarche .p-pickup_slider .swiper-slide {
  width: 25.974% !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-top: 2.4%;
}

#pbMarche .p-pickup_slider .swiper-slide img {
  width: 100%;
  max-width: none;
}

#pbMarche .p-pickup_slider .swiper-slide > * {
  -webkit-box-shadow: 0 0 0 0.4vw #fff;
          box-shadow: 0 0 0 0.4vw #fff;
  border-radius: 0.2vw;
  margin: 0 15px;
  display: block;
}

#pbMarche .p-pickup_slider .swiper-slide-active {
  width: 33.974% !important;
  padding-top: 0;
}

#pbMarche .p-pickup_slider .swiper-button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #ffa233;
  border: 3px solid var(--textcolor);
  font-size: 26px;
  width: 2.3077em;
  height: 3.077em;
  cursor: pointer;
  z-index: 1;
}

#pbMarche .p-pickup_slider .swiper-button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  font-size: inherit;
  width: 1em;
  aspect-ratio: 1 / 0.76923;
}

#pbMarche .p-pickup_slider .swiper-button.prev {
  left: 0;
  border-left: none;
  border-radius: 0 1.54em 1.54em 0;
}

#pbMarche .p-pickup_slider .swiper-button.prev:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#pbMarche .p-pickup_slider .swiper-button.next {
  right: 0;
  border-right: none;
  border-radius: 1.54em 0 0 1.54em;
}

@media screen and (max-width: 1220px) {
  #pbMarche .p-pickup {
    padding-top: 2%;
  }
}

@media screen and (max-width: 800px) {
  #pbMarche .p-pickup {
    background-size: contain !important;
  }
  #pbMarche .p-pickup h2 {
    font-size: 6.5vw;
  }
  #pbMarche .p-pickup_slider {
    min-height: 43.2vw;
  }
  #pbMarche .p-pickup_slider .swiper-wrapper {
    margin-left: -6%;
  }
  #pbMarche .p-pickup_slider .swiper-slide {
    width: 66.67% !important;
    padding-top: 3%;
  }
  #pbMarche .p-pickup_slider .swiper-slide > * {
    -webkit-box-shadow: 0 0 0 0.8vw #fff;
            box-shadow: 0 0 0 0.8vw #fff;
    border-radius: 0.4vw;
    margin: 0 1.875vw;
  }
  #pbMarche .p-pickup_slider .swiper-slide-active {
    width: 78.67% !important;
    padding-top: 0;
  }
  #pbMarche .p-pickup_slider .swiper-button {
    font-size: 4.5vw;
  }
}

#pbMarche .p-category {
  padding-top: 80px;
}

#pbMarche .p-category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

#pbMarche .p-category_list > li > a {
  font-family: "UD新丸ゴ B", "UD Shin Maru Go Bold", "Noto Sans JP", sans-serif;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  min-height: 4.61538em;
  background: #fff;
  border-radius: 1.5385em;
  display: block;
  position: relative;
  -webkit-transition: 0.2s cubic-bezier(0, 1, 0.5, 1.5);
  transition: 0.2s cubic-bezier(0, 1, 0.5, 1.5);
  z-index: 1;
}

#pbMarche .p-category_list > li > a:after {
  content: '';
  position: absolute;
  top: -0.12em;
  left: -0.12em;
  right: -0.12em;
  bottom: -0.12em;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 0.12em solid currentColor;
  border-radius: inherit;
  z-index: 2;
  -webkit-transition: inherit;
  transition: inherit;
}

#pbMarche .p-category_list > li > a:before {
  content: '';
  position: absolute;
  top: 0.24em;
  left: 0.12em;
  width: 100%;
  height: calc(100% - 0.12em);
  background: #fc7f48;
  border-radius: inherit;
  z-index: 1;
  -webkit-transition: inherit;
  transition: inherit;
}

#pbMarche .p-category_list > li > a .wrap {
  width: 100%;
  min-height: 4.61538em;
  padding: 0.25em 0.25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 3;
}

#pbMarche .p-category_list > li > a .wrap:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5em;
  margin: auto;
  width: 0.6923em;
  aspect-ratio: 1 / 0.5555;
  -webkit-transition: 0.15s;
  transition: 0.15s;
}

#pbMarche .p-category_list > li > a:hover {
  -webkit-transform: translate(0.12em, 0.12em);
          transform: translate(0.12em, 0.12em);
}

#pbMarche .p-category_list > li > a:hover:after {
  -webkit-box-shadow: none;
          box-shadow: none;
}

#pbMarche .p-category_list > li > a:hover:before {
  background: #50c3f3;
  -webkit-transform: translate(-0.12em, -0.12em);
          transform: translate(-0.12em, -0.12em);
}

#pbMarche .p-category_list > li > a:hover .wrap:after {
  bottom: 0.3em;
}

#pbMarche .p-category_list.js-scroll > li {
  -webkit-transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 1s;
  transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 1s;
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

#pbMarche .p-category_list.is-scroll > li {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@media screen and (min-width: 801px) {
  #pbMarche .p-category_list {
    max-width: 954px;
    margin: 56px auto 0;
  }
  #pbMarche .p-category_list > li {
    width: calc(calc(100% - 90px) / 4);
  }
}

@media screen and (max-width: 1220px) {
  #pbMarche .p-category {
    padding-top: 8%;
  }
  #pbMarche .p-category_list > li > a {
    font-size: 2.16vw;
  }
}

@media screen and (max-width: 800px) {
  #pbMarche .p-category_list {
    gap: 3.75vw;
    margin-top: 5%;
  }
  #pbMarche .p-category_list > li {
    width: calc(calc(100% - 7.5vw) / 3);
  }
  #pbMarche .p-category_list > li > a {
    font-size: 3.25vw;
  }
}

#pbMarche .p-recommend {
  padding-top: 115px;
}

#pbMarche .p-recommend h3 {
  font-family: "UD新丸ゴ B", "UD Shin Maru Go Bold", "Noto Sans JP", sans-serif;
  font-size: 40px;
  text-align: center;
  letter-spacing: -0.05em;
  width: 15em;
  max-width: 100%;
  aspect-ratio: 1 / 0.19;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding-top: 0.4em;
  position: absolute;
  top: -1.25em;
  left: 0;
  right: 0;
  margin: auto;
}

#pbMarche .p-recommend .catBlock {
  padding: 115px 38.5px 60px;
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

#pbMarche .p-recommend .catBlock + .catBlock {
  margin-top: 135px;
}

#pbMarche .p-recommend .catBlock:before, #pbMarche .p-recommend .catBlock:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  pointer-events: none;
  z-index: -1;
}

#pbMarche .p-recommend .catBlock:before {
  background: rgba(255, 255, 255, 0.84);
  -webkit-transform: translate(8px, 8px);
          transform: translate(8px, 8px);
}

#pbMarche .p-recommend .catBlock:after {
  border: 3px solid var(--textcolor);
}

#pbMarche .p-recommend_slider {
  overflow: hidden;
}

#pbMarche .p-recommend_sliderWrapper {
  position: relative;
}

#pbMarche .p-recommend_sliderWrapper .swiper-button {
  position: absolute;
  top: 27%;
  font-size: 23px;
  width: 2.6087em;
  height: 2.6087em;
  background: var(--subcolor);
  border: 0.14em solid #fff;
  border-radius: 50%;
  z-index: 2;
  cursor: pointer;
}

#pbMarche .p-recommend_sliderWrapper .swiper-button:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1em;
  aspect-ratio: 1 / 0.73913;
  font-size: inherit;
}

#pbMarche .p-recommend_sliderWrapper .swiper-button.prev {
  left: -1.2em;
}

#pbMarche .p-recommend_sliderWrapper .swiper-button.prev:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#pbMarche .p-recommend_sliderWrapper .swiper-button.next {
  right: -1.2em;
}

#pbMarche .p-recommend_slider a {
  display: block;
}

#pbMarche .p-recommend_slider a:hover .img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

#pbMarche .p-recommend_slider a:hover .name {
  color: var(--maincolor);
}

#pbMarche .p-recommend_slider .img {
  width: 100%;
  aspect-ratio: 1 / 0.99613;
  overflow: hidden;
  position: relative;
}

#pbMarche .p-recommend_slider .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
  transition: 0.3s cubic-bezier(0.2, 0, 0, 1);
}

#pbMarche .p-recommend_slider .name {
  font-family: "UD新丸ゴ B", "UD Shin Maru Go Bold", "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin-top: 1em;
}

@media screen and (max-width: 1220px) {
  #pbMarche .p-recommend {
    padding-top: 12%;
  }
  #pbMarche .p-recommend h3 {
    font-size: 3.34vw;
  }
  #pbMarche .p-recommend .catBlock {
    padding: 12% 4% 6%;
    margin-top: 10%;
  }
  #pbMarche .p-recommend .catBlock + .catBlock {
    margin-top: 14%;
  }
}

@media screen and (max-width: 800px) {
  #pbMarche .p-recommend h3 {
    font-size: 5vw;
  }
  #pbMarche .p-recommend .catBlock:before, #pbMarche .p-recommend .catBlock:after {
    border-radius: 7.5vw;
  }
  #pbMarche .p-recommend .catBlock:before {
    -webkit-transform: translate(1vw, 1vw);
            transform: translate(1vw, 1vw);
  }
  #pbMarche .p-recommend .catBlock:after {
    border-width: 0.7vw;
  }
  #pbMarche .p-recommend_sliderWrapper .swiper-button {
    font-size: 4vw;
  }
  #pbMarche .p-recommend_sliderWrapper .swiper-button.prev {
    left: -2em;
  }
  #pbMarche .p-recommend_sliderWrapper .swiper-button.next {
    right: -2em;
  }
}

#pbMarche .p-terms {
  padding: 110px 0 85px;
}

@media screen and (max-width: 1220px) {
  #pbMarche .p-terms {
    padding: 11% 0 9%;
  }
}

/* Animation */
.js-scroll.fadeInUp {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.js-scroll.fadeInLeft {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-scroll.fadeInRight {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-scroll.fadeInZoom {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-scroll.fadeInPop {
  -webkit-transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.js-scroll.fadeInMask {
  -webkit-transition: 3s ease 0.3s;
  transition: 3s ease 0.3s;
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(49%, transparent), color-stop(51%, #000));
  -webkit-mask-image: linear-gradient(-90deg, transparent 49%, #000 51%);
          mask-image: -webkit-gradient(linear, right top, left top, color-stop(49%, transparent), color-stop(51%, #000));
          mask-image: linear-gradient(-90deg, transparent 49%, #000 51%);
  -webkit-mask-size: 300%;
          mask-size: 300%;
  -webkit-mask-position: 100%;
          mask-position: 100%;
}

.js-scroll.is-scroll.fadeInUp, .js-scroll.is-scroll.fadeInLeft, .js-scroll.is-scroll.fadeInRight, .js-scroll.is-scroll.fadeInZoom, .js-scroll.is-scroll.fadeInPop {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.js-scroll.is-scroll.fadeInMask {
  -webkit-mask-position: 0%;
          mask-position: 0%;
}

@-webkit-keyframes balloonL {
  0% {
    opacity: 0;
    -webkit-transform: translate(5vw, 200%);
            transform: translate(5vw, 200%);
  }
  25% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
    -webkit-transform: translate(-5vw, -200%);
            transform: translate(-5vw, -200%);
  }
}

@keyframes balloonL {
  0% {
    opacity: 0;
    -webkit-transform: translate(5vw, 200%);
            transform: translate(5vw, 200%);
  }
  25% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
    -webkit-transform: translate(-5vw, -200%);
            transform: translate(-5vw, -200%);
  }
}

@-webkit-keyframes balloonR {
  0% {
    opacity: 0;
    -webkit-transform: translate(-5vw, 200%);
            transform: translate(-5vw, 200%);
  }
  25% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
    -webkit-transform: translate(5vw, -200%);
            transform: translate(5vw, -200%);
  }
}

@keyframes balloonR {
  0% {
    opacity: 0;
    -webkit-transform: translate(-5vw, 200%);
            transform: translate(-5vw, 200%);
  }
  25% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
    -webkit-transform: translate(5vw, -200%);
            transform: translate(5vw, -200%);
  }
}

@-webkit-keyframes moveSide {
  0% {
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
}

@keyframes moveSide {
  0% {
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
  100% {
    -webkit-transform: translateX(15px);
            transform: translateX(15px);
  }
}

@-webkit-keyframes moveVertical {
  0% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}

@keyframes moveVertical {
  0% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
}

/* ======== ↑ End main ↑ ======== */
