@charset "UTF-8";
:root {
  --maincolor: #00b4f5;
  --subcolor: #fff544;
  --textcolor: #674633;
  --container: 1200px;
}

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "じゅん 34", "Jun 34", "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);
  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: "じゅん 34", "Jun 34", "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.12vw;
  text-align: center;
  letter-spacing: 0.04em;
  display: block;
  width: 100%;
  max-width: 13.2em;
  color: #674633;
  background: linear-gradient(35deg, var(--maincolor) 50%, var(--subcolor) 50%) no-repeat top left 100%/250% 100%;
  border-radius: 3em;
  padding: 0.1em 0.5em;
  margin: 0 auto;
  position: relative;
  -webkit-transition: 1s cubic-bezier(0.33, 0, 0.33, 1);
  transition: 1s cubic-bezier(0.33, 0, 0.33, 1);
}

#contentsWrapper .c-btn a:hover {
  color: #fff;
  background-position: top left 0%;
}

@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: 5vw;
  }
}

#contentsWrapper .c-frame {
  background: #fff;
  border: 0.35vw solid #000;
  border-radius: 2vw;
  position: relative;
}

#contentsWrapper .c-frame:before {
  content: '';
  position: absolute;
  top: 1vw;
  left: 1vw;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-60deg, #ff5a5a, #ff5a5a 2.1vw, #ff9b9b 2.2vw, #ff9b9b 4.2vw, #ff5a5a 4.3vw);
  border: inherit;
  border-radius: inherit;
  z-index: -1;
}

#contentsWrapper .c-frame.--yellow:before {
  background: repeating-linear-gradient(-60deg, #ffc328, #ffc328 2.1vw, #ffe191 2.2vw, #ffe191 4.2vw, #ffc328 4.3vw);
}

#contentsWrapper .c-frame.--blue:before {
  background: repeating-linear-gradient(-60deg, #5fa0ff, #5fa0ff 2.1vw, #96d2ff 2.2vw, #96d2ff 4.2vw, #5fa0ff 4.3vw);
}

#contentsWrapper .c-frame.--green:before {
  background: repeating-linear-gradient(-60deg, #00966e, #00966e 2.1vw, #6ec355 2.2vw, #6ec355 4.2vw, #00966e 4.3vw);
}

#contentsWrapper .c-frame > * {
  border-radius: 1.7vw;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}

#contentsWrapper .c-frame > a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#contentsWrapper .c-frame > a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

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

#contentsWrapper .swiper img {
  width: 100%;
}

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

#contentsWrapper .swiper-slide {
  min-width: 100%;
}

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

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

#contentsWrapper .p-kv .logo1 {
  position: absolute;
  top: 1.7%;
  left: 3.3%;
  width: 24.2%;
  z-index: 2;
}

#contentsWrapper .p-kv .logo2 {
  position: absolute;
  top: 6.8%;
  left: 1.6%;
  width: 27.6%;
  z-index: 2;
}

#contentsWrapper .p-kv .movie {
  aspect-ratio: 1 / 0.73125;
}

#contentsWrapper .p-kv .movie video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-kv .logo1 {
    width: 40%;
  }
  #contentsWrapper .p-kv .logo2 {
    top: 10%;
    width: 44%;
  }
}

#contentsWrapper .p-sec01 {
  padding: 11.68vw 0 9.3vw;
  margin-top: -11.68vw;
  background: url(../images/sec01_bg.jpg) no-repeat center top/cover;
  overflow: hidden;
  position: relative;
  z-index: 2;
  -webkit-mask: url(../images/sec01_mask_top.svg) no-repeat left top/100% calc(11.68vw + 1px), url(../images/sec01_mask_bottom.svg) no-repeat left bottom/100% calc(7.68vw + 1px), linear-gradient(transparent, transparent calc(11.68vw - 1px), #000 calc(11.68vw - 1px), #000 calc(100% - 7.68vw + 1px), transparent calc(100% - 7.68vw + 1px));
          mask: url(../images/sec01_mask_top.svg) no-repeat left top/100% calc(11.68vw + 1px), url(../images/sec01_mask_bottom.svg) no-repeat left bottom/100% calc(7.68vw + 1px), linear-gradient(transparent, transparent calc(11.68vw - 1px), #000 calc(11.68vw - 1px), #000 calc(100% - 7.68vw + 1px), transparent calc(100% - 7.68vw + 1px));
  margin-top: calc(-1 * 11.68vw);
  height: calc(100% + 11.68vw);
}

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

#contentsWrapper .p-sec01_inner h2 {
  position: absolute;
  top: -6.7%;
  left: 0;
  right: 0;
  margin: auto;
  width: 53.78%;
}

