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

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "kozuka-gothic-pr6n", "Noto Sans JP", sans-serif;
  font-weight: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: 0;
  width: 100%;
  color: var(--textcolor);
  background: #eb6ea5;
  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: 1.04167vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 1.25vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 1.45833vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 1.66667vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 1.875vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 2.08333vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 2.29167vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 2.5vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 2.70833vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 2.91667vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 3.125vw !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-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: "kozuka-gothic-pr6n", "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 {
  padding-left: calc(calc(100vw - 1920px) / 2);
  padding-right: calc(calc(100vw - 1920px) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#contentsWrapper .bubbleWrapper {
  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.parallax .bg {
  background: url(../images/bubbleParticle.png) repeat-y center/cover;
  -webkit-animation: parallax1 90s linear 0s infinite normal forwards running;
          animation: parallax1 90s linear 0s infinite normal forwards running;
}

@-webkit-keyframes parallax1 {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center top -3362px;
  }
}

@keyframes parallax1 {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center top -3362px;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .parallax.parallax .bg {
    background-size: 100vw auto;
    -webkit-animation: parallax1Sp 30s linear 0s infinite normal forwards running;
            animation: parallax1Sp 30s linear 0s infinite normal forwards running;
  }
  @-webkit-keyframes parallax1Sp {
    0% {
      background-position: center top;
    }
    100% {
      background-position: center top -175.105vw;
    }
  }
  @keyframes parallax1Sp {
    0% {
      background-position: center top;
    }
    100% {
      background-position: center top -175.105vw;
    }
  }
}

#contentsWrapper .c-btn a {
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  display: block;
  width: 100%;
  max-width: 13.34em;
  color: #fff;
  background: var(--maincolor);
  border-radius: 10em;
  padding: 0.25em 1.5em;
  margin: 0 auto;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#contentsWrapper .c-btn a:hover {
  background: #f589bb;
  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

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

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

#contentsWrapper .c-copyright {
  margin: 2em 5%;
  position: relative;
  z-index: 2;
}

#contentsWrapper .c-copyright .note {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .c-copyright img {
    max-height: 3vw;
  }
}

#contentsWrapper .p-kv {
  position: relative;
}

#contentsWrapper .p-kv .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

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

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

#contentsWrapper .p-kv .dropCurtain {
  top: 0;
  left: 0;
  width: 100%;
}

#contentsWrapper .p-kv .logo {
  top: 5.8%;
  left: 20.6%;
  width: 36.98%;
}

#contentsWrapper .p-kv .txt1 {
  top: 26.3%;
  left: 42.4%;
  width: 15.2084%;
}

#contentsWrapper .p-kv .particle1 {
  top: 21%;
  left: 25.4%;
  width: 31.146%;
}

#contentsWrapper .p-kv .choco1 {
  top: 24.5%;
  left: 29%;
  width: 12.917%;
}

#contentsWrapper .p-kv .choco2 {
  top: 52.9%;
  left: 20.2%;
  width: 18.2292%;
}

#contentsWrapper .p-kv .choco3 {
  top: 45.2%;
  left: 41.1%;
  width: 13.34%;
}

#contentsWrapper .p-kv .ema {
  top: 11.7%;
  left: 53.6%;
  width: 28.4896%;
}

#contentsWrapper .p-kv .particle2 {
  top: 31%;
  left: 55%;
  width: 20.46875%;
}

#contentsWrapper .p-kv .particle2 img {
  -webkit-animation: blinking 0.15s ease-in-out 0s infinite normal forwards running;
          animation: blinking 0.15s ease-in-out 0s infinite normal forwards running;
}

#contentsWrapper .p-kv .lace {
  position: absolute;
  left: -100%;
  right: -100%;
  margin: auto;
  bottom: -3.4%;
  width: 100%;
  z-index: 2;
}

#contentsWrapper .p-kv.js-scroll .dropCurtain {
  -webkit-transition: 2s ease 0.3s;
  transition: 2s ease 0.3s;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
}

