@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.dispPC {
  display: block;
}
@media screen and (max-width: 960px) {
  .dispPC {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .dispPC {
    display: none;
  }
}

.dispSP {
  display: none;
}
@media screen and (max-width: 960px) {
  .dispSP {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .dispSP {
    display: block;
  }
}

@media screen and (max-width: 960px) {
  .dispTBPC {
    display: none;
  }
}

/* ------------------------
html body基本設定
------------------------*/
html {
  width: 100%;
  height: 100%;
  font-size: 100%;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8em;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  word-break: normal;
  hanging-punctuation: last allow-end;
  min-height: 100vh;
  max-width: 100vw;
  width: 100vw;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  min-height: -webkit-fill-available;
  opacity: 1;
  transition: opacity 1.5s ease;
}

body.preload {
  opacity: 0;
}

header {
  background-color: rgba(255, 255, 255, 0.9);
  height: 93px;
  /*ヘッダーの高さ設定*/
  position: sticky;
  top: 0;
  z-index: 999;
}
@media screen and (max-width: 960px) {
  header {
    height: 50px;
    /*ヘッダーの高さ設定*/
  }
}
header .header {
  height: 100%;
  max-width: 1180px;
  /*コンテンツの幅*/
  margin: 0 auto;
  /*コンテンツの中央揃え*/
  padding: 0 40px;
  /*コンテンツの天地左右余白*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /*header-logoブロックとnavブロックを横並び*/
  align-items: center;
}
@media screen and (max-width: 1100px) {
  header .header {
    padding: 0 15px;
    /*コンテンツの左右余白*/
  }
}
header .header .header-logo {
  width: 245px;
  height: auto;
}
header .header .header-logo:hover {
  transition: 0.5s;
  opacity: 0.7;
}
@media screen and (max-width: 960px) {
  header .header .header-logo {
    width: 160px;
  }
  header .header .header-logo img {
    display: grid;
    place-items: center;
    width: 100%;
  }
}
header .header .header-logo a {
  display: block;
}
header .header .header-logo a img {
  margin: auto 0;
  max-width: 100%;
}
header .header .header-gnav.pcMenu {
  grid-area: gnav;
  justify-self: end;
}
@media screen and (max-width: 960px) {
  header .header .header-gnav.pcMenu {
    display: none;
  }
}
header .header .header-gnav.pcMenu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
header .header .header-gnav.pcMenu li {
  margin-right: 16px;
  font-weight: 400px;
}
header .header .header-gnav.pcMenu li:hover {
  transition: 0.5s;
  opacity: 0.7;
}
@media screen and (max-width: 1100px) {
  header .header .header-gnav.pcMenu li {
    margin-right: 12px;
  }
}
header .header .header-gnav.pcMenu li:nth-last-of-type(1) {
  margin-right: 0;
}
header .header .header-gnav.pcMenu li a {
  font-size: 1rem;
  font-weight: 400;
  padding-left: 8px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  header .header .header-gnav.pcMenu li a {
    font-size: 0.9375rem;
  }
}
header .header .header-gnav.pcMenu li a::before {
  content: "";
  width: 3px;
  height: 80%;
  background-color: #88c231;
  position: absolute;
  top: 4px;
  left: -3px;
}
header .header .nav-wrapper {
  display: none;
}
@media screen and (max-width: 960px) {
  header .header .nav-wrapper {
    display: block;
  }
  header .header .nav-wrapper .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10000;
    background-color: #88c231;
    color: #ffffff;
  }
  header .header .nav-wrapper .hamburger .hamburger_text {
    font-size: 0.8125rem;
    letter-spacing: 0.015em;
    text-align: center;
    line-height: 1em;
    margin-top: 30px;
  }
  header .header .nav-wrapper .hamburger .hamburger__line {
    position: absolute;
    width: 32px;
    height: 3px;
    border-radius: 3px;
    right: 9px;
    background-color: #ffffff;
    transition: all 0.5s;
  }
  header .header .nav-wrapper .hamburger .hamburger__line--1 {
    top: 5px;
  }
  header .header .nav-wrapper .hamburger .hamburger__line--2 {
    top: 15px;
  }
  header .header .nav-wrapper .hamburger .hamburger__line--3 {
    top: 25px;
  }
  header .header .nav-wrapper .hamburger.open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 15px;
  }
  header .header .nav-wrapper .hamburger.open .hamburger__line--2 {
    opacity: 0;
  }
  header .header .nav-wrapper .hamburger.open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 15px;
  }
  header .header .nav-wrapper .sp-nav {
    position: fixed;
    text-align: center;
    top: 50px;
    right: -100vw;
    height: 100vh;
    width: 50%;
    color: #ffffff;
    transition: all 0.5s;
    z-index: 1;
  }
  header .header .nav-wrapper .sp-nav.open {
    right: 0;
  }
  header .header .nav-wrapper .sp-nav ul {
    padding-top: 40px;
    height: 100vh;
    background-color: #88c231;
    position: relative;
    z-index: 1;
  }
  header .header .nav-wrapper .sp-nav ul li {
    font-size: 0.8125rem;
  }
  header .header .nav-wrapper .black-bg {
    top: 50px;
    left: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background-color: rgba(50, 46, 46, 0.9);
    transition: all 0.5s;
    cursor: pointer;
    visibility: hidden;
  }
}
header .header .nav-wrapper .open .black-bg {
  visibility: visible;
}

.btn-center {
  align-self: flex-start;
}
.btn-center .dog-button {
  display: inline-block;
  color: #000000;
  font-size: 1.4375rem;
  line-height: 1em;
  font-weight: 400;
  background-color: #ffffff;
  padding: 16px 50px 16px 60px;
  border: 3px solid #88c231;
  border-radius: 50px;
  position: relative;
  /*横に動かすクラス*/
}
@media screen and (max-width: 960px) {
  .btn-center .dog-button {
    font-size: 1.125rem;
    padding: 14px 44px 14px 54px;
  }
}
@media screen and (max-width: 768px) {
  .btn-center .dog-button {
    font-size: 0.8125rem;
    padding: 14px 40px 14px 44px;
  }
}
@media screen and (max-width: 520px) {
  .btn-center .dog-button {
    letter-spacing: 0.01em;
    border: 2px solid #88c231;
    padding: 10px 40px 10px 38px;
  }
}
.btn-center .dog-button::before {
  content: "";
  width: 46px;
  height: 46px;
  background-image: url("../images/btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 6px;
  left: 8px;
}
@media screen and (max-width: 960px) {
  .btn-center .dog-button::before {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 768px) {
  .btn-center .dog-button::before {
    width: 24px;
    height: 24px;
    top: 8px;
    left: 6px;
  }
}
@media screen and (max-width: 520px) {
  .btn-center .dog-button::before {
    top: 5px;
  }
}
.btn-center .dog-button .dog-img {
  position: absolute;
  right: -60px;
  bottom: 10px;
  width: auto;
  height: 54px;
  transition: transform 0.15s linear;
  /* スムーズに動く */
}
@media screen and (max-width: 960px) {
  .btn-center .dog-button .dog-img {
    right: -50px;
    height: 44px;
    top: -8px;
  }
}
@media screen and (max-width: 520px) {
  .btn-center .dog-button .dog-img {
    right: -40px;
    height: 38px;
  }
}
.btn-center .dog-button .dog-img.walking {
  transform: translateX(50px);
}

.mv {
  height: 610px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .mv {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    height: 350px;
  }
}
@media screen and (max-width: 520px) {
  .mv {
    height: 250px;
  }
}
@media screen and (max-width: 375px) {
  .mv {
    height: 195px;
  }
}
.mv .mv-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: flex;
  gap: 8px;
  padding-left: 20px;
  z-index: 10;
}
@media screen and (max-width: 520px) {
  .mv .mv-nav {
    bottom: 10px;
  }
}
.mv .mv-nav .mv-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cae19d;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
@media screen and (max-width: 768px) {
  .mv .mv-nav .mv-dot {
    width: 8px;
    height: 8px;
  }
}
@media screen and (max-width: 520px) {
  .mv .mv-nav .mv-dot {
    width: 7px;
    height: 7px;
  }
}
.mv .mv-nav .mv-dot.active {
  background: #88c231;
}
.mv .mv-img-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.mv .mv-img-wrap .img-change {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.mv .mv-img-wrap.active {
  opacity: 1;
}
.mv .mv-img-wrap.active img {
  width: 100%;
}
.mv .mv-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 2.5rem;
}

.intro {
  width: 100%;
  background-image: url("../images/intro-bg_PC.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .intro {
    height: auto;
  }
}
.intro .intro-inner {
  max-width: 1180px;
  padding: 40px 40px;
  height: 470px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .intro .intro-inner {
    padding: 40px 15px;
  }
}
@media screen and (max-width: 768px) {
  .intro .intro-inner {
    padding: 15px;
  }
}
.intro .intro-inner .intro-message {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: column;
}
.intro .intro-inner .intro-message .intro-copy {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.88em;
  letter-spacing: 0.2em;
  align-self: flex-start;
}
@media screen and (max-width: 960px) {
  .intro .intro-inner .intro-message .intro-copy {
    font-size: 1rem;
    line-height: 1.75em;
  }
}
@media screen and (max-width: 768px) {
  .intro .intro-inner .intro-message .intro-copy {
    font-size: 0.865625rem;
  }
}
.intro .intro-icon {
  width: 300px;
  position: absolute;
  bottom: 0;
  right: 40px;
}
@media screen and (max-width: 1100px) {
  .intro .intro-icon {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .intro .intro-icon {
    width: 100px;
    right: 10px;
  }
}
@media screen and (max-width: 375px) {
  .intro .intro-icon {
    right: 0;
  }
}
.intro .intro-icon img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 1100px) {
  .intro .intro-icon img {
    height: auto;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer .footer-inner {
  padding: 35px;
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .footer .footer-inner {
    padding: 24px 18px;
  }
}
.footer .footer-address h2 {
  max-width: 100%;
  margin-bottom: 12px;
  height: auto;
  width: 214px;
}
@media screen and (max-width: 520px) {
  .footer .footer-address h2 {
    width: 136px;
  }
}
.footer .footer-address h2 img {
  display: block;
  width: 100%;
}
.footer .footer-address address {
  text-decoration: none;
}
.footer .footer-address address p {
  font-size: 1rem;
  line-height: 1em;
  margin-bottom: 12px;
}
@media screen and (max-width: 520px) {
  .footer .footer-address address p {
    font-size: 0.75rem;
  }
}
.footer .footer-address address .contactAdress {
  display: flex;
}
.footer .footer-address address .contactAdress p,
.footer .footer-address address .contactAdress a {
  font-size: 1rem;
  line-height: 1em;
  text-decoration: none !important;
}
@media screen and (max-width: 520px) {
  .footer .footer-address address .contactAdress p,
  .footer .footer-address address .contactAdress a {
    font-size: 0.75rem;
  }
}
.footer .footer-address address .contactAdress p.fax,
.footer .footer-address address .contactAdress a.fax {
  padding-left: 1em;
}
.footer .footer-copyright {
  text-align: right;
}
.footer .footer-copyright small {
  display: block;
  font-size: 0.8125rem;
  line-height: 1em;
}
@media screen and (max-width: 520px) {
  .footer .footer-copyright small {
    font-size: 0.625rem;
  }
}

.footer.lowPageFooter {
  color: #ffffff;
  background-color: #88c231;
}

.ttl-level2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25em;
  padding-left: 24px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .ttl-level2 {
    font-size: 1.5rem;
  }
}
.ttl-level2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 7px;
  height: 100%;
  background: #88c231;
  border-radius: 3px;
}

.ttl-level2.color {
  color: #ffffff;
}
.ttl-level2.color::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 7px;
  height: 100%;
  background: #cae19d;
  border-radius: 3px;
}