#contentsWrapper .p-sec01 .block1 {
  padding: 5.5% 0 4.5% 6%;
  position: relative;
}

#contentsWrapper .p-sec01 .block1 .txt1 {
  font-size: 1.8vw;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #674633;
  position: absolute;
  top: 10.5%;
  left: 46%;
}

#contentsWrapper .p-sec01 .block1 .detail {
  position: relative;
}

#contentsWrapper .p-sec01 .block1 .detail .package {
  width: 49%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain {
  position: absolute;
  font-size: 1.6vw;
  color: #674633;
}

#contentsWrapper .p-sec01 .block1 .detail .explain .label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 3em;
  padding: 0.1em 0.5em 0.2em;
  position: relative;
}

#contentsWrapper .p-sec01 .block1 .detail .explain .label:before {
  content: '';
  position: absolute;
  top: -0.37em;
  right: calc(100% - 1px);
  aspect-ratio: 1 / 0.633;
  width: 60%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.top {
  top: 22.3%;
  left: 42.6%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.top .label {
  color: #fff;
  background: #00b4f0;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.top .label:before {
  background: url(../images/sec01_arrow01.png) no-repeat center/contain;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.top p {
  padding-left: 0.5em;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.top .img1 {
  width: 14.6vw;
  max-width: none;
  margin-top: 9%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.top .figure1 {
  position: absolute;
  top: 25%;
  left: 62.6%;
  font-size: 1.2vw;
  line-height: 1.2;
  width: 10em;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.top .figure1 img {
  width: 166.8%;
  max-width: none;
  margin: -19% 0 0 -35%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.bottom {
  top: 81.5%;
  left: 42.5%;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.bottom .label {
  background: #fff546;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.bottom .label:before {
  background: url(../images/sec01_arrow02.png) no-repeat center/contain;
}

#contentsWrapper .p-sec01 .block1 .detail .explain.bottom p {
  padding-left: 0.5em;
}

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

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

#contentsWrapper .p-sec01 .dec.dec1 {
  top: 7.4%;
  left: -11.5%;
  width: 24.4085%;
}

#contentsWrapper .p-sec01 .dec.dec2 {
  top: 5%;
  right: -10%;
  width: 19.711%;
}

#contentsWrapper .p-sec01 .dec.dec3 {
  top: 38%;
  right: -7%;
  width: 15.447%;
}

#contentsWrapper .p-sec01 .dec.dec4 {
  top: 77%;
  left: -8.4%;
  width: 19.6341%;
}

#contentsWrapper .p-sec01 .dec.dec5 {
  top: 61.7%;
  right: -13.1%;
  width: 33.8423%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec01 {
    padding: 20% 0 20%;
  }
  #contentsWrapper .p-sec01_inner {
    width: 96%;
  }
  #contentsWrapper .p-sec01 .block1 {
    padding: 16% 0 12%;
  }
  #contentsWrapper .p-sec01 .block1 .txt1 {
    font-size: 3vw;
    text-align: center;
    top: 8%;
    left: 0;
    right: 0;
    margin: auto;
  }
  #contentsWrapper .p-sec01 .block1 .detail .explain {
    font-size: 3vw;
  }
  #contentsWrapper .p-sec01 .block1 .detail .explain.top {
    top: 15%;
  }
  #contentsWrapper .p-sec01 .block1 .detail .explain.top .img1 {
    width: 40%;
    margin-top: 0;
  }
  #contentsWrapper .p-sec01 .block1 .detail .explain.top .figure1 {
    top: 40%;
    left: 50%;
    font-size: 2.6vw;
  }
  #contentsWrapper .p-sec01 .block1 .detail .explain.bottom {
    top: 80%;
  }
  #contentsWrapper .p-sec01 .block1 .detail .explain.bottom .label:before {
    -webkit-transform-origin: 100% 20%;
            transform-origin: 100% 20%;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  #contentsWrapper .p-sec01 .dec.dec1 {
    top: -10%;
    left: -4%;
  }
  #contentsWrapper .p-sec01 .dec.dec2 {
    top: -6%;
    left: 81%;
  }
  #contentsWrapper .p-sec01 .dec.dec3 {
    top: 18%;
    left: 80%;
  }
  #contentsWrapper .p-sec01 .dec.dec4 {
    top: 87%;
    left: 2%;
    width: 26%;
  }
  #contentsWrapper .p-sec01 .dec.dec5 {
    top: 91%;
    right: -1%;
    width: 30%;
  }
}

