@charset "UTF-8";
:root {
  --maincolor: #ff4e00;
  --subcolor: #22a8d3;
  --textcolor: #0d0d0d;
  --container: 1200px;
}

/* ======== ↓ common ↓ ======== */
#contentsWrapper {
  font-size: 15px;
  font-family: "UD新ゴNT B", "UD Shin Go NT 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: 1.25vw !important;
  }
  #contentsWrapper .font-12 {
    font-size: 1.5vw !important;
  }
  #contentsWrapper .font-14 {
    font-size: 1.75vw !important;
  }
  #contentsWrapper .font-16 {
    font-size: 2vw !important;
  }
  #contentsWrapper .font-18 {
    font-size: 2.25vw !important;
  }
  #contentsWrapper .font-20 {
    font-size: 2.5vw !important;
  }
  #contentsWrapper .font-22 {
    font-size: 2.75vw !important;
  }
  #contentsWrapper .font-24 {
    font-size: 3vw !important;
  }
  #contentsWrapper .font-26 {
    font-size: 3.25vw !important;
  }
  #contentsWrapper .font-28 {
    font-size: 3.5vw !important;
  }
  #contentsWrapper .font-30 {
    font-size: 3.75vw !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 .mt-55 {
  margin-top: 5.5em !important;
}

#contentsWrapper .mt-60 {
  margin-top: 6em !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新ゴNT B", "UD Shin Go NT 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 ↓ ======== */
#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/body_bg.jpg) repeat-y center/cover;
}

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

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

#contentsWrapper h2.heading {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#contentsWrapper h2.heading:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: -webkit-gradient(linear, left top, right top, from(#ff3939), to(#ff960e));
  background: linear-gradient(90deg, #ff3939, #ff960e);
  border-radius: 3em;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#contentsWrapper h2.heading .wrap {
  display: block;
  position: relative;
  padding: 0.52em 2.65em;
}

#contentsWrapper h2.heading .wrap:before, #contentsWrapper h2.heading .wrap:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.175em;
  aspect-ratio: 1 / 1;
  background: url(../images/title_dec.png) no-repeat center/contain;
}

#contentsWrapper h2.heading .wrap:before {
  left: 0.9em;
}

#contentsWrapper h2.heading .wrap:after {
  right: 0.9em;
}

#contentsWrapper h2.heading.js-scroll:before {
  -webkit-transition: 0.6s cubic-bezier(0.5, 0, 0.5, 1) 0.3s;
  transition: 0.6s cubic-bezier(0.5, 0, 0.5, 1) 0.3s;
  width: 2em;
  opacity: 0;
}

#contentsWrapper h2.heading.js-scroll .wrap {
  -webkit-transition: 0.6s ease 0.9s;
  transition: 0.6s ease 0.9s;
  opacity: 0;
}

#contentsWrapper h2.heading.js-scroll .wrap:before, #contentsWrapper h2.heading.js-scroll .wrap:after {
  -webkit-transition: 1s ease 0.9s;
  transition: 1s ease 0.9s;
  opacity: 0;
  -webkit-transform: rotate(-360deg) scale(0.7);
          transform: rotate(-360deg) scale(0.7);
}

#contentsWrapper h2.heading.js-scroll .wrap:after {
  -webkit-transform: rotate(360deg) scale(0.7);
          transform: rotate(360deg) scale(0.7);
}

#contentsWrapper h2.heading.is-scroll:before {
  opacity: 1;
  width: 100%;
}

#contentsWrapper h2.heading.is-scroll .wrap {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

#contentsWrapper h2.heading.is-scroll .wrap:before, #contentsWrapper h2.heading.is-scroll .wrap:after {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

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

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

#contentsWrapper .c-btn a {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.05em;
  width: 100%;
  max-width: 16.66em;
  min-height: 2.22em;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#19bde6), to(#5dd58a));
  background: linear-gradient(90deg, #19bde6, #5dd58a);
  border-radius: 0.388em;
  padding: 0.25em 1.5em;
  margin: 0 auto;
  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:after {
  content: '';
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 0.4em solid transparent;
  border-left: 0.6em solid currentColor;
  border-right: 0;
  -webkit-transition: inherit;
  transition: inherit;
}

#contentsWrapper .c-btn a:hover {
  -webkit-animation: button 1.2s ease 0s infinite normal forwards running;
          animation: button 1.2s ease 0s infinite normal forwards running;
  -webkit-filter: saturate(1.2) brightness(0.8);
          filter: saturate(1.2) brightness(0.8);
}

#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: 3vw;
  }
}

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

