@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: 12px;
  }
}

ul {
  list-style: none;
}

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

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

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

.TB-block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .TB-block {
    /* SPでは非表示 */
    display: block;
  }
}
@media screen and (max-width: 694px) {
  .TB-block {
    /* SPでは非表示 */
    display: none;
  }
}

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

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

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

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center {
  text-align: center;
}

.big3 {
  font-size: 3rem;
}

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

.transY2 {
  transform: translateY(10px);
  padding-left: 1rem;
}

.disBlock {
  display: block;
}

.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::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;
}

.Btn2 {
  font-size: 1.125rem;
  color: #05428A;
  padding: 1rem 6rem;
  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.modal-action {
  margin-top: 1rem;
  padding: 1rem 4rem;
}

.weight {
  font-weight: bold;
  padding: 0 3px;
  letter-spacing: 1.15px;
}

.centerSP {
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .centerSP {
    text-align: center;
  }
}

main {
  overflow: hidden;
  position: relative;
}

.Column {
  border-top: 1.5px solid #E4E4E3;
  margin-top: -5px;
}

.column {
  padding: 2rem 0;
}
.column .column-ttl {
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
  border-right: 2px solid #E4E4E3;
  padding: 0 5rem;
  color: #05428A;
  font-weight: bold;
}
.column .column__content {
  position: relative;
}
.column .column__content::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;
}
.column .column__content .column__content-date {
  font-family: "Arial", sans-serif;
  padding: 0 3rem 0 2rem;
  transform: translateY(1.6px);
}
.column .column__content .column__content-txt {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2rem;
}

.About {
  position: relative;
  border-top: 20px solid #05428A;
  overflow: hidden;
}
.About .aboutTtl {
  position: absolute;
  top: -2rem;
  left: calc((100vw - 800px) / 2 - 100px);
  width: 660px;
}
@media screen and (max-width: 1000px) {
  .About .aboutTtl {
    left: 0;
    width: 450px;
  }
}
@media screen and (max-width: 640px) {
  .About .aboutTtl {
    left: 0;
    width: 250px;
  }
}
.About .aboutHaikei {
  position: absolute;
  bottom: -20px;
  right: -500px;
  width: 700px;
}
@media screen and (max-width: 640px) {
  .About .aboutHaikei {
    right: 0;
    width: 250px;
  }
}
.About .aboutHaikei2 {
  position: absolute;
  top: -20px;
  left: -450px;
  width: 600px;
  rotate: 180deg;
  z-index: -2;
}
.About .aboutPerson {
  position: absolute;
  top: 10rem;
  left: 0px;
  width: calc((100vw - 800px) / 2 - 80px);
  max-width: 300px;
  z-index: 99;
}
.About .aboutPerson .about-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.About .aboutPerson .about-img-wrap::after {
  content: "";
  width: calc((100vw - 800px) / 2 - 140px);
  max-width: 200px;
  aspect-ratio: 1.636/1;
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  bottom: -80px;
  right: -40px;
  background-image: url("../img/aboutus03.png");
  background-size: cover;
  background-position: center;
}

