@charset "UTF-8";
:root {
  --maincolor: #bf9b30;
  --subcolor: #53131a;
  --textcolor: #380000;
  --container: 1000px;
}

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "G2サンセリフ B JIS2004", "G2 Sans Serif Bold JIS2004", 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: 1020px) {
  #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: 1020px) {
  #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: 1020px) {
  #contentsWrapper .font-10 {
    font-size: 1vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 1.2vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 1.4vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 1.6vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 1.8vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 2vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 2.2vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 2.4vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 2.6vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 2.8vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 3vw !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-link {
  color: var(--maincolor);
  border-bottom: 1px solid currentColor;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

#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-reverse {
  color: #fff;
}

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

#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: "G2サンセリフ B JIS2004", "G2 Sans Serif Bold JIS2004", 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 ↓ ======== */
.is-resize * {
  -webkit-transition: none !important;
  transition: none !important;
}

#contentsWrapper .js-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: url(../images/bg01.jpg) no-repeat center/cover;
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
}

#contentsWrapper .js-loading .logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contentsWrapper .js-loading .logo img:nth-child(1) {
  width: 437px;
  max-width: 29.134vw;
}

#contentsWrapper .js-loading .logo img:nth-child(2) {
  width: 615px;
  max-width: 41vw;
}

#contentsWrapper .js-loading.is-loaded {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .js-loading .logo img:nth-child(1) {
    max-width: 54.625vw;
  }
  #contentsWrapper .js-loading .logo img:nth-child(2) {
    max-width: 76.875vw;
  }
}

#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.--bg1 .bg {
  background: url(../images/bg01.jpg) repeat-y center/cover;
}

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

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

#contentsWrapper h2.heading {
  text-align: center;
  margin-bottom: 50px;
}

#contentsWrapper h2.heading img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

@media screen and (max-width: 800px) {
  #contentsWrapper h2.heading {
    margin-bottom: 2em;
  }
}

#contentsWrapper .c-btn > * {
  font-size: 24px;
  text-align: center;
  width: 100%;
  max-width: 16.67em;
  min-height: 2.5em;
  color: var(--textcolor);
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--textcolor)), color-stop(50%, #fff));
  background: linear-gradient(90deg, var(--textcolor) 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  border: 2px solid var(--textcolor);
  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;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.3s cubic-bezier(0.75, 0, 0.1, 1);
  transition: 0.3s cubic-bezier(0.75, 0, 0.1, 1);
}

#contentsWrapper .c-btn > *.--translucent {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, var(--textcolor)), color-stop(50%, rgba(255, 255, 255, 0.5)));
  background-image: linear-gradient(90deg, var(--textcolor) 50%, rgba(255, 255, 255, 0.5) 50%);
}

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

#contentsWrapper .c-btn > *:hover {
  color: #fff;
  background-position: 0 0;
}

#contentsWrapper .c-btn.disabled {
  pointer-events: none !important;
}

#contentsWrapper .c-btn.disabled > * {
  color: #666;
  background: #ccc;
  border-color: currentColor;
}

@media screen and (min-width: 801px) and (max-width: 1020px) {
  #contentsWrapper .c-btn > * {
    font-size: 2.4vw;
  }
}

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

#contentsWrapper .c-scrollWrapper {
  max-height: 360px;
  padding-right: 1em;
  overflow: auto;
}

#contentsWrapper .c-scrollWrapper::-webkit-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--maincolor) rgba(255, 255, 255, 0.1);
  background: #533f05;
  border-radius: 0.5em;
  width: 0.5em;
}

#contentsWrapper .c-scrollWrapper::-webkit-scrollbar-thumb {
  background: var(--maincolor);
  border-radius: 0.5em;
}

#contentsWrapper .pkgThumb-slider .title {
  font-family: "黎ミン EB", "Reimin ExtraBold", serif;
  font-size: 2.4vw;
  text-align: center;
}

#contentsWrapper .pkgThumb-slider figure {
  font-size: 1.2vw;
  margin-top: 0.3em;
}

#contentsWrapper .pkgThumb-slider figure img {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 0 1vw #ffefc0);
          filter: drop-shadow(0 0 1vw #ffefc0);
}