#contentsWrapper .c-frame {
  background: repeating-linear-gradient(90deg, #1b7f00, #1b7f00 2.25%, #60a64d 2.25%, #60a64d 4.25%) repeat-x top center/100% 20px, repeating-linear-gradient(90deg, #1b7f00, #1b7f00 2.25%, #60a64d 2.25%, #60a64d 4.25%) repeat-x bottom center/100% 20px, rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 70px 3.4em;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 800px) {
  #contentsWrapper .c-frame {
    border-radius: 2.5vw;
    padding: 8.75vw 4%;
    background: repeating-linear-gradient(90deg, #1b7f00, #1b7f00 4.75%, #60a64d 4.75%, #60a64d 9.5%) repeat-x top center/100% 2.5vw, repeating-linear-gradient(90deg, #1b7f00, #1b7f00 4.75%, #60a64d 4.75%, #60a64d 9.5%) repeat-x bottom center/100% 2.5vw, rgba(255, 255, 255, 0.8);
  }
}

#contentsWrapper .c-tab_navWrap {
  font-size: 45px;
  font-weight: bold;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  background: var(--maincolor);
  border-bottom: 0.22em solid #ff4739;
  border-radius: 0.66em 0.66em 0 0;
  overflow: hidden;
}

#contentsWrapper .c-tab_nav {
  text-align: center;
  width: calc(calc(100% - 6px) / 3);
  color: #fff;
  background: #ffc000;
  padding: 0.3em 0.5em 0.05em;
  cursor: pointer;
}

#contentsWrapper .c-tab_nav.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#ff5e39), to(#ff4739)) !important;
  background: linear-gradient(#ff5e39, #ff4739) !important;
}

#contentsWrapper .c-tab_nav.disabled {
  background: #c1c1c1 !important;
}

#contentsWrapper .c-tab_nav.disabled.active {
  background: -webkit-gradient(linear, left top, left bottom, from(#d1d1d1), to(#c1c1c1)) !important;
  background: linear-gradient(#d1d1d1, #c1c1c1) !important;
}

#contentsWrapper .c-tab_nav:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffc000), to(#ff4739));
  background: linear-gradient(#ffc000, #ff4739);
}

#contentsWrapper .c-tab_contentWrap {
  position: relative;
}

#contentsWrapper .c-tab_content {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
}

#contentsWrapper .c-tab_content.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: none;
          transform: none;
}

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

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

#contentsWrapper .c-iframeWrapper {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

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

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

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

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

#contentsWrapper .p-kv.js-scroll .img {
  -webkit-transition: 1s ease 0.3s;
  transition: 1s ease 0.3s;
  opacity: 0;
  -webkit-filter: brightness(1.2) blur(5px);
          filter: brightness(1.2) blur(5px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

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

#contentsWrapper .p-video {
  padding-top: 100px;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-video {
    padding-top: 10%;
  }
}

#contentsWrapper .p-product {
  padding-top: 125px;
}

#contentsWrapper .p-product .c-tab {
  margin-top: 62px;
}

#contentsWrapper .p-product .block1 {
  margin-top: 42px;
}

#contentsWrapper .p-product .block1.comingsoon {
  aspect-ratio: 16 / 9;
  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 .p-product .block1.comingsoon img {
  max-width: 56%;
}

#contentsWrapper .p-product .block1 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

#contentsWrapper .p-product .block1 h3 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  color: #fff;
  background: #47cfbb;
  border-radius: 3em;
  padding: 0.65em 1em;
}

#contentsWrapper .p-product .block1 table {
  width: 92%;
  margin: 0 auto;
  border-collapse: collapse;
}

#contentsWrapper .p-product .block1 table th, #contentsWrapper .p-product .block1 table td {
  font-size: 20px;
  padding: 0.96em 1em;
}

#contentsWrapper .p-product .block1 table th {
  text-align: center;
}

#contentsWrapper .p-product .block1 table td {
  text-align: left;
}

#contentsWrapper .p-product .block1 table tr:not(:first-child) th, #contentsWrapper .p-product .block1 table tr:not(:first-child) td {
  border-top: 2px solid #8ec31f;
}

#contentsWrapper .p-product .block2 {
  margin-top: 95px;
}

#contentsWrapper .p-product .block2 figure {
  margin-top: 60px;
}

#contentsWrapper .p-product .block2 figure figcaption {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.05em;
  margin-top: 1em;
}

#contentsWrapper .p-product .block2 figure figcaption .l {
  font-size: 160%;
}

#contentsWrapper .p-product .block2 figure figcaption .s {
  font-size: 66.66%;
}

