@charset "UTF-8";
:root {
  --maincolor: #e11d42;
  --subcolor: #00ff96;
  --textcolor: #fff;
  --container: 1200px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#contentsWrapper .u-bg {
  color: var(--subcolor);
  background: #000;
  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-yellow {
  color: #fff600;
}

#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: "新ゴ B", "Shin Go Bold", 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 ↓ ======== */
:root {
  --slash: 106px;
}

@media screen and (max-width: 1220px) {
  :root {
    --slash: 8.834vw;
  }
}

#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.--slash {
  -webkit-clip-path: polygon(0 var(--slash), 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 var(--slash), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(var(--slash) * -1);
  height: calc(100% + var(--slash));
}

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

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

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

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

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

#contentsWrapper h2.heading {
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  width: 13.378em;
  aspect-ratio: 1 / 0.17442;
  margin: 0 auto;
  color: #fff;
  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;
}

#contentsWrapper h2.heading.--blue {
  background: url(../images/title_bg01.png) no-repeat center/contain;
}

#contentsWrapper h2.heading.--red {
  background: url(../images/title_bg02.png) no-repeat center/contain;
}

#contentsWrapper h2.heading.js-scroll {
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(45%, #000), color-stop(55%, transparent));
  -webkit-mask-image: linear-gradient(90deg, #000 45%, transparent 55%);
          mask-image: -webkit-gradient(linear, left top, right top, color-stop(45%, #000), color-stop(55%, transparent));
          mask-image: linear-gradient(90deg, #000 45%, transparent 55%);
  -webkit-mask-size: 250% 100%;
          mask-size: 250% 100%;
  -webkit-mask-position: 100% 0;
          mask-position: 100% 0;
}

#contentsWrapper h2.heading.is-scroll {
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
}

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

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

#contentsWrapper .c-btn a {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 20em;
  min-height: 3em;
  color: #fff;
  background: var(--maincolor);
  border: 2px solid #fff;
  padding: 0.25em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

#contentsWrapper .c-btn a.--skeleton {
  color: var(--subcolor);
  background: transparent;
  border-color: var(--subcolor);
  min-height: 2em;
}

#contentsWrapper .c-btn a.--skeleton:after {
  width: 0.4em;
  background-image: url(../images/arrow002.svg);
}

#contentsWrapper .c-btn a.--skeleton:hover {
  color: #fff;
  background: #00ff96;
}

#contentsWrapper .c-btn a.--skeleton:hover:after {
  background-image: url(../images/arrow001.svg);
}

#contentsWrapper .c-btn a:after {
  content: '';
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  width: 0.6em;
  aspect-ratio: 1 / 2;
  background: url(../images/arrow001.svg) no-repeat center/contain;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

#contentsWrapper .c-btn a:hover:after {
  right: 0.7em;
}

@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 .p-kv {
  background: #000;
  position: relative;
  overflow: hidden;
}

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

#contentsWrapper .p-kv.js-scroll img {
  -webkit-transition: 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s;
  transition: 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s;
  -webkit-filter: contrast(0) brightness(2);
          filter: contrast(0) brightness(2);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

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

#contentsWrapper .p-sec01 {
  padding: 80px 0 210px;
}

#contentsWrapper .p-sec01 .block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 100px;
}

#contentsWrapper .p-sec01 .block1 .img {
  width: calc(55% - 20px);
  padding-top: 42%;
  position: relative;
}

#contentsWrapper .p-sec01 .block1 .img:before {
  content: '';
  position: absolute;
  top: -23%;
  left: -14%;
  width: 113.4375%;
  aspect-ratio: 1 / 0.86088;
  background: url(../images/sec01_splash.png) no-repeat center/contain;
}

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

#contentsWrapper .p-sec01 .block1 .img img:nth-child(1) {
  top: -6%;
  right: 13.3%;
  width: 44.84375%;
}

#contentsWrapper .p-sec01 .block1 .img img:nth-child(2) {
  bottom: -4%;
  right: 7%;
  width: 45.15625%;
}

#contentsWrapper .p-sec01 .block1 .img img:nth-child(3) {
  top: -7.6%;
  left: -4%;
  width: 54.84375%;
}

