@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  -webkit-font-feature-settings: inherit;
          font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  -webkit-box-shadow: 0 0 0 5px Canvas;
          box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

/* -------------------------------------------
----------------------------------------------
   共通
----------------------------------------------
----------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
  padding: 0;
  line-height: 1.6;
  font-weight: 500;
  background-color: #ffecec;
  color: #595960;
}

img {
  width: 100%;
}

section {
  padding: 40px 20px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #595960;
  text-align: center;
  margin-bottom: 24px;
}

.sp-view {
  display: none;
}

.pc-view {
  display: block;
}

@media screen and (max-width: 768px) {
  section {
    padding: 10.2564102564vw 5.1282051282vw;
  }
  .sp-view {
    display: block;
  }
  .pc-view {
    display: none;
  }
}
header {
  background-color: #fff;
  -webkit-box-shadow: inset 0 -1px 1px rgba(110, 110, 110, 0.2);
          box-shadow: inset 0 -1px 1px rgba(110, 110, 110, 0.2);
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 18px 20px 12px;
}
.header-inner img {
  width: auto;
  height: 30px;
}

@media screen and (max-width: 768px) {
  .header-inner {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    padding: 18px 20px 12px;
  }
  .header-inner img {
    width: auto;
    height: 30px;
  }
}
.hero_image {
  line-height: 0;
  width: 980px;
  margin: auto;
}
.hero_image img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .hero_image {
    line-height: 0;
    width: 100%;
    margin: auto;
  }
}
.cta-section {
  background-color: #fff;
  width: 980px;
  margin: auto;
}
.cta-section-inner {
  width: 824px;
  margin: auto;
  padding: 20px 0 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cta-section-inner .cta-section-l {
  width: 417px;
  padding: 20px 0;
  border-right: 1px solid #57AD45;
}
.cta-section-inner .cta-section-l .cta-section-l-inner {
  width: 384px;
  position: relative;
}
.cta-section-inner .cta-section-l .cta-section-l-inner a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background-color: #61C650;
  border-radius: 10px;
  font-size: 20px;
  width: 384px;
  height: 66px;
  text-decoration: none;
  outline: 2px solid #57AD45;
  border-bottom: 8px solid #57AD45;
  -webkit-transition: -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-filter 0.1s ease;
  transition: -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-filter 0.1s ease;
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
  transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease, -webkit-transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-filter 0.1s ease;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.cta-section-inner .cta-section-l .cta-section-l-inner a:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  border-bottom: 0;
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
.cta-section-inner .cta-section-l .cta-section-l-inner figure {
  width: 118px;
  position: absolute;
  bottom: -13px;
  left: 0;
  pointer-events: none;
}
.cta-section-inner .cta-section-l .cta-section-l-inner figure img {
  width: 100%;
}
.cta-section-inner .cta-section-l p {
  font-size: 14px;
  font-weight: normal;
  width: 330px;
  margin: auto;
  padding-top: 27px;
}
.cta-section-inner .cta-section-r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 375px;
}
.cta-section-inner .cta-section-r p {
  font-size: 16px;
  font-weight: bold;
}
.cta-section-inner .cta-section-r figure {
  width: 128px;
}
.cta-section-inner .cta-section-r figure img {
  width: 100%;
}

.line-cta-wrapper {
  background-color: #FFE5E5;
  padding-bottom: 80px;
}
.line-cta-wrapper .line-cta {
  width: 888px;
  margin: auto;
  border-radius: 20px;
  padding: 14px 0 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .cta-section {
    padding: 6.1538461538vw 5.1282051282vw 8.2051282051vw;
    width: 100%;
    margin: auto;
    position: relative;
    height: 31.7948717949vw;
  }
  .cta-section a {
    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;
    text-decoration: none;
    color: #fff;
    background-color: #61C650;
    border-radius: 10px;
    font-size: 5.1282051282vw;
    font-weight: 600;
    line-height: 0;
    width: 100%;
    margin: auto;
    outline: 2px solid #57AD45;
    border-bottom: 8px solid #57AD45;
    height: 16.9230769231vw;
  }
  .cta-section a:active {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
    height: 64px;
    outline: 2px solid #57AD45;
    border-bottom: 0;
    -webkit-filter: brightness(1.05);
            filter: brightness(1.05);
  }
  .cta-section figure {
    position: absolute;
    bottom: 7.6923076923vw;
    left: 7.6923076923vw;
    width: 27.4358974359vw;
  }
  .cta-section figure img {
    width: 100%;
  }
  .cta-wrapper {
    padding: 10.2564102564vw 0 0;
    background-color: #fff;
  }
}
.choice {
  background: #FFF7DF;
  padding: 40px 20px;
  width: 100%;
  margin: auto;
}
.choice h2 {
  width: 350px;
  margin: auto;
}
.choice h2 img {
  width: 100%;
}
.choice ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 980px;
  margin: auto;
}
.choice ol li {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  margin-top: 24px;
  -webkit-box-shadow: 3px 6px 0px 1px #FFD4D4;
          box-shadow: 3px 6px 0px 1px #FFD4D4;
  width: 305px;
}
.choice ol li .choice-txt {
  color: #EF4D4D;
  text-align: center;
  padding: 0;
}
.choice ol li .choice-txt .highlight {
  font-size: 16px;
  display: inline;
  -webkit-box-shadow: inset 0 -8px 0 0 rgba(239, 77, 77, 0.2);
          box-shadow: inset 0 -8px 0 0 rgba(239, 77, 77, 0.2);
  font-weight: bold;
}
.choice ol li .choice-txt .num {
  color: #fff;
  width: 24px;
  height: 24px;
  background-color: #EF4D4D;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin: 0 auto 12px;
  margin-left: 5px;
}
.choice ol li h3 {
  color: #EF4D4D;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 16px;
  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;
  height: 100px;
}
.choice ol li figure {
  width: 260px;
  margin: auto;
}
.choice ol li figure img {
  width: 100%;
}
.choice ol li p {
  color: #595960;
  text-align: left;
  padding-top: 16px;
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .choice {
    background: #FFF7DF;
    padding: 40px 20px;
    width: 100%;
  }
  .choice h2 {
    width: 89.7435897436vw;
    margin: auto;
  }
  .choice h2 img {
    width: 100%;
  }
  .choice ol {
    display: block;
    width: 100%;
  }
  .choice ol li {
    width: 89.7435897436vw;
    background: #fff;
    border-radius: 20px;
    padding: 6.1538461538vw 5.1282051282vw;
    margin: 6.1538461538vw auto 0;
    -webkit-box-shadow: 3px 6px 0px 1px #FFD4D4;
            box-shadow: 3px 6px 0px 1px #FFD4D4;
  }
  .choice ol li .choice-txt {
    color: #EF4D4D;
    text-align: center;
    padding: 0;
  }
  .choice ol li .choice-txt .highlight {
    font-size: 4.1025641026vw;
    display: inline;
    -webkit-box-shadow: inset 0 -8px 0 0 rgba(239, 77, 77, 0.2);
            box-shadow: inset 0 -8px 0 0 rgba(239, 77, 77, 0.2);
    font-weight: bold;
  }
  .choice ol li .choice-txt .num {
    color: #fff;
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    background-color: #EF4D4D;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 6.1538461538vw;
    font-weight: bold;
    font-size: 3.5897435897vw;
    display: inline-block;
    margin: 0 auto 2.0512820513vw;
    margin-left: 1.2820512821vw;
  }
  .choice ol li h3 {
    color: #EF4D4D;
    text-align: center;
    font-size: 4.6153846154vw;
    font-weight: bold;
    padding-bottom: 4.1025641026vw;
    height: auto;
  }
  .choice ol li figure {
    width: 66.6666666667vw;
    margin: auto;
  }
  .choice ol li figure img {
    width: 100%;
  }
  .choice ol li p {
    color: #595960;
    text-align: left;
    padding: 4.1025641026vw 0 0;
    font-size: 3.5897435897vw;
    line-height: 1.8;
  }
}
.step-container {
  background: #fff;
  padding: 40px 0;
  width: 100%;
  margin: auto;
}
.step-container .swiper-container {
  position: relative;
}
.step-container h2 {
  width: 350px;
  margin: 0 auto 24px;
}
.step-container .step-container-inner {
  margin: 0 20px;
  width: 980px;
  margin: auto;
}
.step-container .step-container-inner .step-container-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.step-container .step-container-inner .step-container-wrapper .step-item {
  background: #FFF1F1;
  border-radius: 20px;
  border: 4px solid #EF4D4D;
  -webkit-box-shadow: 3px 7px 0px 1px #FFD4D4;
          box-shadow: 3px 7px 0px 1px #FFD4D4;
  width: 233px;
  position: relative;
  height: 571px;
}
.step-container .step-container-inner .step-container-wrapper .step-item .step {
  color: #FFF7DF;
  background: #EF4D4D;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 24px auto 8px;
}
.step-container .step-container-inner .step-container-wrapper .step-item h3 {
  text-align: center;
  color: #EF4D4D;
  font-size: 18px;
  line-height: 1.4;
}
.step-container .step-container-inner .step-container-wrapper .step-item .note {
  font-size: 12px;
  text-align: center;
  font-weight: normal;
  padding: 8px;
}
.step-container .step-container-inner .step-container-wrapper .step-item .note span {
  font-size: 11px;
}
.step-container .step-container-inner .step-container-wrapper .step-item .note a {
  color: #EF4D4D;
  font-weight: bold;
}
.step-container .step-container-inner .step-container-wrapper .step-item .login-link {
  font-size: 12px;
  text-align: center;
  font-weight: normal;
}
.step-container .step-container-inner .step-container-wrapper .step-item .login-link a {
  color: #EF4D4D;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.step-container .step-container-inner .step-container-wrapper .step-item .login-link a:hover {
  opacity: 0.8;
}
.step-container .step-container-inner .step-container-wrapper .step-item figure {
  width: 200px;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.step-container .step-container-inner .step-container-wrapper .step-item figure img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .step-container {
    background: #fff;
    padding: 10.2564102564vw 5.1282051282vw;
    width: 100%;
  }
  .step-container h2 {
    width: 89.7435897436vw;
    margin: 0 auto 6.1538461538vw;
  }
  .step-container .swiper {
    margin: 0 5.1282051282vw;
  }
  .step-container .swiper-wrapper .slide1 {
    background: url("../images/sp/step-bg1.png") no-repeat;
    background-size: contain;
    height: 161.5384615385vw;
  }
  .step-container .swiper-wrapper .slide2 {
    background: url("../images/sp/step-bg2.png") no-repeat;
    background-size: contain;
    height: 161.5384615385vw;
  }
  .step-container .swiper-wrapper .slide3 {
    background: url("../images/sp/step-bg3.png") no-repeat;
    background-size: contain;
    height: 161.5384615385vw;
  }
  .step-container .swiper-wrapper .slide4 {
    background: url("../images/sp/step-bg4.png") no-repeat;
    background-size: contain;
    height: 161.5384615385vw;
  }
  .step-container .swiper-wrapper .swiper-slide .step {
    color: #FFF7DF;
    background: #EF4D4D;
    border-radius: 50%;
    width: 15.3846153846vw;
    height: 15.3846153846vw;
    text-align: center;
    line-height: 5.1282051282vw;
    font-weight: bold;
    font-size: 4.6153846154vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 6.1538461538vw auto 2.0512820513vw;
  }
  .step-container .swiper-wrapper .swiper-slide h3 {
    text-align: center;
    color: #EF4D4D;
    font-size: 4.6153846154vw;
    padding-bottom: 4.1025641026vw;
  }
  .step-container .swiper-wrapper .swiper-slide .note {
    font-size: 3.0769230769vw;
    text-align: center;
    font-weight: normal;
    margin-bottom: 5.1282051282vw;
    height: 0;
  }
  .step-container .swiper-wrapper .swiper-slide .note a {
    color: #EF4D4D;
    text-decoration: underline;
    font-weight: bold;
  }
  .step-container .swiper-wrapper .swiper-slide .login-link {
    font-size: 3.0769230769vw;
    text-align: center;
    font-weight: normal;
  }
  .step-container .swiper-wrapper .swiper-slide .login-link a {
    color: #EF4D4D;
    text-decoration: underline;
    font-weight: bold;
  }
  .step-container .swiper-wrapper .swiper-slide figure {
    width: 66.6666666667vw;
    margin: auto;
    padding-bottom: 8.9743589744vw;
  }
  .step-container .swiper-wrapper .swiper-slide figure img {
    width: 100%;
  }
  .step-container .swiper-pointer-events {
    padding-bottom: 5.1282051282vw;
    padding-left: 0;
  }
  .step-container .swiper-button-next,
  .step-container .swiper-button-prev {
    background: #fff;
    border-radius: 50%;
    width: 12.3076923077vw;
    height: 12.3076923077vw;
    color: #EF4D4D;
    -webkit-box-shadow: 0 2px 3px 1px rgba(51, 51, 51, 0.2);
            box-shadow: 0 2px 3px 1px rgba(51, 51, 51, 0.2);
  }
  .step-container .swiper-button-next:after,
  .step-container .swiper-button-prev:after {
    font-size: 5.8974358974vw;
    font-weight: bold;
  }
}
.recommend {
  background: #FFE5E5;
}
.recommend h2 {
  width: 296px;
  margin: auto;
  padding-bottom: 16px;
}
.recommend ul {
  width: 980px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recommend ul li {
  width: 316px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recommend ul li p {
  color: #595959;
  font-size: 14px;
  font-weight: bold;
  width: 186px;
  padding: 0 8px;
}
.recommend ul li figure {
  width: 100px;
}
.recommend ul li figure img {
  width: 100%;
}
.recommend ul li:nth-child(1) {
  background: #fff;
  border: 1px solid #EF4D4D;
}
.recommend ul li:nth-child(2) {
  background: #fff;
  border: 1px solid #3E94DE;
}
.recommend ul li:nth-child(3) {
  background: #fff;
  border: 1px solid #F7C83C;
}

@media screen and (max-width: 768px) {
  .recommend {
    background: #FFE5E5;
    width: 100%;
  }
  .recommend h2 {
    width: 75.8974358974vw;
    margin: auto;
    padding-bottom: 4.1025641026vw;
  }
  .recommend ul {
    width: 100%;
    display: block;
  }
  .recommend ul li {
    width: 89.7435897436vw;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5.1282051282vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .recommend ul li p {
    color: #595959;
    font-size: 3.5897435897vw;
    font-weight: bold;
    width: 52.5641025641vw;
  }
  .recommend ul li figure {
    width: 25.641025641vw;
  }
  .recommend ul li figure img {
    width: 100%;
  }
  .recommend ul li:nth-child(1) {
    background: #fff;
    border: 1px solid #EF4D4D;
  }
  .recommend ul li:nth-child(2) {
    background: #FFFFFF;
    border: 1px solid #3E94DE;
    margin-top: 4.1025641026vw;
  }
  .recommend ul li:nth-child(3) {
    background: #FFFFFF;
    border: 1px solid #F7C83C;
    margin-top: 4.1025641026vw;
  }
}
/* -------------------------------------------
----------------------------------------------
   特徴セクション
----------------------------------------------
----------------------------------------------*/
.features-section {
  background-color: #FFF7DF;
}