#contentsWrapper .p-kv.js-scroll .logo {
  -webkit-transition: 0.5s cubic-bezier(0.33, 0, 0.33, 2) 1s;
  transition: 0.5s cubic-bezier(0.33, 0, 0.33, 2) 1s;
  opacity: 0;
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}

#contentsWrapper .p-kv.js-scroll .ema {
  -webkit-transition: 1s ease 1s;
  transition: 1s ease 1s;
  opacity: 0;
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
}

#contentsWrapper .p-kv.js-scroll .particle2 {
  opacity: 0;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  mix-blend-mode: screen;
}

#contentsWrapper .p-kv.js-scroll .txt1 {
  -webkit-transition: 0.5s cubic-bezier(0.33, 0, 0.5, 1.2) 1.2s;
  transition: 0.5s cubic-bezier(0.33, 0, 0.5, 1.2) 1.2s;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center right;
          transform-origin: center right;
}

#contentsWrapper .p-kv.js-scroll .choco1 {
  -webkit-transition: 0.7s ease 1.5s;
  transition: 0.7s ease 1.5s;
  opacity: 0;
  -webkit-transform: translate(5%, 10%);
          transform: translate(5%, 10%);
}

#contentsWrapper .p-kv.js-scroll .choco2 {
  -webkit-transition: 0.7s ease 1.6s;
  transition: 0.7s ease 1.6s;
  opacity: 0;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

#contentsWrapper .p-kv.js-scroll .choco3 {
  -webkit-transition: 0.7s ease 1.7s;
  transition: 0.7s ease 1.7s;
  opacity: 0;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

#contentsWrapper .p-kv.js-scroll .particle1 {
  -webkit-transition: 1s ease 1.5s;
  transition: 1s ease 1.5s;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

#contentsWrapper .p-kv.js-scroll.is-scroll .dropCurtain {
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-kv.js-scroll.is-scroll .logo, #contentsWrapper .p-kv.js-scroll.is-scroll .ema, #contentsWrapper .p-kv.js-scroll.is-scroll .txt1, #contentsWrapper .p-kv.js-scroll.is-scroll .choco1, #contentsWrapper .p-kv.js-scroll.is-scroll .choco2, #contentsWrapper .p-kv.js-scroll.is-scroll .choco3, #contentsWrapper .p-kv.js-scroll.is-scroll .particle1 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-kv.js-scroll.is-scroll .particle2 {
  -webkit-animation: kvParticle2 1s cubic-bezier(0, 0.5, 0.5, 1) 2s 1 normal forwards running;
          animation: kvParticle2 1s cubic-bezier(0, 0.5, 0.5, 1) 2s 1 normal forwards running;
}

@-webkit-keyframes kvParticle2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes kvParticle2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-kv .logo {
    left: 3.2%;
    width: 59.167%;
  }
  #contentsWrapper .p-kv .txt1 {
    top: 26.5%;
    left: 38%;
    width: 24.2%;
  }
  #contentsWrapper .p-kv .particle1 {
    top: 21.4%;
    left: 10.5%;
    width: 50%;
  }
  #contentsWrapper .p-kv .choco1 {
    top: 24.9%;
    left: 16.5%;
    width: 20.67%;
  }
  #contentsWrapper .p-kv .choco2 {
    top: 53.8%;
    left: 2.2%;
    width: 29.167%;
  }
  #contentsWrapper .p-kv .choco3 {
    top: 45.8%;
    left: 35.6%;
    width: 21.34%;
  }
  #contentsWrapper .p-kv .ema {
    top: 12%;
    left: 55.6%;
    width: 45.6%;
  }
  #contentsWrapper .p-kv .particle2 {
    left: 57%;
    width: 32.75%;
  }
  #contentsWrapper .p-kv .lace {
    bottom: -5%;
    width: 160%;
  }
}

#contentsWrapper .p-sec01 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(52%, #cdabe8), color-stop(65%, #ffc4e5));
  background: linear-gradient(#cdabe8 52%, #ffc4e5 65%);
  position: relative;
}

#contentsWrapper .p-sec01 .block1 {
  padding-top: 50px;
  background: url(../images/sec01_bg01.jpg) no-repeat center top;
  position: relative;
}

