.appear.up .item {
  transform: translateY(40px);
}

.appear.down .item {
  transform: translateY(-40px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear.zoom .item {
  transform: translateZ(40px);
}

.appear .item {
  transition: all 0.6s ease;
  transform: translate3d(0, 0, 0);
  opacity: 0;
}
.appear.inview .item {
  transform: none;
  opacity: 1;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}

.scaleDown {
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s;
}
.scaleDown.inview {
  opacity: 1;
  transform: scale(1);
}

.fadein {
  opacity: 0;
  transition: all 0.4s 0.4s;
}
.fadein.inview {
  opacity: 1;
}

.fadedown {
  opacity: 0;
  transition: all 0.4s 0.4s;
  transform: translateY(-20px);
}
.fadedown.inview {
  opacity: 1;
  transform: translateY(0);
}

.rotate3D {
  opacity: 0;
  transform: scale(0) rotateY(0deg);
  transform-style: preserve-3d;
  transition: 0.8s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.rotate3D.inview {
  opacity: 1;
  transform: scale(1) rotateY(360deg);
}

.animate-txt .char {
  opacity: 0;
  transform: translateY(-10px);
}

.animate-txt.inview .char {
  animation-name: kf-animate-chars;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.animate-txt.inview .char:nth-child(1) {
  animation-delay: 0.54s;
}
.animate-txt.inview .char:nth-child(2) {
  animation-delay: 0.58s;
}
.animate-txt.inview .char:nth-child(3) {
  animation-delay: 0.62s;
}
.animate-txt.inview .char:nth-child(4) {
  animation-delay: 0.66s;
}
.animate-txt.inview .char:nth-child(5) {
  animation-delay: 0.7s;
}
.animate-txt.inview .char:nth-child(6) {
  animation-delay: 0.74s;
}
.animate-txt.inview .char:nth-child(7) {
  animation-delay: 0.78s;
}
.animate-txt.inview .char:nth-child(8) {
  animation-delay: 0.82s;
}
.animate-txt.inview .char:nth-child(9) {
  animation-delay: 0.86s;
}
.animate-txt.inview .char:nth-child(10) {
  animation-delay: 0.9s;
}
.animate-txt.inview .char:nth-child(11) {
  animation-delay: 0.94s;
}
.animate-txt.inview .char:nth-child(12) {
  animation-delay: 0.98s;
}
.animate-txt.inview .char:nth-child(13) {
  animation-delay: 1.02s;
}
.animate-txt.inview .char:nth-child(14) {
  animation-delay: 1.06s;
}
.animate-txt.inview .char:nth-child(15) {
  animation-delay: 1.1s;
}
.animate-txt.inview .char:nth-child(16) {
  animation-delay: 1.14s;
}
.animate-txt.inview .char:nth-child(17) {
  animation-delay: 1.18s;
}
.animate-txt.inview .char:nth-child(18) {
  animation-delay: 1.22s;
}
.animate-txt.inview .char:nth-child(19) {
  animation-delay: 1.26s;
}
.animate-txt.inview .char:nth-child(20) {
  animation-delay: 1.3s;
}
.animate-txt.inview .char:nth-child(21) {
  animation-delay: 1.34s;
}
.animate-txt.inview .char:nth-child(22) {
  animation-delay: 1.38s;
}
.animate-txt.inview .char:nth-child(23) {
  animation-delay: 1.42s;
}
.animate-txt.inview .char:nth-child(24) {
  animation-delay: 1.46s;
}
.animate-txt.inview .char:nth-child(25) {
  animation-delay: 1.5s;
}
.animate-txt.inview .char:nth-child(26) {
  animation-delay: 1.54s;
}
.animate-txt.inview .char:nth-child(27) {
  animation-delay: 1.58s;
}
.animate-txt.inview .char:nth-child(28) {
  animation-delay: 1.62s;
}
.animate-txt.inview .char:nth-child(29) {
  animation-delay: 1.66s;
}
.animate-txt.inview .char:nth-child(30) {
  animation-delay: 1.7s;
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#contents {
  width: 100% !important;
  margin: 0;
  padding: 0;
}

.kpump_wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

.kpump_wrapper * {
  transition-property: all;
  transition-duration: 0.3s;
}

.kpump_wrapper img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

.kpump_wrapper {
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  color: #2a2a2a;
  background: white;
}

.kpump_wrapper, .kpump_wrapper p {
  font-weight: 400;
  font-size: clamp(1.6rem, 1.554rem + 0.21vw, 1.8rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.kpump_wrapper .pc {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .kpump_wrapper .pc {
    display: none;
  }
}

.kpump_wrapper .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .kpump_wrapper .sp {
    display: inline-block;
  }
}

.kpump_wrapper {
  overflow: hidden;
  --kpump-hero-height: clamp(840px, 58.333333vw, 1024px);
  --kpump-hero-copy-sub-bottom: calc(70px + 92px + 281px + 22px + clamp(4.2rem, 2.4696rem + 8.652vw, 8.96rem));
}
@media screen and (max-width: 768px) {
  .kpump_wrapper {
    --kpump-hero-height: calc(100vw * 1046 / 800);
  }
}

.kpump_wrapper a {
  color: inherit;
  text-decoration: none;
}

.kpump_hero {
  position: relative;
  height: 58.333333vw;
  min-height: 840px;
  height: var(--kpump-hero-height);
  background-image: url("../images/kpump_hero_bg.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .kpump_hero {
    min-height: 0;
    background-image: url("../images/kpump_hero_bg_sp.webp");
    background-position: center top;
    background-size: 100% auto;
  }
}

.kpump_hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  pointer-events: none;
}

.kpump_hero__inner {
  position: relative;
  z-index: 1;
  width: 1240px;
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .kpump_hero__inner {
    width: 100%;
  }
}

.kpump_hero__copy {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 760px;
  transform: translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .kpump_hero__copy {
    top: clamp(120px, 29vw, 150px);
    width: 100%;
    padding: 0 20px;
  }
}

.kpump_hero__badge {
  display: block;
  width: 407px;
  margin: 0 auto 0px;
}
@media screen and (max-width: 768px) {
  .kpump_hero__badge {
    width: 61vw;
    max-width: 360px;
  }
}
@media screen and (max-width: 480px) {
  .kpump_hero__badge {
    width: 66vw;
    max-width: 200px;
  }
}

.kpump_hero__title {
  margin: 0;
  line-height: 1;
}

.kpump_hero__title img {
  display: block;
  width: 567px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .kpump_hero__title img {
    width: 82vw;
    max-width: 520px;
  }
}
@media screen and (max-width: 480px) {
  .kpump_hero__title img {
    width: 83vw;
    max-width: 375px;
  }
}

.kpump_hero__copy p {
  margin-top: 22px;
  color: #fff;
  font-size: clamp(1.5rem, 0.882rem + 3.09vw, 3.2rem);
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .kpump_hero__copy p {
    margin-top: 18px;
  }
}

.kpump_hero__copy p span {
  font-size: clamp(1.2rem, 0.727rem + 2.36vw, 2.5rem);
}

.kpump_type {
  position: relative;
  z-index: 2;
  isolation: isolate;
  --kpump-type-wave-start: calc(var(--kpump-hero-height) - var(--kpump-hero-copy-sub-bottom) - 50px);
  margin-top: -181px;
  margin-top: calc(var(--kpump-hero-copy-sub-bottom) + 100px - var(--kpump-hero-height));
  padding: 0 0 110px;
}
@media screen and (max-width: 768px) {
  .kpump_type {
    --kpump-type-wave-start: 400px;
    margin-top: -36px;
    padding: 0 0 80px;
  }
}

.kpump_type::before,
.kpump_type::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: -1;
  width: 1920px;
  min-width: 100%;
  pointer-events: none;
  transform: translateX(-50%);
}

.kpump_type::before {
  top: var(--kpump-type-wave-start);
  height: 41px;
  background: url("../images/bg_wave01.png") no-repeat center bottom/100% 100%;
}
@media screen and (max-width: 768px) {
  .kpump_type::before {
    width: 100vw;
    min-width: 1920px;
    background: url("../images/bg_wave01.png") repeat-x center bottom/1920px 41px;
  }
}

.kpump_type::after {
  top: calc(var(--kpump-type-wave-start) + 41px);
  bottom: 0;
  background: #FFF1DF;
}

.kpump_type__heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 350px;
  height: 110px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  background: #2a2a2a;
  border-radius: 55px;
}
@media screen and (max-width: 768px) {
  .kpump_type__heading {
    width: calc(100% - 64px);
    max-width: 280px;
    height: 74px;
    border-radius: 42px;
  }
}
@media screen and (max-width: 480px) {
  .kpump_type__heading {
    width: calc(100% - 64px);
    max-width: 266px;
    height: 67px;
    border-radius: 42px;
  }
}

.kpump_type__heading span {
  display: block;
  font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
}

.kpump_type__heading strong {
  display: block;
  font-size: clamp(1.5rem, 0.882rem + 3.09vw, 3.2rem);
  font-weight: 800;
  line-height: 1.25;
}

.kpump_type__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 470px);
  justify-content: center;
  gap: 18px;
  margin-top: -55px;
}
@media screen and (max-width: 768px) {
  .kpump_type__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 54px);
    gap: 10px;
    margin: -41px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .kpump_type__cards {
    width: calc(100% - 20px);
    gap: 6px;
    margin: -41px auto 0;
  }
}