.section-inner {
  max-width: 1180px;
  /*コンテンツの幅*/
  margin: 0 auto;
  /*コンテンツの中央揃え*/
  padding: 60px 40px;
  /*コンテンツの左右余白*/
}
@media screen and (max-width: 1100px) {
  .section-inner {
    padding: 60px 15px;
    /*コンテンツの左右余白*/
  }
}
@media screen and (max-width: 960px) {
  .section-inner {
    padding: 30px 15px;
    /*コンテンツの左右余白*/
  }
}

.works .section-contnts {
  max-width: 870px;
  margin: 0 auto;
  padding-top: 40px;
}
@media screen and (max-width: 960px) {
  .works .section-contnts {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 20px;
  }
}
.works .section-contnts h3 {
  font-size: 3.75rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55em;
  -moz-text-align-last: justify;
  text-align-last: justify;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .works .section-contnts h3 {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .works .section-contnts h3 {
    font-size: 2.0625rem;
  }
}
@media screen and (max-width: 520px) {
  .works .section-contnts h3 {
    font-size: 1.375rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 375px) {
  .works .section-contnts h3 {
    font-size: 1.25rem;
  }
}
.works .section-contnts h3 ruby {
  color: #88c231;
  margin-right: -10px;
}
.works .section-contnts h3 ruby rt {
  font-size: 1.375rem;
}
@media screen and (max-width: 960px) {
  .works .section-contnts h3 ruby rt {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .works .section-contnts h3 ruby rt {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 520px) {
  .works .section-contnts h3 ruby rt {
    font-size: 0.625rem;
  }
}
.works .works-contents-wrapper {
  position: relative;
  /*４つの事業*/
  /*円形の中／正直サービス事業*/
}
.works .works-contents-wrapper .works-items-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*２×２のグリッド*/
  grid-auto-rows: 320px;
  gap: 16px;
}
@media screen and (max-width: 960px) {
  .works .works-contents-wrapper .works-items-wrapper {
    grid-auto-rows: 280px;
  }
}
@media screen and (max-width: 768px) {
  .works .works-contents-wrapper .works-items-wrapper {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 520px) {
  .works .works-contents-wrapper .works-items-wrapper {
    grid-auto-rows: 200px;
    gap: 10px;
  }
}
@media screen and (max-width: 375px) {
  .works .works-contents-wrapper .works-items-wrapper {
    grid-auto-rows: 185px;
    gap: 10px;
  }
}
.works .works-contents-wrapper .works-items-wrapper a {
  position: relative;
}
.works .works-contents-wrapper .works-items-wrapper a:after {
  content: "";
  max-width: 100%;
  width: 100%;
  opacity: 0;
  height: 100%;
  background-color: rgb(255, 255, 255);
  position: absolute;
  transition: 0.3s;
}
.works .works-contents-wrapper .works-items-wrapper a:hover:after {
  opacity: 0.7;
}
.works .works-contents-wrapper .works-items-wrapper a.worksItem {
  font-size: 2.1875rem;
  font-weight: 600;
  color: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 960px) {
  .works .works-contents-wrapper .works-items-wrapper a.worksItem {
    font-size: 1.75rem;
  }
}
.works .works-contents-wrapper .works-items-wrapper a.worksItem .cap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  display: block;
}
.works .works-contents-wrapper .works-items-wrapper a.worksItem .cap::before {
  display: block;
  font-size: 1.25rem;
  line-height: 1em;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 960px) {
  .works .works-contents-wrapper .works-items-wrapper a.worksItem .cap::before {
    font-size: 1rem;
  }
}
.works
  .works-contents-wrapper
  .works-items-wrapper
  a.worksItem
  .cap.text01::before {
  content: "生活に欠かせない";
}
.works
  .works-contents-wrapper
  .works-items-wrapper
  a.worksItem
  .cap.text02::before {
  content: "安全を維持する";
}
.works
  .works-contents-wrapper
  .works-items-wrapper
  a.worksItem
  .cap.text03::before {
  content: "水の安心を支える";
}
.works
  .works-contents-wrapper
  .works-items-wrapper
  a.worksItem
  .cap.text04::before {
  content: "快適な住空間を創りだす";
}
.works .works-contents-wrapper .works-items-wrapper a.worksItem:nth-of-type(1) {
  background-image: url("../images/TopWorks01_bg.jpg");
  background-position: top;
}
.works .works-contents-wrapper .works-items-wrapper a.worksItem:nth-of-type(2) {
  background-image: url("../images/TopWorks02_bg.jpg");
  background-position: top;
}
.works .works-contents-wrapper .works-items-wrapper a.worksItem:nth-of-type(3) {
  background-image: url("../images/TopWorks03_bg.jpg");
  background-position: top;
}
.works .works-contents-wrapper .works-items-wrapper a.worksItem:nth-of-type(4) {
  background-image: url("../images/TopWorks04_bg.jpg");
  background-position: center;
}
.works .works-contents-wrapper .circle.dispPC {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #ffffff;
  padding: 40px 0;
}
.works .works-contents-wrapper .circle.dispPC .works-circle-image {
  width: 110px;
  margin-left: 60px;
  margin-bottom: 15px;
  position: relative;
}
.works .works-contents-wrapper .circle.dispPC .works-circle-image img {
  width: 100%;
}
.works .works-contents-wrapper .circle.dispPC .works-circle-image .wanwan {
  width: 53px;
  position: absolute;
  top: -10px;
  right: -60px;
}
.works
  .works-contents-wrapper
  .circle.dispPC
  .works-circle-image
  .wanwan.wanMark {
  opacity: 0;
}
.works .works-contents-wrapper .circle.dispPC .works-circle-copy {
  margin-top: 0px;
}
.works .works-contents-wrapper .circle.dispPC .works-circle-copy p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1em;
  text-align: center;
  margin-bottom: 10px;
}
.works .works-contents-wrapper .circle.dispPC .works-circle-copy h4 {
  font-size: 2.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.15em;
}
.works .works-contents-wrapper .circle.dispSP {
  position: static;
}
.works .works-contents-wrapper .circle.dispSP .works-circle-image {
  width: 100px;
  position: relative;
  margin: 0 auto;
  padding: 10px 0;
}
@media screen and (max-width: 520px) {
  .works .works-contents-wrapper .circle.dispSP .works-circle-image {
    width: 70px;
  }
}
@media screen and (max-width: 375px) {
  .works .works-contents-wrapper .circle.dispSP .works-circle-image {
    width: 52px;
  }
}
.works .works-contents-wrapper .circle.dispSP .works-circle-image img {
  width: 100%;
}
.works .works-contents-wrapper .circle.dispSP .works-circle-image .wanwan {
  width: 100px;
  position: absolute;
  top: 70px;
  right: -90px;
}
@media screen and (max-width: 520px) {
  .works .works-contents-wrapper .circle.dispSP .works-circle-image .wanwan {
    width: 70px;
    top: 60px;
    right: -70px;
  }
}
@media screen and (max-width: 375px) {
  .works .works-contents-wrapper .circle.dispSP .works-circle-image .wanwan {
    width: 50px;
    top: 50px;
    right: -50px;
  }
}
.works
  .works-contents-wrapper
  .circle.dispSP
  .works-circle-image
  .wanwan.wanMarkSP {
  opacity: 0;
}
.works .works-contents-wrapper .circle.dispSP .works-circle-copy {
  margin-top: 0px;
}
.works .works-contents-wrapper .circle.dispSP .works-circle-copy p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1em;
  text-align: center;
  margin-bottom: 10px;
}
.works .works-contents-wrapper .circle.dispSP .works-circle-copy h4 {
  font-size: 2.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.15em;
}
@media screen and (max-width: 375px) {
  .works .works-contents-wrapper .circle.dispSP .works-circle-copy h4 {
    font-size: 2rem;
  }
}
.works .worksSubCopy {
  margin: 40px 0;
  text-align: center;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .works .worksSubCopy {
    font-size: 1rem;
    margin: 28px 0 18px 0;
  }
}
@media screen and (max-width: 520px) {
  .works .worksSubCopy {
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
    margin: 28px 0 18px 0;
  }
}
@media screen and (max-width: 375px) {
  .works .worksSubCopy {
    letter-spacing: 0.01em;
  }
}
.works .alignCenter {
  text-align: center;
}

.data {
  background-color: #88c231;
  /*会社案内４つの項目*/
}
.data .section-contnts {
  max-width: 1020px;
  height: auto;
  margin: 0 auto;
  padding-top: 40px;
}
.data .data-items-wrapper {
  display: grid;
  grid-template-columns: 1.64fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .data .data-items-wrapper {
    display: block;
    padding: 0 12px;
  }
}
.data .data-items-wrapper .data-items {
  background-color: #ffffff;
  border-radius: 25px;
  padding: 20px 30px;
  text-align: center;
  display: grid;
  place-content: center;
  align-items: center;
}
.data .data-items-wrapper .data-items img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .data .data-items-wrapper .data-items {
    margin-bottom: 10px;
  }
}
.data .data-items-wrapper .data-items.data03 .data03-item-lyout {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .data .data-items-wrapper .data-items.data03 .data03-item-lyout {
    flex-direction: row;
    -moz-column-gap: 20px;
    column-gap: 20px;
    align-items: center;
  }
}
.data .data-items-wrapper .data-items.data03 .jinzai {
  height: 90px;
}
.data .data-items-wrapper .data-items.data03 .slot-wrap {
  height: 100px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 949px) {
  .data .data-items-wrapper .data-items.data03 .slot-wrap {
    font-size: 70px !important;
    height: 85px !important;
  }
}
@media screen and (max-width: 889px) {
  .data .data-items-wrapper .data-items.data03 .slot-wrap {
    max-width: 91%;
    font-size: 50px !important;
    height: 68px !important;
  }
}
@media screen and (max-width: 768px) {
  .data .data-items-wrapper .data-items.data03 .slot-wrap {
    max-width: 100%;
    font-size: 70px !important;
    height: 88px !important;
  }
}
@media screen and (max-width: 375px) {
  .data .data-items-wrapper .data-items.data03 .slot-wrap {
    max-width: 100%;
    font-size: 60px !important;
    height: 78px !important;
  }
}
.data .data-items-wrapper .data-items.data03 .slot-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  height: 14px;
  background-image: url(../images/date_line.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
  display: block;
  z-index: -1;
}
.data .data-items-wrapper .data-items.data03 .slot-wrap .slot-item {
  height: 100%;
}
.data .data-items-wrapper .data-items.data03 .slot-wrap .slot_percent {
  align-self: flex-end;
  font-size: 3rem;
  font-weight: 700;
  z-index: 2;
}
@media screen and (max-width: 889px) {
  .data .data-items-wrapper .data-items.data03 .slot-wrap .slot_percent {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .data .data-items-wrapper .data-items.data03 .slot-wrap .slot_percent {
    font-size: 2.625rem;
  }
}
.data .data-items-wrapper .data-items.data03 .nyuusya {
  height: 30px;
}
.data .data-items-wrapper .data-items.data02 .slot-wrap {
  height: 100px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  font-size: 5.625rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.data .data-items-wrapper .data-items.data02 .slot-wrap::after {
  content: "";
  position: absolute;
  bottom: 5px;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  height: 14px;
  background-image: url(../images/date_line.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
  display: block;
  z-index: -1;
}
.data .data-items-wrapper .data-items.data02 .slot-wrap .slot-item {
  height: 100%;
}
.data .data-items-wrapper .data-items.data02 .slot-wrap .slot_percent {
  align-self: flex-end;
  font-size: 3.25rem;
  font-weight: 700;
  z-index: 2;
}
.data .data-items-wrapper .data-items.data04 .colWrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 10px;
}
.data .data-items-wrapper .data-items.data04 .colWrapper .title-wrap {
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 949px) {
  .data .data-items-wrapper .data-items.data04 .colWrapper .title-wrap {
    max-width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .data .data-items-wrapper .data-items.data04 .colWrapper .title-wrap {
    max-width: 100px;
  }
}
.data .data-items-wrapper .data-items.data04 .colWrapper .slot-wrap {
  max-width: calc(100% - 180px);
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 949px) {
  .data .data-items-wrapper .data-items.data04 .colWrapper .slot-wrap {
    max-width: calc(100% - 140px);
    font-size: 50px !important;
    height: 60px !important;
  }
}
@media screen and (max-width: 768px) {
  .data .data-items-wrapper .data-items.data04 .colWrapper .slot-wrap {
    max-width: calc(100% - 100px);
    font-size: 70px !important;
    height: 80px !important;
  }
}
@media screen and (max-width: 375px) {
  .data .data-items-wrapper .data-items.data04 .colWrapper .slot-wrap {
    max-width: calc(100% - 100px);
    font-size: 60px !important;
    height: 70px !important;
  }
}
.data .data-items-wrapper .data-items.data04 .slot-wrap {
  height: 94px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  font-size: 5.25rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .data .data-items-wrapper .data-items.data04 .slot-wrap {
    font-size: 4.625rem;
  }
}
.data .data-items-wrapper .data-items.data04 .slot-wrap::after {
  content: "";
  position: absolute;
  bottom: 5px;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  height: 14px;
  background-image: url(../images/date_line.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
  display: block;
  z-index: -1;
}
.data .data-items-wrapper .data-items.data04 .slot-wrap .slot-item {
  height: 100%;
}
.data .data-items-wrapper .data-items.data04 .slot-wrap .slot_percent {
  align-self: flex-end;
  font-size: 2.5rem;
  font-weight: 700;
  z-index: 2;
}
.data .data-items-wrapper .data-items.data07 .ikukyuWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.data .data-items-wrapper .data-items.data07 .ikukyuWrapper .titleBox {
  max-width: 30%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .data .data-items-wrapper .data-items.data07 .ikukyuWrapper .titleBox {
    max-width: 20%;
  }
}
.data .data-items-wrapper .data-items.data07 .ikukyuWrapper .slotBox {
  max-width: 70%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .data .data-items-wrapper .data-items.data07 .ikukyuWrapper .slotBox {
    max-width: 80%;
  }
}
.data
  .data-items-wrapper
  .data-items.data07
  .ikukyuWrapper
  .slotBox
  .ikukyuDataBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.data
  .data-items-wrapper
  .data-items.data07
  .ikukyuWrapper
  .slotBox
  .ikukyuDataBox
  .genderTitle {
  max-width: 30%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .data
    .data-items-wrapper
    .data-items.data07
    .ikukyuWrapper
    .slotBox
    .ikukyuDataBox
    .genderTitle {
    max-width: 20%;
  }
}
.data
  .data-items-wrapper
  .data-items.data07
  .ikukyuWrapper
  .slotBox
  .ikukyuDataBox
  .slot-wrap {
  max-width: 70%;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .data
    .data-items-wrapper
    .data-items.data07
    .ikukyuWrapper
    .slotBox
    .ikukyuDataBox
    .slot-wrap {
    max-width: 80%;
    font-size: 68px !important;
    height: 80px !important;
  }
}
@media screen and (max-width: 768px) {
  .data
    .data-items-wrapper
    .data-items.data07
    .ikukyuWrapper
    .slotBox
    .ikukyuDataBox
    .slot-wrap {
    max-width: 80%;
    font-size: 66px !important;
    height: 75px !important;
  }
}
@media screen and (max-width: 375px) {
  .data
    .data-items-wrapper
    .data-items.data07
    .ikukyuWrapper
    .slotBox
    .ikukyuDataBox
    .slot-wrap {
    max-width: 80%;
    font-size: 60px !important;
    height: 70px !important;
  }
}
.data .data-items-wrapper .data-items.data07 .slot-wrap {
  height: 104px;
  padding-bottom: 10px;
  display: flex;
  justify-content: flex-end;
  font-size: 5.875rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .data .data-items-wrapper .data-items.data07 .slot-wrap {
    font-size: 4.875rem;
  }
}
.data .data-items-wrapper .data-items.data07 .slot-wrap::after {
  content: "";
  position: absolute;
  bottom: 5px;
  z-index: 1;
  max-width: 100%;
  width: 100%;
  height: 14px;
  background-image: url(../images/date_line.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
  display: block;
  z-index: -1;
}
.data .data-items-wrapper .data-items.data07 .slot-wrap .slot-item {
  height: 100%;
}
.data .data-items-wrapper .data-items.data07 .slot-wrap .slot_percent {
  align-self: flex-end;
  font-size: 2.5rem;
  font-weight: 700;
  z-index: 2;
}
.data .data-items-wrapper .data-items.box-big1 {
  grid-column: 2/4;
  grid-row: 2/4;
}
.data .data-items-wrapper .data-items.box-big2 {
  grid-row: 3/5;
}
.data .data-items-wrapper .data-items.box-big3 {
  grid-column: 2/4;
}

.interview .section-contnts {
  max-width: 1020px;
  margin: 0 auto;
  padding-top: 40px;
}
@media screen and (max-width: 960px) {
  .interview .section-contnts {
    padding-top: 30px;
  }
}
.interview .interview-items-wrapper {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 60px;
  column-gap: 60px;
  row-gap: 60px;
}
@media screen and (max-width: 960px) {
  .interview .interview-items-wrapper {
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .interview .interview-items-wrapper {
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
@media screen and (max-width: 375px) {
  .interview .interview-items-wrapper {
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
.interview .interview-items-wrapper .interview-items {
  max-width: 240px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .interview .interview-items-wrapper .interview-items {
    max-width: 180px;
  }
}
@media screen and (max-width: 520px) {
  .interview .interview-items-wrapper .interview-items {
    max-width: 160px;
  }
}
.interview .interview-items-wrapper .interview-items .interview-year {
  position: absolute;
  width: 84px;
  height: 84px;
  top: 0;
  left: -28px;
}
.interview .interview-items-wrapper .interview-items .interview-year img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .interview .interview-items-wrapper .interview-items .interview-year {
    width: 60px;
    height: 60px;
    top: 0;
    left: 130px;
  }
}
@media screen and (max-width: 520px) {
  .interview .interview-items-wrapper .interview-items .interview-year {
    width: 44px;
    height: 44px;
    top: 0;
    left: 120px;
  }
}
.interview .interview-items-wrapper .interview-items .interview-person-img {
  width: 100%;
  margin-bottom: 10px;
}
.interview .interview-items-wrapper .interview-items .interview-person-img img {
  width: 100%;
}
.interview .interview-items-wrapper .interview-items .interview-person-img {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .interview .interview-items-wrapper .interview-items .interview-person-img {
    max-width: 180px;
  }
}
@media screen and (max-width: 520px) {
  .interview .interview-items-wrapper .interview-items .interview-person-img {
    max-width: 160px;
  }
}
.interview
  .interview-items-wrapper
  .interview-items
  .interview-person-img.iida {
  background-image: url("../images/interview01_A.png");
  background-size: cover;
  aspect-ratio: 4/9;
}
.interview
  .interview-items-wrapper
  .interview-items
  .interview-person-img.iida:hover {
  background-image: url("../images/interview01_B.png");
}
.interview
  .interview-items-wrapper
  .interview-items
  .interview-person-img.koyama {
  background-image: url("../images/interview02_A.png");
  background-size: cover;
  aspect-ratio: 4/9;
}
.interview
  .interview-items-wrapper
  .interview-items
  .interview-person-img.koyama:hover {
  background-image: url("../images/interview02_B.png");
}
.interview
  .interview-items-wrapper
  .interview-items
  .interview-person-img.oyadomari {
  background-image: url("../images/interview03_A.png");
  background-size: cover;
  aspect-ratio: 4/9;
}
.interview
  .interview-items-wrapper
  .interview-items
  .interview-person-img.oyadomari:hover {
  background-image: url("../images/interview03_B.png");
}
.interview
  .interview-items-wrapper
  .interview-items
  .interview-person-img.nagata {
  background-image: url("../images/interview04_A.png");
  background-size: cover;
  aspect-ratio: 4/9;
}
.interview
  .interview-items-wrapper
  .interview-items
  .interview-person-img.nagata:hover {
  background-image: url("../images/interview04_B.png");
}
.interview
  .interview-items-wrapper
  .interview-items
  .interview-person-img.minowa {
  background-image: url("../images/interview05_A.png");
  background-size: cover;
  aspect-ratio: 4/9;
}
.interview
  .interview-items-wrapper
  .interview-items
  .interview-person-img.minowa:hover {
  background-image: url("../images/interview05_B.png");
}
.interview .interview-items-wrapper .interview-person-data {
  margin: 0 auto;
  width: 80%;
  text-align: center;
  border-top: 3px solid #88c231;
  border-bottom: 3px solid #88c231;
}
.interview .interview-items-wrapper .interview-person-data.BlueBold {
  border-top: 3px solid #2ea6df;
  border-bottom: 3px solid #2ea6df;
}
.interview .interview-items-wrapper .interview-person-data.OrangeBold {
  border-top: 3px solid #ffaa00;
  border-bottom: 3px solid #ffaa00;
}
.interview .interview-items-wrapper .interview-person-data h4 {
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 768px) {
  .interview .interview-items-wrapper .interview-person-data h4 {
    font-size: 1.25rem;
  }
}
.interview .interview-items-wrapper .interview-person-data .top-bottom-Line {
  border-top: 1px solid #88c231;
  border-bottom: 1px solid #88c231;
}
.interview
  .interview-items-wrapper
  .interview-person-data
  .top-bottom-Line.BlueThin {
  border-top: 1px solid #2ea6df;
  border-bottom: 1px solid #2ea6df;
}
.interview
  .interview-items-wrapper
  .interview-person-data
  .top-bottom-Line.OrangeThin {
  border-top: 1px solid #ffaa00;
  border-bottom: 1px solid #ffaa00;
}
.interview .interview-items-wrapper .interview-person-data p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25em;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  .interview .interview-items-wrapper .interview-person-data p {
    font-size: 0.875rem;
    padding: 4px 0;
  }
}

.sustainable {
  background-image: url("../../assets/images/sustainable_bg.svg");

  background-repeat: no-repeat;
  background-size: cover;
}
.sustainable .section-contnts {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 25px;
}
@media screen and (max-width: 1100px) {
  .sustainable .section-contnts {
    padding-left: 20px;
    padding-right: 20px;
    /*コンテンツの左右余白*/
  }
}
@media screen and (max-width: 960px) {
  .sustainable .section-contnts {
    padding: 20px;
    /*コンテンツの天地左右余白*/
  }
}
.sustainable .section-contnts .susta-items-wrapper {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 960px) {
  .sustainable .section-contnts .susta-items-wrapper {
    margin-top: 15px;
  }
}
.sustainable .section-contnts .susta-items-wrapper .susta-image {
  max-width: 40%;
}
@media screen and (max-width: 768px) {
  .sustainable .section-contnts .susta-items-wrapper .susta-image {
    max-width: 49%;
  }
}
.sustainable
  .section-contnts
  .susta-items-wrapper
  .susta-image
  .susta-image-img
  img {
  width: 100%;
}
.sustainable .section-contnts .susta-items-wrapper .susta-outline {
  max-width: 56%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sustainable .section-contnts .susta-items-wrapper .susta-outline {
    padding-top: 28px;
    max-width: 47%;
  }
}
.sustainable
  .section-contnts
  .susta-items-wrapper
  .susta-outline
  .outline_upper
  .sastainable-logo {
  margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
  .sustainable
    .section-contnts
    .susta-items-wrapper
    .susta-outline
    .outline_upper
    .sastainable-logo {
    margin-bottom: 30px;
  }
}
.sustainable
  .section-contnts
  .susta-items-wrapper
  .susta-outline
  .outline_upper
  .sastainable-logo
  img {
  width: 100%;
}
.sustainable
  .section-contnts
  .susta-items-wrapper
  .susta-outline
  .outline_upper
  .susta-outline-text {
  margin-bottom: 40px;
  font-size: 1.5625rem;
}
@media screen and (max-width: 1100px) {
  .sustainable
    .section-contnts
    .susta-items-wrapper
    .susta-outline
    .outline_upper
    .susta-outline-text {
    margin-bottom: 20px;
    font-size: 1.375rem;
    line-height: 1.5em;
  }
}
.sustainable
  .section-contnts
  .susta-items-wrapper
  .susta-outline
  .outline_bottom {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.sustainable
  .section-contnts
  .susta-items-wrapper
  .susta-outline
  .outline_bottom
  img {
  width: 100%;
}
.sustainable .section-contnts .susta-items-wrapper .susta-outline-text.dispSP {
  padding-top: 12px;
  padding-bottom: 15px;
}
.sustainable
  .section-contnts
  .susta-items-wrapper
  .susta-outline-text.dispSP
  p {
  font-size: 1.25rem;
  line-height: 1.5em;
}
@media screen and (max-width: 520px) {
  .sustainable
    .section-contnts
    .susta-items-wrapper
    .susta-outline-text.dispSP
    p {
    font-size: 0.875rem;
  }
}
.sustainable .section-contnts .susta-items-wrapper .susta-link-btn.dispSP {
  margin: 0 auto;
}

.about {
  /*会社案内４つの項目*/
}
.about .section-contnts {
  max-width: 1020px;
  margin: 0 auto;
  padding-top: 40px;
}
@media screen and (max-width: 1100px) {
  .about .section-contnts {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media screen and (max-width: 960px) {
  .about .section-contnts {
    padding-top: 15px;
  }
}
.about .about-items-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*２×２のグリッド*/
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .about .about-items-wrapper {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about .about-items-wrapper {
    grid-template-columns: 1fr;
  }
}
.about .about-items-wrapper .about-items .about-item-img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.about .about-items-wrapper .about-items .about-item-img img {
  max-width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}
.about .about-items-wrapper .about-items:hover .about-item-img img {
  transform: scale(1.1);
}
.about .about-items-wrapper .about-items .about-item-title {
  font-size: 2rem;
  font-weight: 500;
  border-radius: 0 0 20px 20px;
  color: #ffffff;
  background-color: #88c231;
  line-height: 1em;
  padding: 16px 14px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .about-items-wrapper .about-items .about-item-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 520px) {
  .about .about-items-wrapper .about-items .about-item-title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 375px) {
  .about .about-items-wrapper .about-items .about-item-title {
    font-size: 1rem;
  }
}
.about .about-items-wrapper .about-items .about-item-title::after {
  content: "";
  background-image: url("../images/about-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 12px;
}
@media screen and (max-width: 768px) {
  .about .about-items-wrapper .about-items .about-item-title::after {
    top: 10px;
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 375px) {
  .about .about-items-wrapper .about-items .about-item-title::after {
    width: 20px;
    height: 20px;
  }
}

.recruit-step {
  background-color: #e5e5e5;
}
.recruit-step .section-contnts {
  max-width: 1020px;
  margin: 0 auto;
  padding-top: 40px;
}
@media screen and (max-width: 960px) {
  .recruit-step .section-contnts {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-step .section-contnts {
    padding-top: 20px;
  }
}
.recruit-step .step-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px;
  height: 96px;
  text-align: left;
  position: relative;
  margin-bottom: 10px;
}
.recruit-step .step-items:nth-last-of-type(1) {
  margin-bottom: 0;
}
.recruit-step .step-items .STEP {
  position: absolute;
  right: 1%;
  bottom: 0;
}
.recruit-step .step-items .step-item-img {
  background-color: #88c231;
  padding: 8px;
  width: 120px;
  height: 100%;
  border-radius: 12px 0 0 12px;
  display: grid;
  place-items: center;
}
.recruit-step .step-items .step-item-img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recruit-step .step-items .step-item-img {
    width: 20%;
  }
}
.recruit-step .step-items .step-item-title {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  display: block;
  width: 182px;
  height: 100%;
  padding: 8px 0;
  display: grid;
  place-items: center;
}
.recruit-step .step-items .step-item-title .change-color {
  color: #88c231;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .recruit-step .step-items .step-item-title .change-color {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 520px) {
  .recruit-step .step-items .step-item-title .change-color {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-step .step-items .step-item-title {
    width: 21%;
    font-size: 1.125rem;
    line-height: 1.35em;
  }
}
@media screen and (max-width: 520px) {
  .recruit-step .step-items .step-item-title {
    font-size: 0.865625rem;
  }
}
.recruit-step .step-items .step-item-text.spacing {
  letter-spacing: 0.01em;
}
.recruit-step .step-items .step-item-text {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.25em;
  height: 80%;
  padding-left: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 24px;
  width: calc(100% - 182px - 120px);
  border-left: 3px solid #88c231;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .recruit-step .step-items .step-item-text {
    width: 59%;
    font-size: 1.125rem;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 520px) {
  .recruit-step .step-items .step-item-text {
    font-size: 0.865625rem;
    line-height: 1.35em;
    padding-left: 16px;
  }
}
.recruit-step .step-items .step-item-text .STEP {
  position: absolute;
  right: 3%;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .recruit-step .step-items .step-item-text .STEP {
    width: 60px;
  }
}

.lowPage_ly {
  padding: 88px 0;
}
@media screen and (max-width: 520px) {
  .lowPage_ly {
    padding: 30px 0;
  }
}

.lowPage_section-inner {
  max-width: 1100px;
  /*コンテンツの幅*/
  margin: 0 auto;
  /*コンテンツの中央揃え*/
  padding: 0 40px;
  /*コンテンツの左右余白*/
}
@media screen and (max-width: 520px) {
  .lowPage_section-inner {
    padding: 0 24px;
  }
}

.lowPage_section-inner_ADD {
  padding: 0 70px;
}
@media screen and (max-width: 768px) {
  .lowPage_section-inner_ADD {
    padding: 0 35px;
  }
}
@media screen and (max-width: 520px) {
  .lowPage_section-inner_ADD {
    padding: 0 10px;
  }
}

.lowPage_ttl {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 520px) {
  .lowPage_ttl {
    margin-bottom: 30px;
  }
}
.lowPage_ttl h2 {
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.01em;
  padding: 10px 0;
  display: inline-block;
  width: 246px;
  border: 3px solid #88c231;
  border-radius: 24px;
}
@media screen and (max-width: 520px) {
  .lowPage_ttl h2 {
    font-size: 0.9375rem;
    width: 152px;
    padding: 6px 0;
    border: 2px solid #88c231;
  }
}
.lowPage_ttl .interviewBlue {
  border: 3px solid #2ea6df;
  width: 246px;
  padding-right: 24px;
}
@media screen and (max-width: 520px) {
  .lowPage_ttl .interviewBlue {
    border: 2px solid #2ea6df;
    width: 160px;
    padding-left: 8px;
  }
}
.lowPage_ttl .interviewOrange {
  border: 3px solid #ffaa00;
  width: 246px;
  padding-right: 24px;
}
@media screen and (max-width: 520px) {
  .lowPage_ttl .interviewOrange {
    border: 2px solid #ffaa00;
    width: 160px;
    padding-left: 8px;
  }
}
.lowPage_ttl .interviewGreen {
  border: 3px solid #88c231;
  width: 246px;
  padding-right: 24px;
}
@media screen and (max-width: 520px) {
  .lowPage_ttl .interviewGreen {
    border: 2px solid #88c231;
    width: 160px;
    padding-left: 8px;
  }
}
.lowPage_ttl .interviewBlue.iida {
  position: relative;
}
.lowPage_ttl .interviewBlue.iida::after {
  content: url("");
  background-image: url("../images/InterviewPage_ttlNo-1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
}
@media screen and (max-width: 520px) {
  .lowPage_ttl .interviewBlue.iida::after {
    top: 6px;
    width: 16px;
    height: 16px;
  }
}
.lowPage_ttl .interviewOrange.koyama {
  position: relative;
}
.lowPage_ttl .interviewOrange.koyama::after {
  content: url("");
  background-image: url("../images/InterviewPage_ttlNo-2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
}
@media screen and (max-width: 520px) {
  .lowPage_ttl .interviewOrange.koyama::after {
    top: 6px;
    width: 16px;
    height: 16px;
  }
}
.lowPage_ttl .interviewGreen.oyamadori {
  position: relative;
}
.lowPage_ttl .interviewGreen.oyamadori::after {
  content: url("");
  background-image: url("../images/InterviewPage_ttlNo-3.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
}
@media screen and (max-width: 520px) {
  .lowPage_ttl .interviewGreen.oyamadori::after {
    top: 6px;
    width: 16px;
    height: 16px;
  }
}
.lowPage_ttl .interviewBlue.nagata {
  position: relative;
}
.lowPage_ttl .interviewBlue.nagata::after {
  content: url("");
  background-image: url("../images/InterviewPage_ttlNo-4.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
}
@media screen and (max-width: 520px) {
  .lowPage_ttl .interviewBlue.nagata::after {
    top: 6px;
    width: 16px;
    height: 16px;
  }
}
.lowPage_ttl .interviewGreen.minowa {
  position: relative;
}
.lowPage_ttl .interviewGreen.minowa::after {
  content: url("");
  background-image: url("../images/InterviewPage_ttlNo-5.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
}
@media screen and (max-width: 520px) {
  .lowPage_ttl .interviewGreen.minowa::after {
    top: 6px;
    width: 16px;
    height: 16px;
  }
}

#aboutPage .about-content-wrap {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #aboutPage .about-content-wrap {
    margin-bottom: 40px;
  }
}
#aboutPage dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
}
#aboutPage dt {
  background-color: #d6e8b5;
  width: 30%;
  font-size: 1.375rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1.7em;
  padding: 10px 16px;
  vertical-align: middle;
  border-top: 0.8px solid #000000;
}
#aboutPage dt:nth-last-of-type(1) {
  border-bottom: 0.8px solid #000000;
}
@media screen and (max-width: 768px) {
  #aboutPage dt {
    font-size: 1rem;
  }
}
#aboutPage dd {
  width: 70%;
  font-size: 1.375rem;
  letter-spacing: 0.01em;
  font-weight: 300;
  line-height: 1.7em;
  padding: 10px 16px;
  vertical-align: middle;
  border-top: 0.8px solid #000000;
}
#aboutPage dd:nth-last-of-type(1) {
  border-bottom: 0.8px solid #000000;
}
@media screen and (max-width: 768px) {
  #aboutPage dd {
    font-size: 1rem;
  }
}
#aboutPage .jigyou {
  position: relative;
}
#aboutPage .jigyou .aboutPageLkun {
  position: absolute;
  bottom: 0;
  right: 33px;
  width: 88px;
}
@media screen and (max-width: 768px) {
  #aboutPage .jigyou .aboutPageLkun {
    display: none;
  }
}
#aboutPage .jigyou .aboutPageLkun img {
  width: 100%;
}
#aboutPage h3 {
  font-size: 2.1875rem;
  font-weight: 500;
  line-height: 1em;
  margin-bottom: 28px;
}
#aboutPage .about-office {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.525fr 1fr 1.125fr;
  grid-template-rows: 520px 268px;
}
@media screen and (max-width: 960px) {
  #aboutPage .about-office {
    grid-template-columns: 1fr 0.75fr 1.25fr;
    grid-template-rows: 488px 370px auto;
  }
  #aboutPage .about-office .box-big-sp1 {
    grid-column: 1/3;
  }
  #aboutPage .about-office .box-big-sp2 {
    grid-column: 3/4;
  }
  #aboutPage .about-office .box-big-sp3 {
    grid-column: 1/4;
  }
}
@media screen and (max-width: 768px) {
  #aboutPage .about-office {
    grid-template-rows: auto;
    gap: 10px;
  }
}
@media screen and (max-width: 520px) {
  #aboutPage .about-office {
    grid-template-rows: auto;
  }
}
#aboutPage .about-office .officeImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#aboutPage .about-office .box-big {
  grid-column: 1/4;
}
#aboutPage .about-office .officeInfo {
  font-size: 1.3125rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 1.5em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  #aboutPage .about-office .officeInfo {
    font-size: 0.865625rem;
  }
}
#aboutPage .about-office .officeInfo address {
  align-self: flex-start;
}
#aboutPage .about-office .officeInfo .bissinessHours {
  align-self: flex-start;
}