#contentsWrapper .p-sec01 .block1 .widthWrapper {
  position: relative;
  padding-top: 780px;
}

#contentsWrapper .p-sec01 .block1 .widthWrapper > * {
  position: absolute;
}

#contentsWrapper .p-sec01 .block1 .txt1 {
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 34px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #a248d1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0%;
  left: 2.5%;
  z-index: 1;
}

#contentsWrapper .p-sec01 .block1 .txt1 .edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-text-stroke: 3px #fff;
  z-index: -1;
}

#contentsWrapper .p-sec01 .block1 .particle {
  top: 6.6%;
  left: -2.1%;
  width: 103.67%;
}

#contentsWrapper .p-sec01 .block1 .particle img {
  -webkit-animation: blinking 0.15s ease-in-out 0s infinite normal forwards running;
          animation: blinking 0.15s ease-in-out 0s infinite normal forwards running;
}

#contentsWrapper .p-sec01 .block1 .dress1 {
  top: 23%;
  left: 1%;
  width: 13.417%;
}

#contentsWrapper .p-sec01 .block1 .dress2 {
  top: 17.8%;
  left: 15.2%;
  width: 17.25%;
}

#contentsWrapper .p-sec01 .block1 .dress3 {
  top: 22.3%;
  left: 69%;
  width: 15.5%;
}

#contentsWrapper .p-sec01 .block1 .dress4 {
  top: 8.4%;
  left: 82.5%;
  width: 14.417%;
}

#contentsWrapper .p-sec01 .block1 .mei {
  top: 50.4%;
  left: -8%;
  width: 33.34%;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(51%, #000), color-stop(52%, transparent));
  -webkit-mask-image: linear-gradient(#000 51%, transparent 52%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(51%, #000), color-stop(52%, transparent));
          mask-image: linear-gradient(#000 51%, transparent 52%);
  z-index: 4;
}

#contentsWrapper .p-sec01 .block1 .nina {
  top: 49.7%;
  left: 17.8%;
  width: 30.167%;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(51%, #000), color-stop(52%, transparent));
  -webkit-mask-image: linear-gradient(#000 51%, transparent 52%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(51%, #000), color-stop(52%, transparent));
          mask-image: linear-gradient(#000 51%, transparent 52%);
  z-index: 2;
}

#contentsWrapper .p-sec01 .block1 .ema {
  top: 50.6%;
  left: 37.3%;
  width: 30.084%;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(51%, #000), color-stop(52%, transparent));
  -webkit-mask-image: linear-gradient(#000 51%, transparent 52%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(51%, #000), color-stop(52%, transparent));
          mask-image: linear-gradient(#000 51%, transparent 52%);
  z-index: 5;
}

#contentsWrapper .p-sec01 .block1 .rara {
  top: 49.3%;
  left: 57.3%;
  width: 28%;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(51%, #000), color-stop(52%, transparent));
  -webkit-mask-image: linear-gradient(#000 51%, transparent 52%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(51%, #000), color-stop(52%, transparent));
          mask-image: linear-gradient(#000 51%, transparent 52%);
  z-index: 1;
}

#contentsWrapper .p-sec01 .block1 .marry {
  top: 50.6%;
  left: 73.7%;
  width: 33.584%;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(51%, #000), color-stop(52%, transparent));
  -webkit-mask-image: linear-gradient(#000 51%, transparent 52%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(51%, #000), color-stop(52%, transparent));
          mask-image: linear-gradient(#000 51%, transparent 52%);
  z-index: 3;
}

#contentsWrapper .p-sec01 .block1 .border1 {
  position: absolute;
  top: 780px;
  left: -100%;
  right: -100%;
  margin: auto;
  width: 100%;
  height: 208px;
  background: url(../images/sec01_border01.png) repeat-x center top/contain;
  z-index: 6;
}

#contentsWrapper .p-sec01 .block2 {
  padding-top: 40px;
  padding-bottom: 150px;
  background: url(../images/sec01_bg02.png) no-repeat center top;
}

#contentsWrapper .p-sec01 .block2 .widthWrapper {
  position: relative;
}

#contentsWrapper .p-sec01 .block2 .txt2 {
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 34px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #b569dd;
  margin: 0 auto;
  position: relative;
  z-index: 7;
}

#contentsWrapper .p-sec01 .block2 .txt2 .edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-text-stroke: 3px #fff;
  text-shadow: 0 0 27px #fff;
  z-index: -1;
}

#contentsWrapper .p-sec01 .block2 .simulation {
  margin: 8px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
}

#contentsWrapper .p-sec01 .block2 .simulation .choco > li {
  position: absolute;
  bottom: 21%;
  width: 13.285%;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

#contentsWrapper .p-sec01 .block2 .simulation .choco > li.animate {
  -webkit-animation: simulationChoco 1s ease 0s 1 normal forwards running;
          animation: simulationChoco 1s ease 0s 1 normal forwards running;
}

@-webkit-keyframes simulationChoco {
  0% {
    opacity: 0;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes simulationChoco {
  0% {
    opacity: 0;
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

#contentsWrapper .p-sec01 .block2 .simulation .choco > li:nth-child(1) {
  left: 3.7%;
}

#contentsWrapper .p-sec01 .block2 .simulation .choco > li:nth-child(2) {
  left: 23.3%;
}

#contentsWrapper .p-sec01 .block2 .simulation .choco > li:nth-child(3) {
  left: 43.4%;
}

#contentsWrapper .p-sec01 .block2 .simulation .choco > li:nth-child(4) {
  left: 63.5%;
}

#contentsWrapper .p-sec01 .block2 .simulation .choco > li:nth-child(5) {
  left: 82.8%;
}

#contentsWrapper .p-sec01 .block2 .simulation .catch {
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 38px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #ba87d5;
  margin: 0 auto;
  position: relative;
  z-index: 7;
}

#contentsWrapper .p-sec01 .block2 .simulation .catch .edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-text-stroke: 6px #fff;
  text-shadow: 0 0 21px #fff;
  z-index: -1;
}