#contentsWrapper .pkgThumb-slider figcaption {
  font-family: "黎ミン M", "Reimin Medium", serif;
  text-align: center;
  white-space: nowrap;
  line-height: 1.7;
  margin-top: 1em;
}

#contentsWrapper .pkgThumb-slider .swiper-slide {
  padding: 0 2.34vw;
  cursor: pointer;
}

#contentsWrapper .pkgThumb-slider .swiper-slide img {
  opacity: 0.65;
}

#contentsWrapper .pkgThumb-slider .swiper-slide-active img {
  opacity: 1;
}

#contentsWrapper .pkgThumb-slider .swiper-arrow {
  position: absolute;
  top: 45.5%;
  font-size: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 2.134vw;
  aspect-ratio: 1 / 0.90625;
  border: none;
  background: url(../images/arrow01.svg);
  cursor: pointer;
  z-index: 1;
}

#contentsWrapper .pkgThumb-slider .swiper-arrow.--prev {
  right: calc(50% + 8vw);
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

#contentsWrapper .pkgThumb-slider .swiper-arrow.--next {
  left: calc(50% + 8vw);
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .pkgThumb-slider figcaption {
    font-size: 1.6vw;
  }
  #contentsWrapper .pkgThumb-slider .swiper-slide {
    padding: 0 1.2vw;
  }
  #contentsWrapper .pkgThumb-slider .swiper-arrow {
    width: 6vw;
  }
  #contentsWrapper .pkgThumb-slider .swiper-arrow.--prev {
    right: calc(50% + 15vw);
  }
  #contentsWrapper .pkgThumb-slider .swiper-arrow.--next {
    left: calc(50% + 15vw);
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .pkgThumb-slider .title {
    font-size: 4vw;
  }
  #contentsWrapper .pkgThumb-slider figcaption {
    font-size: 2.6vw;
  }
}

@media screen and (max-width: 450px) {
  #contentsWrapper .pkgThumb-slider .title {
    font-size: 7vw;
  }
  #contentsWrapper .pkgThumb-slider figure img {
    -webkit-filter: drop-shadow(0 0 1.875vw #ffefc0);
            filter: drop-shadow(0 0 1.875vw #ffefc0);
  }
  #contentsWrapper .pkgThumb-slider figcaption {
    font-size: 4vw;
  }
  #contentsWrapper .pkgThumb-slider .swiper-slide {
    padding: 0 4vw;
  }
  #contentsWrapper .pkgThumb-slider .swiper-arrow {
    width: 10vw;
  }
  #contentsWrapper .pkgThumb-slider .swiper-arrow.--prev {
    right: calc(50% + 30vw);
  }
  #contentsWrapper .pkgThumb-slider .swiper-arrow.--next {
    left: calc(50% + 30vw);
  }
}

#contentsWrapper .seal-slider {
  position: relative;
}

#contentsWrapper .seal-slider .swiper-wrapper {
  margin-top: 57px;
  background: rgba(0, 0, 0, 0.5);
}

#contentsWrapper .seal-slider .swiper-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  margin: auto;
  width: 0;
  height: 0;
  border: 40px solid transparent;
  border-bottom: 55px solid rgba(0, 0, 0, 0.5);
  border-top: none;
}

#contentsWrapper .seal-slider .swiper-slide {
  height: auto !important;
  opacity: 0 !important;
}

#contentsWrapper .seal-slider .swiper-slide-active {
  opacity: 1 !important;
}

#contentsWrapper .seal-slider h3 + p {
  font-family: "黎ミン EB", "Reimin ExtraBold", serif;
  font-size: 30px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  color: #fff;
  margin-top: 0.2em;
}

#contentsWrapper .seal-slider .inner {
  width: 1185px;
  max-width: 92%;
  margin: 0 auto;
  padding: 1.2% 0 8%;
}

#contentsWrapper .seal-slider .sealList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-top: 1.25em;
  -webkit-perspective: 2000px;
          perspective: 2000px;
}

#contentsWrapper .seal-slider .sealList li {
  width: calc(calc(100% - 75px) / 6);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

#contentsWrapper .seal-slider .sealList li:after {
  content: '';
  position: absolute;
  top: 0;
  left: -140%;
  margin: auto;
  width: 120%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
  -webkit-transition: inherit;
  transition: inherit;
  mix-blend-mode: luminosity;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}