#contentsWrapper .p-sec01 .block1 .img.js-scroll:before {
  -webkit-transition: 0.2s cubic-bezier(0.1, 0.5, 0.33, 1.25) 0.3s;
  transition: 0.2s cubic-bezier(0.1, 0.5, 0.33, 1.25) 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

#contentsWrapper .p-sec01 .block1 .img.js-scroll img {
  opacity: 0;
}

#contentsWrapper .p-sec01 .block1 .img.js-scroll img:nth-child(1) {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: rotate(-10deg) translateX(-5%);
          transform: rotate(-10deg) translateX(-5%);
}

#contentsWrapper .p-sec01 .block1 .img.js-scroll img:nth-child(2) {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

#contentsWrapper .p-sec01 .block1 .img.js-scroll img:nth-child(3) {
  -webkit-transition: 0.5s ease 0.3s;
  transition: 0.5s ease 0.3s;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: rotate(10deg) translateX(5%);
          transform: rotate(10deg) translateX(5%);
}

#contentsWrapper .p-sec01 .block1 .img.is-scroll:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

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

#contentsWrapper .p-sec01 .block1 .detail {
  width: 45%;
  text-align: center;
  position: relative;
  right: -1.4%;
}

#contentsWrapper .p-sec01 .block1 .logo {
  max-width: 460px;
  margin: 0 auto;
}

#contentsWrapper .p-sec01 .block1 .name {
  font-size: 40px;
  line-height: 1.25;
  margin: 1.4em -0.5em 0;
}

#contentsWrapper .p-sec01 .block1 .release {
  font-size: 30px;
  line-height: 1;
  margin-top: 1em;
}

#contentsWrapper .p-sec01 .block1 .price {
  font-size: 20px;
  margin-top: 0.25em;
}

#contentsWrapper .p-sec01 .block1 .price .val {
  font-size: 2em;
  vertical-align: sub;
  display: inline-block;
}

#contentsWrapper .p-sec01 .block1 .price .tax {
  font-size: 1.5em;
  display: inline-block;
}

#contentsWrapper .p-sec01 .block1 .notes {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-sec01 {
    padding: 6.67% 0 17.5%;
  }
  #contentsWrapper .p-sec01 .block1 {
    margin-top: 8.34%;
    gap: 1.67vw;
  }
  #contentsWrapper .p-sec01 .block1 .img {
    width: calc(55% - 1.67vw);
  }
  #contentsWrapper .p-sec01 .block1 .detail {
    right: 0;
  }
  #contentsWrapper .p-sec01 .block1 .name {
    font-size: 3.34vw;
  }
  #contentsWrapper .p-sec01 .block1 .release {
    font-size: 2.5vw;
  }
  #contentsWrapper .p-sec01 .block1 .price {
    font-size: 1.67vw;
  }
  #contentsWrapper .p-sec01 .block1 .notes {
    font-size: 1.67vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec01 {
    padding: 12% 0 20%;
  }
  #contentsWrapper .p-sec01 .block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 16vw;
  }
  #contentsWrapper .p-sec01 .block1 .img {
    width: 100%;
    padding-top: 80%;
  }
  #contentsWrapper .p-sec01 .block1 .img:before {
    left: -8%;
  }
  #contentsWrapper .p-sec01 .block1 .img img:nth-child(1) {
    right: 6.3%;
  }
  #contentsWrapper .p-sec01 .block1 .img img:nth-child(2) {
    right: 2%;
  }
  #contentsWrapper .p-sec01 .block1 .img img:nth-child(3) {
    left: 2%;
  }
  #contentsWrapper .p-sec01 .block1 .detail {
    width: 100%;
    margin-top: 2em;
  }
  #contentsWrapper .p-sec01 .block1 .name {
    font-size: 6vw;
  }
  #contentsWrapper .p-sec01 .block1 .release {
    font-size: 5vw;
  }
  #contentsWrapper .p-sec01 .block1 .price {
    font-size: 3.34vw;
  }
  #contentsWrapper .p-sec01 .block1 .notes {
    font-size: 3.34vw;
  }
}

