@charset "utf-8";

html {
  font-size: 62.5%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  color: #333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", "Meiryo, Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 1.6rem;
  line-height: 1;
}

.sp {
  display: none;
}
.sp-br {
  display: none;
}

button {
  /* 背景色を無色に */
  background: transparent;
  /* 枠線を消す */
  border: none;
  /* クリックした際に枠線をnone消す */
  outline: none;
  /* 影を消す */
  box-shadow: none;
}

/*========= レイアウトのためのCSS ===============*/

a {
  color: #000;
  text-decoration: none;
  transition: 0.5s;
}

/* header */

.gnavi li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}

.gnavi li a {
  display: block;
  padding: 17px 20px;
  text-decoration: none;
  color: #333;
}

.gnavi li:last-child a {
  display: block;
  padding: 25px 20px;
  text-decoration: none;
  color: #333;
}

/* .gnavi li.current a,
.gnavi li a:hover{
color:#0481A2;
} */

.gnavi li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #000;
  /*アニメーションの指定*/
  transition: all 0.3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: center top; /*上部中央基点*/
}

.header {
  position: fixed;
  top: 0;
  height: 70px;
  width: 100%;
  background-color: #fff;
  z-index: 99999;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

h1 {
  width: 190px;
  margin-left: 20px;
  transition: 1s;
}

.header-inner img {
  width: 100%;
}

.hero-menu {
  margin-left: auto;
  margin-right: 2%;
}

.hero-menu ul {
  display: flex;
  width: 770px;
  background-color: #fff;
  justify-content: end;
  align-items: center;
}

.hero-menu ul li {
  letter-spacing: 0.2rem;
  font-weight: 600;
  transition: 0.5s;
  font-size: 1.8rem;
  font-family: "Jost", sans-serif;
  text-align: center;
  display: block;
}

.hero-item-jp {
  text-align: center;
  margin-top: 4px;
  font-size: 1rem;
  display: inline-block;
}

.hero-item a img {
  width: 20px;
  height: 20px;
}

.hero-inner {
  position: relative;
  width: 80%;
  margin-left: auto;
  height: 45vw;
  max-height: 680px;
}

.hero-catch-jp {
  position: absolute;
  color: #fff;
  left: -64px;
  bottom: 11%;
  font-size: clamp(30px, 5vw, 60px);
  text-shadow: 1px 1px 2px black;
}

.hero-catch-en {
  position: absolute;
  color: #fff;
  left: -64px;
  bottom: -30px;
  font-size: clamp(40px, 6vw, 100px);
  text-shadow: 1px 1px 2px black;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.4rem;
}

.hero-inner::after {
  position: absolute;
  content: "";
  border: #000 solid 1px;
  width: 600px;
  height: 37vw;
  max-height: 600px;
  left: -14vw;
  bottom: -30px;
  z-index: -5;
}

.hero-inner::before {
  position: absolute;
  bottom: -47px;
  left: -100px;
  content: "";
  background: linear-gradient(#000, #000);
  width: 80vw;
  height: 35vw;
  max-height: 560px;
  z-index: -1;
}

.hero-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 20%;
}

.concept-inner {
  overflow: hidden;
}

.concept-copy {
  margin-top: 120px;
  margin-bottom: 100px;
  text-align: center;
  font-weight: 600;
  line-height: 3rem;
  font-size: 2rem;
  line-height: 4.6rem;
}

.concept-cap {
  width: 960px;
  margin: 0 auto;
}

.concept-cap-box {
  display: flex;
  height: 300px;
  align-items: center;
  justify-content: center;
}

.concept-cap-box_img {
  width: 42%;
  position: relative;
}

.concept-cap-box_img::before {
  position: absolute;
  content: "";
  border: #000 solid 1px;
  width: 192px;
  height: 192px;
  z-index: -1;
  left: -20px;
  top: -20px;
}

.concept-cap-box_img::after {
  position: absolute;
  content: "";
  background-color: #000;
  width: 130px;
  height: 130px;
  z-index: -1;
  right: -20px;
  bottom: -20px;
}

.concept-cap-box_img img {
  width: 100%;
}

.concept-cap-box_cap {
  position: relative;
  width: 50%;
  line-height: 2.6rem;
  margin-left: 8%;
  font-size: 1.6rem;
  font-weight: 600;
}

.concept-cap-box_cap::before {
  position: absolute;
  content: "";
  border: #000 solid 1px;
  width: 200px;
  height: 200px;
  z-index: -1;
  right: -25%;
  top: -170%;
}

.concept-cap-box_cap::after {
  position: absolute;
  content: "";
  background-color: #ebebeb;
  width: 140px;
  height: 140px;
  z-index: -1;
  right: -30px;
  top: -80px;
}

.product {
  margin-top: 100px;
}

.product-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  background-image: url(../img/top/product-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.content-heading__product {
  text-align: center;
  font-size: 10rem;
  font-family: "Jost", sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.6rem;
}

.content-heading__product-sub {
  color: #fff;
  letter-spacing: 0.6rem;
  font-size: 1.3rem;
}

.product-inner {
  width: 900px;
  margin: 0 auto;
}

.product-heading {
  margin-bottom: 80px;
}

.p-product-item {
  display: flex;
  width: 100%;
  height: 290px;
}

.p-product-item__img {
  width: 45%;
}

.p-product-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-product-item__img-cap {
  position: relative;
  width: 55%;
  background-color: #ebebeb;
}

.p-product-item__img-cap-base {
  position: relative;
  width: 55%;
  background-color: #ebebeb;
}

.text-center {
  text-align: center;
}

.p-product-item__img-cap-inner {
  position: absolute;
  width: 428px;
  /* text-align: left; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-product-item__img-cap-inner02 {
  position: absolute;
  width: 391px;
  /* text-align: left; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-product-item__img-cap-heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.2rem;
}

.p-product-item__img-cap-price {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: left;
}

.price {
  margin-bottom: 2px;
}

.p-product-item__img-cap-price-standard {
  margin-bottom: 16px;
}

.p-product-item__img-cap-price span {
  font-family: "Jost", sans-serif;
}

.p-product-item__img-cap-supplement {
  font-size: 1.4rem;
  margin-top: 12px;
  font-weight: 600;
  text-align: left;
  line-height: 1.6rem;
}

.product-inner-heading {
  text-align: center;
  margin-top: 104px;
}

.product-inner-heading-en {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.3rem;
  font-family: "Jost", sans-serif;
  font-size: 8rem;
  opacity: 0.64;
}

.standard-color {
  -webkit-text-stroke: 1px #6a470f; /*ベンダープレフィックス*/
  text-stroke: 1px #6a470f; /*1px赤色縁取り*/
}

.product-inner-heading-jp {
  position: relative;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  margin-top: -28px;
  z-index: 1;
  margin-bottom: 30px;
}

.p-product-item__img-cap-content {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 20px;
  line-height: 2rem;
}

.standard-spec {
  width: 100%;
  margin-top: 20px;
  border-right: #000 solid 1px;
  border-bottom: #000 solid 1px;
  border-left: #000 solid 1px;
}

.standard-spec-heading {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #000;
  color: #fff;
  height: 34px;
  line-height: 3.4rem;
  letter-spacing: 0.2rem;
}

.standard-spec-cap {
  font-size: 1.4rem;
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
  font-weight: 600;
  line-height: 2rem;
}

.baseB {
  width: 90%;
  margin: 0 auto;
}

.standard-spec-note {
  font-size: 1.3rem;
  margin-top: 5px;
  font-weight: 600;
  text-align: center;
}

.standard-plan {
  display: flex;
  text-align: center;
  margin-top: 50px;
  justify-content: space-around;
  margin-bottom: 90px;
  flex-wrap: wrap;
}

.planD {
  width: 290px;
  margin: 0 auto;
}

.standard-plan-item {
  width: 49%;
}

.standard-plan-item__heading {
  margin-bottom: 10px;
  font-weight: 600;
}

.standard-plan-item__img img {
  width: 90%;
  object-fit: contain;
  object-position: -4px;
}

.standard-plan-specification {
  margin-bottom: 70px;
}

.standard-plan-specification__heading {
  text-align: center;
  width: 50%;
  letter-spacing: 0.3rem;
  margin: 0 auto;
  color: #fff;
  font-size: 2.4rem;
  background-color: #000;
  padding: 14px 0;
}

.standard-plan-specification-img {
  width: 80%;
  margin: 0 auto;
  margin-top: 24px;
}

.standard-plan-specification-img img {
  width: 100%;
}

.original-color {
  -webkit-text-stroke: 1px #1e6aa2;
}

.original-purpose {
  margin-top: 45px;
}

.original-purpose-box {
  display: flex;
  justify-content: space-between;
}

.original-purpose-item img {
  width: 100%;
}

.original-purpose-item {
  width: 49%;
}

.original-purpose-messa {
  margin-top: 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

.steel-color {
  -webkit-text-stroke: 1px #000;
}

.content-heading {
  text-align: center;
  font-size: 10rem;
  font-family: "Jost", sans-serif;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.6rem;
  margin-top: 140px;
}

.content-heading__sub {
  color: #000;
  letter-spacing: 0.4rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.3rem;
}

.flow-messa {
  font-size: 2.4rem;
  color: #fff;
  background-color: #000;
  text-align: center;
  margin: 0 auto;
  width: 280px;
  margin-top: 50px;
  padding: 14px 0;
  letter-spacing: 0.2rem;
}

.flow-messa__caution {
  text-align: center;
  font-size: 1.3rem;
  margin-top: 10px;
}

.flow-item {
  display: flex;
  width: 990px;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.flow-item-row {
  width: 33.333%;
  position: relative;
  margin-right: 40px;
  margin-top: 80px;
}

/* .flow-item{
  width: 30%;
  min-width: 300px;
  position: relative;
  margin-right: 2%;
  margin-top: 80px;
} */

.flow-item-row:nth-of-type(3n) {
  margin-right: 0;
}

.flow-item-nom {
  position: absolute;
  top: -20px;
  left: -14px;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #000;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 5rem;
  text-align: center;
  font-family: "Jost", sans-serif;
}

.flow-item-img {
  width: 100%;
  height: 200px;
}

.flow-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-item-cap {
  text-align: center;
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 600;
}

.merit-inner {
  display: flex;
  width: 900px;
  margin: 0 auto;
  margin-top: 80px;
}

.merit-inner-item {
  width: 20%;
  margin: 0 2%;
  text-align: center;
}

.merit-inner-item__img {
  width: 60%;
  height: 110px;
  margin: 0 auto;
}

.merit-inner-item__img img {
  width: 100%;
  margin: 0 auto;
}

.merit-inner-item__heading {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
}

.merit-inner-item__cap {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.merit-inner-item__cap-caution {
  font-size: 1.3rem;
  font-weight: 600;
}

.merit-inner-item__img-speed img {
  height: 100%;
  object-fit: contain;
}

.sales-company-inner {
  width: 990px;
  margin: 80px auto 100px;
  display: flex;
  justify-content: space-between;
}

.sales-company-inner__item {
  width: 31%;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 600;
}

.sales-company-inner__item-img {
  height: 200px;
}

.sales-company-inner__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sales-company-inner__item-imgー01 img {
  object-position: 0 20%;
}

.sales-company-inner__item-logo {
  height: 100px;
  width: 140px;
  margin: 20px auto 30px;
}

.kowa-logo {
  width: 230px;
}

.sales-company-inner__item-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sales-company-inner__item-link {
  color: #8e8888;
}

.banner {
  width: 800px;
  margin: 0 auto 70px;
  transition: 0.3s;
}

.banner img {
  width: 100%;
}

.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
}

.footer-logo {
  width: 70px;
  margin: 0 auto;
  padding: 20px 0;
}

.footer-logo img {
  width: 100%;
}

.supervisor {
  font-size: 1.4rem;
  font-weight: 600;
  padding-bottom: 20px;
}

.copyright {
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  padding-bottom: 10px;
}

.sprout-mg {
  margin-top: 20px;
}

.contact-inner {
  width: 80%;
  max-width: 700px;
  margin: 50px auto 100px;
}

.contact-cap {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.4rem;
}

.screen-reader-response {
  display: none;
}

.wpcf7-response-output {
  margin-top: 30px;
  text-align: center;
  color: #be1d1d;
}

/* --------------------------



contactform7




--------------------------*/

.cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 30px;
}

.cf7__list dt {
  width: 35%;
  padding-top: 15px;
}

.cf7__list dd {
  width: 65%;
}

/* 必須・任意 */
.cf7__required,
.cf7__optional {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  vertical-align: 1px;
}

.cf7__required {
  background: #be1d1d;
}

.cf7__optional {
  background: #878d8e;
}

/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  width: 100%;
  padding: 15px 20px;
  border: solid 1px black;
}

/* ドロップダウンメニュー */
.cf7__select {
  position: relative;
}

.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: "";
}

.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: #f4f4f4;
  color: #a5a5a5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: "";
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}