#contentsWrapper .seal-slider .sealList li[data-modal]:hover {
  -webkit-animation: flash 0.2s ease 0s 1 normal forwards running;
          animation: flash 0.2s ease 0s 1 normal forwards running;
  -webkit-transform: rotate3d(1, -1, 0, 10deg);
          transform: rotate3d(1, -1, 0, 10deg);
}

#contentsWrapper .seal-slider .sealList li[data-modal]:hover:after {
  left: 140%;
}

#contentsWrapper .seal-slider .sealList li[data-modal]:hover img.off {
  opacity: 0;
}

#contentsWrapper .seal-slider .sealList li img {
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#contentsWrapper .seal-slider .sealList li img.off {
  position: relative;
  z-index: 2;
}

#contentsWrapper .seal-slider .sealList li img.on {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

#contentsWrapper .seal-slider .sealList li p {
  display: none;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .seal-slider h3 + p {
    font-size: 3vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .seal-slider .swiper-wrapper {
    margin-top: 35px;
  }
  #contentsWrapper .seal-slider .swiper-wrapper:before {
    border-width: 20px;
    border-bottom-width: 27.5px;
  }
  #contentsWrapper .seal-slider h3 + p {
    font-size: 3.2vw;
    margin-top: 0.5em;
  }
  #contentsWrapper .seal-slider .inner {
    padding: 4% 0 12%;
  }
  #contentsWrapper .seal-slider .sealList {
    gap: 10px;
  }
  #contentsWrapper .seal-slider .sealList li {
    width: calc(calc(100% - 20px) / 3);
  }
}

#contentsWrapper [data-modal] {
  cursor: pointer;
}

#contentsWrapper .c-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 92%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 90vh;
  z-index: 302;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

#contentsWrapper .c-modal.--seal .img {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-transform: rotate3d(1, 1, 0, 180deg);
          transform: rotate3d(1, 1, 0, 180deg);
  -webkit-filter: contrast(0%) brightness(500%);
          filter: contrast(0%) brightness(500%);
}

#contentsWrapper .c-modal.--seal .detail > * {
  -webkit-transition: 0.5s cubic-bezier(0, 0.33, 0.33, 1);
  transition: 0.5s cubic-bezier(0, 0.33, 0.33, 1);
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

#contentsWrapper .c-modal.--seal .detail > *:not(:first-child) {
  margin-top: 1.5em;
}

#contentsWrapper .c-modal.--seal .detail h4 {
  font-size: 30px;
  color: #ddd594;
  padding-left: 0.5em;
  border-left: 8px solid currentColor;
}

#contentsWrapper .c-modal.--seal .detail p {
  font-size: 24px;
}

#contentsWrapper .c-modal.--seal .detail p:last-of-type {
  margin-bottom: 1.5em;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .c-modal.--seal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 900px;
  }
  #contentsWrapper .c-modal.--seal .img {
    width: 44.44%;
  }
  #contentsWrapper .c-modal.--seal .detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 44.44%;
  }
  #contentsWrapper .c-modal.--seal .c-btn {
    margin-top: auto !important;
  }
}

@media screen and (min-width: 801px) and (max-width: 1020px) {
  #contentsWrapper .c-modal.--seal .detail h4 {
    font-size: 3vw;
  }
  #contentsWrapper .c-modal.--seal .detail p {
    font-size: 2.4vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .c-modal.--seal {
    max-height: 90vh;
  }
  #contentsWrapper .c-modal.--seal .img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 66.66%;
    margin: 0 auto;
  }
  #contentsWrapper .c-modal.--seal .detail {
    margin-top: 1.5em;
  }
  #contentsWrapper .c-modal.--seal .detail h4 {
    font-size: 5vw;
  }
  #contentsWrapper .c-modal.--seal .detail p {
    font-size: 4vw;
  }
  #contentsWrapper .c-modal.--seal .detail .c-btn > * {
    margin-left: auto;
    margin-right: auto;
  }
}

#contentsWrapper .c-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .c-modal.is-open.c-modal.--seal .img {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transform: none;
          transform: none;
  -webkit-filter: none;
          filter: none;
}

#contentsWrapper .c-modal.is-open.c-modal.--seal .detail > * {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .c-modal.is-open.c-modal.--seal .detail > *:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

