@charset "UTF-8";
/*-- globalフォルダの直下の_index.scss --*/
/*-- settingフォルダの中の_index.scss --*/
/* ==================== common ==================== */
/* ==================================================
  cache busting設定（scssの最上部に記載）
================================================== */
/*-- mixinフォルダの中の_index.scss --*/
/* ==================================================
  breakpoint & medea query
================================================== */
/*-- commonフォルダの中の_index.scss --*/
html {
  font-size: 62.5%;
}
@media (width < 1100px) {
  html {
    font-size: 56.25%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #111;
  letter-spacing: 0.08em;
  background-color: #fcfcfc;
}

.inner {
  width: 95%;
  max-width: 1100px;
  margin-inline: auto;
}
@media (width < 1100px) {
  .inner {
    width: 90%;
  }
}

img:not([class*=wp-image-]) {
  width: 100%;
  height: auto;
}
img[class*=wp-image-].alignright {
  display: block;
  margin: 0 0 0 auto;
}
img[class*=wp-image-].alignleft {
  display: block;
  margin: 0 auto 0 0;
}
img[class*=wp-image-].aligncenter {
  display: block;
  margin: 0 auto;
}

.under600 {
  display: none;
}
@media (width < 600px) {
  .under600 {
    display: block;
  }
}

@media (width >= 1100px) {
  .is-sp {
    display: none;
  }
}

@media (width < 1100px) {
  .is-pc {
    display: none;
  }
}

@media (width < 1100px) {
  main {
    margin-top: 45px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vw;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.fz10 {
  font-size: 1rem;
}

.fz12 {
  font-size: 1.2rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz20 {
  font-size: 2rem;
}

.fz30 {
  font-size: 3rem;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb100 {
  margin-bottom: 100px;
}

.section {
  padding-block: clamp(40px, 10vw, 100px);
}

.title {
  text-align: center;
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin-bottom: clamp(20px, 4vw, 40px);
  position: relative;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media (width < 1100px) {
  .title {
    letter-spacing: 0.04em;
  }
}
.title::before {
  content: attr(data-en);
  display: block;
  font-size: clamp(1.6rem, 2vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  line-height: 1;
  color: #0288a0;
}
.title::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 20px auto 0;
  background-color: #ffd000;
  border-radius: 100vh;
}
.title--feature {
  color: #fff;
}
.title--feature::before {
  color: #fff;
}

.subtitle {
  font-size: clamp(2.2rem, 2.2vw, 2.6rem);
  font-weight: 700;
  padding-left: 12px;
  line-height: 1.4;
  padding-block: 8px;
  border-left: 4px solid #18708b;
  background-color: #ebf5f5;
}

.fw400 {
  font-weight: 400;
}

.fw700 {
  font-weight: 700;
}

.lh12 {
  line-height: 1.2;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(40%, #f8ef77));
  background: linear-gradient(transparent 60%, #f8ef77 40%);
}

.new-window {
  display: inline-block;
  margin-bottom: -2px;
  margin-left: 5px;
  width: 1.2em;
  aspect-ratio: 1;
  -webkit-mask: url(../img/icon/new-window.svg?ver=uiz53pv) no-repeat 50% 50%/contain;
          mask: url(../img/icon/new-window.svg?ver=uiz53pv) no-repeat 50% 50%/contain;
  background: #555;
}

.img-overlay {
  position: relative;
}
.img-overlay::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(15, 9, 65, 0.35);
}

.fade-in {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-in.animated {
  -webkit-animation: fadeInUp 0.6s ease forwards;
          animation: fadeInUp 0.6s ease forwards;
}

.list_wrapper {
  margin: 10px;
  list-style: none;
}
.list_wrapper > li {
  position: relative;
  padding-left: 15px;
  font-size: 1.4rem;
}
.list_wrapper > li:nth-of-type(n + 2) {
  margin-top: 5px;
}
.list_wrapper > li::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  width: 10px;
  height: 2px;
  content: "";
  background-color: #0288a0;
}

/* ==================== loader ==================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  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;
  width: 100%;
  height: 100%;
  color: #111;
  background-color: #18708b;
  opacity: 1;
  -webkit-transition: height 0.8s cubic-bezier(0.83, 0, 0.17, 1);
  transition: height 0.8s cubic-bezier(0.83, 0, 0.17, 1);
}

.loading-img {
  width: 150px;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

@media (width < 1100px) {
  .loading-img {
    width: 120px;
  }
}
/* ===============================================
  sp-only
=============================================== */
.fixed-btn {
  display: block;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  padding-block: 10px;
  background: rgba(0, 0, 0, 0.2);
}
.fixed-btn .header__nav-btn {
  font-size: 2rem;
  color: #fff;
  border: 2px solid #e63030;
  background: #f85b55;
}

/* ===============================================
  page-title
=============================================== */
.page-title {
  background: #18708b;
}
@media (width >= 1100px) {
  .page-title {
    padding-top: calc(clamp(60px, 10vw, 100px) + 70px + 20px);
  }
}
.page-title__text {
  text-align: center;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  line-height: 1.4;
  color: #fff;
}

.bcn-display {
  padding-block: 10px;
  font-size: 1.4rem;
  border: 1px solid #ddd;
}

/* ===============================================
  cta-btn
=============================================== */
.btn-wrap {
  margin-top: clamp(15px, 2.5vw, 30px);
  padding-block: 15px 5px;
  display: inline-block;
}

.cta-btn {
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  gap: 5px;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  position: relative;
  padding: 3rem 2.5rem 1.2rem 3rem;
  color: #fff;
  background: #f85b55;
  -webkit-box-shadow: 0 5px 0 #e63030;
          box-shadow: 0 5px 0 #e63030;
}
.cta-btn__comment {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  letter-spacing: 0.08em;
  position: absolute;
  top: -1.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  text-align: center;
  white-space: nowrap;
  padding: 0.2em 0.4em 0.2em 0.6em;
  color: #e63030;
  border: 2px solid #e63030;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.cta-btn__comment::before, .cta-btn__comment::after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}
.cta-btn__comment:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #e63030 transparent transparent transparent;
}
.cta-btn__comment:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.cta-btn__text {
  width: 1em;
  height: 1em;
  display: inline-block;
  -webkit-mask: url(../img/icon/link-arrow.svg?ver=uiz53pv) no-repeat 50% 50%/contain;
          mask: url(../img/icon/link-arrow.svg?ver=uiz53pv) no-repeat 50% 50%/contain;
  background-color: #fff;
}
.cta-btn .yellow {
  color: #ffee00;
}
.cta-btn:hover {
  -webkit-transform: translate(0, 3px);
          transform: translate(0, 3px);
  color: #fff;
  background: #f85b55;
  -webkit-box-shadow: 0 2px 0 #e63030;
          box-shadow: 0 2px 0 #e63030;
}

.caution {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-left: 20px;
  margin-top: 20px;
}
@media (width < 1100px) {
  .caution {
    margin-left: 0;
  }
}

/* ==================== header ==================== */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 10px rgba(1, 51, 44, 0.2);
          box-shadow: 0 0 10px rgba(1, 51, 44, 0.2);
  background-color: #fff;
  line-height: 1.2;
  height: 70px;
  border-radius: 5px;
  width: 90%;
  max-width: 1800px;
}
@media (width < 1100px) {
  .header {
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: unset;
            transform: unset;
    border-radius: unset;
    width: 100%;
    max-width: 100%;
  }
}
@media (width < 1100px) {
  .header {
    height: 45px;
  }
}
.header__inner {
  margin-inline: auto;
  gap: 2vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 95%;
  max-width: unset;
}
.header__logo {
  letter-spacing: normal;
  font-weight: 700;
}
.header__title {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  color: #18708b;
}
.header__subtitle {
  font-size: 1.4rem;
}
.header__nav {
  margin-left: auto;
}
@media (width < 1100px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4vw;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
}
.header__nav-list li {
  color: #111;
}
.header__nav-list li:last-of-type {
  display: none;
}
.header__nav-btn {
  padding: 0.6em 1em;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  font-size: 1.8rem;
  background: #f85b55;
  border: 2px solid #e63030;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__nav-btn span {
  margin-left: 0.6em;
  width: 1em;
  height: 1em;
  display: inline-block;
  -webkit-mask: url(../img/icon/link-arrow.svg?ver=uiz53pv) no-repeat 50% 50%/contain;
          mask: url(../img/icon/link-arrow.svg?ver=uiz53pv) no-repeat 50% 50%/contain;
  background-color: #fff;
}
@media (width < 1100px) {
  .header__btn {
    display: none;
  }
}

.hamburger__button {
  display: none;
}

/* ==================== hamhamburger__menu ==================== */
/* ==================== hamburger ==================== */
.hamburger {
  width: 40px;
  height: 36px;
  margin-left: auto;
  position: relative;
  display: none;
}
.hamburger::after {
  position: absolute;
  content: "menu";
  color: #111;
  text-transform: uppercase;
  width: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-align: center;
}
.hamburger span {
  width: 100%;
  position: absolute;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #111;
  border-radius: 1px;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 12px;
}
.hamburger.open::after {
  content: "close";
  letter-spacing: 0.01em;
}
.hamburger.open span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(-20deg);
          transform: translateX(-50%) rotate(-20deg);
  top: 8px;
}
.hamburger.open span:nth-child(2) {
  -webkit-transform: translateX(-50%) rotate(20deg);
          transform: translateX(-50%) rotate(20deg);
  top: 8px;
}

/* ==================== footer ==================== */
.footer {
  padding-top: 0;
}
@media (width < 1100px) {
  .footer {
    padding-bottom: 100px;
  }
}
.footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #555;
  gap: 10px;
}
@media (width < 1100px) {
  .footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__flex.mt30 {
  margin-top: 30px;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (width < 1100px) {
  .footer__list {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
@media (width >= 1100px) {
  .footer__list-item {
    padding: 0 20px;
    border-left: 1px solid #ccc;
  }
  .footer__list-item:last-of-type {
    border-right: 1px solid #ccc;
  }
}
.footer__logo {
  display: inline-block;
  width: 200px;
}
.footer__logo p {
  margin-top: 10px;
}
.footer__policy {
  font-size: 1.2rem;
  padding-bottom: 3px;
  color: #555;
  border-bottom: 1px solid #999999;
  border-left: none !important;
  border-right: none;
}

.footer__copyright {
  padding: 20px 0;
  font-size: 1rem;
  text-align: center;
}

.page-top {
  background-color: #eee;
  width: 100%;
  margin-bottom: 60px;
}
.page-top__link {
  display: block;
  padding-block: 2em 1.4em;
  width: 100%;
  text-align: center;
}
.page-top__link span {
  display: inline-block;
  position: relative;
  padding-top: 2.6em;
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}
.page-top__link span::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #555;
}
.page-top__link span::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-top: 1px solid #555;
  border-right: 1px solid #555;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 25% 110%;
          transform-origin: 25% 110%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-top__link span:hover::after {
  top: 8px;
}

/*-- pageフォルダの中の_index.scss --*/
/* ==================== fv ==================== */
.fv {
  position: relative;
  padding-block: 120px 50px;
  background: url(../img/fv-bg-cpb.webp?ver=uiz53pv) no-repeat 50% 90%/cover;
}
@media (width < 1100px) {
  .fv {
    background-position: 65% 70%;
    padding-block: 20px 50px;
  }
}
@media (width < 800px) {
  .fv {
    background-position: 70% 70%;
  }
}
@media (width < 500px) {
  .fv {
    background-position: 72% 70%;
  }
}
.fv__inner {
  width: 90%;
  margin-inline: auto;
  max-width: 1600px;
}
.fv .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (width < 1100px) {
  .fv .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fv__content {
  width: 50%;
}
@media (width >= 1100px) {
  .fv__content {
    min-width: 600px;
  }
}
@media (width < 1100px) {
  .fv__content {
    width: 100%;
  }
}
@media (width < 1100px) {
  .fv__content img {
    margin-left: -10px;
  }
}
.fv .wrapper {
  position: relative;
  z-index: 2;
  width: 95%;
  max-width: 1400px;
  margin-inline: auto;
  text-align: center;
}
.fv .wrapper img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fv__cta {
  margin-left: 20px;
}
@media (width < 1100px) {
  .fv__cta {
    margin-left: 0;
  }
}
.fv__cta .btn-wrap {
  margin-top: 10px;
}
@media (width < 1100px) {
  .fv .ml20 {
    margin-left: 0;
  }
}

.fv-splide {
  width: 40%;
}
@media (width < 1100px) {
  .fv-splide {
    width: 100%;
    max-width: 600px;
  }
}
.fv-splide .splide__slide__title {
  position: relative;
  width: 99%;
  margin-inline: auto;
  padding: 0.4em;
  background: #fbfbfb;
  color: #18708b;
  border: 1px solid #18708b;
  border-radius: 5px;
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 30px);
}

/* ==================== price problem ==================== */
.price-problem {
  background: url(../img/background.webp?ver=uiz53pv) no-repeat 50% 50%/90% 90%;
  position: relative;
}
.price-problem.section {
  padding-bottom: 0;
}
.price-problem::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 250, 250, 0.5);
  top: 0;
  left: 0;
  z-index: 2;
}
.price-problem .inner {
  position: relative;
  z-index: 3;
}
.price-problem__image {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}

/* ==================== subsidy ==================== */
.subsidy {
  overflow: hidden;
}
.subsidy .title {
  font-size: clamp(2.4rem, 4vw, 4rem);
}
.subsidy .title .fz30 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.subsidy .flex {
  max-width: 900px;
  margin-inline: auto;
}
@media (width < 768px) {
  .subsidy .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.subsidy .product-name {
  background: #0288a0;
  color: #fff;
  display: inline-block;
  padding: 0 5px 3px 10px;
  margin-right: 5px;
}
.subsidy__text {
  line-height: 1.8;
  margin-bottom: 20px;
}
.subsidy__image {
  width: 20%;
}
@media (width < 768px) {
  .subsidy__image {
    width: 120px;
  }
}
.subsidy__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2vw, 20px);
}
@media (width < 900px) {
  .subsidy__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width < 750px) {
  .subsidy__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.subsidy__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  counter-increment: subsidy-number;
  list-style: none;
  background-color: #fff;
}
.subsidy__item-text {
  position: relative;
  text-align: center;
  line-height: 1.2;
}
.subsidy__item-text::before {
  content: counter(subsidy-number, decimal-leading-zero);
  display: block;
  margin-bottom: clamp(30px, 4vw, 40px);
  font-size: clamp(3.6rem, 4vw, 4rem);
  color: #ec9393;
}
.subsidy__item-text::after {
  content: "";
  position: absolute;
  top: clamp(40px, 5.5vw, 50px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background-color: #fc5185;
}

.subsidy-splide {
  margin-top: 40px;
}
.subsidy-splide .splide__track {
  overflow: visible;
}
.subsidy-splide .splide__arrow {
  background: #01a6c4;
  width: 2.4em;
  height: 2.4em;
}
@media (width < 1100px) {
  .subsidy-splide .splide__arrow {
    width: 2em;
    height: 2em;
  }
}
.subsidy-splide .splide__arrow svg {
  fill: #fff;
}
.subsidy-splide .splide__arrow--next {
  right: 0;
}
.subsidy-splide .splide__arrow--prev {
  left: 0;
}
.subsidy-splide__wrapper {
  height: 100%;
  padding: clamp(20px, 3vw, 30px);
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px rgba(150, 150, 150, 0.1);
          box-shadow: 0 0 20px rgba(150, 150, 150, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subsidy-splide__wrapper:nth-of-type(n + 2) {
  margin-top: clamp(15px, 3vw, 30px);
}
.subsidy-splide__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subsidy-splide__title {
  margin-block: 10px;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 700;
}
.subsidy-splide__text {
  text-align: justify;
}
.subsidy-splide .step-icon {
  position: relative;
}
.subsidy-splide .step-icon span:nth-of-type(1) {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  text-transform: uppercase;
  font-weight: 700;
  color: #0288a0;
}
.subsidy-splide .step-icon span:nth-of-type(2) {
  display: grid;
  place-content: center;
  width: 2em;
  aspect-ratio: 1;
  line-height: 1;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  color: #0288a0;
  background-color: #d4f0f1;
  border-radius: 50%;
}
@media (width < 768px) {
  .subsidy-splide .step-icon span:nth-of-type(2) {
    width: 2.4em;
  }
}

/* ==================== cta1 ==================== */
.cta1 {
  background-color: #0288a0;
}
.cta1__content {
  background: #fff;
  border-radius: 5px;
  padding: clamp(20px, 4vw, 40px);
  text-align: center;
}
.cta1__text {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 700;
}

/* ==================== problem ==================== */
.problem {
  position: relative;
}
.problem.section {
  padding-bottom: clamp(60px, 10vw, 100px);
}
.problem::after {
  background-color: #fcfcfc;
  clip-path: polygon(50% 8vw, 0 0, 100% 0);
  content: "";
  position: absolute;
  height: 8vw;
  width: 100%;
  left: 0;
  bottom: -8vw; /* bottomにピッタリくっつけたいので三角の高さ分下にずらす */
}
.problem__wrapper {
  padding-block: clamp(30px, 6vw, 60px);
  padding-inline: clamp(20px, 5vw, 60px);
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px rgba(1, 51, 44, 0.1);
          box-shadow: 0 0 15px rgba(1, 51, 44, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.problem__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.2em;
}
.problem__item {
  padding-bottom: 1.4em;
  padding-inline: 10px;
  border-bottom: 1px dashed #ccc;
}
@media (width < 860px) {
  .problem__item:nth-of-type(4) {
    width: 90%;
  }
}
@media (width < 770px) {
  .problem__item:nth-of-type(4) {
    width: 80%;
  }
}
@media (width < 660px) {
  .problem__item:nth-of-type(4) {
    width: 70%;
  }
}
@media (width < 575px) {
  .problem__item:nth-of-type(4) {
    width: 100%;
  }
}
@media (width < 690px) {
  .problem__item:nth-of-type(5) {
    width: 70%;
  }
}
@media (width < 400px) {
  .problem__item:nth-of-type(5) {
    width: 100%;
  }
}
@media (width < 580px) {
  .problem__item:nth-of-type(6) {
    width: 70%;
  }
}
.problem__item-text {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  padding-left: 1.6em;
}
.problem__item-text::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1.2em;
  aspect-ratio: 1;
  -webkit-mask: url(../img/icon/check.svg?ver=uiz53pv) no-repeat 50% 50%/contain;
          mask: url(../img/icon/check.svg?ver=uiz53pv) no-repeat 50% 50%/contain;
  background-color: #0490cc;
}
.problem__image {
  display: inline-block;
  position: absolute;
  bottom: -50px;
  right: 40px;
  content: "";
  width: 30%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (width < 1100px) {
  .problem__image {
    right: -2%;
  }
}

/* ==================== feature ==================== */
.feature {
  margin-top: 1px;
  padding-top: max(100px, 15vw);
  background: #1d88a8;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgb(29, 136, 168)), to(rgb(13, 189, 209)));
  background: linear-gradient(0deg, rgb(29, 136, 168) 20%, rgb(13, 189, 209) 100%);
}
.feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(20px, 2.4vw, 30px);
}
.feature__item {
  width: calc((100% - clamp(20px, 2.4vw, 30px) * 2) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
  background-color: #fff;
  border-radius: 0.2em;
}
@media (width < 1100px) {
  .feature__item {
    width: calc((100% - clamp(20px, 2.4vw, 30px)) / 2);
  }
}
@media (width < 700px) {
  .feature__item {
    width: 100%;
  }
}
.feature__image {
  width: 50%;
  max-width: 200px;
  aspect-ratio: 1;
}
.feature__image img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.feature__title {
  text-align: center;
  margin-block: 20px;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width < 1100px) {
  .feature__title {
    font-size: 1.8rem;
  }
}
.feature__text {
  text-align: justify;
}

/* ==================== proposal ==================== */
.proposal__text {
  margin-block: 20px;
}
.proposal__image {
  width: 80%;
  margin-inline: auto;
}
@media (width < 1100px) {
  .proposal__image {
    width: 100%;
  }
}

.movie {
  width: 80%;
  aspect-ratio: 16/9;
  margin-inline: auto;
  position: relative;
  margin-top: 30px;
}
@media (width < 1100px) {
  .movie {
    width: 100%;
  }
}

.movie-inner {
  display: block;
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.thumb {
  width: 100%;
  max-width: 100%;
  cursor: pointer;
  border: 10px solid #80bdbd;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.thumb:hover {
  opacity: 0.8;
}

.movie-player {
  position: relative;
  z-index: 10;
}

/* ==================== achievement ==================== */
.achievement {
  background: #f0f5f5;
  overflow: hidden;
}
.achievement__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (width < 768px) {
  .achievement__list {
    grid-template-columns: 1fr;
  }
}
.achievement__item {
  border-radius: 5px;
  overflow: hidden;
}
.achievement__item-title {
  text-align: center;
  padding-block: 0.8em;
  background-color: #0288a0;
  color: #fff;
  font-size: 1.4rem;
}

.case-splide .splide__track {
  overflow: visible;
}
.case-splide .splide__arrow {
  background: #01a6c4;
  width: 2.4em;
  height: 2.4em;
}
@media (width < 1100px) {
  .case-splide .splide__arrow {
    width: 2em;
    height: 2em;
  }
}
.case-splide .splide__arrow svg {
  fill: #fff;
}
.case-splide .splide__arrow--next {
  top: 55%;
  right: 0;
}
.case-splide .splide__arrow--prev {
  top: 55%;
  left: 0;
}

/* ==================== product-overview ==================== */
.product-overview__table {
  margin-top: clamp(10px, 2vw, 20px);
  border: 2px solid #e6e6e6;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.6rem;
}
.product-overview table {
  border-collapse: collapse;
  width: 100%;
}
.product-overview table tr:nth-of-type(n + 2) {
  border-top: 1px solid #ddd;
}
.product-overview table th,
.product-overview table td {
  padding: clamp(5px, 1vw, 10px);
  text-align: center;
  vertical-align: middle;
}
.product-overview table td {
  border-left: 1px solid #ddd;
}
.product-overview__intro {
  font-size: 1.6rem;
}
.product-overview__intro div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (width < 1100px) {
  .product-overview__intro div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.product-overview__intro dt,
.product-overview__intro dd {
  padding: 20px;
}
.product-overview__intro dt {
  white-space: nowrap;
  border-bottom: 1px solid #0288a0;
  background: #e4f1f1;
}
.product-overview__intro dd {
  border-bottom: 1px solid #ccc;
  background: #fff;
}

.js-scrollable {
  white-space: nowrap;
}

.scroll-hint-icon {
  width: 100px;
  padding-left: 5px;
}

.scroll-hint-text {
  margin-top: 3px;
}

.machine-image img {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  height: clamp(120px, 20vw, 200px);
  -o-object-fit: contain;
     object-fit: contain;
}
.machine-image div {
  margin-top: 5px;
}

/* ==================== 電子カルテ ==================== */
.emr {
  width: 100%;
  background: #fff;
  border: 1px solid #80bdbd;
  border-radius: 5px;
  overflow: hidden;
}
.emr__title {
  text-align: center;
  color: #0288a0;
  background: #e4f1f1;
  font-size: 1.8rem;
  font-weight: 700;
  padding-block: 0.6em;
}
.emr__flex {
  padding-block: clamp(10px, 2vw, 20px);
  padding-inline: clamp(15px, 3vw, 30px);
}
@media (width < 1100px) {
  .emr__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.emr__list {
  list-style: none;
  width: 50%;
}
@media (width < 1100px) {
  .emr__list {
    width: 100%;
  }
}
.emr__list > li {
  position: relative;
  padding-left: 1em;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
.emr__list > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.6em;
  height: 0.6em;
  background-color: #0288a0;
  border-radius: 50%;
}

/* ==================== payment ==================== */
.payment {
  background: #f0f5f5;
}
.payment__item {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin-top: clamp(20px, 4vw, 40px);
  -webkit-box-shadow: 0 0 15px rgba(1, 51, 44, 0.1);
          box-shadow: 0 0 15px rgba(1, 51, 44, 0.1);
}
.payment__item-title {
  padding: 10px;
  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;
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 700;
  background: #45a4b4;
  color: #fff;
  position: relative;
  margin-bottom: 10px;
}
.payment__item-title::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 15px solid transparent;
  border-top: 15px solid #45a4b4;
  width: 0;
  height: 0;
}
.payment__item-list {
  padding: clamp(30px, 5vw, 50px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 40px;
}
@media (width < 1100px) {
  .payment__item-list {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 20px 30px;
  }
}
.payment__item-list li {
  aspect-ratio: 3/2;
}
.payment__item-list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.payment__item-list:nth-of-type(n + 2) {
  margin-top: 20px;
}

/* ==================== Q&A ==================== */
.faq__boxes {
  display: grid;
  gap: clamp(15px, 2.5vw, 25px);
}

.faq-box {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
}
.faq-box__head {
  display: block;
  font-weight: 500;
  background: #fff;
  padding: 25px 50px 25px 20px;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px rgba(1, 51, 44, 0.1);
          box-shadow: 0 0 15px rgba(1, 51, 44, 0.1);
}
@media (width < 1100px) {
  .faq-box__head {
    padding: 20px 50px 20px 20px;
  }
}
.faq-box__head::-webkit-details-marker {
  display: none;
}
.faq-box__head::before, .faq-box__head::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  background: #111;
}
.faq-box__head::before {
  width: 16px;
  height: 2px;
  right: 20px;
}
.faq-box__head::after {
  width: 2px;
  height: 16px;
  right: 27px;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}
.faq-box[open] .faq-box__head::after {
  rotate: 90deg;
}
.faq-box__body {
  overflow: hidden;
}
.faq-box__content {
  padding: 20px;
  line-height: 1.6;
  font-weight: 400;
  text-align: justify;
}

/* ===============================================
  page contact
=============================================== */
@-webkit-keyframes onAutoFillStart {}
@keyframes onAutoFillStart {}
input:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

.form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (width < 1100px) {
  .form-item {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form-item:nth-of-type(n + 2) {
  margin-top: clamp(20px, 3vw, 30px);
}
.form-item dt {
  width: 300px;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
}
.form-item dd {
  width: calc(100% - 300px);
}
.form-item dd input[type=text],
.form-item dd input[type=tel],
.form-item dd input[type=email],
.form-item dd textarea {
  width: 100%;
  border: 2px solid #ddd;
  background-color: #fff;
  border-radius: 0.4em;
  padding: 1em;
  line-height: 1.6;
  font-weight: 400;
}
.form-item dd input[type=text]:focus,
.form-item dd input[type=tel]:focus,
.form-item dd input[type=email]:focus,
.form-item dd textarea:focus {
  outline: none;
}
.form-item dd textarea {
  resize: vertical;
}
.form-item dd [type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #111;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.form-item dd [type=radio]::after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  background-color: #333;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  display: none;
}
.form-item dd [type=radio]:checked::after {
  display: block;
}
.form-item .wpcf7-list-item {
  margin-left: 0;
}
.form-item .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.form-item .wpcf7-checkbox,
.form-item .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media (width < 1100px) {
  .form-item dt,
  .form-item dd {
    width: 100%;
  }
}
.form-item .required::after {
  content: "必須";
  display: inline-block;
  margin-left: 10px;
  font-size: 1.2rem;
  background-color: #d83e2a;
  padding: 0.3em 0.4em 0.4em;
  color: #fff;
  border-radius: 0.26em;
  line-height: 1;
}
.form__submit-button {
  margin-top: clamp(20px, 4vw, 40px);
  text-align: center;
}
.form__submit-button input[type=submit] {
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.2em;
  font-size: clamp(2rem, 2vw, 2.4rem);
  position: relative;
  padding: 1em 5em 1em 5.4em;
  color: #fff;
  border-radius: 5px;
  background: #f85b55;
  -webkit-box-shadow: 0 5px 0 #e63030;
          box-shadow: 0 5px 0 #e63030;
}
.form__submit-button input[type=submit]:hover {
  -webkit-transform: translate(0, 3px);
          transform: translate(0, 3px);
  color: #fff;
  -webkit-box-shadow: 0 2px 0 #e63030;
          box-shadow: 0 2px 0 #e63030;
}
.form__submit-button input[type=submit]:focus {
  outline: none;
}
.form em {
  color: #f00;
}
.form .error {
  font-size: 1.4rem;
  margin-top: 2px;
}

.reCAPTCHA {
  text-align: center;
  margin-top: 50px;
  font-size: 1.2rem;
}
@media (width < 768px) {
  .reCAPTCHA {
    text-align: left;
  }
}
.reCAPTCHA a {
  text-decoration: underline;
  color: #5078f0;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  text-align: center;
  color: #ee5a6d;
  background: #fff;
  border: 2px solid #ee5a6d;
  margin-top: clamp(20px, 4vw, 40px);
  margin-inline: auto;
  width: 80%;
}

.grecaptcha-badge {
  bottom: 120px !important;
}

/* ===============================================
  thanksページ
=============================================== */
.thanks__head {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.thanks__button {
  margin-top: 40px;
  text-align: center;
}
.thanks__link {
  display: inline-block;
  padding: 1em 4em;
  color: #999999;
  background: #eee;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.thanks__link:hover {
  background: #ddd;
}

/* ===============================================
  privacy policy
=============================================== */
.policy {
  text-align: justify;
}
.policy__body ol {
  margin-top: 50px;
  list-style-type: decimal;
}
.policy__body li {
  margin-left: 20px;
}
.policy__body li:not(:first-child) {
  margin-top: 30px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(30px, 5vw, 60px);
}
.pagination .prev,
.pagination .next {
  background-color: #000;
  color: #fff;
  position: relative;
}
.pagination .prev::after,
.pagination .next::after {
  position: absolute;
  content: "";
  top: 42%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination .prev {
  padding: 10px 15px 10px 30px;
}
.pagination .prev::after {
  left: 15px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.pagination .prev:hover::after {
  left: 10px;
}
.pagination .next {
  padding: 10px 30px 10px 15px;
}
.pagination .next::after {
  right: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pagination .next:hover::after {
  right: 10px;
}

.page-numbers {
  padding: 10px 15px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #000;
  display: inline-block;
  font-size: 14px;
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-numbers.current {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
.page-numbers:hover {
  background-color: #000;
  color: #fff;
}

.single_pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(30px, 5vw, 60px);
  gap: 10px;
}
.single_pagination .single_prev a,
.single_pagination .single_next a {
  font-size: 1.4rem;
  background-color: #000;
  color: #fff;
  position: relative;
  display: inline-block;
  border: 1px solid #000;
}
.single_pagination .single_prev a::after,
.single_pagination .single_next a::after {
  position: absolute;
  content: "";
  top: 42%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single_pagination .single_prev a {
  padding: 10px 15px 10px 30px;
}
.single_pagination .single_prev a::after {
  left: 15px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.single_pagination .single_prev a:hover::after {
  left: 10px;
}
.single_pagination .single_next a {
  padding: 10px 30px 10px 15px;
}
.single_pagination .single_next a::after {
  right: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.single_pagination .single_next a:hover::after {
  right: 10px;
}

.lists a {
  font-size: 1.4rem;
  padding: 10px 15px;
  color: #000;
  border: 1px solid #000;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.lists a:hover {
  color: #fff;
  background: #000;
}

/* ===============================================
  404
=============================================== */
.not-found {
  padding-top: clamp(80px, 25vw, 240px);
  padding-bottom: clamp(80px, 15vw, 160px);
}
@media (width < 1100px) {
  .not-found {
    margin: 100px 0;
  }
}
.not-found__wrapper {
  text-align: center;
}
.not-found__head {
  margin-bottom: 40px;
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 700;
  line-height: 1;
  color: #18708b;
}
.not-found__lead {
  margin-bottom: 40px;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #999;
}
.not-found__text {
  margin-bottom: 40px;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  line-height: 1.5;
  color: #a8a8a8;
}
.not-found__btn a {
  display: inline-block;
  padding: 20px 40px;
  color: #999;
  background: #eee;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.not-found__btn a:hover {
  background: #ddd;
}