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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 800px) {
  #contentsWrapper .font-10 {
    font-size: 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: "UD新丸ゴ DB", "UD Shin Maru Go DemiBold", "Noto Sans JP", sans-serif;
  line-height: 1;
  text-align: center;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

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

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

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

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

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

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

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

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

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

#contentsWrapper .c-btn a {
  font-size: 2.4vw;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  width: 100%;
  max-width: 9.6em;
  min-height: 1.8em;
  color: #fff;
  background: #ffb8b8;
  border-radius: 3em;
  padding: 0.25em 0.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

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

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

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

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

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

#contentsWrapper .p-kv .logo1 {
  top: 4%;
  left: 3.3%;
  width: 26%;
}

#contentsWrapper .p-kv .logo2 {
  top: 23%;
  left: 4.3%;
  width: 23%;
}

#contentsWrapper .p-animation1 img, #contentsWrapper .p-animation2 img {
  width: 100%;
  max-width: none;
}

#contentsWrapper .p-sec01 {
  background: url(../images/sec01_bg.jpg) no-repeat center/cover;
  padding: 4.8% 0;
  position: relative;
}

#contentsWrapper .p-sec01_inner {
  width: 55.88%;
  margin: 0 auto;
  background: url(../images/sec01_inner.png) no-repeat center/100% 100%;
  position: relative;
}

#contentsWrapper .p-sec01_inner .title {
  position: absolute;
  top: -4%;
  left: 0;
  right: 0;
  margin: auto;
  width: 37.26%;
}

#contentsWrapper .p-sec01_group {
  position: relative;
  padding-top: 60%;
}

#contentsWrapper .p-sec01_group > * {
  position: absolute;
  bottom: 9.3%;
}

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

#contentsWrapper .p-sec01_group .choco {
  left: 9.8%;
  width: 44.6672%;
}

#contentsWrapper .p-sec01_group .capsule {
  left: 44.3%;
  width: 24.8748%;
}

#contentsWrapper .p-sec01_group .figure {
  left: 73.1%;
  width: 17.9671%;
}

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

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

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

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

#contentsWrapper .p-sec01 .catch {
  width: 53.28%;
  margin: 2% auto 0;
}

#contentsWrapper .p-sec01 .dec {
  position: absolute;
}

#contentsWrapper .p-sec01 .dec.dec1 {
  top: -4.5%;
  left: -8.8%;
  width: 17.54%;
}

#contentsWrapper .p-sec01 .dec.dec2 {
  right: -19.8%;
  bottom: -0.3%;
  width: 24.195%;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-sec01 {
    aspect-ratio: 1 / 0.48;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec01 {
    padding: 8% 0 6%;
  }
  #contentsWrapper .p-sec01_inner {
    width: 96%;
  }
  #contentsWrapper .p-sec01 .catch {
    width: 80%;
  }
  #contentsWrapper .p-sec01 .dec.dec1 {
    top: -8.5%;
    left: -1%;
  }
  #contentsWrapper .p-sec01 .dec.dec2 {
    right: -1%;
    bottom: 73%;
  }
}

#contentsWrapper .p-sec02 {
  background: url(../images/sec02_bg.jpg) no-repeat center top/cover;
  padding: 5.3% 0;
  position: relative;
}

#contentsWrapper .p-sec02 h2 {
  width: 16.02%;
  margin: 0 auto;
}

#contentsWrapper .p-sec02 .block1 {
  padding-top: 73%;
  position: relative;
  width: 63%;
  margin: 0 auto;
}

#contentsWrapper .p-sec02 .block1 .point {
  position: absolute;
}

#contentsWrapper .p-sec02 .block1 .point > *:not(:first-child) {
  position: absolute;
  max-width: none;
}

#contentsWrapper .p-sec02 .block1 .point.point1 {
  top: 5%;
  left: 0.8%;
  width: 55.055%;
}

#contentsWrapper .p-sec02 .block1 .point.point1 .pen {
  top: -24%;
  left: -8%;
  width: 115.8%;
}

#contentsWrapper .p-sec02 .block1 .point.point1 .cinnamoroll {
  top: 1.4%;
  left: 2.5%;
  width: 37.4134%;
}