#contentsWrapper .c-modal.is-open.c-modal.--seal .detail > *:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#contentsWrapper .c-modal.is-open.c-modal.--seal .detail > *:nth-child(3) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#contentsWrapper .c-modal.is-open.c-modal.--seal .detail > *:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#contentsWrapper .c-modal_close {
  position: absolute;
  top: calc(100% + 30px);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1em;
  cursor: pointer;
  z-index: 303;
}

#contentsWrapper .c-modal_close:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 0.5em;
  height: 0.5em;
  border-left: 0.1em solid currentColor;
  border-bottom: 0.1em solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 800px) {
  #contentsWrapper .c-modal_close {
    font-size: 4vw;
  }
}

#contentsWrapper #cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 301;
}

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

#contentsWrapper .c-noteBlock {
  font-size: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #e9e166;
  padding: 1em 1.5em;
}

#contentsWrapper .c-noteBlock h2 {
  font-size: 30px;
  text-align: center;
  color: var(--maincolor);
}

#contentsWrapper .c-noteBlock h3 {
  font-size: 24px;
  color: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#contentsWrapper .c-noteBlock h3 .wrap {
  line-height: 1.8;
  background: var(--maincolor);
  padding: 0 0.2em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

#contentsWrapper .c-noteBlock h3:not(:first-child) {
  margin-top: 1em;
}

#contentsWrapper .c-noteBlock h4 {
  font-size: 24px;
  color: var(--maincolor);
  padding-left: 0.8em;
  position: relative;
}

#contentsWrapper .c-noteBlock h4:not(:first-child) {
  margin-top: 0.75em;
}

#contentsWrapper .c-noteBlock h4:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 0.34em;
  height: 70%;
  background: currentColor;
}

#contentsWrapper .c-noteBlock ul li {
  padding-left: 1em;
  text-indent: -1em;
  position: relative;
}

#contentsWrapper .c-noteBlock ul li:not(:first-child) {
  margin-top: 0.5em;
}

#contentsWrapper .c-noteBlock ul li:before {
  content: '・';
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .c-noteBlock {
    font-size: 2vw;
  }
  #contentsWrapper .c-noteBlock h2 {
    font-size: 3vw;
  }
  #contentsWrapper .c-noteBlock h3 {
    font-size: 2.4vw;
  }
  #contentsWrapper .c-noteBlock h4 {
    font-size: 2.4vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .c-noteBlock {
    font-size: 3.5vw;
    padding: 4%;
  }
  #contentsWrapper .c-noteBlock h2 {
    font-size: 5vw;
  }
  #contentsWrapper .c-noteBlock h3 {
    font-size: 3.5vw;
  }
  #contentsWrapper .c-noteBlock h4 {
    font-size: 3.5vw;
  }
}

#contentsWrapper .c-copyright {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

#contentsWrapper .p-kv {
  width: 100%;
  aspect-ratio: 1 / 1.038;
  border-bottom: 4px solid #e9e166;
  overflow: hidden;
  position: relative;
}

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

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

#contentsWrapper .p-kv .fire {
  left: 0%;
  bottom: 0%;
  width: 100%;
  mix-blend-mode: screen;
  -webkit-animation: kvFire 3s linear 0s infinite normal forwards running;
          animation: kvFire 3s linear 0s infinite normal forwards running;
}

@-webkit-keyframes kvFire {
  0%, 100% {
    -webkit-filter: hue-rotate(-7deg);
            filter: hue-rotate(-7deg);
  }
  50% {
    -webkit-filter: hue-rotate(7deg) brightness(1.2);
            filter: hue-rotate(7deg) brightness(1.2);
  }
}

@keyframes kvFire {
  0%, 100% {
    -webkit-filter: hue-rotate(-7deg);
            filter: hue-rotate(-7deg);
  }
  50% {
    -webkit-filter: hue-rotate(7deg) brightness(1.2);
            filter: hue-rotate(7deg) brightness(1.2);
  }
}

#contentsWrapper .p-kv .img1 {
  top: 20.75%;
  left: 0.5%;
  width: 27.934%;
}

#contentsWrapper .p-kv .img2 {
  top: 22%;
  right: 0%;
  width: 25.934%;
}