.about {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.about .about__content {
  width: 800px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .about .about__content {
    padding: 2rem 0 3rem;
  }
}
.about .about__content .about__content-ttl {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.3rem;
  color: #05428A;
}
@media screen and (max-width: 640px) {
  .about .about__content .about__content-ttl {
    text-align: left;
  }
}
.about .about__content .about__content-subttl {
  text-align: center;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: 2.4px;
  color: #05428A;
  padding: 1rem 0 2rem;
}
@media screen and (max-width: 640px) {
  .about .about__content .about__content-subttl {
    text-align: left;
  }
}
.about .about__content .about__content-txt {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2rem;
  color: #333333;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 1.8px;
  padding-bottom: 1.5rem;
}
.about .about__content .about__content-txt.action {
  display: none;
}
@media screen and (max-width: 1000px) {
  .about .about__content .about__content-txt.action {
    display: none;
  }
  .about .about__content .about__content-txt.action2 {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .about .about__content .about__content-txt {
    text-align: left;
  }
  .about .about__content .about__content-txt.action {
    display: block;
  }
  .about .about__content .about__content-txt.action2 {
    display: none;
  }
}
.about .about__content .about__content-txt span {
  color: #fff;
  background-color: #05428A;
  padding: 3px 0;
  margin: 0 3px;
  transform: translateY(-3px);
}
.about .about__content .about__content-subtxt {
  text-align: center;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.8px;
  padding: 1rem 0 0rem;
}
@media screen and (max-width: 640px) {
  .about .about__content .about__content-subtxt {
    text-align: left;
  }
}
.about .about__content .about__content-img {
  width: 80%;
  margin: 0 auto;
}
.about .about__content .about__cotent-btn {
  gap: 2rem;
  justify-content: space-evenly;
}
@media screen and (max-width: 1000px) {
  .about .about__content .about__cotent-btn {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.about .about-img {
  position: absolute;
  right: 20px;
  top: 340px;
  width: calc((100vw - 800px) / 2 - 80px);
  max-width: 250px;
}
.about .about-img .about-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.about .about-img .about-img-wrap::after {
  content: "";
  width: calc((100vw - 800px) / 2 - 110px);
  max-width: 200px;
  aspect-ratio: 1.636/1;
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  bottom: -80px;
  left: -80px;
  background-image: url("../img/bg-ramen.jpg");
  background-size: cover;
  background-position: center;
}

.Introduce {
  width: 100vw;
  position: relative;
}
.Introduce::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 42%;
  background-color: #EFF2F4;
  z-index: -2;
}
.Introduce .introduceTtl {
  background-image: url(../img/product-bg.png);
  background-size: cover;
  background-position: center;
  text-align: center;
  font-size: 3rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  padding: 8rem 0;
  position: relative;
  font-weight: bold;
}
.Introduce .introduceTtl::after {
  content: "";
  position: absolute;
  bottom: -65px;
  right: 0;
  width: 500px;
  height: 200px;
  background-image: url(../img/Product-txt.png);
  background-size: cover;
  background-position: center;
  z-index: 99;
  background-size: contain;
  background-repeat: no-repeat;
}

.introduce {
  margin-top: 5rem;
}
.introduce .introduce__content .introduce__content-ttl {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #05428A;
  text-align: center;
  letter-spacing: 0.3rem;
}
.introduce .introduce__content .introduce__content-txt {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  padding-top: 3rem;
  max-width: 643px;
  margin: 0 auto;
}
.introduce .introduce__content .introduce__content-txt p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2rem;
}

.product {
  margin-top: 4rem;
  padding-bottom: 3rem;
  justify-content: space-between;
}

.product-block {
  width: 30%;
}
.product-block .productImg {
  position: relative;
}
.product-block .productImg img {
  scale: 1;
}
.product-block:nth-of-type(1) .productImg::after {
  background-image: url("../img/gomiserR.png");
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  aspect-ratio: 1/1;
  z-index: 99;
}
@media screen and (max-width: 1000px) {
  .product-block:nth-of-type(1) .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}
@media screen and (max-width: 640px) {
  .product-block:nth-of-type(1) .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}
.product-block:nth-of-type(2) .productImg::after {
  background-image: url("../img/ozonaizerR.png");
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  aspect-ratio: 1/1;
  z-index: 99;
}
@media screen and (max-width: 1000px) {
  .product-block:nth-of-type(2) .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}
@media screen and (max-width: 640px) {
  .product-block:nth-of-type(2) .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}
.product-block:nth-of-type(3) .productImg::after {
  background-image: url("../img/awasherR.png");
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  aspect-ratio: 1/1;
  z-index: 99;
}
@media screen and (max-width: 1000px) {
  .product-block:nth-of-type(3) .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}
@media screen and (max-width: 640px) {
  .product-block:nth-of-type(3) .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}
.product-block .productTxt {
  width: 140px;
  height: auto;
  margin: 0rem auto 1rem;
}
.product-block .productTxt.ozo {
  width: 200px;
}
.product-block .productTxt.awa {
  width: 166px;
}
.product-block .productDetail {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
.product-block .productDetail .productDetail-txt {
  gap: 1rem;
  padding: 0.6rem 0;
  width: 232px;
  margin: 0 auto;
  position: relative;
  justify-content: center;
}
.product-block .productDetail .productDetail-txt::after {
  content: "";
  background-color: #fff;
  transform: skewX(-20deg);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.product-block .productDetail .productDetailTxt {
  text-align: center;
  font-size: 0.875rem;
  color: #05428A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  position: relative;
}
.product-block .productDetail .productDetailTxt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
  width: 15px;
  aspect-ratio: 1/1;
}
.product-block .productDetail .productDetailTxt.trash::before {
  background-image: url(../img/trash.png);
  background-size: cover;
  background-position: center;
}
.product-block .productDetail .productDetailTxt.down::before {
  background-image: url(../img/down.png);
  background-size: cover;
  background-position: center;
}
.product-block .productDetail .productDetailTxt.graf::before {
  background-image: url(../img/graf.png);
  background-size: cover;
  background-position: center;
}
.product-block .productDetail .productDetailTxt.clock::before {
  background-image: url(../img/clock.png);
  background-size: cover;
  background-position: center;
}
.product-block .productDetail .productDetailTxt.clean::before {
  background-image: url("../img/clean.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.slider__product .slide.slide-gomiser .productImg::after {
  background-image: url("../img/gomiserR.png");
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  aspect-ratio: 1/1;
  z-index: 99;
}
@media screen and (max-width: 1000px) {
  .slider__product .slide.slide-gomiser .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}
@media screen and (max-width: 640px) {
  .slider__product .slide.slide-gomiser .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}
.slider__product .slide.slide-ozonaizer .productImg::after {
  background-image: url("../img/ozonaizerR.png");
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  aspect-ratio: 1/1;
  z-index: 99;
}
@media screen and (max-width: 1000px) {
  .slider__product .slide.slide-ozonaizer .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}
@media screen and (max-width: 640px) {
  .slider__product .slide.slide-ozonaizer .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}
.slider__product .slide.slide-awasher .productImg::after {
  background-image: url("../img/awasherR.png");
  background-size: cover;
  background-position: center;
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  aspect-ratio: 1/1;
  z-index: 99;
}
@media screen and (max-width: 1000px) {
  .slider__product .slide.slide-awasher .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}
@media screen and (max-width: 640px) {
  .slider__product .slide.slide-awasher .productImg::after {
    width: 100px;
    bottom: -10px;
    right: -10px;
  }
}

.serviceTtl {
  width: 180px;
  margin: 5rem auto 0;
}

.service {
  justify-content: space-between;
  margin-top: 3rem;
  margin-bottom: 5rem;
}
.service .service-block {
  width: 32%;
  background-color: #EFF2F4;
  border-top: 8px solid #05428A;
}
.service .service-block .serviceImg {
  padding-top: 1rem;
  width: 200px;
  height: 180px;
  margin: 0 auto;
}
.service .service-block .serviceImg img.action {
  transform: translateY(15px);
}
@media screen and (max-width: 1000px) {
  .service .service-block .serviceImg img.action {
    transform: translate(0);
  }
}
.service .service-block .serviceImg.lise img {
  scale: 1.3;
  transform: translateY(20px);
}
.service .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;
}
.service .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;
}
.service .service-block .serviceContent {
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.9px;
  padding: 1rem 1.5rem;
}
.service .service-block .serviceContent .serviceBig {
  font-size: 1.125rem;
}
.service .service-block .serviceContent .serviceBig .numberBig {
  font-size: 1.2rem;
}
.service .service-block .serviceExample {
  background-color: #fff;
  margin: 1rem 1rem;
}
.service .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;
}
.service .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;
}