#contentsWrapper .p-sec01 .block2 .border2 {
  position: absolute;
  top: 100.8%;
  left: -50%;
  right: -50%;
  margin: auto;
  width: 1920px;
  z-index: 50;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-sec01 .block1 {
    padding-top: 4.16vw;
    background-size: cover;
  }
  #contentsWrapper .p-sec01 .block1 .widthWrapper {
    padding-top: 65%;
  }
  #contentsWrapper .p-sec01 .block1 .txt1 {
    font-size: 2.834vw;
  }
  #contentsWrapper .p-sec01 .block1 .border1 {
    top: 94%;
    max-width: 100vw;
    height: 17.34vw;
  }
  #contentsWrapper .p-sec01 .block2 {
    padding-top: 3.33vw;
    padding-bottom: 12.5vw;
  }
  #contentsWrapper .p-sec01 .block2 .txt2 {
    font-size: 2.834vw;
  }
  #contentsWrapper .p-sec01 .block2 .simulation .catch {
    font-size: 3.167vw;
  }
  #contentsWrapper .p-sec01 .block2 .border2 {
    max-width: 160vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec01 .block1 {
    padding-top: 6vw;
  }
}

#contentsWrapper .p-sec02 {
  margin-top: -100px;
  padding-top: 150px;
  background: url(../images/sec02_bg.png) no-repeat center top;
  height: 2062px;
  position: relative;
  z-index: 40;
}

#contentsWrapper .p-sec02 h2 {
  position: relative;
  z-index: 8;
}

#contentsWrapper .p-sec02 .txt1 {
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 43px;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #ff38b2;
  margin: 0 auto;
  position: relative;
  z-index: 7;
}

#contentsWrapper .p-sec02 .txt1 .num {
  font-size: 133%;
  color: #b53cdc;
}

#contentsWrapper .p-sec02 .txt1 .edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-text-stroke: 2px #fffad3;
  text-shadow: 0 0 27px #fffad3,0 0 27px #fffad3,0 0 27px #fffad3,0 0 27px #fffad3,0 0 27px #fffad3,0 0 27px #fffad3;
  z-index: -1;
}

