@charset "UTF-8";
:root {
  --maincolor: #fc0;
  --subcolor: #fff;
  --textcolor: #000;
  --container: 1200px;
}

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

@media screen and (min-width: 801px) and (max-width: 1220px) {
  #contentsWrapper {
    font-size: 1.32vw;
  }
}

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

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

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

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

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

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

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

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

#contentsWrapper .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) {
  #contentsWrapper .widthWrapper {
    padding-left: 2%;
    padding-right: 2%;
  }
}

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

#contentsWrapper .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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 800px) {
  #contentsWrapper .font-10 {
    font-size: 2.375vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 2.7vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 2.975vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 3.2vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 3.375vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 3.5vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 3.575vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 3.6vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 3.575vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 3.5vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 3.375vw !important;
  }
}

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

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

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

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

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

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

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

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

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

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

#contentsWrapper .u-bold {
  font-weight: bold;
}

#contentsWrapper .u-bg {
  background: #fffc01;
  padding: 0 0.2em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

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

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

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

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

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

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

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

#contentsWrapper [data-ruby]:before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  left: 50%;
  font-size: max(0.3em,8px);
  font-family: "UD新丸ゴ M", "UD Shin Maru Go Medium", "Noto Sans JP", sans-serif;
  line-height: 1;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

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

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

#includeFooter {
  position: relative;
  z-index: 11;
}

/* ======== ↑ End common ↑ ======== */
/* ======== ↓ main ↓ ======== */
#contentsWrapper .parallaxWrapper {
  position: relative;
}

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

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

#contentsWrapper .parallax.--bg01 {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.26vw), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.26vw), 0 100%);
}

#contentsWrapper .parallax.--bg01 .bg {
  background: url(../images/bg01.jpg) repeat-y center/cover;
}

#contentsWrapper .parallax.--bg02 {
  height: calc(100% + 8.26vw);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.26vw), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.26vw), 0 100%);
  margin-top: -8.26vw;
  z-index: -2;
}

#contentsWrapper .parallax.--bg02 .bg {
  background: url(../images/bg02.jpg) repeat-y center/cover;
}

#contentsWrapper .parallax.--bg03 {
  height: calc(100% + 16.52vw);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.26vw), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.26vw), 0 100%);
  margin-top: -16.52vw;
  z-index: -3;
}

#contentsWrapper .parallax.--bg03 .bg {
  background: url(../images/bg03.jpg) repeat-y center/cover;
}

#contentsWrapper .parallax.--bg04 {
  height: calc(100% + 24.78vw);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.26vw), 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.26vw), 0 100%);
  margin-top: -24.78vw;
  z-index: -4;
}

#contentsWrapper .parallax.--bg04 .bg {
  background: url(../images/bg04.jpg) repeat-y center/cover;
}

#contentsWrapper .parallax.--bg05 {
  height: calc(100% + 41.3vw);
  margin-top: -41.3vw;
  z-index: -5;
}

#contentsWrapper .parallax.--bg05 .bg {
  background: url(../images/bg05.jpg) repeat-y center/cover;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .parallax {
    background-size: auto 100vh;
  }
}

#contentsWrapper h2.heading {
  font-size: 64px;
}

#contentsWrapper h2.heading img {
  width: 7.203125em;
  max-width: 38.417%;
  margin: 0 auto;
  font-size: inherit;
}

#contentsWrapper h2.heading.--line {
  padding-bottom: 0.5625em;
  position: relative;
}

#contentsWrapper h2.heading.--line:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 2.46875em;
  height: 0.15625em;
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #f08300), color-stop(30%, transparent), color-stop(34%, transparent), color-stop(34%, #fabe00), color-stop(66%, #fabe00), color-stop(66%, transparent), color-stop(70%, transparent), color-stop(70%, #0081cc), to(#0081cc));
  background: linear-gradient(90deg, #f08300 30%, transparent 30%, transparent 34%, #fabe00 34%, #fabe00 66%, transparent 66%, transparent 70%, #0081cc 70%, #0081cc);
}

#contentsWrapper h2.heading.js-scroll img {
  -webkit-transition: 0.6s cubic-bezier(0.2, 0, 0.2, 1.05) 0.3s;
  transition: 0.6s cubic-bezier(0.2, 0, 0.2, 1.05) 0.3s;
  opacity: 0;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
}

#contentsWrapper h2.heading.js-scroll:after {
  -webkit-transition: 1s ease 0.6s;
  transition: 1s ease 0.6s;
  opacity: 0;
}

#contentsWrapper h2.heading.is-scroll img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#contentsWrapper h2.heading.is-scroll:after {
  opacity: 1;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper h2.heading {
    font-size: 5.4vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper h2.heading {
    font-size: 8vw;
  }
  #contentsWrapper h2.heading img {
    max-width: 50%;
  }
}