#contentsWrapper .p-img01 {
  position: relative;
  z-index: 1;
  margin-top: -8.4vw;
}

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

#contentsWrapper .p-img02 {
  position: relative;
  z-index: 2;
  margin-top: -9.8vw;
}

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

#contentsWrapper .p-img03 {
  position: relative;
  z-index: 1;
  margin-top: -8.6vw;
}

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

#contentsWrapper .p-sec02 {
  padding: 4vw 0 10vw;
  background: url(../images/sec02_bg.jpg) no-repeat center top/cover;
  position: relative;
  z-index: 2;
  -webkit-mask: url(../images/sec02_mask_top.svg) no-repeat left top/100% calc(3.64vw + 1px), url(../images/sec02_mask_bottom.svg) no-repeat left bottom/100% calc(5.36vw + 1px), linear-gradient(transparent, transparent calc(3.64vw - 1px), #000 calc(3.64vw - 1px), #000 calc(100% - 5.36vw + 1px), transparent calc(100% - 5.36vw + 1px));
          mask: url(../images/sec02_mask_top.svg) no-repeat left top/100% calc(3.64vw + 1px), url(../images/sec02_mask_bottom.svg) no-repeat left bottom/100% calc(5.36vw + 1px), linear-gradient(transparent, transparent calc(3.64vw - 1px), #000 calc(3.64vw - 1px), #000 calc(100% - 5.36vw + 1px), transparent calc(100% - 5.36vw + 1px));
  margin-top: calc(-1 * 4.6vw);
  height: calc(100% + 4.6vw);
}

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

#contentsWrapper .p-sec02 .lineup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 21.6%;
  position: relative;
  z-index: 2;
}

#contentsWrapper .p-sec02 .lineup > li {
  width: calc(100% / 4);
  margin-top: 2%;
}

#contentsWrapper .p-sec02 .lineup > li img {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

#contentsWrapper .p-sec02 .lineup > li figcaption {
  font-size: 1.56vw;
  text-align: center;
  line-height: 1.3;
  color: #783c14;
}

#contentsWrapper .p-sec02 .lineup.js-scroll > li {
  -webkit-transition: 0.3s ease 0.3s;
  transition: 0.3s ease 0.3s;
  opacity: 0;
}

#contentsWrapper .p-sec02 .lineup.js-scroll > li img {
  -webkit-transform-origin: center top -10vw;
          transform-origin: center top -10vw;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li {
  opacity: 1;
}

#contentsWrapper .p-sec02 .lineup.is-scroll > li img {
  -webkit-animation: lineupImg 1s cubic-bezier(0.5, 0, 0.5, 1) 0.3s 1 normal forwards running;
          animation: lineupImg 1s cubic-bezier(0.5, 0, 0.5, 1) 0.3s 1 normal forwards running;
}