#contentsWrapper .p-sec02 .dressList {
  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;
  gap: 25px 5px;
  margin: 30px auto 0;
  max-width: 1111px;
}

#contentsWrapper .p-sec02 .dressList > li {
  width: calc(calc(100% - 15px) / 4);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#contentsWrapper .p-sec02 .dressList > li:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#contentsWrapper .p-sec02 .dressList:has(> li:hover) > li:not(:hover) {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

#contentsWrapper .p-sec02 .dressList img {
  margin: 0 auto;
}

#contentsWrapper .p-sec02 .border {
  position: absolute;
  top: 94%;
  left: -50%;
  right: -50%;
  margin: auto;
  width: 1920px;
  z-index: 1;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-sec02 {
    margin-top: -8.34vw;
    padding-top: 8.34vw;
    height: auto;
    aspect-ratio: 1 / 1.75;
    background-size: 163% auto;
  }
  #contentsWrapper .p-sec02 h2 img {
    max-width: 16.67vw;
  }
  #contentsWrapper .p-sec02 .txt1 {
    font-size: 3.584vw;
  }
  #contentsWrapper .p-sec02 .border {
    max-width: 160%;
  }
}

#contentsWrapper .p-sec03 {
  position: relative;
  z-index: 30;
}

#contentsWrapper .p-sec03 .border {
  position: absolute;
  top: 94%;
  left: -50%;
  right: -50%;
  margin: auto;
  width: 1920px;
  z-index: 1;
}

#contentsWrapper .p-sec03 .block1 {
  background: -webkit-gradient(linear, left top, left bottom, from(#fecef2), color-stop(#d2f0fe), to(#fff));
  background: linear-gradient(#fecef2, #d2f0fe, #fff);
  margin-top: -100px;
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-sec03 .block1:after {
  content: '';
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  aspect-ratio: 1 / 0.02761;
  background: url(../images/sec03_lace.png) no-repeat center top/100% 100%;
  z-index: -1;
}

#contentsWrapper .p-sec03 .character-slider-thumb {
  position: relative;
  padding-top: 74%;
}

#contentsWrapper .p-sec03 .character-slider-thumb .swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

#contentsWrapper .p-sec03 .character-slider-thumb .swiper-slide {
  position: absolute;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

#contentsWrapper .p-sec03 .character-slider-thumb .swiper-slide img {
  width: 100%;
  max-width: none;
}

#contentsWrapper .p-sec03 .character-slider-thumb .swiper-slide.ema {
  top: 9%;
  left: 39%;
  width: 29.417% !important;
  z-index: 5;
}

#contentsWrapper .p-sec03 .character-slider-thumb .swiper-slide.nina {
  top: 8%;
  left: 21%;
  width: 29.5% !important;
  z-index: 4;
}

#contentsWrapper .p-sec03 .character-slider-thumb .swiper-slide.rara {
  top: 5.8%;
  left: 55.3%;
  width: 27.34% !important;
  z-index: 3;
}

#contentsWrapper .p-sec03 .character-slider-thumb .swiper-slide.mei {
  top: 3%;
  left: -2.6%;
  width: 32.584% !important;
  z-index: 2;
}

#contentsWrapper .p-sec03 .character-slider-thumb .swiper-slide.marry {
  top: 1.5%;
  left: 69.5%;
  width: 32.834% !important;
  z-index: 1;
}

#contentsWrapper .p-sec03 .character-slider-thumb .swiper-slide:hover, #contentsWrapper .p-sec03 .character-slider-thumb .swiper-slide-thumb-active {
  z-index: 7;
  -webkit-filter: brightness(1);
          filter: brightness(1);
  -webkit-animation: characterSelect 0.3s ease 0s 1 normal forwards running;
          animation: characterSelect 0.3s ease 0s 1 normal forwards running;
}

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

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

#contentsWrapper .p-sec03 .character-slider-thumb .swiper-slide-thumb-active {
  z-index: 6 !important;
  pointer-events: none;
}