.kpump_type_card {
  position: relative;
  display: block;
  width: 470px;
  height: 577px;
  padding: 76px 35px 0;
  overflow: hidden;
  text-align: center;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0px 7px 4px rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 768px) {
  .kpump_type_card {
    width: 100%;
    height: auto;
    min-height: 400px;
    padding: 62px 12px 26px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.14);
  }
}
@media screen and (max-width: 480px) {
  .kpump_type_card {
    width: 100%;
    height: auto;
    min-height: 353px;
    padding: 62px 6px 26px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.14);
  }
}

.kpump_type_card:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.kpump_type_card:hover .kpump_type_card__arrow {
  transform: translateY(8px);
}

.kpump_type_card__lead,
.kpump_type_card__name,
.kpump_type_card__model {
  display: block;
}

.kpump_type_card__lead {
  font-size: clamp(1.2rem, 0.727rem + 2.36vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .kpump_type_card__lead {
    font-size: clamp(1.2rem, 0.909rem + 1.45vw, 2rem);
  }
}

.kpump_type_card__name {
  margin-top: 18px;
  color: #AC7B38;
  font-size: clamp(2rem, 1.091rem + 4.55vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .kpump_type_card__name {
    margin-top: 8px;
    font-size: clamp(1.6rem, 1.091rem + 2.55vw, 3rem);
  }
}
.kpump_type_card__model {
  width: 110px;
  margin: 23px auto;
  padding: 6px 0;
  font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem);
  font-weight: 400;
  line-height: 1;
  background: #fff;
  border: 1px solid #2a2a2a;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  .kpump_type_card__model {
    width: 86px;
    margin: 14px auto 20px;
    padding: 3px 0 4px;
  }
}
@media screen and (max-width: 480px) {
  .kpump_type_card__model {
    width: 72px;
    margin: 14px auto 20px;
    padding: 3px 0 4px;
  }
}