#contentsWrapper .c-btn a {
  font-family: "UD新ゴ M", "UD Shin Go Medium", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 23.96em;
  min-height: 2.6em;
  color: #fff;
  background: rgba(4, 44, 56, 0.8);
  border: 2px solid #cbcbcb;
  padding: 0.25em 1em;
  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;
  transition: 0.2s;
}

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

#contentsWrapper .c-btn a:before, #contentsWrapper .c-btn a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0.6em;
  bottom: 0;
  margin: auto;
  width: 0.375em;
  height: 0.605em;
  background: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#contentsWrapper .c-btn a:before {
  top: -25.5%;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

#contentsWrapper .c-btn a:after {
  bottom: -25.5%;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
}

#contentsWrapper .c-btn a:hover {
  background: #042c38;
}

#contentsWrapper .c-btn a:hover:before, #contentsWrapper .c-btn a:hover:after {
  right: 0.3em;
}

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

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

#contentsWrapper .c-iframeWrapper {
  max-width: 1098px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

#contentsWrapper .c-iframeWrapper > iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contentsWrapper .c-copyright {
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .c-copyright {
    font-size: max(2.8vw,12px);
  }
}

#contentsWrapper .p-kv {
  position: relative;
  background: #fff;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, #000), to(transparent));
  -webkit-mask-image: linear-gradient(#000 95%, transparent);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(95%, #000), to(transparent));
          mask-image: linear-gradient(#000 95%, transparent);
  overflow: hidden;
}

#contentsWrapper .p-kv > *:not(.img) {
  position: absolute;
}

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

#contentsWrapper .p-kv .logo {
  top: 4.9%;
  left: 21.6%;
  width: 56.867%;
}

#contentsWrapper .p-kv .catch {
  top: 79.9%;
  left: 11.7%;
  width: 76.6%;
}

#contentsWrapper .p-kv.js-scroll .img {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  -webkit-filter: contrast(0) brightness(2);
          filter: contrast(0) brightness(2);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#contentsWrapper .p-kv.js-scroll .logo {
  -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0.1, 1.05) 1s;
  transition: 0.5s cubic-bezier(0.5, 0, 0.1, 1.05) 1s;
  opacity: 0;
  -webkit-transform: scale(3);
          transform: scale(3);
  -webkit-filter: blur(4px) contrast(0) brightness(2);
          filter: blur(4px) contrast(0) brightness(2);
}

#contentsWrapper .p-kv.js-scroll .catch {
  -webkit-transition: 0.15s ease 1.6s;
  transition: 0.15s ease 1.6s;
  opacity: 0;
  -webkit-transform: scale(1.5, 0.5);
          transform: scale(1.5, 0.5);
}

#contentsWrapper .p-kv.is-scroll .img {
  -webkit-filter: contrast(1) brightness(1);
          filter: contrast(1) brightness(1);
  -webkit-transform: scale(1);
          transform: scale(1);
}

#contentsWrapper .p-kv.is-scroll .logo {
  opacity: 1;
  -webkit-filter: blur(0) contrast(1) brightness(1);
          filter: blur(0) contrast(1) brightness(1);
  -webkit-transform: scale(1);
          transform: scale(1);
}

#contentsWrapper .p-kv.is-scroll .catch {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#contentsWrapper .p-movie {
  padding-top: 58px;
  padding-bottom: 205px;
}

#contentsWrapper .p-movie .dec {
  position: absolute;
  z-index: 1;
}

#contentsWrapper .p-movie .dec img {
  width: 100%;
  max-width: none;
  -webkit-transition: 0.7s cubic-bezier(0.1, 0.75, 0.5, 1);
  transition: 0.7s cubic-bezier(0.1, 0.75, 0.5, 1);
}

#contentsWrapper .p-movie .dec.dec1 {
  top: -4.8%;
  right: -10.8%;
  width: 19.7084%;
}

#contentsWrapper .p-movie .dec.dec2 {
  bottom: -9.4%;
  left: -11.8%;
  width: 16.04167%;
}

#contentsWrapper .p-movie .c-iframeWrapper {
  z-index: 2;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-movie {
    padding-top: 5%;
    padding-bottom: 17%;
  }
  #contentsWrapper .p-movie .dec.dec1 {
    top: -12%;
    right: 0%;
  }
  #contentsWrapper .p-movie .dec.dec2 {
    top: -15%;
    left: 2%;
    bottom: auto;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-movie {
    padding-top: 8%;
  }
}

#contentsWrapper .p-size {
  padding-bottom: 45px;
}