#contentsWrapper .p-sec03 .character-slider .swiper-wrapper {
  -webkit-transform: none !important;
          transform: none !important;
}

#contentsWrapper .p-sec03 .character-slider .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 1120px;
  -webkit-transition: 1s;
  transition: 1s;
}

#contentsWrapper .p-sec03 .character-slider .swiper-slide-active {
  position: relative;
  opacity: 1;
}

#contentsWrapper .p-sec03 .character-slider .widthWrapper {
  padding-left: 288px;
  position: relative;
}

#contentsWrapper .p-sec03 .character-slider .visual {
  position: absolute;
  top: 0;
  left: 0;
}

#contentsWrapper .p-sec03 .character-slider .content1 {
  padding-top: 11%;
}

#contentsWrapper .p-sec03 .character-slider .content2 p {
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 42px;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 12px #fff,0 0 12px #fff,0 0 12px #fff,0 0 12px #fff,0 0 12px #fff,0 0 12px #fff,0 0 12px #fff,0 0 12px #fff,0 0 12px #fff,0 0 12px #fff,0 0 12px #fff;
}

#contentsWrapper .p-sec03 .character-slider .content2 h3 img {
  margin: 0 auto;
}

#contentsWrapper .p-sec03 .character-slider .ema {
  background: url(../images/sec03_ema_bg.png) no-repeat center bottom;
}

#contentsWrapper .p-sec03 .character-slider .ema .visual {
  top: 11.3%;
  left: 2.7%;
  width: 36.167%;
}

#contentsWrapper .p-sec03 .character-slider .ema .content2 p {
  color: #ed0170;
}

#contentsWrapper .p-sec03 .character-slider .nina {
  background: url(../images/sec03_nina_bg.png) no-repeat center bottom;
}

#contentsWrapper .p-sec03 .character-slider .nina .visual {
  top: 9.9%;
  left: 1.9%;
  width: 36.17%;
}

#contentsWrapper .p-sec03 .character-slider .nina .content2 p {
  color: #f42464;
}

#contentsWrapper .p-sec03 .character-slider .rara {
  background: url(../images/sec03_rara_bg.png) no-repeat center bottom;
}

#contentsWrapper .p-sec03 .character-slider .rara .visual {
  top: 10.6%;
  left: 0.4%;
  width: 33.917%;
}

#contentsWrapper .p-sec03 .character-slider .rara .content2 p {
  color: #ae4cd3;
}

#contentsWrapper .p-sec03 .character-slider .mei {
  background: url(../images/sec03_mei_bg.png) no-repeat center bottom;
}

#contentsWrapper .p-sec03 .character-slider .mei .visual {
  top: 10.5%;
  left: -1.2%;
  width: 39.75%;
}

#contentsWrapper .p-sec03 .character-slider .mei .content2 {
  margin-left: -1em;
  margin-right: -1em;
}

#contentsWrapper .p-sec03 .character-slider .mei .content2 p {
  color: #009cff;
}

#contentsWrapper .p-sec03 .character-slider .marry {
  background: url(../images/sec03_marry_bg.png) no-repeat center bottom;
}

#contentsWrapper .p-sec03 .character-slider .marry .visual {
  top: 11.7%;
  left: -1.3%;
  width: 40.084%;
}

#contentsWrapper .p-sec03 .character-slider .marry .content2 p {
  color: #00aea4;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-sec03 .border {
    max-width: 160vw;
  }
  #contentsWrapper .p-sec03 .character-slider .swiper-slide {
    height: auto;
    aspect-ratio: 1 / 0.87;
    background-size: 160% auto !important;
  }
  #contentsWrapper .p-sec03 .character-slider .widthWrapper {
    padding-left: 25%;
  }
  #contentsWrapper .p-sec03 .character-slider .content1 {
    padding-top: 8%;
  }
  #contentsWrapper .p-sec03 .character-slider .content2 h3 img {
    height: 5.5vw;
  }
  #contentsWrapper .p-sec03 .character-slider .content2 p {
    margin-top: 0.25em;
    font-size: 3.3vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec03 .character-slider-thumb {
    width: 110%;
    margin-left: -5%;
    padding-top: 81%;
  }
}