.kpump_type_card img {
  display: block;
  width: 400px;
  height: 226px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .kpump_type_card img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 0;
  }
}

.kpump_type_card__arrow {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  margin: 22px auto 40px;
  background: #2a2a2a;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .kpump_type_card__arrow {
    width: 36px;
    height: 36px;
    margin: 20px auto 0;
  }
}

.kpump_type_card__arrow::before,
.kpump_type_card__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 11px;
  height: 11px;
  border-right: 3px solid rgba(255, 255, 255, 0.95);
  border-bottom: 3px solid rgba(255, 255, 255, 0.95);
  transform: translateX(-50%) rotate(45deg);
}

.kpump_type_card__arrow::after {
  top: 17px;
}

.kpump_features {
  position: relative;
  padding: 80px 0 100px;
  background: #FFF1DF;
  margin-top: -2px;
}
@media screen and (max-width: 1024px) {
  .kpump_features {
    padding: 50px 0 100px;
  }
}

.kpump_section_title {
  position: relative;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
  --kpump-section-title-bg-width: 710px;
  --kpump-section-title-bg-offset: -0.08em;
}

.kpump_section_title--centered {
  display: grid;
  place-items: center;
}

.kpump_section_title--centered span.kttl_bg,
.kpump_section_title--centered h2 {
  grid-area: 1/1;
}

.kpump_section_title span.kttl_bg {
  display: block;
  width: var(--kpump-section-title-bg-width);
  max-width: 100%;
  line-height: 0;
}