.features-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.feature-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 4px 6px 0 #FFD4D4;
          box-shadow: 4px 6px 0 #FFD4D4;
}
.feature-item h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #EF4D4D;
  text-align: center;
}
.feature-item img {
  display: block;
  max-width: 260px;
  height: auto;
  margin: 0 auto;
  padding: 16px 0;
}
.feature-item p {
  font-size: 14px;
  color: #595960;
}

/* -------------------------------------------
----------------------------------------------
   アピールセクション
----------------------------------------------
----------------------------------------------*/
.appeal-section {
  background-color: #fff;
}

.appeal-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.appeal-item {
  border-radius: 20px;
}
.appeal-item.red {
  background-color: #FFE5E5;
}
.appeal-item.blue {
  background-color: #E5F3FF;
}
.appeal-item.yellow {
  background-color: #FFF7DF;
}
.appeal-item ul {
  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: 8px;
  width: 78.5%;
  margin: 0 auto;
  padding: 16px 0;
}
.appeal-item ul li {
  color: #595960;
  font-size: 14px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.appeal-item ul li img {
  width: 100px;
}

footer {
  background-color: #F9F9F9;
  padding: 40px 0 100px;
  text-align: center;
}

.footer-inner img {
  width: 100px;
  height: auto;
  margin: 0 auto 10px;
}

.copyright {
  font-size: 12px;
  color: #999;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 10.2564102564vw 0 25.641025641vw;
  }
  .footer-inner img {
    width: 25.641025641vw;
    margin: 0 auto 2.5641025641vw;
  }
  .copyright {
    font-size: 3.0769230769vw;
  }
}
/* -------------------------------------------
----------------------------------------------
   追従ボタン
----------------------------------------------
----------------------------------------------*/
.fixed-button-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  text-align: center;
  -webkit-box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.fixed-button-link {
  display: inline-block;
  width: 260px;
  height: 50px;
  text-decoration: none;
  color: #fff;
  background-color: #61C650;
  -webkit-box-shadow: inset 0 -2px 0 #57AD45;
          box-shadow: inset 0 -2px 0 #57AD45;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  padding: 0 30px;
  cursor: pointer;
}

@media screen and (max-width: 460px) {
  .fixed-button-link {
    font-size: 16px;
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
  }
}
/**
 * Swiper 7.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 31, 2021
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  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;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  display: none;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  display: none;
}

@media screen and (max-width: 768px) {
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: -1.2820512821vw;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: -1.2820512821vw;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}/*# sourceMappingURL=style.css.map */