#contentsWrapper .p-product .close .block2 h2 + p {
  font-size: 48px;
  text-align: center;
}

#contentsWrapper .p-product .close .block2 figure figcaption {
  color: #999999 !important;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-product .block1 .img {
    width: 55.283%;
  }
  #contentsWrapper .p-product .block1 .detail {
    width: calc(44.717% - 40px);
  }
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-product {
    padding-top: 12%;
  }
  #contentsWrapper .p-product .c-tab {
    margin-top: 6%;
  }
  #contentsWrapper .p-product .block1 {
    margin-top: 5%;
  }
  #contentsWrapper .p-product .block2 {
    margin-top: 10%;
  }
  #contentsWrapper .p-product .block2 figure {
    margin-top: 6%;
  }
  #contentsWrapper .p-product .block2 figure figcaption {
    font-size: 2.5vw;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  #contentsWrapper .p-product .block1 .item {
    gap: 2%;
  }
  #contentsWrapper .p-product .block1 .detail {
    width: 42.717%;
  }
  #contentsWrapper .p-product .block1 h3 {
    font-size: 2.083vw;
  }
  #contentsWrapper .p-product .block1 table th, #contentsWrapper .p-product .block1 table td {
    font-size: 1.66vw;
    padding: 0.96em 0.5em;
  }
  #contentsWrapper .p-product .close .block2 h2 + p {
    font-size: 4vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-product .block1 .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
  #contentsWrapper .p-product .block1 h3 {
    font-size: 4.5vw;
  }
  #contentsWrapper .p-product .block1 table th, #contentsWrapper .p-product .block1 table td {
    font-size: 4vw;
  }
  #contentsWrapper .p-product .block2 figure figcaption {
    font-size: 4vw;
  }
  #contentsWrapper .p-product .close .block2 h2 + p {
    font-size: 6vw;
  }
}

#contentsWrapper .p-overview {
  padding-top: 155px;
}

#contentsWrapper .p-overview .block1 .txt1 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1.35;
  margin-top: 1em;
}

#contentsWrapper .p-overview .block1 .txt1 .l {
  font-size: 125%;
}

#contentsWrapper .p-overview .block1 .txt2 {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin-top: 0.5em;
}

#contentsWrapper .p-overview .block1 h3 {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #47cfbb;
  border-radius: 3em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 8.057em;
  margin: 0 auto;
  padding: 0 1em;
}

#contentsWrapper .p-overview .close .c-frame:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: calc(100% - 40px);
  background: rgba(221, 221, 221, 0.6);
  z-index: 3;
}

#contentsWrapper .p-overview .close .c-frame:after {
  content: '終了しました';
  position: absolute;
  top: 14%;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 50px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 4;
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-overview {
    padding-top: 15%;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  #contentsWrapper .p-overview .block1 .txt1 {
    font-size: 3.33vw;
  }
  #contentsWrapper .p-overview .block1 .txt2 {
    font-size: 3.33vw;
  }
  #contentsWrapper .p-overview .block1 h3 {
    font-size: 3vw;
  }
  #contentsWrapper .p-overview .close .c-frame:after {
    font-size: 5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-overview .block1 .txt1 {
    font-size: 4vw;
  }
  #contentsWrapper .p-overview .block1 .txt2 {
    font-size: 4vw;
  }
  #contentsWrapper .p-overview .block1 h3 {
    font-size: 4.5vw;
  }
  #contentsWrapper .p-overview .close .c-frame:before {
    height: calc(100% - 5vw);
  }
  #contentsWrapper .p-overview .close .c-frame:after {
    top: 15%;
    font-size: 6vw;
  }
}

#contentsWrapper .p-method {
  padding: 210px 0 205px;
}

#contentsWrapper .p-method .block1 .txt {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: -0.04em;
}

#contentsWrapper .p-method_notes {
  max-width: 778px;
  margin: 0 auto;
}

#contentsWrapper .p-method_notes h3 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

#contentsWrapper .p-method_notes ul {
  font-size: 18px;
  font-family: "UD新ゴNT M", "UD Shin Go NT Medium", sans-serif;
  max-width: 43em;
  margin: 0 auto;
}