#contentsWrapper .p-sec02 .block1 .point.point1 .donut {
  left: 6%;
  bottom: -19%;
  width: 23.5%;
}

#contentsWrapper .p-sec02 .block1 .point.point2 {
  top: 20.2%;
  right: 2.5%;
  width: 49.9%;
}

#contentsWrapper .p-sec02 .block1 .point.point2 .pen {
  top: -17%;
  left: -14.5%;
  width: 128%;
  max-width: none;
}

#contentsWrapper .p-sec02 .block1 .point.point2 .mymelody {
  top: 5.5%;
  right: 2%;
  width: 22.8%;
}

#contentsWrapper .p-sec02 .block1 .point.point3 {
  top: 51.2%;
  left: 1%;
  width: 52.416%;
}

#contentsWrapper .p-sec02 .block1 .point.point3 .pen {
  top: -25.3%;
  left: -10%;
  width: 120.5%;
  max-width: none;
}

#contentsWrapper .p-sec02 .block1 .point.point3 .tuxedosam {
  top: -22.2%;
  left: 4.5%;
  width: 29.534%;
}

#contentsWrapper .p-sec02 .block1 .point.point3 .figure1 {
  right: -3.6%;
  bottom: 19%;
  width: 27%;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

#contentsWrapper .p-sec02 .block1 .point.js-scroll .bubble, #contentsWrapper .p-sec02 .block1 .point.js-scroll .pen {
  -webkit-transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 0.3s;
  transition: 0.5s cubic-bezier(0.33, 0, 0.33, 1.5) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

#contentsWrapper .p-sec02 .block1 .point.js-scroll .cinnamoroll, #contentsWrapper .p-sec02 .block1 .point.js-scroll .tuxedosam {
  -webkit-transition: 0.5s ease 0.6s;
  transition: 0.5s ease 0.6s;
  opacity: 0;
  -webkit-transform: scale(0.7) translate(15%, 15%);
          transform: scale(0.7) translate(15%, 15%);
}

#contentsWrapper .p-sec02 .block1 .point.js-scroll .donut {
  -webkit-transition: 0.5s ease 0.8s;
  transition: 0.5s ease 0.8s;
  opacity: 0;
  -webkit-transform: scale(0.7) translate(15%, -15%);
          transform: scale(0.7) translate(15%, -15%);
}

#contentsWrapper .p-sec02 .block1 .point.js-scroll .mymelody {
  -webkit-transition: 0.5s ease 0.6s;
  transition: 0.5s ease 0.6s;
  opacity: 0;
  -webkit-transform: scale(0.7) translate(-15%, 15%);
          transform: scale(0.7) translate(-15%, 15%);
}

#contentsWrapper .p-sec02 .block1 .point.js-scroll .figure1 {
  -webkit-transition: 0.5s ease 0.8s;
  transition: 0.5s ease 0.8s;
  opacity: 0;
  -webkit-transform: scale(0.7) translate(-15%, 15%);
          transform: scale(0.7) translate(-15%, 15%);
}

#contentsWrapper .p-sec02 .block1 .point.is-scroll .bubble, #contentsWrapper .p-sec02 .block1 .point.is-scroll .pen, #contentsWrapper .p-sec02 .block1 .point.is-scroll .cinnamoroll, #contentsWrapper .p-sec02 .block1 .point.is-scroll .donut, #contentsWrapper .p-sec02 .block1 .point.is-scroll .tuxedosam, #contentsWrapper .p-sec02 .block1 .point.is-scroll .mymelody, #contentsWrapper .p-sec02 .block1 .point.is-scroll .figure1 {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-sec02 .animation {
  position: absolute;
  left: 0;
  bottom: -1.5%;
  width: 84%;
}

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

#contentsWrapper .p-sec02 .dec {
  position: absolute;
}

#contentsWrapper .p-sec02 .dec.dec1 {
  top: 15%;
  left: 57.2%;
  width: 11%;
}

#contentsWrapper .p-sec02 .dec.dec2 {
  top: 30.2%;
  left: 5%;
  width: 11%;
}