#messagePage .message-content-wrap .message-MV {
  margin-bottom: 12px;
}
#messagePage .message-content-wrap .message-MV img {
  width: 100%;
}
#messagePage p {
  font-weight: 300;
  font-size: 1.375rem;
  letter-spacing: 0.01em;
  line-height: 1.7em;
}
@media screen and (max-width: 768px) {
  #messagePage p {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 520px) {
  #messagePage p {
    font-size: 0.865625rem;
  }
}
#messagePage .message-irregularity-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 960px) {
  #messagePage .message-irregularity-wrap {
    display: none;
  }
}
#messagePage .message-irregularity-wrap .MS_text-wrap {
  width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#messagePage .message-irregularity-wrap .MS_text-wrap .president_Sign {
  display: inline-block;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#messagePage
  .message-irregularity-wrap
  .MS_text-wrap
  .president_Sign
  .company-name {
  width: 200px;
  font-size: 1.125rem;
  line-height: 1.5em;
  margin-bottom: 12px;
}
#messagePage
  .message-irregularity-wrap
  .MS_text-wrap
  .president_Sign
  .president-name {
  width: 200px;
}
#messagePage
  .message-irregularity-wrap
  .MS_text-wrap
  .president_Sign
  .president-name
  img {
  width: 100%;
}
#messagePage .message-irregularity-wrap .MS_img-wrap {
  width: 38%;
}
#messagePage .message-irregularity-wrap .MS_img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#messagePage .message-irregularity-wrap--SPlyout {
  display: none;
}
@media screen and (max-width: 960px) {
  #messagePage .message-irregularity-wrap--SPlyout {
    display: block;
  }
  #messagePage .message-irregularity-wrap--SPlyout .MSirregularity-SP02 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    align-items: stretch;
  }
  #messagePage
    .message-irregularity-wrap--SPlyout
    .MSirregularity-SP02
    .MSirregularity-SP02___left {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #messagePage
    .message-irregularity-wrap--SPlyout
    .MSirregularity-SP02
    .MSirregularity-SP02___left
    .irregularity-SP02-itemText {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 960px) and (max-width: 520px) {
  #messagePage
    .message-irregularity-wrap--SPlyout
    .MSirregularity-SP02
    .MSirregularity-SP02___left
    .irregularity-SP02-itemText {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 960px) {
  #messagePage
    .message-irregularity-wrap--SPlyout
    .MSirregularity-SP02
    .MSirregularity-SP02___left
    .irregularity-SP02-itemPresidentSign {
    align-self: end;
  }
  #messagePage
    .message-irregularity-wrap--SPlyout
    .MSirregularity-SP02
    .MSirregularity-SP02___left
    .irregularity-SP02-itemPresidentSign
    .company-name {
    margin-bottom: 16px;
    line-height: 1.25em;
  }
}
@media screen and (max-width: 960px) and (max-width: 520px) {
  #messagePage
    .message-irregularity-wrap--SPlyout
    .MSirregularity-SP02
    .MSirregularity-SP02___left
    .irregularity-SP02-itemPresidentSign
    .company-name {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 960px) {
  #messagePage
    .message-irregularity-wrap--SPlyout
    .MSirregularity-SP02
    .MSirregularity-SP02___left
    .irregularity-SP02-itemPresidentSign
    .president-name {
    max-width: 200px;
  }
}
@media screen and (max-width: 960px) and (max-width: 520px) {
  #messagePage
    .message-irregularity-wrap--SPlyout
    .MSirregularity-SP02
    .MSirregularity-SP02___left
    .irregularity-SP02-itemPresidentSign
    .president-name {
    max-width: 150px;
  }
}
@media screen and (max-width: 960px) {
  #messagePage
    .message-irregularity-wrap--SPlyout
    .MSirregularity-SP02
    .MSirregularity-SP02___left
    .irregularity-SP02-itemPresidentSign
    .president-name
    img {
    width: 100%;
  }
  #messagePage
    .message-irregularity-wrap--SPlyout
    .MSirregularity-SP02
    .MSirregularity-SP02___right {
    width: 40%;
  }
  #messagePage
    .message-irregularity-wrap--SPlyout
    .MSirregularity-SP02
    .MSirregularity-SP02___right
    img {
    width: 100%;
  }
}

#groupCompanyPage .groupCompany-content-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  #groupCompanyPage .groupCompany-content-wrap {
    row-gap: 20px;
    height: auto;
    align-items: center;
  }
}
#groupCompanyPage .groupCompany-content-wrap .groupCompany-img.bottom {
  margin-bottom: 28px;
}
#groupCompanyPage .groupCompany-content-wrap .groupCompany-01,
#groupCompanyPage .groupCompany-content-wrap .groupCompany-02 {
  width: 48%;
  padding: 0 0 30px 0;
  border: 1px solid #000000;
  transition: 0.5s;
}
#groupCompanyPage .groupCompany-content-wrap .groupCompany-01:hover,
#groupCompanyPage .groupCompany-content-wrap .groupCompany-02:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  #groupCompanyPage .groupCompany-content-wrap .groupCompany-01,
  #groupCompanyPage .groupCompany-content-wrap .groupCompany-02 {
    width: 100%;
  }
}
#groupCompanyPage .groupCompany-content-wrap .groupCompany-img img {
  width: 100%;
}
#groupCompanyPage .groupCompany-content-wrap .groupCompany-text p {
  text-align: center;
  font-weight: 300;
  font-size: 1.1875rem;
  letter-spacing: 0.01em;
  line-height: 1.7em;
}
@media screen and (max-width: 520px) {
  #groupCompanyPage .groupCompany-content-wrap .groupCompany-text p {
    font-size: 0.8125rem;
  }
}