.kpump_section_title--centered span.kttl_bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--kpump-section-title-bg-width);
  height: auto;
  transform: translateY(var(--kpump-section-title-bg-offset));
}
@media screen and (max-width: 768px) {
  .kpump_section_title--centered span.kttl_bg {
    width: 80vw;
    max-width: 80vw;
  }
}
@media screen and (max-width: 480px) {
  .kpump_section_title--centered span.kttl_bg {
    width: 72vw;
    max-width: 72vw;
  }
}

.kpump_section_title span.kttl_bg img {
  display: block;
  width: 100%;
  height: auto;
}

.kpump_section_title h2 {
  font-size: clamp(1.7rem, 1.045rem + 3.27vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.3em;
}

.kpump_section_title--centered h2 {
  position: relative;
  z-index: 1;
}

.kpump_section_title h2 span.kttl_ttl {
  font-weight: 800;
  color: #AC7B38;
}

.kpump_feature_list {
  width: 1240px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1024px) {
  .kpump_feature_list {
    width: 90%;
    margin-top: 48px;
  }
}
@media screen and (max-width: 768px) {
  .kpump_feature_list {
    width: calc(100% - 32px);
    max-width: 520px;
    margin-top: 48px;
  }
}

.kpump_feature {
  position: relative;
  min-height: 480px;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .kpump_feature {
    min-height: 0;
    margin-top: 48px;
  }
}

.kpump_feature:first-child {
  margin-top: 0;
}

.kpump_feature__body {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  width: 485px;
  min-height: 300px;
  padding: 58px 75px;
  background: #fff;
  border-radius: 167px 167px 0 167px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .kpump_feature__body {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 48px);
    min-height: 0;
    padding: 28px 28px 24px;
    border-radius: 64px 64px 0 64px;
    transform: none;
  }
}

.kpump_feature--reverse .kpump_feature__body {
  left: auto;
  right: 0;
  border-radius: 167px 167px 167px 0;
}
@media screen and (max-width: 1024px) {
  .kpump_feature--reverse .kpump_feature__body {
    right: auto;
    margin-left: auto;
    border-radius: 64px 64px 64px 0;
  }
}

.kpump_feature__body h3 {
  font-size: clamp(2.4rem, 1.636rem + 3.82vw, 4.5rem);
  font-weight: 900;
  line-height: 1.2;
}

.kpump_feature__body h3 .kpump_feature__em {
  color: #EE6448;
}

.kpump_feature__body h3 small {
  display: inline-block;
  margin-left: 10px;
  font-size: clamp(0.9rem, 0.573rem + 1.64vw, 1.8rem);
  font-weight: 500;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .kpump_feature__body h3 small {
    margin-left: 5px;
  }
}

.kpump_feature__body p {
  margin-top: 18px;
  font-size: clamp(1.4rem, 1.255rem + 0.73vw, 1.8rem);
  font-weight: 500;
  line-height: 1.3;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .kpump_feature__body p {
    margin-top: 12px;
  }
}

.kpump_feature__image {
  width: 860px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .kpump_feature__image {
    width: 100%;
    margin: -30px 0 0;
  }
}

.kpump_feature--reverse .kpump_feature__image {
  margin-right: auto;
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .kpump_feature--reverse .kpump_feature__image {
    margin: -30px 0 0;
  }
}

.kpump_feature__image picture {
  display: block;
  width: 100%;
}

.kpump_feature__image img {
  display: block;
  width: 100%;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 90px;
}
@media screen and (max-width: 768px) {
  .kpump_feature__image img {
    height: auto;
    border-radius: 34px;
  }
}

.kpump_comic {
  padding: 0px 0 110px;
  text-align: center;
  background: #FFF1DF;
}

.kpump_comic p {
  font-size: clamp(1.2rem, 0.727rem + 2.36vw, 2.5rem);
  font-weight: 600;
  line-height: 1.4;
}

.kpump_comic p.kpump_features__note {
  width: 903px;
  margin: 50px auto 0;
  font-size: clamp(0.8rem, 0.582rem + 1.09vw, 1.4rem);
  line-height: 1.3;
  font-weight: 400;
  text-align: justify;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .kpump_comic p.kpump_features__note {
    width: 88%;
    margin: 20px auto 0;
  }
}