.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;
  transform: skewX(-20deg);
}
.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;
}

.effectTtl-SP {
  display: none;
}

.Effects .slick-next {
  right: calc((100vw - 960px) / 2 - 40px);
}
.Effects .slick-next::before {
  content: "";
  background-image: url("../img/button-arrow-bulue.png");
  background-size: cover;
  background-position: center;
  width: 25px;
  aspect-ratio: 1/1;
  display: block;
}
.Effects .slick-prev {
  left: calc((100vw - 960px) / 2 - 40px);
  z-index: 99;
}
.Effects .slick-prev::before {
  content: "";
  background-image: url("../img/arrow-reverse.png");
  background-size: cover;
  background-position: center;
  width: 25px;
  aspect-ratio: 1/1;
  display: block;
}

.effectSlide-dots {
  margin: 0;
  padding: 0;
  text-align: center;
}
.effectSlide-dots li {
  display: inline-block;
  margin: 0 10px;
}
.effectSlide-dots li button {
  position: relative;
  text-indent: -9999px;
  border: 1px solid #05428A;
  width: 20px;
  height: 20px !important;
  background-color: #fff;
  margin-top: 2rem;
}
.effectSlide-dots li.slick-active button {
  background-color: #05428A;
}

.case {
  margin-top: 8rem;
  background-color: #EFF2F4;
  position: relative;
  padding-bottom: 35px;
}
.case .CasesImg {
  position: absolute;
  top: 50px;
  right: -150px;
  width: 200px;
}

