@charset "UTF-8";
/* 全体にかけるもの */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1000px) {
  * {
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  * {
    font-size: 14px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}

/* 共通クラス　 */
/* PCでは表示 SPでは非表示 */
.PC-block {
  display: inline-block;
}
@media screen and (max-width: 644px) {
  .PC-block {
    display: none;
  }
}

/* SPでは表示 PCでは非表示 */
.SP-block {
  display: block;
}
@media screen and (min-width: 644px) {
  .SP-block {
    display: none;
  }
}

.TB-block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .TB-block {
    display: block;
  }
}

.mx {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}
@media screen and (max-width: 1000px) {
  .mx {
    max-width: 640px;
  }
}
@media screen and (max-width: 640px) {
  .mx {
    max-width: 327px;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .flex-center.action {
    flex-direction: column;
    align-items: center;
  }
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flex-column.action0 {
  gap: 0px;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.kasouTtl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  color: #05428A;
  margin-bottom: 2rem;
  letter-spacing: 3.2px;
  font-weight: bold;
}
.kasouTtl.lease-action {
  text-align: center;
}
.kasouTtl.blueBall {
  padding-left: 3rem;
  position: relative;
}
.kasouTtl.blueBall::before {
  content: "●";
  color: #05428A;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.8rem;
}
.kasouTtl.support-action {
  margin-bottom: 1rem;
}
.kasouTtl.action {
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .kasouTtl {
    font-size: 1.285rem;
  }
  .kasouTtl.privacy {
    margin-bottom: 1rem;
  }
}

.Btn {
  font-size: 1.125rem;
  color: #fff;
  padding: 1rem 0rem;
  margin-top: 3.6rem;
  border: 2px solid #fff;
  border-radius: 30px;
  display: inline-block;
  background-color: #05428A;
  position: relative;
  width: 286px;
  text-align: center;
}
.Btn.gomiser {
  margin-top: 2rem;
}
@media screen and (max-width: 640px) {
  .Btn.gomiser {
    width: 150px;
    font-size: 0.875rem;
    padding: 0.5rem 0;
  }
  .Btn.gomiser::after {
    width: 15px;
  }
}
@media screen and (max-width: 640px) {
  .Btn.company {
    width: 150px;
    font-size: 0.875rem;
    padding: 0.5rem 0;
  }
  .Btn.company::after {
    width: 15px;
  }
}
.Btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 23px;
  aspect-ratio: 1/1;
  background-image: url(../img/btn2.png);
  background-size: cover;
  background-position: center;
}
.Btn:hover {
  background-color: #EFF2F4;
  color: #05428A;
  border: 2px solid #05428A;
}
.Btn.caseBtn {
  width: 322px;
  margin: 0 auto;
}
.Btn.newsBtn {
  width: 258px;
}
@media screen and (max-width: 1000px) {
  .Btn {
    margin-top: 2rem;
    width: 200px;
    font-size: 1.5rem;
  }
  .Btn.caseBtn {
    width: 252px;
    margin: 0 auto;
  }
  .Btn.newsBtn {
    width: 218px;
  }
}
.Btn--404 {
  width: 327px;
}

.Btn2 {
  font-size: 1.125rem;
  color: #05428A;
  padding: 1rem 4rem;
  margin-top: 3.6rem;
  border: 2px solid #05428A;
  border-radius: 30px;
  display: inline-block;
  position: relative;
  background-color: #fff;
}
.Btn2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 23px;
  aspect-ratio: 1/1;
  background-image: url(../img/button-arrow-bulue.png);
  background-size: cover;
  background-position: center;
}
.Btn2:hover {
  background-color: #05428A;
  color: white;
}
.Btn2.support {
  margin-top: 1rem;
}
@media screen and (max-width: 1000px) {
  .Btn2 {
    font-size: 1rem;
    margin-top: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .Btn2 {
    padding: 1rem 3rem;
  }
}

.big3 {
  font-size: 3rem;
}

.transY {
  transform: translateY(-6px);
  padding: 0 3px;
}

main {
  margin-top: 100px;
}
main.mb {
  margin-bottom: 6rem;
}
@media screen and (max-width: 640px) {
  main {
    margin-top: 80px;
  }
}

/* 下層ページタイトル */
.Pagettl {
  font-size: min(3.5vw, 3rem);
  color: #fff;
  width: 60%;
  margin-left: 12%;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .Pagettl {
    transform: translate(-6%, 30%);
    width: 70%;
    font-size: 2rem;
    margin-left: 0;
    position: relative;
  }
}
.Pagettl.privacy {
  text-align: center;
  margin-left: 0;
  transform: translate(0);
  width: 100%;
}
@media screen and (max-width: 640px) {
  .Pagettl.privacy {
    font-size: 2rem;
  }
}
.Pagettl.page404 {
  text-align: center;
  margin-left: 0;
  transform: translate(0);
  width: 100%;
}
@media screen and (max-width: 640px) {
  .Pagettl.page404 {
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) !important;
  }
}
.Pagettl span {
  font-size: min(3.5vw, 3rem);
}
.Pagettl.contact-action {
  text-align: center;
  transform: translateY(160%);
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .Pagettl.contact-action {
    transform: translateY(230%);
  }
}
@media screen and (max-width: 640px) {
  .Pagettl.contact-action {
    transform: translateY(60%);
  }
  .Pagettl.contact-action.lease {
    text-align: center;
    transform: translateY(180%);
  }
}
.Pagettl.recruit-action {
  transform: translateY(150%);
}
@media screen and (max-width: 1000px) {
  .Pagettl.recruit-action {
    transform: translateY(250%);
  }
}
@media screen and (max-width: 640px) {
  .Pagettl.recruit-action {
    text-align: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}

.Pagettl__blue {
  background-image: url(../img/kasou-bg-blue.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.Pagettl__blue .ttl__Img {
  width: 40%;
}
@media screen and (max-width: 640px) {
  .Pagettl__blue {
    padding: 2.5rem;
  }
  .Pagettl__blue .ttl__Img {
    display: none;
  }
}

/* 英語画像の擬似要素 */
/* ページごとにbg-imgを変更 */
.Aboutus__ttl {
  position: relative;
}
.Aboutus__ttl::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  width: 70%;
  height: 60%;
  transform: translateY(-20%);
  left: 0;
  background-image: url(../img/About-ttl.png);
}
@media screen and (max-width: 640px) {
  .Aboutus__ttl::after {
    transform: translateY(-10%);
  }
}
.Aboutus__ttl.recruit::after {
  background-image: url("../img/Recruit-txt.png");
}
.Aboutus__ttl.cases::after {
  background-image: url(../img/Cases-kasou.png);
}
.Aboutus__ttl.news::after {
  background-image: url(../img/News-kasou.png);
}
.Aboutus__ttl.effect-action::after {
  background-image: url(../img/effectsTtl-img.png);
}
.Aboutus__ttl.service-action::after {
  background-image: url("../img//Service-ttl.png");
}

.contactus__ttl {
  width: 100vw;
  aspect-ratio: 4.96/1;
  position: relative;
  background-image: url("../img/product-bg.png");
  background-size: cover;
  background-position: center;
}
.contactus__ttl.recruit-action {
  background-image: url(../img/recruit-woman.png);
}
@media screen and (max-width: 1000px) {
  .contactus__ttl {
    aspect-ratio: 3.5/1;
  }
}
@media screen and (max-width: 640px) {
  .contactus__ttl {
    aspect-ratio: 2.2/1;
  }
}
.contactus__ttl::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  width: 70%;
  height: 60%;
  transform: translateY(-20%);
  left: 0;
  background-image: url(../img/Contactus.png);
}
@media screen and (max-width: 640px) {
  .contactus__ttl::after {
    transform: translateY(-10%);
  }
}
.contactus__ttl.lease::after {
  background-image: url(../img/Service.svg);
}
.contactus__ttl.product::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  width: 30%;
  height: 60%;
  transform: translateY(41%);
  right: 0;
  background-image: url(../img/Product-txt.png);
}
@media screen and (max-width: 1000px) {
  .contactus__ttl.product::after {
    transform: translateY(58%);
  }
}
@media screen and (max-width: 640px) {
  .contactus__ttl.product::after {
    transform: translateY(56%);
    width: 50%;
  }
}
.contactus__ttl.recruit-action::after {
  background-image: url(../img/Recruit-txt.png);
}
.contactus__ttl.privacy::after {
  display: none;
}
.contactus__ttl.page404__ttl::after {
  background-image: url(../img/404-txt.png);
}

.contactus__ttl2 {
  width: 100vw;
  aspect-ratio: 4.96/1;
  position: relative;
  background-image: url("../img/product-bg.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1000px) {
  .contactus__ttl2 {
    aspect-ratio: 3.5/1;
  }
}
@media screen and (max-width: 640px) {
  .contactus__ttl2 {
    aspect-ratio: 2.2/1;
  }
}
.contactus__ttl2.product::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
  width: 30%;
  height: 60%;
  transform: translateY(41%);
  right: 0;
  background-image: url(../img/Product-txt.png);
  transform: translateY(47%);
}
@media screen and (max-width: 1000px) {
  .contactus__ttl2.product::after {
    transform: translateY(58%);
  }
}
@media screen and (max-width: 640px) {
  .contactus__ttl2.product::after {
    transform: translateY(56%);
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .contactus__ttl2.product::after {
    transform: translateY(63%);
  }
}

/* コンテンツ・会社情報ページ共通 */
.sec__ttl {
  color: #05428A;
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 640px) {
  .sec__ttl {
    font-size: 1.8rem;
  }
}

/* 各セクションのCSS */
@media screen and (max-width: 640px) {
  .Greeting.mx {
    width: 100vw;
    max-width: inherit;
  }
}
.Greeting__col2 {
  background-color: #EFF2F4;
  padding: 2rem;
  display: flex;
  gap: 2%;
  position: relative;
  align-items: flex-end;
}
.Greeting .article__ttl {
  font-weight: 700;
  margin-bottom: 1rem;
}
.Greeting .article__ttl-txt {
  font-size: 0.8rem;
  font-weight: 400;
}
.Greeting .article__container {
  margin-bottom: 1rem;
}
.Greeting__Txt {
  width: 65%;
}
.Greeting__Img {
  width: 35%;
  text-align: center;
  padding-bottom: 13%;
}
.Greeting__face {
  border-radius: 1rem;
  position: absolute;
  top: -3%;
  right: 0;
  width: 35%;
}
.Greeting__sign {
  width: 60%;
  transform: translateY(1rem);
}
@media screen and (max-width: 960px) {
  .Greeting__sign {
    transform: translate(0);
  }
  .Greeting__Img {
    padding-bottom: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .Greeting__face {
    position: static;
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .Greeting__col2 {
    flex-direction: column;
    align-items: center;
    padding-bottom: 12rem;
  }
  .Greeting__Txt {
    width: 100%;
  }
  .Greeting__Img {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    width: 300px;
    position: absolute;
    bottom: -15%;
    margin-bottom: unset;
  }
  .Greeting__face {
    position: static;
    width: 50%;
  }
  .Greeting__sign {
    width: 30%;
    -o-object-fit: contain;
       object-fit: contain;
    margin-left: 8%;
  }
}

.Suppliers {
  margin-top: 6.5rem;
  text-align: center;
}
.Suppliers .Product__name {
  display: flex;
  height: 29px;
  width: 200px;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.Suppliers .Product__name img {
  -o-object-fit: contain;
     object-fit: contain;
}
.Suppliers .Product__name img:nth-of-type(1) {
  margin-right: 1rem;
}
.Suppliers .Product__name img:nth-of-type(2) {
  margin-left: 1rem;
}
.Suppliers .Product__name .slash::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 100%;
  background-color: #05428A;
  width: 2px;
  rotate: 45deg;
  top: 0;
}
.Suppliers__list {
  margin-top: 1.5rem;
  position: relative;
  width: 98%;
  margin-bottom: 3rem;
}
.Suppliers__list::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #E4E4E3;
  top: 0;
}
.Suppliers__name {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  margin-left: 1rem;
}
.Suppliers__name span::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 100%;
  background-color: #05428A;
  width: 2px;
  rotate: 45deg;
  background-color: black;
  width: 1px;
  top: 0;
  margin-left: 10px;
}
@media screen and (max-width: 640px) {
  .Suppliers {
    padding-top: 5rem;
  }
  .Suppliers .Product__name {
    height: 23px;
    width: 150px;
  }
  .Suppliers__name {
    text-align: left;
    margin-left: 10px;
    position: relative;
    width: 100%;
    /* 2行になる長さのものだけ擬似要素の位置を変更 */
  }
  .Suppliers__name::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #05428A;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
  }
  .Suppliers__name.long::before {
    top: 25%;
  }
  .Suppliers .awasher__list {
    /* 最後のリストがはみ出る場合に中央寄せにならないようにwidthを変更 */
  }
  .Suppliers .awasher__list li {
    width: 46%;
  }
  .Suppliers .awasher__list li.last {
    width: 100%;
  }
}

.Company {
  margin-top: 4.5rem;
  text-align: center;
  /* フッター前余白 */
  padding-bottom: 8rem;
}
.Company__info {
  display: flex;
  text-align: left;
  padding: 2rem 0;
  position: relative;
}
.Company__info::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #E4E4E3;
  top: 0;
}
.Company__info:nth-of-type(5)::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #E4E4E3;
  top: 0;
  top: 100%;
}
.Company__info dt {
  width: 35%;
  margin-left: 4rem;
}
.Company__logo {
  margin-top: 3.5rem;
  width: 30%;
}
@media screen and (max-width: 640px) {
  .Company__info {
    flex-direction: column;
  }
  .Company__info dt {
    margin-left: unset;
    margin-bottom: 5px;
  }
  .Company__logo {
    width: 50%;
    margin-top: 2rem;
  }
}