@-webkit-keyframes lineupImg {
  0% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  25% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes lineupImg {
  0% {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  25% {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

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

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

#contentsWrapper .p-sec02 .dec.dec1 {
  top: 28.6%;
  right: 2.6%;
  width: 18.7%;
}

#contentsWrapper .p-sec02 .dec.dec2 {
  top: 45%;
  left: 3.6%;
  width: 14.38%;
}

#contentsWrapper .p-sec02 .dec.dec3 {
  top: 52%;
  right: 2.7%;
  width: 11.62%;
}

#contentsWrapper .p-sec02 .dec.dec4 {
  left: 1.6%;
  bottom: 8.25%;
  width: 16.04%;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec02 {
    padding: 10% 0 22%;
  }
  #contentsWrapper .p-sec02 h2 {
    width: 40%;
  }
  #contentsWrapper .p-sec02 .lineup {
    padding: 0 4%;
  }
  #contentsWrapper .p-sec02 .dec.dec1 {
    top: 3%;
    right: 72%;
    width: 25%;
  }
  #contentsWrapper .p-sec02 .dec.dec2 {
    top: 86%;
    width: 18%;
  }
  #contentsWrapper .p-sec02 .dec.dec3 {
    top: 6%;
    right: 10%;
    width: 15%;
  }
  #contentsWrapper .p-sec02 .dec.dec4 {
    left: 70%;
    bottom: 1%;
    width: 22%;
  }
}

#contentsWrapper .p-movie01 {
  position: relative;
  z-index: 1;
  margin-top: -13.5vw;
}

#contentsWrapper .p-movie01 video {
  width: 111%;
  margin-left: -5.5%;
}

#contentsWrapper .p-sec03 {
  padding: 17vw 0 12.5vw;
  background: repeating-linear-gradient(#ffebb9, #ffebb9 14.76vw, #fff 14.76vw, #fff 15.56vw);
  position: relative;
  z-index: 2;
  -webkit-mask: url(../images/sec03_mask_top.svg) no-repeat left top/100% calc(12.2vw + 2px), url(../images/sec03_mask_bottom.svg) no-repeat left bottom/100% calc(3.76vw + 2px), linear-gradient(transparent, transparent calc(12.2vw - 1px), #000 calc(12.2vw - 1px), #000 calc(100% - 3.76vw + 1px), transparent calc(100% - 3.76vw + 1px));
          mask: url(../images/sec03_mask_top.svg) no-repeat left top/100% calc(12.2vw + 2px), url(../images/sec03_mask_bottom.svg) no-repeat left bottom/100% calc(3.76vw + 2px), linear-gradient(transparent, transparent calc(12.2vw - 1px), #000 calc(12.2vw - 1px), #000 calc(100% - 3.76vw + 1px), transparent calc(100% - 3.76vw + 1px));
  margin-top: calc(-1 * 19.8vw);
  height: calc(100% + 19.8vw);
}

#contentsWrapper .p-sec03_inner {
  background: #fff;
  border: 0.24vw solid #674633;
  border-radius: 1.8vw;
  overflow: hidden;
  font-family: "じゅん 501", "Jun 501", "Noto Sans JP", sans-serif;
}

#contentsWrapper .p-sec03_innerWrapper {
  width: 60.24%;
  margin: 0 auto;
  position: relative;
}

#contentsWrapper .p-sec03_head {
  color: #fff;
  background: #00b4f5;
}

#contentsWrapper .p-sec03_head h2 {
  font-size: 3.2vw;
  text-align: center;
  padding: 0.15em 1em 0.3em;
}

#contentsWrapper .p-sec03 .block1 {
  padding: 7% 4% 3.5%;
  position: relative;
}

#contentsWrapper .p-sec03 .block1 .img {
  position: relative;
  z-index: 2;
}

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

#contentsWrapper .p-sec03 .block1 dl dt:not(:first-child), #contentsWrapper .p-sec03 .block1 dl dd:not(:first-child) {
  margin-top: 0.25em;
}