@media screen and (max-width: 768px) {
  #sdgs .sdgs-content-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}
#sdgs .sdgs-content-wrap .sdgs-text-wrap {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #sdgs .sdgs-content-wrap .sdgs-text-wrap {
    margin-bottom: 0;
  }
}
#sdgs .sdgs-content-wrap .sdgs-text-wrap h3 {
  font-size: 2.1875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #88c231;
  line-height: 1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 520px) {
  #sdgs .sdgs-content-wrap .sdgs-text-wrap h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
#sdgs .sdgs-content-wrap .sdgs-text-wrap .sdgs-text {
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.7em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 520px) {
  #sdgs .sdgs-content-wrap .sdgs-text-wrap .sdgs-text {
    font-size: 0.865625rem;
  }
}
#sdgs .sdgs-content-wrap .sdgs-img-wrap {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #sdgs .sdgs-content-wrap .sdgs-img-wrap {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 520px) {
  #sdgs .sdgs-content-wrap .sdgs-img-wrap {
    gap: 10px;
  }
}
#sdgs .sdgs-content-wrap .sdgs-img-wrap .bigBox {
  grid-column: 1/3;
}
#sdgs .sdgs-content-wrap .sdgs-img-wrap .sdgs-img img {
  width: 100%;
}
#sdgs .sdgs-content-wrap.bottom {
  margin-bottom: 80px;
}
@media screen and (max-width: 520px) {
  #sdgs .sdgs-content-wrap.bottom {
    margin-bottom: 30px;
  }
}