.kpump_comic__balloon {
  display: block;
  width: 585px;
  margin: 18px auto 42px;
}
@media screen and (max-width: 768px) {
  .kpump_comic__balloon {
    width: 88%;
    margin: 10px auto 20px;
  }
}

.kpump_comic__banner {
  display: block;
  width: 876px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  transform-origin: center;
}
@media screen and (max-width: 1024px) {
  .kpump_comic__banner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .kpump_comic__banner {
    width: calc(100% - 32px);
    max-width: 430px;
  }
}

.kpump_comic__banner:hover,
.kpump_comic.appear.inview .kpump_comic__banner:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.kpump_comic__banner picture {
  display: block;
  width: 100%;
}

.kpump_comic__banner img {
  display: block;
  width: 100%;
  height: auto;
}

.kpump_product {
  position: relative;
  padding: 58px 0 0;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .kpump_product {
    padding-top: 48px;
  }
}

.kpump_product--fixed {
  background: #f7f2ed;
}

.kpump_product::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -41px;
  width: 100vw;
  min-width: 1920px;
  height: 41px;
  transform: translateX(-50%);
  background: url("../images/bg_wave02.png") repeat-x center top/1920px 41px;
}

.kpump_product__inner {
  display: grid;
  grid-template-columns: repeat(2, 516px);
  gap: 66px;
  align-items: start;
  width: 1098px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .kpump_product__inner {
    grid-template-columns: 1fr;
    gap: 0;
    width: calc(100% - 26px);
    max-width: 430px;
  }
}

.kpump_wrapper #kpump_insert,
.kpump_wrapper #kpump_fixed {
  scroll-margin-top: 170px;
}
@media screen and (max-width: 768px) {
  .kpump_wrapper #kpump_insert,
  .kpump_wrapper #kpump_fixed {
    scroll-margin-top: 120px;
  }
}

@media screen and (max-width: 1024px) {
  .kpump_product__content {
    display: contents;
  }
}

.kpump_product__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .kpump_product__heading {
    order: 1;
    gap: 16px;
    margin-bottom: 16px;
  }
}

.kpump_product__heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .kpump_product__heading > div {
    gap: 10px;
  }
}

.kpump_product__type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 32px;
  padding: 0 18px;
  color: #fff;
  font-size: clamp(1.2rem, 0.982rem + 1.09vw, 1.8rem);
  font-weight: 400;
  line-height: 1;
  background: #2a2a2a;
  border-radius: 999px;
}
@media screen and (max-width: 768px) {
  .kpump_product__type {
    min-width: 78px;
    height: 26px;
    padding: 0 13px;
  }
}
.kpump_product__heading h2 {
  display: inline-block;
  font-size: clamp(1.7rem, 1.045rem + 3.27vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
}

.kpump_product__model {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 30px;
  font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem);
  font-weight: 400;
  line-height: 1;
  border: 1px solid #2a2a2a;
  font-family: "Roboto", sans-serif;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .kpump_product__model {
    min-width: 88px;
    height: 26px;
    margin-top: 7px;
  }
}
@media screen and (max-width: 480px) {
  .kpump_product__model {
    min-width: 66px;
    height: 22px;
    margin-top: 5px;
  }
}

.kpump_product_points {
  display: grid;
  grid-template-columns: repeat(2, 253px);
  gap: 11px 9px;
  margin-bottom: 24px;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .kpump_product_points {
    order: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin: 14px 0 12px;
  }
}

.kpump_product_points li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 14px 18px;
  color: #fff;
  font-size: clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  background: #ee5d47;
  border-radius: 6px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .kpump_product_points li {
    min-height: 76px;
    padding: 12px 8px;
  }
}

.kpump_product_points--five li:last-child {
  grid-column: 1/2;
}

.kpump_spec {
  width: 516px;
  border-collapse: collapse;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  line-height: 1.45;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
  .kpump_spec {
    order: 4;
    width: 100%;
  }
}

.kpump_spec th,
.kpump_spec td {
  height: 28px;
  padding: 3px 16px;
  border-bottom: 2px solid #fff;
}
@media screen and (max-width: 768px) {
  .kpump_spec th,
  .kpump_spec td {
    height: 26px;
    padding: 3px 7px;
  }
}

.kpump_spec th {
  width: 154px;
  color: #fff;
  font-weight: 500;
  text-align: center;
  background: #BBAFA1;
}
@media screen and (max-width: 768px) {
  .kpump_spec th {
    width: 120px;
  }
}
@media screen and (max-width: 480px) {
  .kpump_spec th {
    width: 100px;
  }
}