#contentsWrapper .p-sec03 .block1 dl dd {
  margin-left: 1.35em;
}

#contentsWrapper .p-sec03 .block1 .figure {
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: 10.2%;
}

#contentsWrapper .p-sec03_foot {
  margin-top: 2%;
  padding: 1.5% 0;
  background: #005aa5;
}

#contentsWrapper .p-sec03 .dec {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

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

#contentsWrapper .p-sec03 .dec.dec1 {
  top: -8.4%;
  left: -26%;
  width: 19.577%;
}

#contentsWrapper .p-sec03 .dec.dec2 {
  top: -19.5%;
  left: 93.7%;
  width: 32.56%;
}

#contentsWrapper .p-sec03 .dec.dec3 {
  left: -27.8%;
  bottom: -20%;
  width: 53.285%;
}

#contentsWrapper .p-sec03 .dec.dec4 {
  left: 76.9%;
  bottom: -20%;
  width: 53.73%;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-sec03 .block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #contentsWrapper .p-sec03 .block1 .img {
    width: 44%;
  }
  #contentsWrapper .p-sec03 .block1 .detail {
    width: 52%;
    margin-left: 4%;
    margin-top: 1%;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-sec03_innerWrapper {
    width: 96%;
  }
  #contentsWrapper .p-sec03_head h2 {
    font-size: 6vw;
  }
  #contentsWrapper .p-sec03 .block1 .img {
    width: 60%;
    padding-left: 10%;
  }
  #contentsWrapper .p-sec03 .block1 dl {
    font-size: 3.5vw;
    margin-top: 1em;
    padding: 0 10%;
  }
  #contentsWrapper .p-sec03 .block1 .figure {
    top: 5%;
    left: 70%;
    bottom: auto;
    width: 15%;
  }
  #contentsWrapper .p-sec03 .dec.dec1 {
    top: -6%;
    left: 1%;
  }
  #contentsWrapper .p-sec03 .dec.dec2 {
    top: -6%;
    left: 74%;
    width: 27%;
  }
  #contentsWrapper .p-sec03 .dec.dec3 {
    left: -13%;
    bottom: -7%;
    width: 43%;
  }
  #contentsWrapper .p-sec03 .dec.dec4 {
    left: 46%;
    bottom: 11%;
  }
}

#contentsWrapper .contentsFooter {
  padding: 5.5vw 0 2vw;
  background: #81cdff;
  position: relative;
  z-index: 1;
  margin-top: -5vw;
}

#contentsWrapper .contentsFooter .copyright {
  font-family: "UD新丸ゴ M","UD Shin Maru Go Medium","Noto Sans JP", sans-serif;
  font-size: 1.2vw;
  padding-left: 1.25em;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .contentsFooter {
    padding: 10vw 0 6vw;
  }
  #contentsWrapper .contentsFooter .copyright {
    font-size: 3vw;
  }
}

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

.js-scroll.fadeInLeft {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.js-scroll.fadeInRight {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.js-scroll.fadeInZoom {
  opacity: 0;
  -webkit-transition: 0.6s ease 0.3s;
  transition: 0.6s ease 0.3s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-scroll.fadeInPop {
  -webkit-transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  transition: 0.4s cubic-bezier(0.2, 0, 0.2, 1.6) 0.3s;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}

.js-scroll.fadeInMask {
  -webkit-transition: 1.5s ease 0.3s;
  transition: 1.5s ease 0.3s;
  -webkit-mask-image: linear-gradient(-45deg, transparent 45%, #000 55%);
          mask-image: linear-gradient(-45deg, transparent 45%, #000 55%);
  -webkit-mask-size: 300% 300%;
          mask-size: 300% 300%;
  -webkit-mask-position: 100% 100%;
          mask-position: 100% 100%;
}

.js-scroll.is-scroll.fadeInUp, .js-scroll.is-scroll.fadeInLeft, .js-scroll.is-scroll.fadeInRight, .js-scroll.is-scroll.fadeInZoom, .js-scroll.is-scroll.fadeInPop {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

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

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