#benefitPage .benefit-content-wrap .benefit-item-wrap img {
  width: 100%;
}

#worksPage .worksItemWrapper {
  margin-bottom: 60px;
  font-size: 1.375rem;
  line-height: 1.7em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 960px) {
  #worksPage .worksItemWrapper {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  #worksPage .worksItemWrapper {
    font-size: 0.865625rem;
    margin-bottom: 30px;
  }
}
#worksPage .worksItemWrapper .worksItemBox {
  overflow: hidden;
  aspect-ratio: 880/444;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #worksPage .worksItemWrapper .worksItemBox {
    margin-bottom: 10px;
  }
}
#worksPage .worksItemWrapper .worksItemBox .worksSlideBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
}
#worksPage .worksItemWrapper .worksItemBox .worksSlideBg:before {
  content: "";
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
}
#worksPage .worksItemWrapper .worksItemBox.green {
  background-image: url(../images/worksPage_01_LpGas.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}
#worksPage .worksItemWrapper .worksItemBox.green .worksSlideBg:before {
  background-color: #88c231;
}
#worksPage .worksItemWrapper .worksItemBox.green .worksItemTxt {
  width: 30%;
  max-width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/worksPage_secName01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#worksPage .worksItemWrapper .worksItemBox.red {
  background-image: url(../images/worksPage_02_GasSafety.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}