/* 送信ボタン */
.cf7__button {
  padding-left: 58px;
  text-align: center;
}

input[type="submit"] {
  width: 260px;
  height: 60px;
  background: #000;
  color: #fff;
  transition: opacity 0.6s;
}

input[type="submit"]:hover {
  opacity: 0.6;
}

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .cf7__list dd {
    width: 100%;
  }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }

  /* 送信ボタン */
  input[type="submit"] {
    width: 180px;
    height: 56px;
  }
}

/* --------------------------



hover




*/

@media (hover: hover) {
  /*現在地とhoverの設定*/
  .gnavi li.current a::after,
  .gnavi li a:hover::after {
    transform: scale(1, 1); /*X方向にスケール拡大*/
  }

  .sales-company-inner__item-link:hover {
    color: #8e8888;
    border-bottom: solid 1px #8e8888;
  }

  .banner:hover {
    opacity: 0.6;
    transition: 0.3s;
  }
}

/* タブレット */

@media screen and (max-width: 1024px) {
  .concept-cap {
    width: 100%;
    margin: 0 auto;
  }
  .concept-cap-box {
    display: flex;
    height: 300px;
    align-items: center;
    justify-content: space-around;
  }

  .concept-cap-box_cap::before {
    position: absolute;
    content: "";
    border: #000 solid 1px;
    width: 200px;
    height: 200px;
    z-index: -1;
    right: -11%;
    top: -170%;
  }

  .concept-cap-box_cap::after {
    position: absolute;
    content: "";
    background-color: #ebebeb;
    width: 140px;
    height: 140px;
    z-index: -1;
    right: 40px;
    top: -80px;
  }
}