#contentsWrapper .p-sec02 .dec.dec3 {
  top: 47%;
  left: 11%;
  width: 11%;
}

#contentsWrapper .p-sec02 .dec.dec4 {
  top: 60%;
  left: 62%;
  width: 17.4%;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-sec02 {
    aspect-ratio: 1 / 0.84;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec02 {
    padding: 10% 0 25%;
  }
  #contentsWrapper .p-sec02 h2 {
    width: 30%;
  }
  #contentsWrapper .p-sec02 .block1 {
    width: 90%;
  }
  #contentsWrapper .p-sec02 .block1 .point.point2 {
    top: 30%;
  }
  #contentsWrapper .p-sec02 .block1 .point.point3 {
    top: 72%;
  }
  #contentsWrapper .p-sec02 .animation {
    width: 100%;
  }
  #contentsWrapper .p-sec02 .dec.dec1 {
    left: 64%;
  }
  #contentsWrapper .p-sec02 .dec.dec2 {
    top: 11%;
  }
  #contentsWrapper .p-sec02 .dec.dec3 {
    left: -2%;
  }
  #contentsWrapper .p-sec02 .dec.dec4 {
    top: 66%;
    left: 63%;
  }
}

#contentsWrapper .p-sec03 {
  background: url(../images/sec03_bg.jpg) no-repeat center top/cover;
  padding: 5.2% 0;
  position: relative;
}

#contentsWrapper .p-sec03 h2 {
  width: 37.32%;
  margin: 0 auto;
}

#contentsWrapper .p-sec03 .lineupList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.8vw 2.5vw;
  width: 70vw;
  margin: 1.8% auto 0;
}

#contentsWrapper .p-sec03 .lineupList .break {
  width: 100%;
}

#contentsWrapper .p-sec03 .lineupList figcaption {
  font-size: 1.5vw;
  text-align: center;
  letter-spacing: -0.025em;
  margin: 0.5em -1em 0;
}

#contentsWrapper .p-sec03 .lineupList figcaption .sub {
  font-size: 70%;
  display: block;
}

#contentsWrapper .p-sec03 .lineupList.js-scroll > li {
  -webkit-transition: 0.5s cubic-bezier(0.5, 0, 0.5, 2) 0.3s;
  transition: 0.5s cubic-bezier(0.5, 0, 0.5, 2) 0.3s;
  opacity: 0;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}

#contentsWrapper .p-sec03 .lineupList.is-scroll > li {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper .p-sec03 .dec {
  position: absolute;
}

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

#contentsWrapper .p-sec03 .dec.dec1 {
  top: 14.3%;
  left: 6.4%;
  width: 14.44%;
}

#contentsWrapper .p-sec03 .dec.dec2 {
  top: 28.5%;
  right: 2.3%;
  width: 11.78%;
}

#contentsWrapper .p-sec03 .dec.dec3 {
  bottom: 10.9%;
  left: 6%;
  width: 9.46%;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-sec03 {
    aspect-ratio: 1 / 0.912;
  }
  #contentsWrapper .p-sec03 .lineupList > li {
    width: calc(calc(100% - 10vw) / 5);
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec03 {
    padding: 10% 0;
  }
  #contentsWrapper .p-sec03 h2 {
    width: 60%;
  }
  #contentsWrapper .p-sec03 .lineupList {
    width: 90vw;
  }
  #contentsWrapper .p-sec03 .lineupList > li {
    width: calc(calc(100% - 7.5vw) / 4);
  }
  #contentsWrapper .p-sec03 .lineupList figcaption {
    font-size: 2.5vw;
  }
  #contentsWrapper .p-sec03 .dec.dec1 {
    top: 19%;
    left: 0%;
    width: 18%;
  }
  #contentsWrapper .p-sec03 .dec.dec2 {
    top: 28.5%;
    right: 2%;
    width: 13%;
  }
  #contentsWrapper .p-sec03 .dec.dec3 {
    bottom: 8%;
    left: 4%;
    width: 15%;
  }
}

#contentsWrapper .p-sec04 {
  background: url(../images/sec04_bg.jpg) no-repeat center/cover;
  padding: 8% 0;
}