#contentsWrapper .p-sec02 {
  padding: 65px 0 170px;
}

#contentsWrapper .p-sec02 .block1 {
  margin-top: 50px;
}

#contentsWrapper .p-sec02 .txt1 {
  font-size: 36px;
  line-height: 1.3;
  text-align: center;
}

#contentsWrapper .p-sec02 .period {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 30px;
  line-height: 1;
}

#contentsWrapper .p-sec02 .period dt {
  background: #000;
  padding: 0.25em 0.5em;
}

#contentsWrapper .p-sec02 .period dd {
  font-size: 1.2em;
  background: var(--maincolor);
  padding: 0.15em 0.5em;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-sec02 {
    padding: 5.42% 0 14.167%;
  }
  #contentsWrapper .p-sec02 .block1 {
    margin-top: 4.167%;
  }
  #contentsWrapper .p-sec02 .txt1 {
    font-size: 3vw;
  }
  #contentsWrapper .p-sec02 .period {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec02 {
    padding: 10% 0 20%;
  }
  #contentsWrapper .p-sec02 .block1 {
    margin-top: 8.34vw;
  }
  #contentsWrapper .p-sec02 .txt1 {
    font-size: 4.5vw;
  }
  #contentsWrapper .p-sec02 .period {
    -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;
    font-size: 3.75vw;
  }
}

#contentsWrapper .p-sec03 {
  padding: 65px 0 180px;
}

#contentsWrapper .p-sec03 .block1 {
  max-width: 1109px;
  margin: 95px auto 0;
}

#contentsWrapper .p-sec03 .img1 {
  width: 100%;
  aspect-ratio: 1 / 0.58341;
  padding: 4%;
  background: rgba(172, 255, 161, 0.25);
  border: 1px solid #fff;
  border-radius: 0.875em;
  position: relative;
}

#contentsWrapper .p-sec03 .img1 img {
  position: absolute;
  top: 4.6%;
  left: 10%;
  width: 75.9243%;
}

#contentsWrapper .p-sec03 .content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 30px 0 0 3.5em;
}

#contentsWrapper .p-sec03 .content ol {
  font-size: 30px;
  line-height: 1.35;
}

#contentsWrapper .p-sec03 .content ol > li {
  padding-left: 1em;
  text-indent: -1em;
}

#contentsWrapper .p-sec03 .notes {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: -0.04em;
  margin-top: 1.75em;
}

#contentsWrapper .p-sec03 .notes .bg {
  background: var(--maincolor);
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-sec03 {
    padding: 5.42% 0 15%;
  }
  #contentsWrapper .p-sec03 .block1 {
    margin-top: 7.917%;
  }
  #contentsWrapper .p-sec03 .content {
    margin-top: 2.5vw;
  }
  #contentsWrapper .p-sec03 .content ol {
    font-size: 2.5vw;
  }
  #contentsWrapper .p-sec03 .notes {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec03 {
    padding: 10% 0 20%;
  }
  #contentsWrapper .p-sec03 .block1 {
    margin-top: 12vw;
  }
  #contentsWrapper .p-sec03 .content {
    margin: 6vw auto 0;
  }
  #contentsWrapper .p-sec03 .content ol {
    font-size: 4vw;
  }
  #contentsWrapper .p-sec03 .notes {
    font-size: 3vw;
  }
}

#contentsWrapper .p-sec04 {
  padding: 60px 0 150px;
}

#contentsWrapper .p-sec04 .block1 {
  margin-top: 65px;
  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: 2em;
}

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

#contentsWrapper .p-sec04 .block1 .content {
  width: calc(54% - 2em);
}

#contentsWrapper .p-sec04 .txt1 {
  font-size: 36px;
}

#contentsWrapper .p-sec04 .txt1 .l {
  font-size: 127.8%;
}