@media screen and (max-width: 820px) {
  .hero-menu ul {
    display: none;
    width: 770px;
    background-color: #fff;
    justify-content: end;
    align-items: center;
  }
  .concept-cap-box_img {
    width: 32%;
    position: relative;
  }

  .concept-cap-box_cap {
    position: relative;
    width: 50%;
    line-height: 2.6rem;
    margin-left: -8%;
    font-size: 1.6rem;
    font-weight: 600;
  }

  .concept-cap-box_cap::before {
    display: none;
    position: absolute;
    content: "";
    border: #000 solid 1px;
    width: 200px;
    height: 200px;
    z-index: -1;
    right: -11%;
    top: -170%;
  }

  .concept-cap-box_cap::after {
    display: none;
    position: absolute;
    content: "";
    background-color: #ebebeb;
    width: 140px;
    height: 140px;
    z-index: -1;
    right: 40px;
    top: -80px;
  }

  .product-inner {
    width: 100%;
    margin: 0 auto;
  }

  .p-product-item__img-cap-price {
    font-size: 2rem;
    font-weight: 600;
  }

  .flow-item {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .merit-inner {
    display: flex;
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
  }

  .sales-company-inner {
    width: 100%;
    margin: 80px auto 100px;
    display: flex;
    justify-content: space-between;
  }

  .banner {
    width: 90%;
    margin: 0 auto 70px;
    transition: 0.3s;
  }
}

/* ========================================


sp



============================================*/
@media screen and (max-width: 450px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .header {
    position: fixed;
    top: 0;
    height: 60px;
    width: 100%;
    background-color: #fff;
    z-index: 99999;
  }

  .hero {
    position: relative;
  }

  .hero::before {
    position: absolute;
    bottom: -34px;
    left: 0;
    content: "";
    background: linear-gradient(#000, #000);
    width: 100vw;
    height: 64vw;
    max-height: 560px;
    z-index: -1;
  }

  .hero-inner {
    position: relative;
    width: 80%;
    margin-left: auto;
    height: 95svh;
    /* max-height: 680px; */
  }

  .hero-inner::before {
    display: none;
    position: absolute;
    bottom: -47px;
    left: -91px;
    content: "";
    background: linear-gradient(#000, #000);
    width: 100vw;
    height: 64vw;
    max-height: 560px;
    z-index: -1;
  }

  .hero-inner::before {
    display: none;
    position: absolute;
    bottom: -47px;
    left: -91px;
    content: "";
    background: linear-gradient(#000, #000);
    width: 100vw;
    height: 64vw;
    max-height: 560px;
    z-index: -1;
  }

  .hero-inner::after {
    display: none;
    position: absolute;
    content: "";
    border: #000 solid 1px;
    width: 600px;
    height: 37vw;
    max-height: 600px;
    left: -14vw;
    bottom: -30px;
    z-index: -5;
  }

  .hero::after {
    position: absolute;
    content: "";
    border: #000 solid 1px;
    width: 200px;
    height: 122vw;
    left: 12vw;
    bottom: -30px;
    z-index: -5;
  }

  .hero-catch-jp {
    position: absolute;
    color: #fff;
    left: -64px;
    bottom: 11%;
    font-size: clamp(30px, 10vw, 60px);
    text-shadow: 1px 1px 2px black;
  }

  .hero-catch-en {
    position: absolute;
    color: #fff;
    left: -64px;
    bottom: -18px;
    font-size: clamp(40px, 6vw, 100px);
    text-shadow: 1px 1px 2px black;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    letter-spacing: 0.4rem;
  }

  .hero-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 39% 0%;
  }

  .concept-copy {
    margin-top: 90px;
    margin-bottom: 90px;
    text-align: center;
    font-weight: 600;
    line-height: 3rem;
    font-size: 2rem;
    line-height: 4.6rem;
  }

  .concept-cap-box {
    display: block;
    height: auto;
    align-items: center;
    justify-content: space-around;
  }

  .concept-cap-box_img {
    width: 90%;
    position: relative;
    margin: 0 auto;
  }

  .concept-cap-box_cap {
    position: relative;
    width: 90%;
    line-height: 2.6rem;
    margin-left: 0;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 30px auto 0;
  }

  .concept-cap-box_img::before {
    position: absolute;
    content: "";
    border: #000 solid 1px;
    width: 182px;
    height: 182px;
    z-index: -1;
    left: -12px;
    top: -20px;
  }

  .concept-cap-box_img::after {
    position: absolute;
    content: "";
    background-color: #000;
    width: 120px;
    height: 120px;
    z-index: -1;
    right: -12px;
    bottom: -20px;
  }

  .product {
    margin-top: 50px;
  }

  .content-heading__product {
    text-align: center;
    font-size: 4rem;
    font-family: "Jost", sans-serif;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.6rem;
  }

  .product-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 95px;
    background-image: url(../img/top/product-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
  }

  .product-heading {
    margin-bottom: 25px;
  }

  .p-product-item {
    display: block;
    width: 100%;
    height: 260px;
  }

  .p-product-item__img {
    width: 90%;
    margin: 0 auto;
  }

  .p-product-item__img-cap {
    position: relative;
    width: 90%;
    background-color: #ebebeb;
    height: 270px;
    margin: 0 auto;
  }

  .p-product-item__img-cap-base {
    position: relative;
    width: 90%;
    background-color: #ebebeb;
    height: 170px;
    margin: 0 auto;
  }

  .p-product-item__img-cap-inner {
    position: absolute;
    width: 90%;
    /* text-align: left; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .p-product-item__img-cap-inner02 {
    position: absolute;
    width: 90%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .product-inner-heading {
    text-align: center;
    margin-top: 64px;
  }

  .product-inner-heading-jp {
    position: relative;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    margin-top: -28px;
    z-index: 1;
    margin-bottom: 30px;
  }

  .product-inner-heading-en {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3rem;
    font-family: "Jost", sans-serif;
    font-size: 7.3rem;
    opacity: 0.64;
  }

  .standard-spec {
    width: 90%;
    margin: 280px auto 0;
    border-right: #000 solid 1px;
    border-bottom: #000 solid 1px;
    border-left: #000 solid 1px;
  }

  .standard-spec-note {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: left;
    width: 90%;
    margin: 5px auto 0;
    line-height: 1.8rem;
  }

  .standard-spec-cap {
    font-size: 1.4rem;
    width: 94%;
    margin: 0 auto;
    padding: 20px 0;
    font-weight: 600;
    line-height: 2.1rem;
    text-align: center;
  }

  .p-product-item__img-cap-content {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 13px;
    line-height: 2rem;
    text-align: left;
  }

  .standard-plan {
    display: block;
    text-align: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto 40px;
  }

  .base-mg {
    margin-top: 220px;
  }

  .standard-plan-item {
    width: 100%;
    margin-top: 30px;
  }

  .standard-plan-specification__heading {
    text-align: center;
    width: 100%;
    letter-spacing: 0.3rem;
    margin: 0 auto;
    color: #fff;
    font-size: 2rem;
    background-color: #000;
    padding: 14px 0;
  }

  .standard-plan-specification-img {
    width: 90%;
    margin: 0 auto;
    margin-top: 24px;
  }

  .product-inner-heading-sp-margin {
    margin-top: 70px;
  }

  .original-purpose {
    margin-top: 115px;
    width: 90%;
    margin: 125px auto;
  }

  .p-product-item__img-cap-hight {
    height: 140px;
    text-align: left;
  }

  .original-purpose-box {
    display: flex;
    justify-content: space-between;
  }

  .original-purpose-item {
    width: 49%;
  }

  .original-purpose-messa {
    margin-top: 10px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
  }

  .content-heading {
    text-align: center;
    font-size: 4rem;
    font-family: "Jost", sans-serif;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.6rem;
    margin-top: 140px;
  }

  .content-heading__sp-flow {
    text-align: center;
    font-size: 4rem;
    font-family: "Jost", sans-serif;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.6rem;
    margin-top: 180px;
  }

  .flow-messa {
    font-size: 2rem;
    color: #fff;
    background-color: #000;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    margin-top: 20px;
    padding: 14px 0;
    letter-spacing: 0.2rem;
  }

  .flow-item {
    display: block;
    width: 100%;
    margin: 50px auto;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .flow-item-row {
    width: 90%;
    position: relative;
    margin: 0 auto 50px;
  }

  .flow-item-img {
    width: 100%;
    height: 240px;
  }

  .flow-item-cap {
    text-align: center;
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 600;
  }

  .flow-item-row:nth-of-type(3n) {
    margin-right: auto;
  }

  .content-heading__sp-margin {
    text-align: center;
    font-size: 4rem;
    font-family: "Jost", sans-serif;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.6rem;
    margin-top: 80px;
  }

  .merit-inner {
    display: flex;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
  }

  .merit-inner {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
  }

  .merit-inner-item {
    width: 90%;
    margin: 0 auto 70px;
    text-align: center;
  }

  .merit-inner-item__img {
    width: 110px;
    height: 106px;
    margin: 0 auto;
  }

  .merit-inner-item__heading {
    margin-top: 10px;
    margin-bottom: 7px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
  }

  .merit-inner-item__cap {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }

  .purpose-inner {
    width: 90%;
    margin: 30px auto 0;
    text-align: center;
    font-size: 1.4rem;
  }

  .flow-inner {
    margin-bottom: 50px;
  }

  .purpose-row__item-img img {
    width: 100%;
  }

  .purpose-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
  }

  .purpose-row__item {
    width: 45%;
  }

  .purpose-row__item-cap {
    margin-top: 8px;
  }

  .sales-company-inner {
    width: 90%;
    margin: 30px auto 50px;
    display: block;
    justify-content: space-between;
  }

  .sales-company-inner__item {
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 600;
    margin-bottom: 60px;
  }

  .sales-company-inner__item-img {
    height: 230px;
  }

  .sales-company-inner__item-logo {
    height: auto;
    width: 140px;
    margin: 20px auto 10px;
  }

  .sales-company-inner__item-logo-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
  }

  .banner-sp {
    width: 90%;
    margin: 0 auto 30px;
  }

  .banner-sp img {
    width: 100%;
  }

  .contact-inner {
    width: 80%;
    margin: 50px auto 100px;
  }

  .cf7__button {
    padding-left: 58px;
    text-align: center;
  }

  .kowa-logo {
    width: 230px;
  }
}

@media screen and (max-width: 430px) {
  .p-product-item__img-cap-inner {
    position: absolute;
    width: 98%;
    /* text-align: left; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
  }

  .purpose-inner {
    width: 98%;
    margin: 30px auto 0;
    text-align: center;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 393px) {
  .hero-catch-en {
    position: absolute;
    color: #fff;
    left: -64px;
    bottom: -18px;
    font-size: clamp(38px, 5vw, 100px);
    text-shadow: 1px 1px 2px black;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    letter-spacing: 0.4rem;
  }

  .concept-copy {
    margin-top: 90px;
    margin-bottom: 90px;
    text-align: center;
    font-weight: 600;
    line-height: 3rem;
    font-size: 1.8rem;
    line-height: 4rem;
  }

  .concept-cap-box_img::after {
    position: absolute;
    content: "";
    background-color: #000;
    width: 120px;
    height: 120px;
    z-index: -1;
    right: -26px;
    bottom: -20px;
  }

  .concept-cap-box_cap {
    position: relative;
    width: 90%;
    line-height: 2.6rem;
    margin-left: 0;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px auto 0;
  }

  .p-product-item__img-cap-price {
    font-size: 1.8rem;
    font-weight: 600;
  }

  .product-inner-heading-en {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.3rem;
    font-family: "Jost", sans-serif;
    font-size: 6.3rem;
    opacity: 0.64;
  }

  .standard-spec {
    width: 90%;
    margin: 170px auto 0;
    border-right: #000 solid 1px;
    border-bottom: #000 solid 1px;
    border-left: #000 solid 1px;
  }

  .content-heading__sp-flow {
    text-align: center;
    font-size: 4rem;
    font-family: "Jost", sans-serif;
    color: #000;
    font-weight: 700;
    letter-spacing: 0.6rem;
    margin-top: 150px;
  }

  .purpose-row__item {
    width: 48%;
  }

  .sales-company-inner__item {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 600;
    margin-bottom: 60px;
  }
}