#contentsWrapper .p-kv .img3 {
  top: 1%;
  left: 3%;
  width: 30.67%;
}

#contentsWrapper .p-kv .img4 {
  top: 0.8%;
  right: 5.2%;
  width: 34%;
}

#contentsWrapper .p-kv .logo_niforme {
  top: 0.8%;
  left: 36.5%;
  width: 29.134%;
}

#contentsWrapper .p-kv .logo_opsw {
  top: 6.7%;
  left: 29.6%;
  width: 41%;
}

#contentsWrapper .p-kv .txt1 {
  top: 20.35%;
  left: 34.2%;
  width: 31.67%;
}

#contentsWrapper .p-kv .txt2 {
  top: 32.6%;
  left: 34.3%;
  width: 31.934%;
}

#contentsWrapper .p-kv .txt3 {
  top: 42.45%;
  left: 29.45%;
  width: 41.067%;
}

#contentsWrapper .p-kv .detail {
  top: 48.1%;
  left: 22%;
  width: 56.134%;
  height: 18.715em;
  background: url(../images/kv_detail_bg.png) no-repeat center/cover;
  font-size: 2.8vw;
  line-height: 1.56;
  text-align: center;
  color: #7f0000;
  padding: 2.85em 0.5em 1em;
}

#contentsWrapper .p-kv .detail .l {
  font-family: "G2サンセリフ U JIS2004", "G2 Sans Serif Ultra JIS2004", sans-serif;
  font-size: 123.81%;
  line-height: 1;
  color: #380000;
}

#contentsWrapper .p-kv .detail:before, #contentsWrapper .p-kv .detail:after {
  content: '';
  position: absolute;
}

#contentsWrapper .p-kv .detail:before {
  top: 0%;
  left: -0.4%;
  width: 100.36%;
  aspect-ratio: 1 / 0.0793;
  background: url(../images/kv_detail_head.png) no-repeat center bottom/contain;
}

#contentsWrapper .p-kv .detail:after {
  left: -0.6%;
  bottom: 0%;
  width: 100.96%;
  aspect-ratio: 1 / 0.0965;
  background: url(../images/kv_detail_foot.png) no-repeat center top/contain;
}

#contentsWrapper .p-kv .detail.js-scroll {
  -webkit-transition: 1.2s cubic-bezier(0.5, 0, 0.5, 1) 0.3s;
  transition: 1.2s cubic-bezier(0.5, 0, 0.5, 1) 0.3s;
  height: 0;
}

#contentsWrapper .p-kv .detail.js-scroll > * {
  -webkit-transition: 1s ease 1.3s;
  transition: 1s ease 1.3s;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(45%, #000), color-stop(55%, transparent));
  -webkit-mask-image: linear-gradient(#000 45%, transparent 55%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(45%, #000), color-stop(55%, transparent));
          mask-image: linear-gradient(#000 45%, transparent 55%);
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-position: 0 100%;
          mask-position: 0 100%;
}

#contentsWrapper .p-kv .detail.is-scroll {
  height: 18.715em;
}

#contentsWrapper .p-kv .detail.is-scroll > * {
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
}

#contentsWrapper .p-kv.js-scroll .img1, #contentsWrapper .p-kv.js-scroll .img2, #contentsWrapper .p-kv.js-scroll .img3, #contentsWrapper .p-kv.js-scroll .img4 {
  -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0.1, 1) 0.3s;
  transition: 0.5s cubic-bezier(0.5, 0, 0.1, 1) 0.3s;
  opacity: 0;
  -webkit-filter: blur(5px) contrast(0) brightness(2);
          filter: blur(5px) contrast(0) brightness(2);
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}

#contentsWrapper .p-kv.js-scroll .img2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#contentsWrapper .p-kv.js-scroll .img3 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

#contentsWrapper .p-kv.js-scroll .img4 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#contentsWrapper .p-kv.js-scroll .logo_niforme, #contentsWrapper .p-kv.js-scroll .logo_opsw {
  -webkit-transition: 0.8s cubic-bezier(0.2, 0.5, 0, 1.02) 0.9s;
  transition: 0.8s cubic-bezier(0.2, 0.5, 0, 1.02) 0.9s;
  opacity: 0;
  -webkit-transform: scale(3);
          transform: scale(3);
}