#contentsWrapper .p-sec04 h2 {
  font-size: 2.8vw;
  text-align: center;
  color: #fff;
  background: #9c4528;
  border-radius: 3em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.25em 1.6em;
  position: absolute;
  top: -1.1em;
  left: 0;
  right: 0;
  margin: auto;
}

#contentsWrapper .p-sec04_inner {
  background: #fff;
  border: 0.2vw solid #9c4528;
  border-radius: 3.4vw;
  width: 52.96vw;
  margin: 0 auto;
  padding: 5% 2% 2%;
  position: relative;
}

#contentsWrapper .p-sec04 .block1 {
  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;
  gap: 4%;
}

#contentsWrapper .p-sec04 .block1 .img img {
  max-width: 77%;
}

#contentsWrapper .p-sec04 .block1 dl {
  font-size: 1.4vw;
}

#contentsWrapper .p-sec04 .block1 dl dt, #contentsWrapper .p-sec04 .block1 dl dd {
  padding: 0.15em 0;
}

#contentsWrapper .p-sec04 .c-btn {
  margin-top: 5.5%;
}

#contentsWrapper .p-sec04 .dec {
  position: absolute;
}

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

#contentsWrapper .p-sec04 .dec.dec1 {
  top: -18%;
  left: -28.5%;
  width: 20.8%;
}

#contentsWrapper .p-sec04 .dec.dec2 {
  top: 1.7%;
  right: -13%;
  width: 14.4%;
}

#contentsWrapper .p-sec04 .dec.dec3 {
  top: 33%;
  left: -14.4%;
  width: 20.8%;
}

#contentsWrapper .p-sec04 .dec.dec4 {
  top: 31.5%;
  right: -11.5%;
  width: 20.8%;
}

#contentsWrapper .p-sec04 .dec.dec5 {
  bottom: -8.5%;
  left: -26.1%;
  width: 32.48%;
}

#contentsWrapper .p-sec04 .dec.dec6 {
  bottom: -9.1%;
  right: -11.5%;
  width: 20.8%;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-sec04 {
    aspect-ratio: 1 / 0.48;
  }
  #contentsWrapper .p-sec04 .block1 .img {
    width: 46%;
  }
  #contentsWrapper .p-sec04 .block1 .detail {
    width: 50%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec04 {
    padding: 10% 0 15%;
  }
  #contentsWrapper .p-sec04 h2 {
    font-size: 5vw;
  }
  #contentsWrapper .p-sec04_inner {
    padding: 8% 2% 4%;
    width: 92%;
  }
  #contentsWrapper .p-sec04 .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5em;
  }
  #contentsWrapper .p-sec04 .block1 .img {
    width: 50%;
  }
  #contentsWrapper .p-sec04 .block1 dl {
    font-size: 4vw;
  }
  #contentsWrapper .p-sec04 .dec.dec1 {
    top: -7%;
    left: 8%;
  }
  #contentsWrapper .p-sec04 .dec.dec2 {
    top: 2%;
    right: -4%;
  }
  #contentsWrapper .p-sec04 .dec.dec3 {
    top: 7%;
    left: -7%;
  }
  #contentsWrapper .p-sec04 .dec.dec4 {
    top: 42%;
    right: 0%;
  }
  #contentsWrapper .p-sec04 .dec.dec5 {
    bottom: -11%;
    left: -4%;
  }
  #contentsWrapper .p-sec04 .dec.dec6 {
    bottom: -9%;
    right: -3%;
  }
}

#contentsWrapper .contentsFooter {
  background: #fff;
  padding: 1% 0.5%;
}

#contentsWrapper .contentsFooter .copyright {
  font-size: min(1.4vw,16px);
  text-align: center;
  color: #000;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .contentsFooter {
    padding: 4% 2%;
  }
  #contentsWrapper .contentsFooter .copyright {
    font-size: min(2.8vw,16px);
  }
}

/* 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.fadeInFlip {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  opacity: 0;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
}

.js-scroll.fadeInMask {
  -webkit-transition: 1.5s ease 0.3s;
  transition: 1.5s 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, .js-scroll.is-scroll.fadeInFlip {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

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

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