.caseShop {
  margin-top: 3rem;
}
.caseShop.news-action {
  margin-bottom: 5rem;
}
.caseShop .caseShop__body {
  flex-direction: column;
}
.caseShop .caseShop__body .caseShop-block {
  padding: 3rem 2rem;
  border-top: 1px solid #cdcdcd;
  gap: 5rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .caseShop .caseShop__body .caseShop-block.news-action {
    gap: 1rem;
    flex-direction: column;
    padding: 2rem 0;
  }
}
@media screen and (max-width: 640px) {
  .caseShop .caseShop__body .caseShop-block {
    gap: 1rem;
    flex-direction: column;
    padding: 2rem 0;
  }
}
.caseShop .caseShop__body .caseShop-block:last-of-type {
  border-bottom: 1px solid #cdcdcd;
}
.caseShop .caseShop__body .caseShop-block::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 20px;
  aspect-ratio: 1/1;
  background-image: url("../img/service-arrow.svg");
  background-size: cover;
  background-position: center;
}
.caseShop .caseShop__body .caseWrap {
  gap: 3rem;
}
@media screen and (max-width: 640px) {
  .caseShop .caseShop__body .caseWrap {
    flex-direction: column-reverse;
    gap: 0.5rem;
  }
}
.caseShop .caseShop__body .caseDate {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  .caseShop .caseShop__body .caseDate {
    justify-content: left;
  }
}
.caseShop .caseShop__body .caseCategory {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.7px;
  font-size: 0.875rem;
  color: #fff;
  border-radius: 30px;
  padding: 3px 0px;
  text-align: center;
  width: 123px;
}
.caseShop .caseShop__body .caseCategory.news-action {
  color: black;
}
.caseShop .caseShop__body .caseCategory.ozonaizer {
  background-color: #429355;
}
.caseShop .caseShop__body .caseCategory.awasher {
  background-color: #05428A;
}
.caseShop .caseShop__body .caseCategory.gomiser {
  background-color: #343231;
}
.caseShop .caseShop__body .caseCategory.bcgray {
  background-color: #EFF2F4;
}
.caseShop .caseShop__body .caseName {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
}
@media screen and (max-width: 1000px) {
  .caseShop .caseShop__body .caseName.news-action {
    justify-content: left;
  }
}
@media screen and (max-width: 640px) {
  .caseShop .caseShop__body .caseName.news-action {
    padding-right: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .caseShop .caseShop__body .caseName {
    justify-content: left;
  }
}

.caseFlow {
  margin-top: 4rem;
}
.caseFlow .caseFlow__body {
  justify-content: space-between;
  gap: 2rem 0;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .caseFlow .caseFlow__body {
    justify-content: space-evenly;
  }
}
.caseFlow .caseFlow-block {
  gap: 1rem;
  width: 278px;
  flex-direction: column;
  border-top: 8px solid #05428A;
  background-color: #EFF2F4;
  padding-bottom: 2rem;
  position: relative;
}
.caseFlow .caseFlow-block:nth-of-type(n)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3rem;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1/1;
  background-image: url(../img/flow-arrow.png);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1000px) {
  .caseFlow .caseFlow-block:nth-of-type(n)::after {
    right: -4rem;
  }
}
.caseFlow .caseFlow-block.action {
  padding-bottom: 1rem;
}
.caseFlow .caseFlow-block .caseFlow-step {
  background-color: #fff;
  color: #05428A;
  font-size: 2rem;
  padding: 0.2rem 4rem;
  font-weight: bold;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
  margin-top: 2rem;
}
.caseFlow .caseFlow-block .caseFlow-img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}
.caseFlow .caseFlow-block .caseFlow-img.action {
  width: 60px;
  height: 80px;
}
.caseFlow .caseFlow-block .caseFlow-img.action2 {
  width: 100px;
  height: 120px;
}
.caseFlow .caseFlow-block .caseFlow-img .action3 {
  transform: translateY(20px);
}
.caseFlow .caseFlow-block .caseFlow-txt {
  text-align: center;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #05428A;
  flex: 1;
  padding: 0 3rem;
  letter-spacing: 1.8px;
}
.caseFlow .caseFlow-block .caseFlow-txt.action {
  padding: 0 2rem;
  transform: translateY(1rem);
}
@media screen and (max-width: 640px) {
  .caseFlow .caseFlow-block .caseFlow-txt.action {
    transform: translate(0);
  }
}
.caseFlow .caseFlow-block .caseFlow-txt.left {
  text-align: left;
}
.caseFlow .caseFlow-block .caseFlow-subtxt {
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 2rem;
}
.caseFlow .caseFlow-block .caseFlow-subtxt.center {
  text-align: center;
}