#worksPage .worksItemWrapper .worksItemBox.red .worksSlideBg:before {
  background-color: #ec6d7b;
}
#worksPage .worksItemWrapper .worksItemBox.red .worksItemTxt {
  width: 30%;
  max-width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/worksPage_secName02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#worksPage .worksItemWrapper .worksItemBox.blue {
  background-image: url(../images/worksPage_03_plumbling.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}
#worksPage .worksItemWrapper .worksItemBox.blue .worksSlideBg:before {
  background-color: #30a6df;
}
#worksPage .worksItemWrapper .worksItemBox.blue .worksItemTxt {
  width: 30%;
  max-width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/worksPage_secName03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#worksPage .worksItemWrapper .worksItemBox.orange {
  background-image: url(../images/worksPage_04_reform.jpg);
  background-repeat: no-repeat;
  background-size: contain;
}
#worksPage .worksItemWrapper .worksItemBox.orange .worksSlideBg:before {
  background-color: #f0831e;
}
#worksPage .worksItemWrapper .worksItemBox.orange .worksItemTxt {
  width: 30%;
  max-width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/worksPage_secName04.svg);
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -9999px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

#wanted .wantedPage_ttl {
  font-size: 2.875rem;
  line-height: 1em;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  #wanted .wantedPage_ttl {
    font-size: 2.125rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #wanted .wantedPage_ttl {
    font-size: 1.375rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 520px) {
  #wanted .wantedPage_ttl {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  #wanted .wantedPage_ttl {
    font-size: 0.875rem;
  }
}
#wanted .wantedPage_ttl span {
  display: inline-block;
  padding-bottom: 18px;
  border-bottom: 3.5px solid #88c231;
}
@media screen and (max-width: 768px) {
  #wanted .wantedPage_ttl span {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid #88c231;
  }
}
@media screen and (max-width: 520px) {
  #wanted .wantedPage_ttl span {
    padding-bottom: 8px;
    border-bottom: 1.35px solid #88c231;
  }
}
#wanted .wanted-MV {
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 718px;
  height: 680px;
  position: relative;
}
@media screen and (max-width: 960px) {
  #wanted .wanted-MV {
    max-width: 526px;
    height: 500px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  #wanted .wanted-MV {
    max-width: 350px;
    height: 333px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 375px) {
  #wanted .wanted-MV {
    max-width: 323px;
    height: 308px;
    margin-bottom: 15px;
  }
}
#wanted .wanted-MV .wanted-Lkun {
  width: 138px;
  height: auto;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-69px, -56px);
  z-index: 3;
}
@media screen and (max-width: 960px) {
  #wanted .wanted-MV .wanted-Lkun {
    width: 100px;
    left: 50%;
    transform: translate(-50px, -56px);
  }
}
@media screen and (max-width: 600px) {
  #wanted .wanted-MV .wanted-Lkun {
    width: 66px;
    top: 57%;
    left: 50%;
    transform: translate(-34px, -56px);
  }
}
#wanted .wanted-MV .wanted-Lkun img {
  width: 100%;
  height: auto;
}
#wanted .wanted-MV .wanted-item-wrap {
  width: 409px;
  height: 409px;
  text-align: center;
  margin: 0 auto;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 960px) {
  #wanted .wanted-MV .wanted-item-wrap {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  #wanted .wanted-MV .wanted-item-wrap {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 375px) {
  #wanted .wanted-MV .wanted-item-wrap {
    width: 185px;
    height: 185px;
  }
}
#wanted .wanted-MV .wanted-item-wrap .wanted-item-ttl {
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1.55em;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  #wanted .wanted-MV .wanted-item-wrap .wanted-item-ttl {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  #wanted .wanted-MV .wanted-item-wrap .wanted-item-ttl {
    font-size: 0.9375rem;
    margin-bottom: 10px;
  }
}
#wanted .wanted-MV .wanted-item-wrap .wanted-item-txt {
  font-size: 1.375rem;
  letter-spacing: 0.01em;
  font-weight: 400;
  line-height: 1.55em;
}
@media screen and (max-width: 960px) {
  #wanted .wanted-MV .wanted-item-wrap .wanted-item-txt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  #wanted .wanted-MV .wanted-item-wrap .wanted-item-txt {
    font-size: 0.6875rem;
  }
}
#wanted .wanted-MV .wanted-item-wrap.honest {
  background-image: url("../images/wantedPage_bg01.png");
  background-repeat: no-repeat;
  background-size: contain;
}
#wanted .wanted-MV .wanted-item-wrap.honest div {
  margin-top: -60px;
}
#wanted .wanted-MV .wanted-item-wrap.cooperat {
  background-image: url("../images/wantedPage_bg02.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
#wanted .wanted-MV .wanted-item-wrap.willgrow {
  background-image: url("../images/wantedPage_bg03.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}
#wanted .wanted-text {
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.7em;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 768px) {
  #wanted .wanted-text {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 520px) {
  #wanted .wanted-text {
    font-size: 0.865625rem;
  }
}
#wanted .wanted-arrow {
  padding: 20px 0;
  text-align: center;
  width: 100px;
  margin: 0 auto;
}
#wanted .wanted-arrow img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  #wanted .wanted-arrow {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  #wanted .wanted-arrow {
    width: 60px;
  }
}
@media screen and (max-width: 520px) {
  #wanted .wanted-arrow {
    width: 47px;
  }
}
#wanted .workingList-wrap .warkingList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100px 100px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #wanted .workingList-wrap .warkingList {
    grid-template-columns: 1fr;
    grid-template-rows: 80px 80px 80px 80px;
    gap: 20px;
  }
}
@media screen and (max-width: 520px) {
  #wanted .workingList-wrap .warkingList {
    grid-template-columns: 1fr;
    grid-template-rows: 70px 70px 70px 70px;
    gap: 10px;
  }
}
@media screen and (max-width: 375px) {
  #wanted .workingList-wrap .warkingList {
    grid-template-columns: 1fr;
    grid-template-rows: 54px 54px 54px 54px;
    gap: 8px;
  }
}
#wanted .workingList-wrap .warkingList li {
  display: grid;
  place-items: center;
  font-size: 1.4375rem;
  font-weight: 400;
  line-height: 1.6em;
  text-align: center;
  border: 3px solid #88c231;
  border-radius: 5px;
}
@media screen and (max-width: 960px) {
  #wanted .workingList-wrap .warkingList li {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 375px) {
  #wanted .workingList-wrap .warkingList li {
    border: 1.25px solid #88c231;
    font-size: 0.859375rem;
  }
}
#wanted .workingList-wrap .warkingList li span {
  font-size: 1.1875rem;
}