#contentsWrapper .p-method_notes ul li {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .p-method .block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin: 0 -3.4em;
  }
  #contentsWrapper .p-method .block1 .img {
    width: 46.25%;
    margin-left: 1.5%;
  }
  #contentsWrapper .p-method .block1 .txt {
    width: calc(52.25% - 10px);
    margin-top: 0.25em;
  }
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .p-method {
    padding: 15% 0;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  #contentsWrapper .p-method .block1 .txt {
    font-size: 3.2vw;
  }
  #contentsWrapper .p-method_notes h3 {
    font-size: 2vw;
  }
  #contentsWrapper .p-method_notes ul {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .p-method .block1 .txt {
    font-size: 4.5vw;
    text-align: center;
  }
  #contentsWrapper .p-method_notes h3 {
    font-size: 4vw;
  }
  #contentsWrapper .p-method_notes ul {
    font-size: 3vw;
  }
}

#contentsWrapper .contentsFooter {
  padding: 80px 0 30px;
  color: #fff;
  background: rgba(27, 127, 0, 0.68);
}

#contentsWrapper .contentsFooter h2 {
  font-size: 45px;
  font-weight: bold;
  text-align: center;
}

#contentsWrapper .contentsFooter h3 {
  font-size: 36px;
  text-align: center;
  line-height: 1.3;
  color: #1b7f00;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

#contentsWrapper .contentsFooter h4 {
  font-size: 30px;
  text-align: center;
  letter-spacing: -0.05em;
}

#contentsWrapper .contentsFooter .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  text-align: center;
  line-height: 1.4;
}

#contentsWrapper .contentsFooter .block > * {
  background: #acd753;
  border-radius: 20px;
  padding: 2em 1.5em 1.5em;
}

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

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

#contentsWrapper .contentsFooter .c-btn a {
  font-size: 30px;
  max-width: 15.33em;
  min-height: 2em;
  border: 0.1em solid currentColor;
}

#contentsWrapper .contentsFooter .copyright {
  max-width: 90%;
  margin: 4% auto 0;
}

@media screen and (min-width: 801px) {
  #contentsWrapper .contentsFooter .block > * {
    width: calc(calc(100% - 40px) / 2);
  }
}

@media screen and (max-width: 1220px) {
  #contentsWrapper .contentsFooter {
    padding: 8% 0 3%;
  }
  #contentsWrapper .contentsFooter .sideExp {
    margin-left: -0.5em;
    margin-right: -0.5em;
  }
}

@media screen and (min-width: 801px) and (max-width: 1220px) {
  #contentsWrapper .contentsFooter h2 {
    font-size: 3.75vw;
  }
  #contentsWrapper .contentsFooter h3 {
    font-size: 3vw;
  }
  #contentsWrapper .contentsFooter h4 {
    font-size: 2.3vw;
  }
  #contentsWrapper .contentsFooter .c-btn a {
    font-size: 2.3vw;
  }
}

@media screen and (max-width: 800px) {
  #contentsWrapper .contentsFooter h2 {
    font-size: 5vw;
  }
  #contentsWrapper .contentsFooter h3 {
    font-size: 4.5vw;
  }
  #contentsWrapper .contentsFooter h4 {
    font-size: 3.5vw;
  }
  #contentsWrapper .contentsFooter .c-btn a {
    font-size: 3.5vw;
  }
  #contentsWrapper .contentsFooter .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
  #contentsWrapper .contentsFooter .block > * {
    border-radius: 2.5vw;
    padding: 1.5em 1.2em;
  }
}

/* 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.is-scroll.fadeInUp, .js-scroll.is-scroll.fadeInLeft, .js-scroll.is-scroll.fadeInRight, .js-scroll.is-scroll.fadeInZoom {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

@-webkit-keyframes button {
  0% {
    -webkit-box-shadow: 0 0 2px 0.5em rgba(25, 189, 230, 0);
            box-shadow: 0 0 2px 0.5em rgba(25, 189, 230, 0);
  }
  75% {
    -webkit-box-shadow: 0 0 0 0.05em rgba(25, 189, 230, 0.5);
            box-shadow: 0 0 0 0.05em rgba(25, 189, 230, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 4px 0.7em rgba(25, 189, 230, 0);
            box-shadow: 0 0 4px 0.7em rgba(25, 189, 230, 0);
  }
}

@keyframes button {
  0% {
    -webkit-box-shadow: 0 0 2px 0.5em rgba(25, 189, 230, 0);
            box-shadow: 0 0 2px 0.5em rgba(25, 189, 230, 0);
  }
  75% {
    -webkit-box-shadow: 0 0 0 0.05em rgba(25, 189, 230, 0.5);
            box-shadow: 0 0 0 0.05em rgba(25, 189, 230, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 4px 0.7em rgba(25, 189, 230, 0);
            box-shadow: 0 0 4px 0.7em rgba(25, 189, 230, 0);
  }
}

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