#contentsWrapper .p-kv.js-scroll .txt1 {
  -webkit-transition: 0.3s cubic-bezier(0.66, 0, 0.66, 1) 1.5s;
  transition: 0.3s cubic-bezier(0.66, 0, 0.66, 1) 1.5s;
  opacity: 0;
  -webkit-transform: scale(5);
          transform: scale(5);
}

#contentsWrapper .p-kv.js-scroll .txt2 {
  -webkit-transition: 0.2s cubic-bezier(0.5, 0, 0, 1) 1.8s;
  transition: 0.2s cubic-bezier(0.5, 0, 0, 1) 1.8s;
  opacity: 0;
  -webkit-transform: scale(1.5, 0);
          transform: scale(1.5, 0);
}

#contentsWrapper .p-kv.js-scroll .txt3 {
  -webkit-transition: 1s cubic-bezier(0.5, 0, 0, 1) 2.1s;
  transition: 1s cubic-bezier(0.5, 0, 0, 1) 2.1s;
  opacity: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

#contentsWrapper .p-kv.is-scroll .img1, #contentsWrapper .p-kv.is-scroll .img2, #contentsWrapper .p-kv.is-scroll .img3, #contentsWrapper .p-kv.is-scroll .img4 {
  opacity: 1;
  -webkit-filter: blur(0) contrast(1) brightness(1);
          filter: blur(0) contrast(1) brightness(1);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

#contentsWrapper .p-kv.is-scroll .txt1 {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-animation: kvTxt1 0.5s ease 1.7s 1 normal forwards running;
          animation: kvTxt1 0.5s ease 1.7s 1 normal forwards running;
}

@-webkit-keyframes kvTxt1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
    -webkit-filter: contrast(1) brightness(1);
            filter: contrast(1) brightness(1);
  }
  5% {
    -webkit-transform: translate(4%, 4%);
            transform: translate(4%, 4%);
  }
  10% {
    -webkit-transform: translate(-4%, -4%);
            transform: translate(-4%, -4%);
  }
  15% {
    -webkit-transform: translate(-4%, 4%);
            transform: translate(-4%, 4%);
  }
  20% {
    -webkit-transform: translate(4%, -4%);
            transform: translate(4%, -4%);
  }
  30%, 40% {
    -webkit-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
    -webkit-filter: contrast(1) brightness(1);
            filter: contrast(1) brightness(1);
  }
  60% {
    -webkit-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
    -webkit-filter: contrast(0) brightness(2) drop-shadow(0 0 2vw #fff);
            filter: contrast(0) brightness(2) drop-shadow(0 0 2vw #fff);
  }
  80% {
    -webkit-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
    -webkit-filter: contrast(1) brightness(1);
            filter: contrast(1) brightness(1);
  }
  100% {
    -webkit-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
    -webkit-filter: contrast(1) brightness(1);
            filter: contrast(1) brightness(1);
  }
}

@keyframes kvTxt1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
    -webkit-filter: contrast(1) brightness(1);
            filter: contrast(1) brightness(1);
  }
  5% {
    -webkit-transform: translate(4%, 4%);
            transform: translate(4%, 4%);
  }
  10% {
    -webkit-transform: translate(-4%, -4%);
            transform: translate(-4%, -4%);
  }
  15% {
    -webkit-transform: translate(-4%, 4%);
            transform: translate(-4%, 4%);
  }
  20% {
    -webkit-transform: translate(4%, -4%);
            transform: translate(4%, -4%);
  }
  30%, 40% {
    -webkit-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
    -webkit-filter: contrast(1) brightness(1);
            filter: contrast(1) brightness(1);
  }
  60% {
    -webkit-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
    -webkit-filter: contrast(0) brightness(2) drop-shadow(0 0 2vw #fff);
            filter: contrast(0) brightness(2) drop-shadow(0 0 2vw #fff);
  }
  80% {
    -webkit-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
    -webkit-filter: contrast(1) brightness(1);
            filter: contrast(1) brightness(1);
  }
  100% {
    -webkit-transform: scale(1) translate(0);
            transform: scale(1) translate(0);
    -webkit-filter: contrast(1) brightness(1);
            filter: contrast(1) brightness(1);
  }
}

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

#contentsWrapper .p-kv.is-scroll .txt3 {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-kv {
    aspect-ratio: 9 / 16;
  }
  #contentsWrapper .p-kv .img1 {
    top: 35%;
    left: -6%;
  }
  #contentsWrapper .p-kv .img2 {
    top: 35%;
    right: -6%;
  }
  #contentsWrapper .p-kv .img3 {
    top: 18%;
    left: -6%;
  }
  #contentsWrapper .p-kv .img4 {
    top: 19%;
    right: -8%;
    width: 37%;
  }
  #contentsWrapper .p-kv .logo_niforme {
    left: 23.5%;
    width: 54.625%;
  }
  #contentsWrapper .p-kv .logo_opsw {
    top: 8%;
    left: 11.9%;
    width: 76.875%;
  }
  #contentsWrapper .p-kv .txt1 {
    top: 23%;
    left: 20%;
    width: 59.375%;
  }
  #contentsWrapper .p-kv .txt2 {
    top: 37%;
    left: 20%;
    width: 59.875%;
  }
  #contentsWrapper .p-kv .txt3 {
    top: 48.5%;
    left: 12%;
    width: 77%;
  }
  #contentsWrapper .p-kv .detail {
    top: 55%;
    left: 10%;
    width: 80%;
    font-size: 3.8vw;
  }
}