#interviewPage .interview-MV-wrap {
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-MV-wrap {
    margin-bottom: 30px;
  }
}
#interviewPage .interview-MV-wrap .interview-parson-SP {
  display: none;
  width: 30%;
  position: absolute;
  right: -7%;
  bottom: 0;
}
@media screen and (max-width: 960px) {
  #interviewPage .interview-MV-wrap .interview-parson-SP {
    display: block;
  }
}
#interviewPage .interview-MV-wrap .interview-parson-SP img {
  width: 100%;
}
#interviewPage .interview-MV {
  max-height: 554px;
  margin-bottom: 16px;
}
#interviewPage .interview-MV img {
  width: 100%;
}
#interviewPage .interview-part {
  display: flex;
  position: relative;
  height: 36px;
}
@media screen and (max-width: 520px) {
  #interviewPage .interview-part {
    height: 26px;
  }
}
#interviewPage .interview-teamName {
  padding: 4px 20px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-teamName {
    padding: 4px 10px;
  }
}
#interviewPage .interview-teamName p {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-teamName p {
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
  }
}
#interviewPage .interview-teamName.blue {
  color: #2ea6df;
  border-left: 4px solid #2ea6df;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-teamName.blue {
    border-left: 2px solid #2ea6df;
  }
}
#interviewPage .interview-teamName.orange {
  color: #ffaa00;
  border-left: 4px solid #ffaa00;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-teamName.orange {
    border-left: 2px solid #ffaa00;
  }
}
#interviewPage .interview-teamName.green {
  color: #88c231;
  border-left: 4px solid #88c231;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-teamName.green {
    border-left: 2px solid #88c231;
  }
}
#interviewPage .interview-staffName {
  padding: 0 20px;
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1em;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-staffName {
    font-size: 1.4375rem;
    letter-spacing: 0.01em;
    padding: 0 10px;
  }
}
#interviewPage .interview-staffName .staffInfoPC {
  font-size: 1.3125rem;
  font-weight: 500;
}
#interviewPage .interview-staffName.blue {
  border-left: 4px solid #2ea6df;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-staffName.blue {
    border-left: 2px solid #2ea6df;
  }
}
#interviewPage .interview-staffName.orange {
  border-left: 4px solid #ffaa00;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-staffName.orange {
    border-left: 2px solid #ffaa00;
  }
}
#interviewPage .interview-staffName.green {
  border-left: 4px solid #88c231;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-staffName.green {
    border-left: 2px solid #88c231;
  }
}
#interviewPage .staffInfoSP {
  display: none;
}
@media screen and (max-width: 960px) {
  #interviewPage .staffInfoSP {
    display: block;
  }
  #interviewPage .staffInfoSP p {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }
  #interviewPage .staffInfoSP p .bold {
    font-size: 0.803125rem;
    font-weight: 500;
  }
}
#interviewPage .staffInfoSP.blue {
  position: relative;
  padding-left: 15px;
}
#interviewPage .staffInfoSP.blue::before {
  position: absolute;
  top: 16px;
  left: 0;
  content: "";
  background-image: url("../images/interviewPage_SP_circle_blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 14px;
  height: 14px;
}
#interviewPage .staffInfoSP.orange {
  position: relative;
  padding-left: 15px;
}
#interviewPage .staffInfoSP.orange::before {
  position: absolute;
  top: 16px;
  left: 0;
  content: "";
  background-image: url("../images/interviewPage_SP_circle_orange.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 14px;
  height: 14px;
}
#interviewPage .staffInfoSP.green {
  position: relative;
  padding-left: 15px;
}
#interviewPage .staffInfoSP.green::before {
  position: absolute;
  top: 16px;
  left: 0;
  content: "";
  background-image: url("../images/interviewPage_SP_circle_green.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 14px;
  height: 14px;
}
#interviewPage .interview-items-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 960px) {
  #interviewPage .interview-items-wrap {
    flex-direction: column;
  }
}
#interviewPage .interview-text-wrap {
  width: 56%;
  padding-bottom: 56px;
}
@media screen and (max-width: 960px) {
  #interviewPage .interview-text-wrap {
    width: 100%;
    padding-bottom: 28px;
  }
}
#interviewPage .interview-text-wrap .QandA {
  margin-bottom: 48px;
}
#interviewPage .interview-text-wrap .QandA .interview-Q h3 {
  display: inline-block;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 16px 20px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-text-wrap .QandA .interview-Q h3 {
    font-size: 1.5rem;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 520px) {
  #interviewPage .interview-text-wrap .QandA .interview-Q h3 {
    font-size: 1.0625rem;
    padding: 0 20px;
  }
}
#interviewPage .interview-text-wrap .QandA .interview-Q .Q-blue {
  background-color: #2ea6df;
  position: relative;
}
#interviewPage .interview-text-wrap .QandA .interview-Q .Q-blue::before {
  position: absolute;
  bottom: -25px;
  left: 50px;
  content: url("../images/InterviewPage_blue_fukidashiArrow-Q.svg");
  display: block;
  width: 25px;
  height: 33px;
}
#interviewPage .interview-text-wrap .QandA .interview-Q .Q-orange {
  background-color: #ffaa00;
  position: relative;
}
#interviewPage .interview-text-wrap .QandA .interview-Q .Q-orange::before {
  position: absolute;
  bottom: -25px;
  left: 50px;
  content: url("../images/InterviewPage_orange_fukidashiArrow-Q.svg");
  display: block;
  width: 25px;
  height: 33px;
}
#interviewPage .interview-text-wrap .QandA .interview-Q .Q-green {
  background-color: #88c231;
  position: relative;
}
#interviewPage .interview-text-wrap .QandA .interview-Q .Q-green::before {
  position: absolute;
  bottom: -25px;
  left: 50px;
  content: url("../images/InterviewPage_green_fukidashiArrow-Q.svg");
  display: block;
  width: 25px;
  height: 33px;
}
#interviewPage .interview-text-wrap .QandA .interview-A {
  padding-top: 16px;
  padding-left: 20px;
}
#interviewPage .interview-text-wrap .QandA .interview-A p {
  font-size: 1.3125rem;
  letter-spacing: 0.1em;
  padding: 16px 20px;
  line-height: 1.8em;
  border-radius: 10px;
}
@media screen and (max-width: 520px) {
  #interviewPage .interview-text-wrap .QandA .interview-A p {
    font-size: 0.865625rem;
  }
}
#interviewPage .interview-text-wrap .QandA .interview-A .A-blue {
  border: 3px solid #2ea6df;
  position: relative;
}
#interviewPage .interview-text-wrap .QandA .interview-A .A-blue::before {
  position: absolute;
  bottom: -31px;
  right: 50px;
  content: url("../images/InterviewPage_blue_fukidashiArrow-A.svg");
  display: block;
  width: 25px;
  height: 33px;
}
#interviewPage .interview-text-wrap .QandA .interview-A .A-orange {
  border: 3px solid #ffaa00;
  position: relative;
}
#interviewPage .interview-text-wrap .QandA .interview-A .A-orange::before {
  position: absolute;
  bottom: -31px;
  right: 50px;
  content: url("../images/InterviewPage_orange_fukidashiArrow-A.svg");
  display: block;
  width: 25px;
  height: 33px;
}
#interviewPage .interview-text-wrap .QandA .interview-A .A-green {
  border: 3px solid #88c231;
  position: relative;
}
#interviewPage .interview-text-wrap .QandA .interview-A .A-green::before {
  position: absolute;
  bottom: -31px;
  right: 50px;
  content: url("../images/InterviewPage_green_fukidashiArrow-A.svg");
  display: block;
  width: 25px;
  height: 33px;
}
#interviewPage .interview-parsonal-wrap {
  width: 37%;
}
@media screen and (max-width: 960px) {
  #interviewPage .interview-parsonal-wrap {
    width: 100%;
  }
  #interviewPage .interview-parsonal-wrap .ImgSP-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