#contentsWrapper .p-sec04 {
  margin-top: -50px;
  padding-top: 80px;
  background: linear-gradient(#eee0ee calc(100% - 50px), #f2e6e0);
  position: relative;
}

#contentsWrapper .p-sec04 .inner {
  padding: 20px 65px;
  position: relative;
  z-index: 2;
}

#contentsWrapper .p-sec04 .inner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: -1;
}

#contentsWrapper .p-sec04 .lineupList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.85%;
  max-width: 947px;
  margin: 30px auto 0;
}

#contentsWrapper .p-sec04 .img2 {
  margin-top: -158px;
  margin-left: -40px;
}

#contentsWrapper .p-sec04 .note {
  font-size: 27px;
  text-align: right;
  color: #b87fb8;
  margin-top: 0.7em;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-sec04 {
    margin-top: -4.167vw;
    padding-top: 8vw;
  }
  #contentsWrapper .p-sec04 h2 img {
    max-width: 30vw;
  }
  #contentsWrapper .p-sec04 .inner {
    max-width: 92vw;
    margin: 0 auto;
    padding: 1.67vw 4.167vw;
  }
  #contentsWrapper .p-sec04 .img2 {
    margin-top: -13.17vw;
    margin-left: -3.34vw;
  }
  #contentsWrapper .p-sec04 .note {
    font-size: 2.25vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec04 .inner:before {
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}

#contentsWrapper .p-sec05 {
  background: linear-gradient(#f2e6e0, #fdf2c7 50px);
  padding: 112px 0 50px;
  position: relative;
}

#contentsWrapper .p-sec05 .inner {
  background: url(../images/sec05_frame.png) no-repeat center/contain;
  max-width: 1091px;
  aspect-ratio: 1 / 1.0275;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

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

#contentsWrapper .p-sec05 .inner.js-scroll .before {
  -webkit-transition: 0.5s ease 0.5s;
  transition: 0.5s ease 0.5s;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

#contentsWrapper .p-sec05 .inner.js-scroll .arrow {
  -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: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

#contentsWrapper .p-sec05 .inner.js-scroll .after {
  -webkit-transition: 0.5s ease 1.5s;
  transition: 0.5s ease 1.5s;
  opacity: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

#contentsWrapper .p-sec05 .inner.is-scroll .before, #contentsWrapper .p-sec05 .inner.is-scroll .arrow, #contentsWrapper .p-sec05 .inner.is-scroll .after {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-sec05 h2 {
  top: 5.3%;
  left: 0;
  right: 0;
  margin: auto;
  width: 77.452%;
}

#contentsWrapper .p-sec05 .txt1 {
  top: 10.5%;
  right: 1.4%;
  width: 23.19%;
}

#contentsWrapper .p-sec05 .before {
  top: 13.1%;
  left: 15.4%;
  width: 34.373%;
}

#contentsWrapper .p-sec05 .after {
  top: 13.1%;
  left: 50%;
  width: 34.373%;
}

#contentsWrapper .p-sec05 .arrow {
  top: 66.4%;
  left: 41.6%;
  width: 16.23%;
}

#contentsWrapper .p-sec05 .img1 {
  top: 60.6%;
  left: 3.3%;
  width: 21.724%;
}

#contentsWrapper .p-sec05 .border {
  position: absolute;
  top: 93%;
  left: -50%;
  right: -50%;
  margin: auto;
  width: 1920px;
  z-index: 1;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-sec05 {
    padding: 9.34vw 0 4.16vw;
  }
}

#contentsWrapper .p-sec06 {
  background: linear-gradient(#fdf2c7, #ffc4e5 100px);
  padding: 100px 0 50px;
}

#contentsWrapper .p-sec06 h2 {
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 40px;
  text-align: center;
  color: var(--maincolor);
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-sec06 h2 .edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-text-stroke: 0.175em #fff;
  z-index: -1;
}