#contentsWrapper .p-product {
  padding: 87px 0 65px;
  border-bottom: 4px solid #e9e166;
}

#contentsWrapper .p-product .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
}

#contentsWrapper .p-product .block1 .img {
  aspect-ratio: 1 / 0.931;
  position: relative;
}

#contentsWrapper .p-product .block1 .img img {
  position: absolute;
}

#contentsWrapper .p-product .block1 .img img:nth-child(4) {
  top: -3.2%;
  left: 7%;
  width: 50.89%;
}

#contentsWrapper .p-product .block1 .img img:nth-child(3) {
  top: 6.2%;
  right: 1.4%;
  width: 49.31%;
}

#contentsWrapper .p-product .block1 .img img:nth-child(2) {
  top: 50.5%;
  right: 3.3%;
  width: 49.12%;
}

#contentsWrapper .p-product .block1 .img img:nth-child(1) {
  top: 44.3%;
  left: 6%;
  width: 52.47%;
}

#contentsWrapper .p-product .block1 .img.js-scroll img {
  -webkit-transition: 0.3s ease 0.5s;
  transition: 0.3s ease 0.5s;
  opacity: 0;
  -webkit-transform: rotate3d(1, 1, 0, 90deg);
          transform: rotate3d(1, 1, 0, 90deg);
}

#contentsWrapper .p-product .block1 .img.js-scroll img:nth-child(1) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

#contentsWrapper .p-product .block1 .img.js-scroll img:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#contentsWrapper .p-product .block1 .img.js-scroll img:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#contentsWrapper .p-product .block1 .img.is-scroll img {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-product .block1 .detail {
  background: url(../images/product_bg01.png) repeat-y center top/100% auto;
  padding: 2em 1em 1em;
}

#contentsWrapper .p-product .block1 .detail .txt {
  font-size: 24px;
  margin-top: 2.25em;
  padding: 0 0.75em;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-product .block1 .img {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  #contentsWrapper .p-product .block1 .detail {
    width: 45.2%;
    margin-right: 21px;
  }
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .p-product {
    padding: 9% 0 7%;
  }
  #contentsWrapper .p-product .block1 .detail .txt {
    font-size: 2.2vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-product {
    padding: 9% 0 14%;
  }
  #contentsWrapper .p-product .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contentsWrapper .p-product .block1 .img {
    width: 100%;
    max-width: 548px;
    margin: 0 auto;
  }
  #contentsWrapper .p-product .block1 .detail .txt {
    font-size: 4.5vw;
  }
}

#contentsWrapper .p-howto {
  padding: 65px 0 52px;
}

#contentsWrapper .p-howto .bg {
  width: 100%;
  max-width: 844px;
  margin: 30px auto 0;
  background: url(../images/howto_bg01.png) no-repeat center top/100% auto;
  padding: 65px 40px 45px;
}

#contentsWrapper .p-howto h3 {
  font-size: 45px;
  text-align: center;
}