.caseContact {
  margin-top: 12rem;
  position: relative;
  background-image: url("../img/product-bg.png");
  background-size: cover;
  background-position: center;
  aspect-ratio: 4.63/1;
}
.caseContact .caseContactImg {
  width: 780px;
  position: absolute;
  top: -27px;
  left: 0;
}
@media screen and (max-width: 1000px) {
  .caseContact .caseContactImg {
    width: 640px;
  }
}
@media screen and (max-width: 640px) {
  .caseContact .caseContactImg {
    width: 320px;
    top: -10px;
  }
}
@media screen and (max-width: 1000px) {
  .caseContact {
    padding-bottom: 3rem;
  }
}

.casecontact {
  padding-top: 10rem;
  justify-content: space-between;
}
.casecontact .caseContactTxt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.15rem;
  line-height: 1.5rem;
}
.casecontact .caseContactBtn.Btn2 {
  margin-top: 0;
  padding: 1rem 5rem;
}
@media screen and (max-width: 1000px) {
  .casecontact .caseContactBtn.Btn2 {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .casecontact .caseContactBtn {
    font-size: 1.2rem;
  }
}

.caseLink {
  display: inline-block;
}
.caseLink a {
  color: #136CC4 !important;
}

.caseExam {
  background-color: #EFF2F4;
  padding: 6rem 0 2rem;
}
@media screen and (max-width: 1000px) {
  .caseExam {
    padding-top: 4rem;
  }
}

.caseExamTtl__body {
  background-color: #fff;
  padding: 1rem 2rem 2rem;
}
.caseExamTtl__body .caseExamTtl-items {
  justify-content: space-between;
  width: 100%;
  flex-direction: column;
  gap: 0.5rem;
}
.caseExamTtl__body .caseExamTtl-items .caseExam-tax {
  gap: 10px;
}
@media screen and (max-width: 640px) {
  .caseExamTtl__body .caseExamTtl-items .caseExam-tax {
    flex-direction: column;
    gap: 5px;
  }
}
.caseExamTtl__body .caseExamTtl-items .caseExam-category {
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.7px;
  text-align: center;
  width: 140px;
}
@media screen and (max-width: 1000px) {
  .caseExamTtl__body .caseExamTtl-items .caseExam-category {
    width: 110px;
  }
}
.caseExamTtl__body .caseExamTtl-items .caseExam-category.bcGray {
  background-color: #EFF2F4;
  color: inherit;
}
.caseExamTtl__body .caseExamTtl-items .caseExam-category.ozonaizer {
  background-color: #429355;
}
.caseExamTtl__body .caseExamTtl-items .caseExam-category.awasher {
  background-color: #05428A;
}
.caseExamTtl__body .caseExamTtl-items .caseExam-category.gomiser {
  background-color: #343231;
}
.caseExamTtl__body .caseExamTtl-items .caseExam-info {
  gap: 1rem;
}
.caseExamTtl__body .caseExamTtl-ttl {
  font-size: 1.75rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 2.8px;
  padding-top: 1rem;
}
@media screen and (max-width: 640px) {
  .caseExamTtl__body .caseExamTtl-ttl {
    font-size: 1.2rem;
  }
}

.caseExam__body {
  flex-direction: column;
  gap: 6rem;
  padding-top: 6rem;
}
.caseExam__body h2 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1.2px;
  display: block;
}
@media screen and (max-width: 640px) {
  .caseExam__body h2 {
    font-size: 1.4rem;
  }
}
.caseExam__body p {
  letter-spacing: 0.8px;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 1.5rem;
}
.caseExam__body .wp-block-columns {
  margin-bottom: 6rem;
}

.supportBlock {
  padding-top: 6rem;
}
.supportBlock .supportSubttl {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
}
.supportBlock .supportBlock-txt {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  line-height: 2rem;
  width: 60%;
}
@media screen and (max-width: 640px) {
  .supportBlock .supportBlock-txt {
    width: 100%;
  }
}
.supportBlock .supportBlock-txt.action {
  padding-top: 2rem;
}
.supportBlock .supportBlock-subttl {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  font-size: 1.125rem;
  font-weight: bold;
  padding-top: 2rem;
}
.supportBlock .supportBlock-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.supportBlock .supportBlock-item {
  position: relative;
  padding-left: 1rem;
  font-weight: 600;
  letter-spacing: 0.8px;
}
.supportBlock .supportBlock-item.blueBall {
  position: relative;
}
.supportBlock .supportBlock-item.blueBall::before {
  content: "●";
  color: #05428A;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.3rem;
}
.supportBlock .supportBlock-link {
  overflow-wrap: break-word;
}
.supportBlock .supportBlock-link a {
  color: #136CC4 !important;
  text-decoration: underline !important;
}