.case-first {
  width: 60%;
}
.case-first .caseTxt {
  background-color: #fff;
  width: 90%;
  margin: 2rem auto;
  padding: 2rem;
  border-top: 4px solid #05428A;
  font-size: 0.825rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 20px;
}

.case-second {
  width: 40%;
}
.case-second .case-second-ttl {
  font-size: 2rem;
  color: #05428A;
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  padding: 2rem 0 0.5rem;
  font-weight: bold;
  border-bottom: 2px solid #05428A;
}
.case-second .case-second-txt {
  width: 80%;
  margin: 0 auto;
  padding-top: 2rem;
  font-size: 0.825rem;
  font-family: "Noto Sans JP", sans-serif;
}
.case-second .caseBtn {
  margin-top: 6rem;
}

.Recruit {
  position: relative;
}
.Recruit .recruitImg {
  width: 250px;
  position: absolute;
}
.Recruit .recruitImg1 {
  top: -30px;
  left: -30px;
}
.Recruit .recruitImg2 {
  bottom: -60px;
  right: -30px;
}

.recruit {
  background-image: url("../img/reqruit-bg.png");
  background-size: cover;
  background-position: center;
  margin-top: 8rem;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 2.1/1;
}
.recruit .recruit-ttl {
  width: 175px;
  margin: 2rem auto;
}
.recruit .recruit-txt {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.recruit .recruit-txt2 {
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: center;
  color: #fff;
  letter-spacing: 0.2rem;
  padding-top: 1rem;
}
.recruit .recruitBtns {
  justify-content: space-evenly;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
@media screen and (max-width: 1000px) {
  .recruit .recruitBtns {
    flex-direction: column;
  }
}
.recruit .recruitBtns .recruitBtn {
  width: 320px;
  margin-top: 4rem;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  border: 1px solid #fff;
  display: inline-block;
  padding: 1rem 0rem;
  font-size: 1rem;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1000px) {
  .recruit .recruitBtns .recruitBtn {
    width: 280px;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .recruit .recruitBtns .recruitBtn {
    width: 220px;
  }
}
.recruit .recruitBtns .recruitBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  width: 23px;
  aspect-ratio: 1/1;
  background-image: url(../img/recruitBtnArrow.png);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1000px) {
  .recruit .recruitBtns .recruitBtn::after {
    width: 15px;
    right: 0.3rem;
    transform: translateY(-45%);
  }
}

.news {
  margin-top: 12rem;
  gap: 1rem;
  position: relative;
}
.news .newsImg {
  position: absolute;
  top: -10rem;
  left: -60px;
  width: 200px;
}

.news-first {
  width: 30%;
  position: relative;
}
.news-first .news-ttl {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #05428A;
  padding-left: 2rem;
  padding-top: 0rem;
}
.news-first .newsBtn {
  position: absolute;
  bottom: 0rem;
  left: 0rem;
}

.news-second {
  flex: 1;
}
.news-second .news__block {
  border-top: 1px solid #000;
  padding: 1rem;
  display: block;
}
.news-second .news__block .news-info {
  gap: 1rem;
}
.news-second .news__block .newsDate {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
}
.news-second .news__block .newsCategory {
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  padding: 2px 5px;
  background-color: #EFF2F4;
  border-radius: 10px;
}
.news-second .news__block .newsTxt {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  padding: 1rem 0 1rem;
}
.news-second:last-of-type {
  border-bottom: 1px solid #000;
}

.Contact {
  margin-top: 12rem;
  position: relative;
  background-image: url("../img/product-bg.png");
  background-size: cover;
  background-position: center;
  aspect-ratio: 4.63/1;
}
.Contact .contactImg {
  width: 780px;
  position: absolute;
  top: -27px;
  left: 0;
}

.contact {
  padding-top: 10rem;
  justify-content: space-between;
}
.contact .contactTxt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.15rem;
  line-height: 1.5rem;
}
.contact .contactBtn.Btn2 {
  margin-top: 0;
  padding: 1rem 5rem;
}

@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;
  }
  .Btn2 {
    font-size: 1.417rem;
    margin-top: 1rem;
    padding: 0.6rem 5rem;
    border: 1.6px solid #05428A;
  }
  .flex-center.action {
    flex-direction: column;
    align-items: center;
  }
  .About {
    border-top: 10px solid #05428A;
  }
  .About .aboutTtl {
    width: 560px;
  }
  .about {
    padding-top: 5rem;
    padding-bottom: 0rem;
  }
  .about .about__content {
    width: 100%;
  }
  .about .about__content .about__content-ttl {
    letter-spacing: 0.2rem;
  }
  .about .about__content .about__content-txt p {
    font-size: 1.167rem;
    letter-spacing: 0.7px;
    line-height: 2rem;
  }
  .about-SPimgs {
    width: 100vw;
    height: 500px;
    position: relative;
    margin-top: -3rem;
  }
  .about-SPimgs .aboutHaikei-SP {
    position: absolute;
    top: 0;
    right: -70%;
    width: 100vw;
    height: 500px;
    z-index: 1;
  }
  .about-SPimgs .aboutHaikei-SP img {
    height: 100%;
  }
  .about-SPimgs .about-SPimgs-body {
    position: relative;
    width: 100%;
    height: 500px;
  }
  .about-SPimgs .about-SPimgs-body .aboutPerson-SP {
    position: absolute;
    top: 50%;
    right: 30%;
    width: 183px;
    height: auto;
    z-index: 4;
  }
  .about-SPimgs .about-SPimgs-body .about-img-SP {
    position: absolute;
    top: 20%;
    left: 30%;
    width: 156px;
    z-index: 3;
  }
  .about-SPimgs .aboutBtn-SP {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 100%;
  }
  .Introduce {
    width: 100vw;
  }
  .Introduce::after {
    width: 0;
    height: 0;
  }
  .Introduce .introduceTtl {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    aspect-ratio: 3.78/1;
    font-size: 2.5rem;
  }
  .Introduce .introduceTtl::after {
    bottom: -9px;
    right: -40px;
    width: 240px;
    height: 40px;
  }
  .Introduce .slick-next {
    top: 70%;
    right: calc((100vw - 320px) / 2);
  }
  .Introduce .slick-next::before {
    content: "";
    background-image: url("../img/button-arrow-bulue.png");
    background-size: cover;
    background-position: center;
    width: 25px;
    aspect-ratio: 1/1;
    display: block;
  }
  .Introduce .slick-prev {
    top: 70%;
    left: calc((100vw - 320px) / 2);
    z-index: 99;
  }
  .Introduce .slick-prev::before {
    content: "";
    background-image: url("../img/arrow-reverse.png");
    background-size: cover;
    background-position: center;
    width: 25px;
    aspect-ratio: 1/1;
    display: block;
  }
  .introduce {
    margin-top: 4rem;
  }
  .introduce .introduce__content .introduce__content-ttl {
    font-size: 2rem;
    letter-spacing: 0.3rem;
  }
  .introduce .introduce__content .introduce__content-txt {
    padding-bottom: 3rem;
  }
  .introduce .introduce__content .introduce__content-txt p {
    line-height: 20px;
    letter-spacing: 0.7px;
    font-size: 1.067rem;
  }
  .product {
    display: none;
  }
  .product-block {
    width: 64%;
    margin: 0 auto;
    padding: 2rem 0 0;
  }
  .product-block .productImg {
    width: 50%;
    margin: 0 auto;
    padding-bottom: 2rem;
  }
  .product-block .productImg::after {
    background-image: "../img/productImg.png";
    background-size: cover;
    background-position: center;
    content: "";
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 100px;
    aspect-ratio: 1/1;
    z-index: 99;
  }
  .product-block .productTxt {
    width: 140px;
    height: auto;
    margin: 0rem auto 1rem;
  }
  .product-block .productTxt.ozo {
    width: 200px;
  }
  .product-block .productTxt.awa {
    width: 166px;
  }
  .product-block .productDetail {
    padding-top: 1rem;
    gap: 0.5rem 0;
  }
  .product-block .productDetail .productDetail-txt {
    width: 200px;
    padding: 0.5rem 0;
  }
  .Introduce .slider {
    background-color: #EFF2F4;
  }
  .Introduce .productSlide-dots {
    margin: 0;
    padding: 0;
    text-align: center;
    transform: translateY(40px);
  }
  .Introduce .productSlide-dots li {
    display: inline-block;
    margin: 0 10px;
  }
  .Introduce .productSlide-dots li button {
    position: relative;
    text-indent: -9999px;
    border: 1px solid #05428A;
    width: 10px;
    height: 10px !important;
    aspect-ratio: 1/1;
    background-color: #fff;
    margin-top: 2rem;
  }
  .Introduce .productSlide-dots li.slick-active button {
    background-color: #05428A;
  }
  .serviceTtl {
    font-size: 2.67rem;
    margin-top: 10rem;
    letter-spacing: 0.3rem;
  }
  .service {
    justify-content: space-between;
    gap: 2rem 0;
  }
  .service .service-block {
    width: 48%;
  }
  .service .service-block .serviceImg {
    width: 60%;
    height: 150px;
    overflow: hidden;
  }
  .service .service-block .serviceTxt {
    font-size: 1.167rem;
  }
  .service .service-block .serviceContent {
    font-size: 0.83rem;
    padding: 1rem 1.5rem;
  }
  .service .service-block .serviceContent .serviceBig {
    font-size: 0.83rem;
  }
  .service .service-block .serviceExample {
    margin: 1rem 0.7rem;
  }
  .service .service-block .serviceExample .serviceExample-ttl {
    font-size: 0.83rem;
    padding-top: 0.5rem;
  }
  .service .service-block .serviceExample .serviceExample-txt {
    font-size: 0.83rem;
    padding: 6px 0rem 1rem;
  }
  .effectTtl-PC {
    display: block;
  }
  .effectTtl-SP {
    display: none;
  }
  .effectSlide {
    height: 543px;
    width: 320px;
    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;
  }
  .Effects .slick-next {
    right: calc((100vw - 320px) / 2 - 40px);
  }
  .Effects .slick-next::before {
    width: 25px;
  }
  .Effects .slick-prev {
    left: calc((100vw - 320px) / 2 - 40px);
    z-index: 99;
  }
  .Effects .slick-prev::before {
    width: 25px;
  }
  .effectSlide-dots {
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .effectSlide-dots li {
    display: inline-block;
    margin: 0 3px;
  }
  .effectSlide-dots li button {
    position: relative;
    text-indent: -9999px;
    border: 1px solid #05428A;
    width: 10px;
    height: 10px !important;
    aspect-ratio: 1/1;
    background-color: #fff;
    margin-top: 2rem;
  }
  .effectSlide-dots li.slick-active button {
    background-color: #05428A;
  }
  .case {
    margin-top: 0rem;
    background-color: #EFF2F4;
    position: relative;
    flex-direction: column;
  }
  .case .CasesImg {
    position: absolute;
    top: 50px;
    right: -150px;
    width: 100%;
  }
  .case .CasesImg-SP {
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 60px;
    z-index: 5;
  }
  .caseTtl-SP {
    font-size: 2.67rem;
    text-align: center;
    margin: 6rem 0 3rem;
  }
  .case-first {
    width: 100%;
  }
  .case-first .caseTxt {
    width: auto;
    font-size: 1.167rem;
    line-height: 20px;
    margin: 2rem;
  }
  .case-second {
    max-width: 640px;
    margin: 0 auto;
    width: auto;
  }
  .case-second .case-second-ttl {
    font-size: 2rem;
    color: #05428A;
    font-family: "Noto Sans JP", sans-serif;
    display: inline-block;
    padding: 2rem 0 0.5rem;
    font-weight: bold;
    border-bottom: 2px solid #05428A;
  }
  .case-second .case-second-txt {
    width: 100%;
    margin: 0 auto;
    padding-top: 2rem;
    font-family: "Noto Sans JP", sans-serif;
  }
  .case-second .case-second-txt p {
    font-size: 1.167rem;
  }
  .case-second .caseBtn {
    margin: 3rem 0;
    font-size: 1.5rem;
  }
  .Recruit {
    position: relative;
    background-image: url("../img/reqruit-bg-SP.png");
    background-size: cover;
    background-position: center;
    aspect-ratio: 1.4/1;
  }
  .Recruit .recruitImg {
    width: 250px;
  }
  .Recruit .recruitImg2 {
    width: 200px;
    bottom: -80px;
    right: 0px;
  }
  .Recruit.mx {
    max-width: none;
    width: 100vw;
  }
  .recruit {
    background-image: none;
    background-size: cover;
    background-position: center;
    margin-top: 5rem;
    border-radius: 0px;
    overflow: inherit;
    aspect-ratio: 2.1/1;
  }
  .recruit .recruit-ttl {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .recruit .recruit-txt {
    text-align: center;
    padding-top: 8rem;
    letter-spacing: 2.4px;
  }
  .recruit .recruit-txt2 {
    font-size: 1.333rem;
    text-align: center;
    letter-spacing: 0.8px;
    line-height: 2.4rem;
    padding-top: 2rem;
  }
  .recruit .recruitBtn {
    border: 2px solid #fff;
  }
  .news {
    gap: 0rem;
    flex-direction: column-reverse;
  }
  .news .newsImg {
    top: -4rem;
    left: -20px;
    width: 30%;
  }
  .news.mx {
    max-width: none;
    width: 100vw;
  }
  .news .news-ttl-SP {
    position: absolute;
    top: -5rem;
    left: 15%;
    font-size: 2rem;
    letter-spacing: 2.4px;
    font-weight: bold;
    color: #05428A;
  }
  .news-first {
    width: 100%;
    margin-left: auto;
    position: relative;
  }
  .news-first .news-ttl {
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    color: #05428A;
    padding-left: 2rem;
    padding-top: 0rem;
  }
  .news-first .newsBtn {
    position: relative;
  }
  .news-second {
    flex: 1;
    width: 78%;
    margin-left: auto;
  }
  .news-second .news__block {
    border-top: 1px solid #E4E4E3;
  }
  .news-second .news__block .news-info {
    gap: 1rem;
  }
  .news-second .news__block .newsDate {
    font-size: 1.167rem;
  }
  .news-second .news__block .newsCategory {
    font-size: 1rem;
  }
  .news-second .news__block .newsTxt {
    font-size: 1.167rem;
  }
  .news-second:last-of-type {
    border-bottom: 1px solid #E4E4E3;
  }
  .contact {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .column {
    flex-direction: column;
  }
  .column .column-ttl {
    padding: 0;
    font-size: 1.675rem;
    border-right: none;
  }
  .column .column-ttl.flex-center {
    justify-content: inherit;
  }
  .column .column__content {
    flex-direction: column;
  }
  .column .column__content .column__content-date {
    transform: translateY(1.6px);
    font-size: 1.175rem;
    padding: 0.5rem 0;
    justify-content: inherit;
  }
  .column .column__content .column__content-txt {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 2rem;
    font-size: 1.175rem;
    width: 250px;
  }
  .about-SPimgs .about-SPimgs-body .aboutPerson-SP {
    right: 0;
  }
  .about-SPimgs .about-SPimgs-body .about-img-SP {
    left: 0;
  }
  .About .aboutTtl {
    width: 320px;
    top: -1rem;
  }
  .about {
    padding-top: 3rem;
  }
  .about .about__content {
    padding-top: 2rem;
    width: 100%;
  }
  .product-block .productImg {
    width: 80%;
  }
  .service .service-block .serviceImg {
    width: 80%;
    height: 100px;
  }
  .Effects .effectTtl-PC {
    display: none;
  }
  .Effects .effectTtl-SP {
    width: 100vw;
    display: block;
    aspect-ratio: 1.32/1;
    background-image: url("../img/effects-bg-SP.png");
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .Effects .effectTtl-SP .effectTtl-img {
    width: 320px;
    position: absolute;
    top: -20px;
  }
  .Effects .effectTtl-SP .effectTtl-txt {
    font-size: 2rem;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 2.4px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 60px;
    right: 50%;
    transform: translateX(50%);
    width: 300px;
  }
  .effectSlide {
    height: 460px;
  }
  .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: 1.167rem;
  }
}
@media screen and (max-width: 640px) {
  .Effects .slick-next {
    right: calc((100vw - 320px) / 2 - 18px);
  }
  .Effects .slick-next::before {
    width: 20px;
  }
  .Effects .slick-prev {
    left: calc((100vw - 320px) / 2 - 18px);
    z-index: 99;
  }
  .Effects .slick-prev::before {
    width: 20px;
  }
}
@media screen and (max-width: 640px) {
  .case {
    padding-bottom: 0;
  }
  .case.mx {
    max-width: none;
    width: 100vw;
    overflow: hidden;
  }
  .case .CasesImg-SP {
    width: 90px;
  }
}
@media screen and (max-width: 640px) {
  .case-second {
    max-width: 320px;
  }
}
@media screen and (max-width: 640px) {
  .Recruit {
    aspect-ratio: 0.9/1;
  }
  .Recruit .recruitImg {
    width: 150px;
  }
  .Recruit .center.action {
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  .recruit .recruit-ttl {
    left: calc((100vw - 320px) / 2);
    transform: translateX(0);
  }
  .recruit .recruit-txt {
    text-align: left;
  }
  .recruit .recruit-txt2 {
    text-align: left;
    line-height: 2rem;
    padding-top: 0;
  }
}
@media screen and (max-width: 640px) {
  .Contact {
    margin-top: 6rem;
    aspect-ratio: 2.2/1;
  }
  .Contact .contactImg {
    width: 375px;
    position: absolute;
    top: 0px;
    left: 0;
  }
}
@media screen and (max-width: 640px) {
  .contact {
    padding-bottom: 0;
    padding-top: 10rem;
    flex-direction: column;
  }
  .contact .contactTxt {
    font-size: 1.3333rem;
    letter-spacing: 1.6px;
    line-height: 2rem;
    margin-bottom: 3rem;
  }
  .contact .contactBtn.Btn2 {
    margin-top: 0;
    padding: 1rem 4rem;
    margin-bottom: 2rem;
  }
}
.flex-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flex-column.action0 {
  gap: 0px;
}

.column__case-date {
  padding: 0 1.5rem 0 0 !important;
}

.flex-column__case {
  gap: 5px;
  margin: 0 0 1rem 1rem;
}
@media screen and (max-width: 640px) {
  .flex-column__case {
    margin: 0.75rem 0;
    width: 100%;
  }
}

.caseCategory {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  color: #fff;
  border-radius: 10px;
  padding: 2px 5px;
  text-align: center;
}
.caseCategory.ozonaizer {
  background-color: #429355;
}
.caseCategory.awasher {
  background-color: #05428A;
}
.caseCategory.gomiser {
  background-color: #343231;
}/*# sourceMappingURL=style.css.map */