#contentsWrapper .p-sec06 .inner {
  padding: 50px;
  margin: 1.5em auto 0;
  background: rgba(255, 255, 255, 0.7);
  border: 7px solid #fff;
  border-radius: 40px;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}

#contentsWrapper .p-sec06 .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#contentsWrapper .p-sec06 .block1 .img {
  width: 45%;
}

#contentsWrapper .p-sec06 .block1 .detail {
  width: 50%;
  margin-left: 5%;
  font-family: "fot-chiaro-std", sans-serif;
}

#contentsWrapper .p-sec06 .block1 .detail dl {
  font-size: 27px;
  color: var(--subcolor);
  margin-top: 1em;
}

#contentsWrapper .p-sec06 .block1 .detail dl dd {
  padding-left: 2em;
}

#contentsWrapper .p-sec06 .block1 .detail dl dd + dt {
  margin-top: 0.5em;
}

#contentsWrapper .p-sec06 .block1 .logo {
  width: 420px;
  max-width: 100%;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-sec06 {
    padding: 8.34vw 0 4.167vw;
  }
  #contentsWrapper .p-sec06 h2 {
    font-size: 3.35vw;
  }
  #contentsWrapper .p-sec06 .inner {
    padding: 4.167vw;
    border-width: 0.875vw;
    border-radius: 5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec06 h2 {
    font-size: 6vw;
  }
  #contentsWrapper .p-sec06 .block1 .detail dl {
    font-size: 3.5vw;
  }
}

/* mfp */
.c-modal {
  font-family: "kozuka-gothic-pr6n", "Noto Sans JP", sans-serif;
  width: 960px;
  max-width: 90vw;
  max-height: 95vh;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.c-modalDress {
  width: auto;
  aspect-ratio: 1 / 1.533;
  overflow-y: scroll;
  background: rgba(255, 255, 255, 0.85);
  padding: 2%;
  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;
  -webkit-animation: modalDress 0.3s ease 0s 1 normal forwards running;
          animation: modalDress 0.3s ease 0s 1 normal forwards running;
}

.c-modalDress::-webkit-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--maincolor) #c1bfbf;
  width: 4px;
}

.c-modalDress::-webkit-scrollbar-thumb {
  background: var(--maincolor);
  border-radius: 4px;
}

@-webkit-keyframes modalDress {
  0% {
    opacity: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes modalDress {
  0% {
    opacity: 0;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.c-modalDress .img {
  height: 58vh;
}

.c-modalDress .img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-modalDress .content {
  height: 24vh;
}

.c-modalDress .content img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-modalDress .mfp-close {
  font-family: "fot-chiaro-std", sans-serif;
  font-size: 4.2vh;
  text-align: center;
  line-height: 1.3;
  margin: 0.25em auto 0;
  padding: 0 1em;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#fd7fb7), to(#ffacd2));
  background: linear-gradient(#fd7fb7, #ffacd2);
  border: 0.095em solid #fd7fb7;
  border-radius: 3em;
  width: 8.024em;
  height: initial;
  aspect-ratio: 1 / 0.2166;
  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;
  top: initial;
  right: initial;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 1;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .c-modalDress {
    aspect-ratio: 1 / 2;
    padding: 4%;
  }
}

button.mfp-arrow {
  width: 8vh;
  aspect-ratio: 1 / 6.6875;
  background: url(../images/arrow001.svg) no-repeat center/contain;
  opacity: 1;
  -webkit-transform-origin: center !important;
          transform-origin: center !important;
}

button.mfp-arrow:before, button.mfp-arrow:after {
  content: none;
}

button.mfp-arrow-left {
  -webkit-transform: rotate(180deg) !important;
          transform: rotate(180deg) !important;
  left: calc(50% - 29vh);
}

button.mfp-arrow-right {
  -webkit-transform: none !important;
          transform: none !important;
  right: calc(50% - 29vh);
}

@media screen and (max-width: 800px) {
  button.mfp-arrow {
    width: 4vh;
  }
  button.mfp-arrow-left {
    left: 4%;
  }
  button.mfp-arrow-right {
    right: 4%;
  }
}

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

.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%;
}

@-webkit-keyframes blinking {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinking {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

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