.supportExam__body {
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .supportExam__body {
    flex-direction: column;
    gap: 2rem 0;
  }
}
.supportExam__body .supportExam-block {
  width: 48%;
  background-color: #EFF2F4;
  border-radius: 10px;
  padding: 2rem 0;
}
@media screen and (max-width: 640px) {
  .supportExam__body .supportExam-block {
    width: 100%;
  }
}
.supportExam__body .supportExam-ttl {
  font-size: 1.5rem;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  border-radius: 20px;
  padding: 0.2rem 0rem;
  width: 80%;
  font-weight: bold;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 1000px) {
  .supportExam__body .supportExam-ttl {
    font-size: 1.2rem;
  }
}
.supportExam__body .supportExam-ttl.bcBlack {
  background-color: #343231;
}
.supportExam__body .supportExam-ttl.bcGreen {
  background-color: #429355;
}
.supportExam__body .supportExam-img {
  width: 40%;
  margin: 0 auto;
  padding: 1rem 0;
  position: relative;
}
.supportExam__body .supportExam-img::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  aspect-ratio: 1/1;
  background-image: url("../img/gomiserR.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1000px) {
  .supportExam__body .supportExam-img::after {
    width: 70px;
    bottom: 0;
    right: -20px;
  }
}
.supportExam__body .supportExam-img.action::after {
  display: none;
}
.supportExam__body .supportExam-img .supportExam-triangle-img {
  width: 50%;
  margin: 0 auto;
}
.supportExam__body .supportExam-img .supportExam-triangle-imgs {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.supportExam__body .supportExam-img .supportExam-triangle-imgs .supportExam-triangle-img.action {
  width: 45%;
}
.supportExam__body .supportExam-content {
  flex-direction: column;
  padding: 0 2rem;
}
.supportExam__body .supportExam-content .supportExam-wrap {
  padding: 1rem 0;
}
.supportExam__body .supportExam-content .supportExam-wrap:first-of-type {
  border-bottom: 2px solid #fff;
}
.supportExam__body .supportExam-detail {
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.supportExam__body .supportExam-detail .supportExam-name {
  flex-direction: column;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1.4px;
  color: #fff;
  background-color: #05428A;
  min-height: 30px;
  border-radius: 25px;
  min-width: 100px;
  padding: 5px 10px;
}
@media screen and (max-width: 1000px) {
  .supportExam__body .supportExam-detail .supportExam-name {
    height: 20px;
  }
}
.supportExam__body .supportExam-detail .supportExam-name .small {
  font-size: 0.7rem;
}
.supportExam__body .supportExam-detail .supportExam-price {
  font-size: 1.125rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1.8px;
  color: #05428A;
  transform: translateY(-3px);
}
@media screen and (max-width: 1000px) {
  .supportExam__body .supportExam-detail .supportExam-price {
    transform: translateY(-7px);
  }
}
.supportExam__body .supportExam-detail .supportExam-price .supportBig {
  font-size: 1.5rem;
}
.supportExam__body .supportExam-txt {
  text-align: center;
}
.supportExam__body .supportExam-txt .supportExam-txt-big {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #05428A;
  letter-spacing: 2.4px;
  background: linear-gradient(transparent 80%, #ff6 10%);
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .supportExam__body .supportExam-txt .supportExam-txt-big {
    font-size: 1.2rem;
  }
}
.supportExam__body .supportExam-txt .supportExam-txt-big span {
  font-size: 2.635rem;
}
@media screen and (max-width: 1000px) {
  .supportExam__body .supportExam-txt .supportExam-txt-big span {
    font-size: 2rem;
  }
}
.supportExam__body .supportExam-txt .supportExam-kome {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
}

.supportExam-blockKome {
  width: 60%;
  border: 1px solid #05428A;
  padding: 1rem 6rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  margin: 2rem auto 6rem;
  line-height: 2rem;
}
.supportExam-blockKome.action {
  width: 70%;
  padding: 1rem 3rem;
  margin-top: 4rem;
}
@media screen and (max-width: 640px) {
  .supportExam-blockKome.action {
    width: 100%;
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 1000px) {
  .supportExam-blockKome {
    width: 80%;
  }
}
@media screen and (max-width: 640px) {
  .supportExam-blockKome {
    width: 100%;
    padding: 1rem 2rem;
  }
}

.supportBanner-ttl {
  color: #05428A;
  font-size: 1.5rem;
  letter-spacing: 2.4px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  z-index: 15;
}
@media screen and (max-width: 640px) {
  .supportBanner-ttl {
    font-size: 1.2rem;
    text-align: center;
  }
}

.product-detail {
  width: 70%;
}
@media screen and (max-width: 640px) {
  .product-detail {
    width: 50%;
  }
  .product-detail.support {
    width: 100%;
  }
}

.supportBanner-wrap {
  width: 640px;
  margin: 1rem auto 0;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .supportBanner-wrap {
    margin-top: 0;
    gap: 0.5rem;
    width: 420px;
  }
}
@media screen and (max-width: 640px) {
  .supportBanner-wrap {
    flex-direction: column;
    gap: 0.5rem;
    width: 240px;
  }
}
.supportBanner-wrap .productDetail-txt.support {
  margin: 0 auto;
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .supportBanner-wrap .productDetail-txt.support {
    width: 200px;
  }
}
.supportBanner-wrap .productDetail-txt.support .productDetailTxt {
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .supportBanner-wrap .productDetailImg.support {
    width: 20px !important;
  }
}

.supportBannerImg {
  width: 30%;
  height: 287px;
  position: relative;
  z-index: 15;
  border-radius: 50%;
  border: 5px solid #fff;
}
@media screen and (max-width: 1000px) {
  .supportBannerImg {
    height: 191px;
  }
}
@media screen and (max-width: 640px) {
  .supportBannerImg {
    height: 98px;
  }
}
.supportBannerImg img {
  vertical-align: bottom;
}

.contactTtl__body {
  margin: 4rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #cdcdcd;
}
@media screen and (max-width: 640px) {
  .contactTtl__body.privacy {
    margin: 2rem 0;
  }
}
.contactTtl__body.lease-action {
  border: none;
}
.contactTtl__body .contactSubttl {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  line-height: 1.8rem;
  padding-bottom: 1rem;
}
.contactTtl__body .contactSubttl.lease-action {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .contactTtl__body .contactSubttl.lease-action {
    text-align: left;
  }
}

.contactForm {
  max-width: 680px;
  margin: 0 auto;
}
.contactForm .form-options {
  flex-direction: column;
  gap: 2rem 0;
}
.contactForm .label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contactForm .label .must {
  color: #fff;
  padding: 5px 10px;
  background-color: #05428A;
  margin-right: 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
}
.contactForm .label input {
  height: 40px;
  border: 1px solid #05428A;
}
.contactForm .label textarea {
  height: 173px;
  border: 1px solid #05428A;
}
.contactForm .contactForm-txt {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  margin: 2rem 0 0rem;
}
@media screen and (max-width: 640px) {
  .contactForm .contactForm-txt {
    text-align: left;
  }
}
.contactForm .contactBtn-action {
  background-color: #05428A;
  display: inline-block;
  border-radius: 30px;
  padding: 1rem 5rem;
  margin-top: 2rem;
  position: relative;
}
.contactForm .contactBtn-action::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 20px;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  background-image: url("../img/btn2.png");
  background-size: cover;
  background-position: center;
}
.contactForm .contactBtn-action input {
  color: #fff;
  background-color: #05428A;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .contactForm {
    max-width: 640px;
  }
}
@media screen and (max-width: 640px) {
  .contactForm {
    max-width: 320px;
  }
}

.contactDetail {
  width: 500px;
  margin: 4rem auto;
}
@media screen and (max-width: 640px) {
  .contactDetail {
    width: 320px;
  }
}
.contactDetail .contactDetail-img {
  width: 70%;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 640px) {
  .contactDetail .contactDetail-img {
    width: 100%;
  }
}
.contactDetail .contactDetail-txt {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
}

.contactBanner {
  background-color: #EFF2F4;
  justify-content: space-evenly;
  padding: 2rem 0;
  margin-top: 6rem;
}
@media screen and (max-width: 1000px) {
  .contactBanner {
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .contactBanner {
    max-width: none;
  }
}
.contactBanner .contactBanner-logo {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .contactBanner .contactBanner-logo {
    width: 100%;
    padding: 1rem 0;
    max-width: 520px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .contactBanner .contactBanner-logo {
    max-width: 320px;
  }
}
.contactBanner .contactBanner-content {
  width: 45%;
  flex-direction: column;
  gap: 0.3rem;
}
@media screen and (max-width: 1000px) {
  .contactBanner .contactBanner-content {
    width: 100%;
    padding: 1rem 0;
    margin: 0 auto;
    max-width: 400px;
  }
}
@media screen and (max-width: 640px) {
  .contactBanner .contactBanner-content {
    max-width: 320px;
  }
}
.contactBanner .contactBanner-content .contactBanner-btn {
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 40px;
  border: 2px solid #05428A;
  color: #05428A;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  padding: 0.6rem 0;
}
@media screen and (max-width: 640px) {
  .contactBanner .contactBanner-content .contactBanner-btn {
    font-size: 0.9rem;
  }
}
.contactBanner .contactBanner-content .contactBanner-btn .small {
  font-size: 0.8rem;
}
.contactBanner .contactBanner-content .contactBanner-number {
  font-size: 2.5rem;
  color: #05428A;
  letter-spacing: 4px;
  text-align: center;
  border-bottom: 1px solid #707070;
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .contactBanner .contactBanner-content .contactBanner-number {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.contactBanner .contactBanner-content .contactBanner-number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1/1;
  background-image: url("../img/phone.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 640px) {
  .contactBanner .contactBanner-content .contactBanner-number::before {
    width: 25px;
    left: 0.5rem;
  }
}
.contactBanner .contactBanner-content .contactBanner-number::after {
  content: "(代表）";
  position: absolute;
  bottom: 0;
  transform: translateY(-5px);
  letter-spacing: 0.8px;
  font-size: 1rem;
  color: black;
  font-weight: lighter;
}
@media screen and (max-width: 640px) {
  .contactBanner .contactBanner-content .contactBanner-number::after {
    font-size: 0.8rem;
  }
}

.merits {
  margin-top: 3rem;
}

.effectSlide {
  height: 320px;
  width: 960px;
  position: relative;
  margin-top: 3rem;
  margin: 3rem auto 0;
}
.effectSlide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #EFF2F4;
  z-index: -1;
}
.effectSlide .effectTtl {
  gap: 2rem;
  justify-content: center;
  padding: 1rem 0;
}
.effectSlide .effectTtl .number {
  width: 85px;
  transform: translateY(4px);
}
.effectSlide .effectTtl .effectTtl-txt {
  font-size: 2rem;
  color: #05428A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.effectSlide .effectTtl .effectTtl-txt .underline {
  background: linear-gradient(transparent 80%, #ff6 10%);
  font-size: 2rem;
}
@media screen and (max-width: 1000px) {
  .effectSlide .effectTtl .effectTtl-txt .underline.flexCenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.effectSlide .effectTtl .effectTtl-txt .underline.big3 {
  font-size: 3rem;
  display: inline-block;
}
.effectSlide .effectTtl .effectTtl-txt .genba {
  font-size: 2rem;
  transform: translateY(6px);
}
@media screen and (max-width: 1000px) {
  .effectSlide .effectTtl .effectTtl-txt .genba {
    font-size: 1.2rem;
  }
}
.effectSlide .effectTtl .effectTtl-txt.action {
  background: linear-gradient(transparent 80%, #ff6 10%);
  transform: translateY(-6px);
}
.effectSlide .effectTtl .effectTtl-txt.action .underline {
  background: none;
}
.effectSlide .effectTtl .effectTtl-txt.action .underline.action {
  background: linear-gradient(transparent 80%, #ff6 10%);
}
.effectSlide .effectTtl .effectTtl-txt.action .transY {
  transform: translate(0);
}
.effectSlide .effectSubttl {
  background-color: #fff;
  gap: 2rem;
  justify-content: center;
  padding: 0.5rem 0;
  width: 70%;
  margin: 0 auto;
  border-radius: 30px;
}
.effectSlide .effectSubttl.action {
  width: 32%;
}
.effectSlide .effectSubttl p {
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  display: inline-block;
  font-weight: bold;
}
.effectSlide .effectSubttl p .bigger {
  font-size: 1.5rem;
  font-family: "Arial", sans-serif;
  padding: 0 3px;
}
.effectSlide .effectSubttl p .lighter {
  font-weight: lighter;
  color: #707070;
  font-size: 0.875rem;
}
.effectSlide .effectSubttl-sub {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 3px;
}
.effectSlide .effectContent {
  width: 90%;
  margin: 0 auto;
}
.effectSlide .effectContent.action {
  padding-bottom: 2.5rem;
}
.effectSlide .effectContent .effectImg {
  width: 200px;
  height: 120px;
  overflow: hidden;
  margin: 3rem;
}
.effectSlide .effectContent .effectImg.action1 {
  margin: 2rem 3rem 0;
}
.effectSlide .effectContent .effectImg.action2 {
  margin: 1rem 3rem;
  height: auto;
}
.effectSlide .effectContent .effectImg.action3 {
  width: 240px;
  margin: 1rem 2rem;
}
.effectSlide .effectContent .effectImg img.scale {
  scale: 0.7;
  transform: translateY(-36px);
}
@media screen and (max-width: 1000px) {
  .effectSlide .effectContent .effectImg img.scale {
    scale: 1;
  }
}
.effectSlide .effectContent .effectDetail.action {
  padding-top: 3rem;
}
.effectSlide .effectContent .effectDetail .effectBigTxt {
  font-size: 1.5rem;
  color: #05428A;
  font-family: "Noto Sans JP", sans-serif;
  background: linear-gradient(transparent 80%, #ff6 10%);
  display: inline-block;
  padding: 1rem 0 0;
  margin-bottom: 1rem;
  font-weight: 700;
}
.effectSlide .effectContent .effectDetail .effectBigTxt.action {
  padding-top: 0;
}
.effectSlide .effectContent .effectDetail .effectBigTxt .bigger {
  font-size: 2.375rem;
  font-family: "Arial", sans-serif;
  padding: 0 3px;
}
.effectSlide .effectContent .effectDetail .bigNumber {
  font-size: 2.375rem;
  font-family: "Arial", sans-serif;
  padding: 0 3px;
}
.effectSlide .effectContent .effectDetail .effectTxt {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5rem;
  letter-spacing: 0.2rem;
  padding-left: 1rem;
  border-left: 4px solid #05428A;
}
.effectSlide .effectContent .effectDetail .effectTxt.action {
  margin-top: 2rem;
}
.effectSlide .effectContent .effectDetail .centerSP {
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .effectSlide .effectContent .effectDetail .centerSP {
    text-align: center;
  }
}
@media screen and (max-width: 1000px) {
  .effectSlide {
    width: 320px;
    height: auto;
    position: relative;
    margin-top: 3rem;
    margin: 3rem auto 0;
  }
  .effectSlide::after {
    transform: skewX(0deg);
  }
  .effectSlide .effectTtl {
    gap: 0.2rem;
    flex-direction: column;
    padding: 1rem 0 0rem;
  }
  .effectSlide .effectTtl.actiontop {
    gap: 1rem;
  }
  .effectSlide .effectTtl .number {
    width: 68px;
    margin: 0 auto;
  }
  .effectSlide .effectTtl .effectTtl-txt {
    font-size: 1.6rem;
    color: #05428A;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
  }
  .effectSlide .effectTtl .effectTtl-txt.action2 {
    height: 50px;
  }
  .effectSlide .effectTtl .effectTtl-txt .underline {
    background: linear-gradient(transparent 80%, #ff6 10%);
    font-size: 1.5rem;
  }
  .effectSlide .effectTtl .effectTtl-txt .underline.action {
    font-size: 1.2rem;
  }
  .effectSlide .effectTtl .effectTtl-txt .underline.big3 {
    background: linear-gradient(transparent 80%, #ff6 10%);
  }
  .effectSlide .effectTtl .effectTtl-txt.trans {
    transform: translateY(20px);
  }
  .effectSlide .effectTtl .effectTtl-txt.action {
    font-size: 1.6rem;
    background: none;
  }
  .effectSlide .effectSubttl {
    gap: 0.5rem;
    width: 85%;
  }
  .effectSlide .effectSubttl.action {
    width: 80%;
  }
  .effectSlide .effectSubttl p {
    font-size: 0.8rem;
    text-align: center;
    display: inline-block;
  }
  .effectSlide .effectSubttl p .bigger {
    font-size: 1.5rem;
    font-family: "Arial", sans-serif;
    padding: 0 3px;
  }
  .effectSlide .effectSubttl p .ligher {
    font-weight: lighter;
    color: #707070;
    font-size: 1rem;
  }
  .effectSlide .effectContent {
    flex-direction: column;
  }
  .effectSlide .effectContent .effectImg {
    width: 128px;
    height: auto;
    margin: 1rem auto 0rem;
  }
  .effectSlide .effectContent .effectImg.action1 {
    margin: 2rem auto 1rem;
  }
  .effectSlide .effectContent .effectImg.action2 {
    margin: 2rem auto 1rem;
  }
  .effectSlide .effectContent .effectImg.action3 {
    margin: 2rem auto 1rem;
    width: 160px;
  }
  .effectSlide .effectContent .effectImg img.scale.transY-SP {
    transform: translateY(0);
  }
  .effectSlide .effectContent .effectDetail.action {
    padding-top: 1rem;
  }
  .effectSlide .effectContent .effectDetail .flex.action {
    flex-direction: column;
  }
  .effectSlide .effectContent .effectDetail .effectBigTxt {
    font-size: 1rem;
    padding: 1rem 0 0;
    margin-bottom: 1rem;
  }
  .effectSlide .effectContent .effectDetail .effectBigTxt .bigger {
    font-size: 2.375rem;
    padding: 0 3px;
  }
  .effectSlide .effectContent .effectDetail .bigNumber {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
  .effectSlide .effectContent .effectDetail .effectTxt {
    line-height: 1.5rem;
    letter-spacing: 0.2rem;
    padding: 1rem 0 2rem;
    border-left: 0px solid #05428A;
  }
  .effectSlide .effectContent .effectDetail .effectTxt.action {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 640px) {
  .effectSlide {
    height: auto;
  }
  .effectSlide .effectTtl .effectTtl-txt {
    font-size: 2rem;
  }
}
@media screen and (max-width: 640px) and (max-width: 640px) {
  .effectSlide .effectTtl .effectTtl-txt {
    font-size: 19.6px;
  }
}
@media screen and (max-width: 640px) {
  .effectSlide .effectTtl .effectTtl-txt.action {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 640px) {
  .effectSlide .effectSubttl p {
    font-size: 0.8rem;
  }
}

.leaseExam {
  padding-top: 3rem;
}

.leaseExam__body {
  justify-content: space-between;
  margin-top: 4rem;
}
.leaseExam__body.rental-action {
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .leaseExam__body {
    flex-direction: column;
    gap: 4rem 0;
  }
}
.leaseExam__body .leaseExam-wrap {
  width: 48%;
  background-color: #EFF2F4;
  border-radius: 30px;
  padding: 1rem;
  flex-direction: column;
}
.leaseExam__body .leaseExam-wrap .leaseExam-name {
  font-size: 1.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: 2.8px;
  color: #fff;
  padding: 0.2rem 3rem;
  border-radius: 50px;
  margin: 0 auto;
  transform: translateY(-40px);
}
.leaseExam__body .leaseExam-wrap .leaseExam-name.bcGreen {
  background-color: #429355;
}
.leaseExam__body .leaseExam-wrap .leaseExam-name.bcBlack {
  background-color: #343231;
}
.leaseExam__body .leaseExam-wrap .leaseExam-name.bcBlue {
  background-color: #05428A;
}
@media screen and (max-width: 1000px) {
  .leaseExam__body .leaseExam-wrap .leaseExam-name {
    transform: translateY(-34px);
  }
}
.leaseExam__body .leaseExam-wrap .leaseExam-img {
  width: 50%;
  margin: 0 auto;
  position: relative;
}
.leaseExam__body .leaseExam-wrap .leaseExam-img::after {
  background-image: url("../img/ozonaizerR.png");
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 100px;
  aspect-ratio: 1/1;
  z-index: 99;
}
@media screen and (max-width: 1000px) {
  .leaseExam__body .leaseExam-wrap .leaseExam-img::after {
    width: 80px;
    bottom: -10px;
    right: -20px;
  }
}
@media screen and (max-width: 640px) {
  .leaseExam__body .leaseExam-wrap .leaseExam-img::after {
    width: 70px;
    bottom: -10px;
    right: -10px;
  }
}
.leaseExam__body .leaseExam-wrap .leaseExam-img.gomiser::after {
  background-image: url("../img/gomiserR.png");
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 100px;
  aspect-ratio: 1/1;
  z-index: 99;
}
@media screen and (max-width: 1000px) {
  .leaseExam__body .leaseExam-wrap .leaseExam-img.gomiser::after {
    width: 80px;
    bottom: -10px;
    right: -20px;
  }
}
@media screen and (max-width: 640px) {
  .leaseExam__body .leaseExam-wrap .leaseExam-img.gomiser::after {
    width: 70px;
    bottom: -10px;
    right: -10px;
  }
}
.leaseExam__body .leaseExam-wrap .leaseExam-img.awasher::after {
  background-image: url("../img/awasherR.png");
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 100px;
  aspect-ratio: 1/1;
  z-index: 99;
}
@media screen and (max-width: 1000px) {
  .leaseExam__body .leaseExam-wrap .leaseExam-img.awasher::after {
    width: 80px;
    bottom: -10px;
    right: -20px;
  }
}
@media screen and (max-width: 640px) {
  .leaseExam__body .leaseExam-wrap .leaseExam-img.awasher::after {
    width: 70px;
    bottom: -10px;
    right: -10px;
  }
}
.leaseExam__body .leaseExam-wrap .leaseExam-txt {
  gap: 0rem;
  flex-direction: column;
  margin: 2rem auto 0;
}
@media screen and (max-width: 1000px) {
  .leaseExam__body .leaseExam-wrap .leaseExam-txt {
    margin-top: 0;
  }
}
.leaseExam__body .leaseExam-wrap .leaseExam-block {
  justify-content: space-evenly;
  gap: 1rem;
  padding: 0rem 0 1rem;
}
.leaseExam__body .leaseExam-wrap .leaseExam-block:not(:last-of-type) {
  border-bottom: 2px solid #fff;
}
.leaseExam__body .leaseExam-wrap .leaseExam-block .leaseExam-span {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  border-radius: 20px;
  padding: 3px 2rem;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(22px);
}
.leaseExam__body .leaseExam-wrap .leaseExam-block .leaseExam-span.span7 {
  color: #fff;
  background-color: #05428A;
}
.leaseExam__body .leaseExam-wrap .leaseExam-block .leaseExam-span.span5 {
  color: #05428A;
  background-color: #fff;
}
.leaseExam__body .leaseExam-wrap .leaseExam-block .leaseExam-price {
  font-size: 1.125rem;
  color: #05428A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.leaseExam__body .leaseExam-wrap .leaseExam-block .leaseExam-price .action {
  font-size: 2.375rem;
  padding: 0 2px;
}
.leaseExam__body .leaseExam-wrap .leaseExam-block .leaseExam-price-kome {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  transform: translateY(-10px);
  font-weight: lighter;
}
@media screen and (max-width: 1000px) {
  .leaseExam__body .leaseExam-wrap .leaseExam-block {
    flex-direction: column;
    gap: 1.2rem;
  }
  .leaseExam__body .leaseExam-wrap .leaseExam-block .leaseExam-span {
    width: 100px;
  }
}
@media screen and (max-width: 640px) {
  .leaseExam__body .leaseExam-wrap {
    width: 100%;
  }
}

.leaseExam-kome {
  padding: 1rem 4rem;
  border: 1px solid #05428A;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  display: inline-block;
  margin: 3rem 0 6rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .leaseExam-kome {
    padding: 1rem 2rem;
  }
}

.leaseContact {
  padding: 3rem 0;
  background-color: #EFF2F4;
}
.leaseContact .leaseContact-imgs {
  justify-content: space-between;
  width: 320px;
  margin: 0 auto;
  padding: 2rem 0 0;
}
.leaseContact .leaseContact-imgs .leaseContact-img {
  width: 65px;
}
@media screen and (max-width: 640px) {
  .leaseContact {
    padding: 3rem 2rem;
  }
}

.leaseAnother {
  margin-top: 6rem;
}

.leaseAnother__body {
  margin-top: 3rem;
  margin-bottom: 5rem;
  gap: 1rem;
}
.leaseAnother__body .service-block {
  width: 32%;
  background-color: #EFF2F4;
  border-top: 8px solid #05428A;
}
@media screen and (max-width: 640px) {
  .leaseAnother__body .service-block {
    width: 48%;
  }
}
.leaseAnother__body .service-block .serviceImg {
  padding-top: 1rem;
  width: 200px;
  height: 180px;
  margin: 0 auto;
}
.leaseAnother__body .service-block .serviceImg.lise img {
  scale: 1.3;
  transform: translateY(20px);
}
@media screen and (max-width: 1000px) {
  .leaseAnother__body .service-block .serviceImg {
    width: 150px;
    height: 120px;
  }
}
@media screen and (max-width: 640px) {
  .leaseAnother__body .service-block .serviceImg {
    width: 120px;
    height: 120px;
  }
  .leaseAnother__body .service-block .serviceImg img.action {
    transform: translateY(20px);
  }
}
.leaseAnother__body .service-block .serviceTxt {
  font-size: 1.125rem;
  color: #05428A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 640px) {
  .leaseAnother__body .service-block .serviceTxt {
    font-size: 14px;
  }
}
.leaseAnother__body .service-block .serviceTxt::after {
  content: "";
  position: absolute;
  top: 56%;
  right: -1.4rem;
  width: 15px;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/service-arrow.svg");
  background-size: cover;
  background-position: center;
}
.leaseAnother__body .service-block .serviceContent {
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 640px) {
  .leaseAnother__body .service-block .serviceContent {
    padding: 0.5rem 0.5rem;
  }
}
.leaseAnother__body .service-block .serviceContent .serviceBig {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .leaseAnother__body .service-block .serviceContent .serviceBig {
    font-size: 10px;
  }
}
.leaseAnother__body .service-block .serviceContent .serviceBig .numberBig {
  font-size: 1.2rem;
}
@media screen and (max-width: 1000px) {
  .leaseAnother__body .service-block .serviceContent .serviceBig .numberBig {
    font-size: 11.5px;
  }
}
@media screen and (max-width: 1000px) {
  .leaseAnother__body .service-block .serviceContent {
    font-size: 12px;
  }
  .leaseAnother__body .service-block .serviceContent .serviceBig {
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  .leaseAnother__body .service-block .serviceContent {
    font-size: 10px;
  }
  .leaseAnother__body .service-block .serviceContent .serviceBig {
    font-size: 10px;
  }
}
.leaseAnother__body .service-block .serviceExample {
  background-color: #fff;
  margin: 1rem 1rem;
}
@media screen and (max-width: 640px) {
  .leaseAnother__body .service-block .serviceExample {
    margin: 0.5rem;
  }
}
.leaseAnother__body .service-block .serviceExample .serviceExample-ttl {
  color: #05428A;
  font-size: 1.125rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 0.5rem;
}
@media screen and (max-width: 1000px) {
  .leaseAnother__body .service-block .serviceExample .serviceExample-ttl {
    font-size: 12px;
  }
}
@media screen and (max-width: 640px) {
  .leaseAnother__body .service-block .serviceExample .serviceExample-ttl {
    font-size: 10px;
    padding-top: 0.2rem;
  }
}
.leaseAnother__body .service-block .serviceExample .serviceExample-txt {
  font-size: 1.125rem;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  padding: 6px 1rem 1rem;
}
@media screen and (max-width: 1000px) {
  .leaseAnother__body .service-block .serviceExample .serviceExample-txt {
    font-size: 12px;
    padding: 0 0 0.4rem;
  }
}
@media screen and (max-width: 640px) {
  .leaseAnother__body .service-block .serviceExample .serviceExample-txt {
    font-size: 10px;
    padding: 0px 0rem 0.4rem;
  }
}
@media screen and (max-width: 640px) {
  .leaseAnother__body .service-block {
    width: 48%;
  }
}
@media screen and (max-width: 640px) {
  .leaseAnother__body {
    justify-content: space-between;
    gap: 0;
  }
}

.productTtl {
  overflow: hidden;
  background-color: #EFF2F4;
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .productTtl {
    padding: 2rem 0;
  }
}
.productTtl::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("../img/haikei3.svg");
  background-size: cover;
  background-position: center;
  z-index: 3;
}
@media screen and (max-width: 1000px) {
  .productTtl::after {
    width: 60%;
  }
}
@media screen and (max-width: 640px) {
  .productTtl::after {
    right: -20%;
    width: 80%;
  }
}
.productTtl .product-upper .product-subttl {
  width: 230px;
}
@media screen and (max-width: 640px) {
  .productTtl .product-upper .product-subttl {
    width: 120px;
  }
}
.productTtl .product-upper .product-ttl {
  width: 345px;
}
.productTtl .product-upper .product-ttl.ozonaizer {
  transform: translateY(10px);
}
@media screen and (max-width: 640px) {
  .productTtl .product-upper .product-ttl {
    width: 140px;
  }
}
.productTtl .product-upper .product-upper-wrap {
  border-bottom: 2px solid #05428A;
  padding-bottom: 1rem;
  gap: 1rem;
}
@media screen and (max-width: 1000px) {
  .productTtl .product-upper .product-upper-wrap {
    flex-direction: column;
    border: none;
    gap: 0;
  }
}
.productTtl .product-lower {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
.productTtl .product-lower .product-txt {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1000px) {
  .productTtl .product-lower {
    display: none;
  }
}
.productTtl .productDetail {
  gap: 0.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 1000px) {
  .productTtl .productDetail {
    flex-direction: column;
  }
}
.productTtl .productDetail .productDetailTxt {
  text-align: center;
  font-size: 0.875rem;
  color: #05428A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  position: relative;
}
.productTtl .productDetail .productDetailTxt.support::before {
  width: 14px;
}
.productTtl .productDetail .productDetailTxt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.3rem;
  transform: translateY(-50%);
  width: 12px;
  aspect-ratio: 1/1;
}
.productTtl .productDetail .productDetailTxt.trash::before {
  background-image: url(../img/trash.png);
  background-size: cover;
  background-position: center;
}
.productTtl .productDetail .productDetailTxt.down::before {
  background-image: url(../img/down.png);
  background-size: cover;
  background-position: center;
}
.productTtl .productDetail .productDetailTxt.graf::before {
  background-image: url(../img/graf.png);
  background-size: cover;
  background-position: center;
}
.productTtl .productDetail .productDetailTxt.clock::before {
  background-image: url(../img/clock.png);
  background-size: cover;
  background-position: center;
}
.productTtl .productDetail .productDetailTxt.document::before {
  background-image: url(../img/documents.png);
  background-size: cover;
  background-position: center;
}
.productTtl .productDetail .productDetailTxt.teian::before {
  background-image: url(../img/caseFlow-teian.png);
  background-size: cover;
  background-position: center;
}
.productTtl .productDetail .productDetailTxt.teian::before {
  background-image: url(../img/caseFlow-teian.png);
  background-size: cover;
  background-position: center;
}
.productTtl .productDetail .productDetailTxt.bou::before {
  background-image: url(../img/bou-grafu.png);
  background-size: cover;
  background-position: center;
}
.productTtl .productDetail .productDetailTxt.clean::before {
  background-image: url("../img/clean.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.productTtl .productDetail-txt {
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 1;
  width: 180px;
  z-index: 10;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .productTtl .productDetail-txt {
    width: 180px;
  }
}
@media screen and (max-width: 640px) {
  .productTtl .productDetail-txt {
    width: 140px;
  }
}
.productTtl .productDetail-txt.action {
  width: 150px;
}
@media screen and (max-width: 1000px) {
  .productTtl .productDetail-txt.action {
    width: 180px;
  }
}
@media screen and (max-width: 640px) {
  .productTtl .productDetail-txt.action {
    width: 140px;
  }
}
.productTtl .productDetail-txt::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  transform: skewX(-20deg);
}
.productTtl .product-img {
  width: 24%;
  position: relative;
  z-index: 10;
  flex: 1;
}
.productTtl .product-img img {
  scale: 1;
}
.productTtl .product-img.ozonaizer::after {
  background-image: url("../img/ozonaizerR.png");
  background-size: cover;
  background-position: center;
}
.productTtl .product-img.awasher::after {
  background-image: url("../img/awasherR.png");
  background-size: cover;
  background-position: center;
}
.productTtl .product-img::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: -20px;
  width: 140px;
  aspect-ratio: 1/1;
  background-image: url("../img/gomiserR.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1000px) {
  .productTtl .product-img::after {
    width: 100px;
    bottom: 40px;
    right: -20px;
  }
}
@media screen and (max-width: 640px) {
  .productTtl .product-img {
    width: 46%;
    flex: inherit;
    transform: translate(10px, 30px);
  }
  .productTtl .product-img::after {
    bottom: 30px;
    right: -10px;
    width: 80px;
  }
}

.productTtl-noPC {
  margin-top: 2rem;
  display: none;
  flex-direction: column;
  gap: 1rem 0;
}
@media screen and (max-width: 1000px) {
  .productTtl-noPC {
    display: flex;
  }
  .productTtl-noPC .product-txt {
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.7px;
  }
}

.product-merits {
  justify-content: space-between;
  margin-top: 6rem;
}
.product-merits .product-merit {
  width: 49%;
  background-color: #EFF2F4;
  border-radius: 30px;
}
.product-merits .product-merit .product-merit-ttl {
  border-radius: 30px;
  color: #fff;
  transform: translateY(-30px);
  padding: 0.5rem 2rem;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.product-merits .product-merit .product-merit-ttl.bcGreen {
  background-color: #429355;
}
.product-merits .product-merit .product-merit-ttl.bcBlue {
  background-color: #05428A;
}
@media screen and (max-width: 1000px) {
  .product-merits .product-merit .product-merit-ttl {
    transform: translateY(-30px);
    width: 86%;
  }
  .product-merits .product-merit .product-merit-ttl.gomiser {
    font-size: 1.2rem;
    transform: translateY(-20px);
  }
}
.product-merits .product-merit .product-merit-ttl-txt {
  letter-spacing: 0.8px;
  display: inline-block;
  font-size: 1.5rem;
  position: relative;
  padding-left: 20px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  .product-merits .product-merit .product-merit-ttl-txt {
    font-size: 1.2rem;
  }
  .product-merits .product-merit .product-merit-ttl-txt.gomiser {
    font-size: 1.2rem;
    transform: translateY(-20px);
  }
}
.product-merits .product-merit .product-merit-ttl-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
  width: 20px;
  aspect-ratio: 1/1;
  background-image: url("../img/denkyuu.png");
  background-size: cover;
  background-position: center;
}
.product-merits .product-merit .product-merit-img {
  width: 50%;
  margin: 0 auto;
}
.product-merits .product-merit .product-merit-img.action {
  width: 20%;
}
.product-merits .product-merit .product-merit-img.awasher {
  width: 30%;
}
.product-merits .product-merit .product-merit-img.awasher img {
  scale: 1.2;
}
.product-merits .product-merit .product-merit-txt {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  padding: 2rem 2rem 0;
  font-weight: bold;
}
.product-merits .product-merit .product-merit-txt.action {
  padding-bottom: 2rem;
}
.product-merits .product-merit .product-merit-kome {
  padding: 0 2rem 2rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 640px) {
  .product-merits {
    flex-direction: column;
    gap: 4rem 0;
  }
  .product-merits .product-merit {
    width: 100%;
  }
  .product-merits .product-merit.gomiser {
    padding-bottom: 2rem;
  }
}

.product-work {
  margin-top: 6rem;
  overflow: hidden;
}
.product-work .product-work__body {
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .product-work .product-work__body.action {
    gap: 2rem 0;
  }
}
.product-work .product-work__body .product-work-block {
  width: 40%;
}
.product-work .product-work__body .product-work-block .product-work-txt {
  color: #05428A;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1.8px;
  padding: 0 2rem;
  font-size: 1.125rem;
}
.product-work .product-work__body .product-work-block:first-of-type {
  position: relative;
}
.product-work .product-work__body .product-work-block:first-of-type::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -34%;
  transform: translateY(-80%);
  width: 50px;
  aspect-ratio: 1/1.4;
  background-image: url("../img/flow-arrow.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1000px) {
  .product-work .product-work__body .product-work-block:first-of-type::after {
    width: 30px;
  }
}
@media screen and (max-width: 640px) {
  .product-work .product-work__body {
    flex-direction: column;
    gap: 8rem 0;
    position: relative;
  }
  .product-work .product-work__body .product-work-block {
    width: 100%;
  }
  .product-work .product-work__body .product-work-block:first-of-type {
    position: relative;
  }
  .product-work .product-work__body .product-work-block:first-of-type::before {
    content: "";
    position: absolute;
    bottom: -32%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    background-image: url("../img/flow-arrow2.svg");
    background-size: cover;
    background-position: center;
  }
}
.product-work .product-work__body .product-work-block-ozoImg {
  width: 45%;
}
@media screen and (max-width: 640px) {
  .product-work .product-work__body .product-work-block-ozoImg {
    width: 100%;
  }
}
.product-work .product-work__body .product-work-block-ozo {
  width: 50%;
  margin-top: 0.6rem;
}
@media screen and (max-width: 640px) {
  .product-work .product-work__body .product-work-block-ozo {
    width: 100%;
  }
}
.product-work .product-work__body .product-work-block-ozo .product-work-txt {
  margin-bottom: 1rem;
  color: #05428A;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1.8px;
}

.productRental {
  margin-top: 6rem;
}
.productRental .productRental-txt {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
}

.productImage {
  margin-top: 6rem;
}
.productImage .productImage__body {
  justify-content: space-between;
}
.productImage .productImage__body .productImage-txt {
  width: 50%;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
}
.productImage .productImage__body .productImage-txt .productImg-list {
  width: 80%;
}
@media screen and (max-width: 1000px) {
  .productImage .productImage__body .productImage-txt .productImg-list {
    width: 100%;
  }
}
.productImage .productImage__body .productImage-txt .productImg-list .productImg-item {
  padding: 1rem 0 0.6rem 0.5rem;
  border-bottom: 1px solid #E4E4E3;
  gap: 1rem;
  display: flex;
}
.productImage .productImage__body .productImage-txt .productImg-list .productImg-item .productImg-item__ttl {
  width: 100px;
  letter-spacing: 0.8px;
}
.productImage .productImage__body .productImage-img {
  width: 40%;
}
@media screen and (max-width: 640px) {
  .productImage .productImage__body {
    gap: 2rem 0;
    flex-direction: column-reverse;
  }
  .productImage .productImage__body .productImage-txt {
    width: 100%;
  }
  .productImage .productImage__body .productImage-img {
    width: 100%;
  }
}

.product-video {
  margin-top: 6rem;
}

.productService {
  margin-top: 6rem;
}

.prodoctAnother {
  margin-top: 4rem;
}
.prodoctAnother .productAnother__body {
  gap: 1rem;
}
.prodoctAnother .productAnother__body .productAnother-block {
  padding: 1rem 0 2rem;
  width: 32%;
  background-color: #EFF2F4;
}
.prodoctAnother .productAnother__body .productAnother-block .productAnother-txt {
  padding: 0 2rem;
}
.prodoctAnother .productAnother__body .productAnother-block .productAnother-txt.action {
  width: 80%;
  margin: 0 auto;
}
.prodoctAnother .productAnother__body .productAnother-block .productAnother-txt.gomiser {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .prodoctAnother .productAnother__body {
    gap: 2%;
  }
  .prodoctAnother .productAnother__body .productAnother-block {
    width: 49%;
    padding-bottom: 1rem;
  }
  .prodoctAnother .productAnother__body .productAnother-block .productAnother-txt {
    padding: 0 1rem;
  }
}

.productAdd {
  margin-top: 6rem;
}

.productAdd__body {
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .productAdd__body {
    flex-direction: column;
    gap: 5rem 0;
  }
}
.productAdd__body .productAdd-block {
  width: 48%;
}
@media screen and (max-width: 1000px) {
  .productAdd__body .productAdd-block {
    width: 100%;
  }
}
.productAdd__body .productAdd-block .productAdd-wrap {
  gap: 2rem;
}
.productAdd__body .productAdd-block .productAdd-img {
  width: 50%;
}
.productAdd__body .productAdd-block .productAdd-link-txt {
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  color: #136CC4 !important;
  text-decoration: underline !important;
}
.productAdd__body .productAdd-block .productAdd-link {
  width: 37%;
}
.productAdd__body .productAdd-block .productAdd-txt {
  padding-top: 1rem;
  overflow: scroll;
}
.productAdd__body .productAdd-block .productAdd-fade {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(147, 147, 147, 0.751);
  z-index: 999;
  overflow: scroll;
}
.productAdd__body .productAdd-block .productAdd-fade.active {
  display: inherit;
}
.productAdd__body .productAdd-block .productAdd-fade .productAdd-fade__body {
  width: 80%;
  margin: 0 auto 2rem;
  background-color: #fff;
  padding-bottom: 2rem;
}
.productAdd__body .productAdd-block .productAdd-fade .productAdd-fadeimg {
  width: 80%;
  margin: 3rem auto;
  padding: 2rem 0 0;
}
@media screen and (max-width: 640px) {
  .productAdd__body .productAdd-block .productAdd-fade .productAdd-fadeimg {
    width: 90%;
  }
}
.productAdd__body .productAdd-block .productAdd-fade .productAdd-fadeimg video {
  max-height: 80vh;
}
.productAdd__body .productAdd-block .productAdd-fade .productAdd-fade-txt {
  padding: 0 10%;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  line-height: 1.5rem;
  font-size: 1rem;
}
@media screen and (max-width: 1000px) {
  .productAdd__body .productAdd-block .productAdd-fade .productAdd-fade-txt {
    font-size: 0.75rem;
  }
}

.privacy__body {
  flex-direction: column;
  gap: 3rem;
  margin: 3rem auto 6rem;
}
.privacy__body .privacy-block {
  gap: 1rem;
  width: 100%;
}
.privacy__body .privacy-block .privacy-ttl {
  background-color: #8C8C8B;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 1.375rem;
  font-weight: bold;
  letter-spacing: 2.2px;
}
.privacy__body .privacy-block .privacy-txt {
  letter-spacing: 1.6px;
  line-height: 1.6rem;
}/*# sourceMappingURL=kasou.css.map */