#contentsWrapper .p-sec04 .notes {
  font-size: 18px;
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-sec04 {
    padding: 5% 0 12.5%;
  }
  #contentsWrapper .p-sec04 .block1 {
    margin-top: 5.417%;
  }
  #contentsWrapper .p-sec04 .txt1 {
    font-size: 3vw;
  }
  #contentsWrapper .p-sec04 .notes {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec04 {
    padding: 12% 0 20%;
  }
  #contentsWrapper .p-sec04 .block1 {
    margin-top: 8vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contentsWrapper .p-sec04 .block1 .img {
    width: 75%;
  }
  #contentsWrapper .p-sec04 .block1 .content {
    width: 100%;
    text-align: center;
  }
  #contentsWrapper .p-sec04 .txt1 {
    font-size: 4.5vw;
  }
  #contentsWrapper .p-sec04 .notes {
    margin-top: 2em;
    font-size: 3vw;
  }
}

#contentsWrapper .contentsFooter {
  padding: 70px 0 60px;
}

#contentsWrapper .contentsFooter h3 {
  font-size: 36px;
  text-align: center;
  width: 100%;
  max-width: 11.23em;
  aspect-ratio: 1 / 0.16585;
  margin: 0 auto;
  color: #000;
  background: url(../images/title_bg03.png) no-repeat center/contain;
  padding: 0.35em 0.5em;
  line-height: 1.3;
}

#contentsWrapper .contentsFooter h4 {
  font-size: 36px;
  line-height: 1;
  text-align: center;
  color: var(--subcolor);
  background: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.05em 0.3em;
}

#contentsWrapper .contentsFooter h5 {
  font-size: 30px;
  text-align: center;
}

#contentsWrapper .contentsFooter .block1 {
  text-align: center;
  line-height: 1.4;
}

#contentsWrapper .contentsFooter .block1 .s {
  font-size: 80%;
}

#contentsWrapper .contentsFooter .block2 {
  margin-top: 6.5%;
  text-align: center;
  line-height: 1.4;
}

#contentsWrapper .contentsFooter .block2 .c-btn a {
  font-size: 30px;
  max-width: 460px;
}

#contentsWrapper .contentsFooter .block2 .c-btn a:after {
  border-width: 0.56em;
  border-left-width: 0.77em;
  border-right-width: 0;
}

#contentsWrapper .contentsFooter .sideExp {
  margin-left: -2em;
  margin-right: -2em;
}

#contentsWrapper .contentsFooter .copyright {
  margin-top: 70px;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .contentsFooter .block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  #contentsWrapper .contentsFooter .block1 > * {
    width: 47%;
  }
  #contentsWrapper .contentsFooter .block2 .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #contentsWrapper .contentsFooter .block2 .flex > * {
    width: 49%;
  }
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .contentsFooter {
    padding: 5% 0 3%;
  }
  #contentsWrapper .contentsFooter h3 {
    font-size: 3.6vw;
  }
  #contentsWrapper .contentsFooter h4 {
    font-size: 3.2vw;
  }
  #contentsWrapper .contentsFooter h5 {
    font-size: 2.4vw;
  }
  #contentsWrapper .contentsFooter .block2 .c-btn a {
    font-size: 3vw;
  }
  #contentsWrapper .contentsFooter .sideExp {
    margin-left: -0.5em;
    margin-right: -0.5em;
  }
  #contentsWrapper .contentsFooter .copyright {
    margin-top: 9%;
    font-size: 1.67vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .contentsFooter {
    padding: 10% 0 12%;
  }
  #contentsWrapper .contentsFooter .block1 > *:not(:first-child) {
    margin-top: 6.5%;
  }
  #contentsWrapper .contentsFooter .block1 .s {
    font-size: 70%;
  }
  #contentsWrapper .contentsFooter .block2 .flex > *:not(:first-child) {
    margin-top: 1.5em;
  }
  #contentsWrapper .contentsFooter .block2 .c-btn a {
    font-size: min(5vw,36px);
  }
  #contentsWrapper .contentsFooter h3 {
    font-size: 5vw;
  }
  #contentsWrapper .contentsFooter h4 {
    font-size: 4.5vw;
  }
  #contentsWrapper .contentsFooter h5 {
    font-size: 4vw;
  }
  #contentsWrapper .contentsFooter .copyright {
    font-size: 3.34vw;
  }
}

/* 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 ↑ ======== */