#interviewPage .interview-parsonal-wrap .interview-parsonal-img-BOX {
  height: 202px;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  #interviewPage .interview-parsonal-wrap .interview-parsonal-img-BOX {
    height: auto;
    width: 48%;
    margin-bottom: 0;
  }
}
#interviewPage
  .interview-parsonal-wrap
  .interview-parsonal-img-BOX
  .interview-parsonal-img {
  width: 426px;
  height: 426px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 5px solid #ffffff;
}
#interviewPage
  .interview-parsonal-wrap
  .interview-parsonal-img-BOX
  .interview-parsonal-img
  img {
  width: 100%;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  #interviewPage
    .interview-parsonal-wrap
    .interview-parsonal-img-BOX
    .interview-parsonal-img {
    height: 100%;
    width: 100%;
    position: static;
    transform: none;
    margin: 0 auto;
  }
}
#interviewPage .interview-parsonal-wrap .interview-parsonal-content {
  height: auto;
  width: 100%;
  margin-bottom: 16px;
}
#interviewPage .interview-parsonal-wrap .interview-parsonal-content img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  #interviewPage .interview-parsonal-wrap .interview-parsonal-content {
    width: 48%;
  }
}
#interviewPage .interview-parsonal-wrap .interview-parsonal-comment p {
  font-size: 1.3125rem;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  #interviewPage .interview-parsonal-wrap .interview-parsonal-comment p {
    font-size: 0.875rem;
  }
}
#interviewPage .interview-parsonal-wrap .interview-parson {
  height: 730px;
  width: auto;
  text-align: center;
}
#interviewPage .interview-parsonal-wrap .interview-parson img {
  height: 100%;
  width: auto;
}
#interviewPage .interviewPageOnly h3 {
  font-size: 1.5625rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #interviewPage .interviewPageOnly h3 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 520px) {
  #interviewPage .interviewPageOnly h3 {
    font-size: 0.9375rem;
  }
}
#interviewPage .interviewPageOnly .interviewPage-items-wrapper {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 30px;
}
@media screen and (max-width: 520px) {
  #interviewPage .interviewPageOnly .interviewPage-items-wrapper {
    flex-wrap: wrap;
  }
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items {
  max-width: 200px;
  position: relative;
}
@media screen and (max-width: 520px) {
  #interviewPage
    .interviewPageOnly
    .interviewPage-items-wrapper
    .interviewPage-items {
    max-width: 128px;
  }
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-year {
  position: absolute;
  width: 68px;
  height: 68px;
  top: 0;
  left: -28px;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-year
  img {
  width: 100%;
}
@media screen and (max-width: 520px) {
  #interviewPage
    .interviewPageOnly
    .interviewPage-items-wrapper
    .interviewPage-items
    .interview-year {
    width: 44px;
    height: 44px;
    top: 0;
    left: 90px;
  }
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img {
  width: 200px;
}
@media screen and (max-width: 520px) {
  #interviewPage
    .interviewPageOnly
    .interviewPage-items-wrapper
    .interviewPage-items
    .interview-person-img {
    max-width: 128px;
  }
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img
  img {
  width: 100%;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img.iida {
  background-image: url("../images/interview01_A.png");
  background-size: cover;
  aspect-ratio: 4/9;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img.iida:hover {
  background-image: url("../images/interview01_B.png");
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img.koyama {
  background-image: url("../images/interview02_A.png");
  background-size: cover;
  aspect-ratio: 4/9;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img.koyama:hover {
  background-image: url("../images/interview02_B.png");
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img.oyadomari {
  background-image: url("../images/interview03_A.png");
  background-size: cover;
  aspect-ratio: 4/9;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img.oyadomari:hover {
  background-image: url("../images/interview03_B.png");
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img.nagata {
  background-image: url("../images/interview04_A.png");
  background-size: cover;
  aspect-ratio: 4/9;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img.nagata:hover {
  background-image: url("../images/interview04_B.png");
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img.minowa {
  background-image: url("../images/interview05_A.png");
  background-size: cover;
  aspect-ratio: 4/9;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-items
  .interview-person-img.minowa:hover {
  background-image: url("../images/interview05_B.png");
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-person-data {
  margin: 0 auto;
  width: 65%;
  text-align: center;
  border-top: 2px solid #88c231;
  border-bottom: 2px solid #88c231;
  line-height: 1.25em;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-person-data.BlueBold {
  border-top: 2px solid #2ea6df;
  border-bottom: 2px solid #2ea6df;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-person-data.OrangeBold {
  border-top: 2px solid #ffaa00;
  border-bottom: 2px solid #ffaa00;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-person-data
  h4 {
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 520px) {
  #interviewPage
    .interviewPageOnly
    .interviewPage-items-wrapper
    .interviewPage-person-data
    h4 {
    font-size: 0.865625rem;
  }
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-person-data
  .top-bottom-Line {
  border-top: 1px solid #88c231;
  border-bottom: 1px solid #88c231;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-person-data
  .top-bottom-Line.BlueThin {
  border-top: 1px solid #2ea6df;
  border-bottom: 1px solid #2ea6df;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-person-data
  .top-bottom-Line.OrangeThin {
  border-top: 1px solid #ffaa00;
  border-bottom: 1px solid #ffaa00;
}
#interviewPage
  .interviewPageOnly
  .interviewPage-items-wrapper
  .interviewPage-person-data
  p {
  font-size: 1rem;
  line-height: 1.25em;
  padding: 8px 0;
}
@media screen and (max-width: 520px) {
  #interviewPage
    .interviewPageOnly
    .interviewPage-items-wrapper
    .interviewPage-person-data
    p {
    font-size: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .animate {
    opacity: 0;
  }
  .animate.animated {
    opacity: 1;
  }
} /*# sourceMappingURL=styles.css.map */