#contentsWrapper .p-howto .step {
  font-size: 24px;
  line-height: 1.5;
  margin-top: 36px;
  margin-right: -1em;
}

#contentsWrapper .p-howto .step dt {
  font-size: 125%;
  line-height: 1.35;
  color: var(--maincolor);
  background: var(--textcolor);
  padding: 0 0.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#contentsWrapper .p-howto .step dd {
  padding-left: 1em;
  margin-top: 0.2em;
}

#contentsWrapper .p-howto .step dd + dt {
  margin-top: 0.3em;
}

#contentsWrapper .p-howto .step + p {
  font-size: 30px;
  margin-top: 1.2em;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .p-howto {
    padding: 6% 0 5%;
  }
  #contentsWrapper .p-howto .bg {
    padding: 6% 4% 4%;
  }
  #contentsWrapper .p-howto h3 {
    font-size: 4.5vw;
  }
  #contentsWrapper .p-howto .step {
    font-size: 2.4vw;
    margin-top: 3.6vw;
  }
  #contentsWrapper .p-howto .step + p {
    font-size: 3vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-howto {
    padding: 12% 0 10%;
  }
  #contentsWrapper .p-howto h3 {
    font-size: 4.5vw;
  }
  #contentsWrapper .p-howto .step {
    font-size: 3.5vw;
    margin-right: 0;
  }
  #contentsWrapper .p-howto .step + p {
    font-size: 3.5vw;
  }
}

#contentsWrapper .p-seal .pkgThumb-slider {
  padding: 40px 0 35px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
}

#contentsWrapper .p-seal .seal-slider {
  border-bottom: 4px solid #e9e166;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .p-seal .pkgThumb-slider {
    padding: 4% 0;
  }
}

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

#contentsWrapper .p-campaign {
  padding-top: 185px;
}

#contentsWrapper .p-campaign .block1 {
  max-width: 960px;
  margin: 70px auto 0;
}

#contentsWrapper .p-campaign .block1 .detail {
  font-size: 24px;
  line-height: 1.5;
  color: #fff;
}

#contentsWrapper .p-campaign .block1 .detail .s {
  font-size: 75%;
}

#contentsWrapper .p-campaign .block1 .detail .c-notes {
  font-size: 62.5%;
}

#contentsWrapper .p-campaign .block1 .c-btn {
  margin-top: 3em;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-campaign .block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
  #contentsWrapper .p-campaign .block1 .detail {
    width: calc(46% - 20px);
  }
  #contentsWrapper .p-campaign .block1 .img {
    width: 54%;
    position: relative;
  }
  #contentsWrapper .p-campaign .block1 .img img {
    margin-top: -2.8%;
    margin-right: 6.5%;
  }
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .p-campaign {
    padding-top: 18%;
  }
  #contentsWrapper .p-campaign .block1 {
    margin-top: 7%;
  }
  #contentsWrapper .p-campaign .block1 .detail {
    font-size: 2.4vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-campaign {
    padding: 12% 0 6%;
  }
  #contentsWrapper .p-campaign .block1 .detail {
    font-size: 4vw;
  }
  #contentsWrapper .p-campaign .block1 .detail .c-notes {
    font-size: 75%;
  }
  #contentsWrapper .p-campaign .block1 .c-btn {
    margin-top: 2em;
  }
}

#contentsWrapper .p-notes {
  padding-top: 75px;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .p-notes {
    padding-top: 7.5%;
  }
}

#contentsWrapper .contentFooter {
  padding: 90px 0 50px;
}

#contentsWrapper .contentFooter .c-copyright {
  color: #fff;
}

@media screen and (max-width: 1020px) {
  #contentsWrapper .contentFooter {
    padding: 9% 0 5%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .contentFooter .copyright {
    font-size: 3vw;
  }
}

/* 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: 1.5s ease 0.3s;
  transition: 1.5s ease 0.3s;
  -webkit-mask-image: linear-gradient(-45deg, transparent 45%, #000 55%);
          mask-image: linear-gradient(-45deg, transparent 45%, #000 55%);
  -webkit-mask-size: 300% 300%;
          mask-size: 300% 300%;
  -webkit-mask-position: 100% 100%;
          mask-position: 100% 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% 0%;
          mask-position: 0% 0%;
}

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