.kpump_spec td {
  font-weight: 400;
  text-align: left;
  background: #F5F0E9;
}

.kpump_spec td span {
  font-size: clamp(0.6rem, 0.345rem + 1.27vw, 1.3rem);
}

.kpump_product__note {
  margin: 20px auto 80px;
  font-size: clamp(0.8rem, 0.618rem + 0.91vw, 1.3rem) !important;
  line-height: 1.3 !important;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 1024px) {
  .kpump_product__note {
    order: 5;
    margin: 12px 0 0px;
  }
}

@media screen and (max-width: 1024px) {
  .kpump_product__image {
    order: 2;
  }
}

.kpump_product__image img {
  display: block;
  width: 516px;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .kpump_product__image img {
    width: 100%;
  }
}

.kpump_gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin: 80px auto 120px;
}
@media screen and (max-width: 768px) {
  .kpump_gallery {
    margin: 40px auto 60px;
  }
}

.kpump_gallery img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 480px) {
  .kpump_gallery img {
    height: 136px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.kpump_lineup {
  position: relative;
  isolation: isolate;
  padding: 30px 0 80px;
  background: #fff;
}

.kpump_lineup::before,
.kpump_lineup::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 1920px;
  pointer-events: none;
  transform: translateX(-50%);
}

.kpump_lineup::before {
  top: 200px;
  height: 41px;
  background: url("../images/bg_wave03.png") repeat-x center top/1920px 41px;
}
@media screen and (max-width: 768px) {
  .kpump_lineup::before {
    top: 160px;
  }
}
@media screen and (max-width: 480px) {
  .kpump_lineup::before {
    top: 115px;
  }
}

.kpump_lineup::after {
  top: 241px;
  bottom: 0;
  background: #d4eded;
}
@media screen and (max-width: 768px) {
  .kpump_lineup::after {
    top: 201px;
  }
}
@media screen and (max-width: 480px) {
  .kpump_lineup::after {
    top: 156px;
  }
}

.kpump_section_title--lineup {
  --kpump-section-title-bg-width: 556px;
  --kpump-section-title-bg-offset: -0.08em;
}

.kpump_section_title--lineup h2 {
  font-size: clamp(1.7rem, 1.045rem + 3.27vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .kpump_section_title--lineup h2 {
    letter-spacing: 0.15em;
  }
}

.kpump_section_title--lineup h2 span.kttl_ttl {
  color: #0C798E;
}

.kpump_lineup__inner {
  width: 1098px;
  margin: 150px auto 0;
}
@media screen and (max-width: 1024px) {
  .kpump_lineup__inner {
    width: 90%;
    margin: 130px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .kpump_lineup__inner {
    margin: 100px auto 0;
  }
}

.kpump_lineup__block {
  margin-top: 60px;
}

.kpump_lineup__block:first-child {
  margin-top: 0;
}

.kpump_lineup__block > h3 {
  height: 45px;
  padding-left: 26px;
  color: #fff;
  font-size: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
  font-weight: 600;
  line-height: 44px;
  background: #8FC1CB;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 768px) {
  .kpump_lineup__block > h3 {
    height: 36px;
    line-height: 35px;
    padding-left: 1em;
  }
}

.kpump_lineup__families {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
@media screen and (max-width: 1024px) {
  .kpump_lineup__families {
    grid-template-columns: 1fr;
  }
}

.kpump_family,
.kpump_manual {
  background: #fff;
  border-radius: 12px;
}

.kpump_family {
  padding: 26px;
}

.kpump_family h4,
.kpump_manual h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  color: #fff;
  font-size: clamp(1.2rem, 0.727rem + 2.36vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  background: #2a2a2a;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (max-width: 768px) {
  .kpump_family h4,
  .kpump_manual h4 {
    height: 35px;
  }
}

.kpump_family__body {
  margin-top: 22px;
}

.kpump_family__body img {
  display: block;
  width: 100%;
  height: auto;
}

.kpump_manuals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .kpump_manuals {
    grid-template-columns: repeat(2, 1fr);
  }
}

.kpump_manual {
  padding: 30px 27px;
}

.kpump_manual img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 25px auto 0;
}/*# sourceMappingURL=style.css.map */