#contentsWrapper .p-size .inner {
  width: 1387px;
  max-width: 100%;
  aspect-ratio: 1 / 0.69467;
  margin: -25px auto 0;
  background: url(../images/size_bg01.png) no-repeat center top/contain;
}

#contentsWrapper .p-size h2 {
  padding-top: 17px;
}

#contentsWrapper .p-size .group1 {
  position: relative;
  aspect-ratio: 1 / 0.41;
}

#contentsWrapper .p-size .group1 > * {
  position: absolute;
}

#contentsWrapper .p-size .group1 > * img {
  width: 100%;
  max-width: none;
}

#contentsWrapper .p-size .group1 .choco {
  top: 11.4%;
  left: 8.55%;
  width: 36.2654%;
}

#contentsWrapper .p-size .group1 .capsule {
  top: 30.5%;
  left: 42.8%;
  width: 23.468%;
}

#contentsWrapper .p-size .group1 .figure {
  top: 20.3%;
  left: 67.8%;
  width: 24.838%;
}

#contentsWrapper .p-size .group1.js-scroll > * {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

#contentsWrapper .p-size .group1.js-scroll > *:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#contentsWrapper .p-size .group1.js-scroll > *:nth-child(3) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

#contentsWrapper .p-size .group1.is-scroll > * {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-size .txt1 {
  width: 82.12%;
  margin: 25px 0 0 6.7%;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-size {
    padding-bottom: 10%;
  }
  #contentsWrapper .p-size .inner {
    width: 92%;
  }
  #contentsWrapper .p-size h2 {
    padding-top: 1.4vw;
  }
  #contentsWrapper .p-size .txt1 {
    width: 70%;
    margin: 2% 0 0 13%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-size {
    padding-top: 10%;
  }
}

#contentsWrapper .p-about {
  padding-top: 45px;
  padding-bottom: 180px;
}

#contentsWrapper .p-about .block {
  position: relative;
}

#contentsWrapper .p-about .block h3 {
  font-size: 54px;
  padding-bottom: 0.5em;
  position: relative;
}

#contentsWrapper .p-about .block h3:after {
  content: '';
  position: absolute;
  left: 0.1em;
  bottom: 0;
  width: 2.13em;
  aspect-ratio: 1 / 0.074;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #5c3723), color-stop(50%, #fff));
  background: linear-gradient(90deg, #5c3723 50%, #fff 50%);
}

#contentsWrapper .p-about .block .img {
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-about .block .txt {
  font-size: 30px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  color: #5c3723;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.3em;
}

#contentsWrapper .p-about .block + * {
  margin-top: 80px;
}

#contentsWrapper .p-about .block1 {
  margin-top: 12px;
}

#contentsWrapper .p-about .block2 .dec {
  position: absolute;
  top: -78%;
  left: -10.2%;
  width: 20.75%;
}

#contentsWrapper .p-about .block3 .dec {
  position: absolute;
  top: -86.5%;
  right: -10.8%;
  width: 29.0417%;
}

#contentsWrapper .p-about .dec img {
  -webkit-transition: 0.7s cubic-bezier(0.1, 0.75, 0.5, 1);
  transition: 0.7s cubic-bezier(0.1, 0.75, 0.5, 1);
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-about .block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 1%;
  }
  #contentsWrapper .p-about .block .img {
    width: 49.916%;
  }
  #contentsWrapper .p-about .block .content {
    width: 49.084%;
  }
  #contentsWrapper .p-about .block.--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #contentsWrapper .p-about .block.--reverse h3, #contentsWrapper .p-about .block.--reverse .txt {
    margin-left: auto;
  }
  #contentsWrapper .p-about .block.--reverse h3:after {
    left: auto;
    right: 0.1em;
  }
  #contentsWrapper .p-about .block1 .img img {
    position: relative;
    top: -4%;
    width: 102.93%;
    max-width: none;
  }
  #contentsWrapper .p-about .block2 .img img {
    position: relative;
    top: -4%;
    width: 94%;
    max-width: none;
    margin-left: auto;
  }
  #contentsWrapper .p-about .block3 .img img {
    width: 94%;
    max-width: none;
  }
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-about {
    padding-top: 4%;
    padding-bottom: 18%;
  }
  #contentsWrapper .p-about .block h3 {
    font-size: 4.5vw;
  }
  #contentsWrapper .p-about .block .txt {
    font-size: 2.5vw;
  }
  #contentsWrapper .p-about .block + * {
    margin-top: 6.67vw;
  }
  #contentsWrapper .p-about .block2 .dec {
    left: -5.2%;
  }
  #contentsWrapper .p-about .block3 .dec {
    top: -70%;
    right: -7.8%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-about .block .content {
    margin-top: 4vw;
  }
  #contentsWrapper .p-about .block h3 {
    font-size: 6.75vw;
  }
  #contentsWrapper .p-about .block h3:after {
    left: 0;
    right: 0;
    margin: auto;
  }
  #contentsWrapper .p-about .block .txt {
    font-size: 3.75vw;
    margin-left: auto;
    margin-right: auto;
  }
  #contentsWrapper .p-about .block2 .dec {
    top: 58%;
    left: -7%;
  }
  #contentsWrapper .p-about .block3 .dec {
    top: -38%;
    right: -9%;
  }
}

#contentsWrapper .p-lineup {
  padding-bottom: 164px;
}

#contentsWrapper .p-lineup h2 {
  margin-top: -8px;
}

#contentsWrapper .p-lineup .txt1 {
  margin-top: 10px;
}

#contentsWrapper .p-lineup .txt1 img {
  margin: 0 auto;
  width: 20.125%;
}

#contentsWrapper .p-lineup .img {
  margin-top: 22px;
}

#contentsWrapper .p-lineup .img img {
  width: 1140px;
  margin: 0 auto;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-lineup {
    padding-bottom: 16%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-lineup {
    padding-top: 5%;
  }
}

#contentsWrapper .p-product {
  padding-top: 72px;
  position: relative;
}

#contentsWrapper .p-product .img1 {
  position: absolute;
  top: -9.8%;
  right: -6.6%;
  width: 42.7%;
  z-index: -1;
}

#contentsWrapper .p-product .img1 img {
  -webkit-transition: 0.7s cubic-bezier(0.1, 0.75, 0.5, 1);
  transition: 0.7s cubic-bezier(0.1, 0.75, 0.5, 1);
}

#contentsWrapper .p-product .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1060px;
  margin: 80px auto 0;
}

#contentsWrapper .p-product .block1 .img {
  width: 46.7%;
}

#contentsWrapper .p-product .block1 .img img {
  width: 74.05%;
  margin: 0 auto;
}

#contentsWrapper .p-product .block1 .detail {
  width: 53.3%;
  background: url(../images/product_bg01.png) repeat center/16.5px;
  color: #fff;
  padding: 4em;
  font-family: "UD新ゴ M", "UD Shin Go Medium", "Noto Sans JP", sans-serif;
}

#contentsWrapper .p-product .block1 h3 {
  font-size: 30px;
  padding-bottom: 0.1em;
  position: relative;
}

#contentsWrapper .p-product .block1 h3:after {
  content: '';
  position: absolute;
  left: 0.1em;
  bottom: 0;
  width: 1.67em;
  aspect-ratio: 1 / 0.1;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #000), color-stop(50%, #fff));
  background: linear-gradient(90deg, #000 50%, #fff 50%);
}

#contentsWrapper .p-product .block1 dl {
  font-size: 24px;
  line-height: 1.45;
  margin-top: 1em;
}

#contentsWrapper .p-product .block1 dl dd {
  padding-left: 1em;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-product {
    padding-top: 6%;
  }
  #contentsWrapper .p-product .block1 {
    margin-top: 6.67vw;
  }
  #contentsWrapper .p-product .block1 h3 {
    font-size: 2.5vw;
  }
  #contentsWrapper .p-product .block1 dl {
    font-size: 2vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-product .img1 {
    top: -2%;
  }
  #contentsWrapper .p-product .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
  }
  #contentsWrapper .p-product .block1 .img {
    width: 100%;
  }
  #contentsWrapper .p-product .block1 .img img {
    max-width: 66.66%;
  }
  #contentsWrapper .p-product .block1 .detail {
    width: 100%;
    padding: 2em;
  }
  #contentsWrapper .p-product .block1 h3 {
    font-size: 5vw;
  }
  #contentsWrapper .p-product .block1 dl {
    font-size: 4.5vw;
  }
}

#contentsWrapper .contentsFooter {
  padding-top: 148px;
  padding-bottom: 140px;
}

#contentsWrapper .contentsFooter .logo img {
  width: 196px;
  margin: 0 auto;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .contentsFooter {
    padding-top: 12%;
    padding-bottom: 12%;
  }
}

/* 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: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  -webkit-mask-image: -webkit-gradient(linear, right top, left top, color-stop(40%, transparent), color-stop(60%, #000));
  -webkit-mask-image: linear-gradient(-90deg, transparent 40%, #000 60%);
          mask-image: -webkit-gradient(linear, right top, left top, color-stop(40%, transparent), color-stop(60%, #000));
          mask-image: linear-gradient(-90deg, transparent 40%, #000 60%);
  -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%;
}

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