/* ----- break point ----- */
/* ----- container width ----- */
/* ----- margin-top/bottom ----- */
/* ----- padding-top/bottom ----- */
/* ----- line-height, letter-spacing ----- */
/* ----- font-size ----- */
/* -------------------------------------------- */
/* --------------- Noto Sans JP --------------- */
/* -------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* regular */
/* medium */
/* bold */
/* -------------------------------------------- */
/* -------------------- Teko ------------------ */
/* -------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@400;500&display=swap");
/* regular */
/* medium */
.fix {
  width: 100%;
  height: 100%;
  position: fixed;
}

/* ---------- visit page animation ---------- */
.js-visit-scale {
  opacity: 0;
  transform: scale(1.1);
  display: block;
}
.js-visit-scale.is-inview {
  opacity: 1;
  transform: scale(1);
  transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
  opacity: 0;
}
body.is-inview {
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.js-visit-up {
  overflow: hidden;
}
.js-visit-up .js-animation {
  transform: translate3d(0, 100%, 0);
}
.js-visit-up.is-inview .js-animation {
  transform: translate3d(0, 0, 0);
  transition: transform 1.4s;
}

/* ------------------- common animation ------------------- */
.js-fadeup {
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(40px);
  opacity: 0;
}
.js-fadeup.is-inview {
  transform: translateY(0px);
  opacity: 1;
}

.js-imgup {
  overflow: hidden;
  position: relative;
}
.js-imgup:before {
  content: "";
  transition: all 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.js-imgup.service:before, .js-imgup.skill:before, .js-imgup.safety:before, .js-imgup.mjp:before, .js-imgup.solar:before, .js-imgup.a-case:before, .js-imgup.c-case:before, .js-imgup.a-news:before, .js-imgup.c-news:before, .js-imgup.s-news:before, .js-imgup.privacy:before, .js-imgup.notfound:before, .js-imgup.gray3:before {
  background-color: #F7F7F7;
}
.js-imgup.uwwa:before, .js-imgup.stad:before, .js-imgup.about:before, .js-imgup.gray4:before {
  background-color: #F0F0F0;
}
.js-imgup.s-case:before {
  background-color: #F0F0F0;
}
@media only screen and (max-width: 767px) {
  .js-imgup.s-case:before {
    background-color: #F7F7F7;
  }
}
.js-imgup.is-inview:before {
  top: -100%;
}

.js-imgup2 {
  overflow: hidden;
  position: relative;
}
.js-imgup2:after {
  content: "";
  transition: all 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.js-imgup2.gray3:after {
  background-color: #F7F7F7;
}
.js-imgup2.gray4:after {
  background-color: #F0F0F0;
}
.js-imgup2.is-inview:after {
  top: -100%;
}

.js-cimgup .js-animation {
  overflow: hidden;
  position: relative;
}
.js-cimgup .js-animation:before {
  content: "";
  transition: all 1.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.js-cimgup.is-inview .js-animation:before {
  top: -100%;
}

.js-cimgup2 .js-animation {
  overflow: hidden;
  position: relative;
}
.js-cimgup2 .js-animation:after {
  content: "";
  transition: all 1.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.js-cimgup2.is-inview .js-animation:after {
  top: -100%;
}

.js-showup {
  overflow: hidden;
}
.js-showup.is-inview span {
  transform: translate3d(0, 0, 0);
  transition: transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}
.js-showup span {
  display: inline-block;
  transform: translate3d(0, 100%, 0);
}

/* ------------------- slide ------------------- */
@keyframes infinite-slide1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes infinite-slide2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
/* ------------------- delay ------------------- */
.js-delay-1 {
  transition-delay: 0s !important;
}
.js-delay-1:before {
  transition-delay: 0s !important;
}
.js-delay-1:after {
  transition-delay: 0s !important;
}
.js-delay-1 .js-animation {
  transition-delay: 0s !important;
}

.js-delay-2 {
  transition-delay: 0.1s !important;
}
.js-delay-2:before {
  transition-delay: 0.1s !important;
}
.js-delay-2:after {
  transition-delay: 0.1s !important;
}
.js-delay-2 .js-animation {
  transition-delay: 0.1s !important;
}

.js-delay-3 {
  transition-delay: 0.2s !important;
}
.js-delay-3:before {
  transition-delay: 0.2s !important;
}
.js-delay-3:after {
  transition-delay: 0.2s !important;
}
.js-delay-3 .js-animation {
  transition-delay: 0.2s !important;
}

.js-delay-4 {
  transition-delay: 0.3s !important;
}
.js-delay-4:before {
  transition-delay: 0.3s !important;
}
.js-delay-4:after {
  transition-delay: 0.3s !important;
}
.js-delay-4 .js-animation {
  transition-delay: 0.3s !important;
}

.js-delay-5 {
  transition-delay: 0.4s !important;
}
.js-delay-5:before {
  transition-delay: 0.4s !important;
}
.js-delay-5:after {
  transition-delay: 0.4s !important;
}
.js-delay-5 .js-animation {
  transition-delay: 0.4s !important;
}

.js-delay-6 {
  transition-delay: 0.5s !important;
}
.js-delay-6:before {
  transition-delay: 0.5s !important;
}
.js-delay-6:after {
  transition-delay: 0.5s !important;
}
.js-delay-6 .js-animation {
  transition-delay: 0.5s !important;
}

.js-delay-7 {
  transition-delay: 0.6s !important;
}
.js-delay-7:before {
  transition-delay: 0.6s !important;
}
.js-delay-7:after {
  transition-delay: 0.6s !important;
}
.js-delay-7 .js-animation {
  transition-delay: 0.6s !important;
}

.js-delay-8 {
  transition-delay: 0.7s !important;
}
.js-delay-8:before {
  transition-delay: 0.7s !important;
}
.js-delay-8:after {
  transition-delay: 0.7s !important;
}
.js-delay-8 .js-animation {
  transition-delay: 0.7s !important;
}

.js-delay-9 {
  transition-delay: 0.8s !important;
}
.js-delay-9:before {
  transition-delay: 0.8s !important;
}
.js-delay-9:after {
  transition-delay: 0.8s !important;
}
.js-delay-9 .js-animation {
  transition-delay: 0.8s !important;
}

.js-delay-10 {
  transition-delay: 0.9s !important;
}
.js-delay-10:before {
  transition-delay: 0.9s !important;
}
.js-delay-10:after {
  transition-delay: 0.9s !important;
}
.js-delay-10 .js-animation {
  transition-delay: 0.9s !important;
}

.js-delay-11 {
  transition-delay: 1s !important;
}
.js-delay-11:before {
  transition-delay: 1s !important;
}
.js-delay-11:after {
  transition-delay: 1s !important;
}
.js-delay-11 .js-animation {
  transition-delay: 1s !important;
}

.js-delay-12 {
  transition-delay: 1.1s !important;
}
.js-delay-12:before {
  transition-delay: 1.1s !important;
}
.js-delay-12:after {
  transition-delay: 1.1s !important;
}
.js-delay-12 .js-animation {
  transition-delay: 1.1s !important;
}

.js-delay-13 {
  transition-delay: 1.2s !important;
}
.js-delay-13:before {
  transition-delay: 1.2s !important;
}
.js-delay-13:after {
  transition-delay: 1.2s !important;
}
.js-delay-13 .js-animation {
  transition-delay: 1.2s !important;
}

.js-delay-14 {
  transition-delay: 1.3s !important;
}
.js-delay-14:before {
  transition-delay: 1.3s !important;
}
.js-delay-14:after {
  transition-delay: 1.3s !important;
}
.js-delay-14 .js-animation {
  transition-delay: 1.3s !important;
}

.js-delay-15 {
  transition-delay: 1.4s !important;
}
.js-delay-15:before {
  transition-delay: 1.4s !important;
}
.js-delay-15:after {
  transition-delay: 1.4s !important;
}
.js-delay-15 .js-animation {
  transition-delay: 1.4s !important;
}

a,
button {
  color: #00102B;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
a:before, a:after,
button:before,
button:after {
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
a span,
button span {
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
a span:before, a span:after,
button span:before,
button span:after {
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}

svg path {
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}

ul {
  list-style: none;
}

html {
  word-wrap: break-word;
}

body {
  color: #00102B;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
}

p {
  font-size: 16px;
  line-height: 2;
}
@media only screen and (max-width: 600px) {
  p {
    font-size: 14px;
  }
}

.main {
  overflow: hidden;
}

.main .l-fv {
  height: 400px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 600px) {
  .main .l-fv {
    height: 232px;
  }
}
.main .l-fv .container1 {
  padding-right: 5%;
  padding-left: 5%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
}
.main .l-fv .container1 .cp {
  padding-top: 120px;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 600px) {
  .main .l-fv .container1 .cp {
    padding-top: 50px;
  }
}
.main .l-fv .container1 .cp p .ja {
  font-size: 40px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  display: block;
}
@media only screen and (max-width: 600px) {
  .main .l-fv .container1 .cp p .ja {
    font-size: 32px;
  }
}
.main .l-fv .container1 .cp p .en {
  display: block;
  font-size: 14px;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-weight: 400;
}
.main .l-fv .container1 .cp p .line.is-inview span {
  transition: transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s;
}
.main .l-fv .container1 .cp p .line.en.is-inview span {
  transition: transform 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0.75s;
}
.main .l-fv .container2 {
  padding-left: 40px;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (max-width: 1250px) {
  .main .l-fv .container2 {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-fv .container2 {
    display: none;
  }
}
.main .l-fv .fv {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main .l-fv .fv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
@media only screen and (max-width: 600px) {
  .main .l-fv .fv img.pc {
    display: none;
  }
}
.main .l-fv .fv img.sp {
  display: none;
}
@media only screen and (max-width: 600px) {
  .main .l-fv .fv img.sp {
    display: block;
  }
}
.main .l-fv .bg {
  position: absolute;
  z-index: 1;
  bottom: -1px;
  left: 0;
  width: 100%;
}
.main .l-fv .bg img {
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .main .l-fv .bg img.pc-bg {
    display: none;
  }
}
.main .l-fv .bg img.sp-bg {
  display: none;
}
@media only screen and (max-width: 600px) {
  .main .l-fv .bg img.sp-bg {
    display: block;
  }
}

.breadcrumb {
  padding-top: 16px;
}
.breadcrumb .list {
  text-align: left;
}
.breadcrumb .list .item {
  display: inline-block;
}
.breadcrumb .list .item:not(:last-of-type):after {
  content: "/";
  display: inline-block;
  font-size: 12px;
  margin: 0 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #fff;
}
.breadcrumb .list .item a {
  font-size: 12px;
  text-decoration: underline;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media only screen and (hover: hover) and (min-width: 600px) {
  .breadcrumb .list .item a:hover {
    color: #00A0DB;
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .breadcrumb .list .item a:active {
    color: #00A0DB;
  }
}
.breadcrumb .list .item span {
  font-size: 12px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.main .contact-link {
  position: relative;
  padding: 90px 0 80px;
  padding-right: 5%;
  padding-left: 5%;
}
@media only screen and (max-width: 600px) {
  .main .contact-link {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.main .contact-link:before {
  content: "";
  background-image: url(../images/bg/contact/contact-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 600px) {
  .main .contact-link:before {
    background-image: url(../images/bg/contact/sp-contact-bg.jpg);
  }
}
.main .contact-link .container {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
.main .contact-link .container.col-2 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .main .contact-link .container.col-2 {
    display: block;
  }
}
.main .contact-link .container .head {
  width: 360px;
}
@media only screen and (max-width: 600px) {
  .main .contact-link .container .head {
    width: 100%;
  }
}
.main .contact-link .container .head .ttl {
  text-align: left;
}
.main .contact-link .container .head .ttl .ja {
  font-size: 32px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  display: block;
}
@media only screen and (max-width: 600px) {
  .main .contact-link .container .head .ttl .ja {
    font-size: 24px;
  }
}
.main .contact-link .container .head .ttl .en {
  display: block;
  font-size: 14px;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-weight: 400;
}
.main .contact-link .container .head .ttl .catch {
  display: block;
  margin-top: 15px;
  color: #fff;
  font-size: 0.9rem;
  line-height: 2;
}
@media only screen and (max-width: 600px) {
  .main .contact-link .container .head .ttl {
    text-align: center;
  }
}
.main .contact-link .container .contents {
  width: calc(100% - 310px);
}
@media only screen and (max-width: 600px) {
  .main .contact-link .container .contents {
    width: 100%;
    margin-top: 20px;
  }
}
.main .contact-link .container .contents .tel {
  padding-bottom: 24px;
  position: relative;
}
.main .contact-link .container .contents .tel .line {
  content: "";
  background-color: #fff;
  display: block;
  opacity: 0.4;
  height: 1px;
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 600px) {
  .main .contact-link .container .contents .tel .msg {
    text-align: center;
  }
}
.main .contact-link .container .contents .tel .msg p {
  color: #fff;
}
.main .contact-link .container .contents .tel .number {
  margin-top: 12px;
}
@media only screen and (max-width: 600px) {
  .main .contact-link .container .contents .tel .number {
    text-align: center;
  }
}
.main .contact-link .container .contents .tel .number p {
  font-size: 48px;
  font-family: "Teko", sans-serif;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
}
.main .contact-link .container .contents .tel .number p a {
  color: #fff;
  text-decoration: none;
}
.main .contact-link .container .contents .tel .number p span {
  font-size: 12px;
  display: block;
}
.main .contact-link .container .contents .tel a {
  color: #fff;
  text-decoration: none;
}
.main .contact-link .container .contents .form {
  padding-top: 24px;
}
@media only screen and (max-width: 600px) {
  .main .contact-link .container .contents .form .msg {
    text-align: center;
  }
}
.main .contact-link .container .contents .form .msg p {
  color: #fff;
}
.main .contact-link .container .contents .form .link {
  margin-top: 16px;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  .main .contact-link .container .contents .form .link {
    text-align: center;
  }
}
.main .contact-link .container .contents .form .link .btn2 {
  display: inline-block;
  border-radius: 8px;
  max-width: 240px;
  width: 100%;
  padding: 18px 40px;
  position: relative;
  overflow: hidden;
}
.main .contact-link .container .contents .form .link .btn2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 8px;
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.main .contact-link .container .contents .form .link .btn2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0;
  background: linear-gradient(16deg, #00A0DB, #00AAAA);
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
@media only screen and (hover: hover) and (min-width: 600px) {
  .main .contact-link .container .contents .form .link .btn2:hover:after {
    height: 100%;
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .main .contact-link .container .contents .form .link .btn2:active:after {
    height: 100%;
  }
}
.main .contact-link .container .contents .form .link .btn2 .btn2__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.main .contact-link .container .contents .form .link .btn2 .btn2__inner .txt {
  font-size: 14px;
  color: #fff;
}
.main .contact-link .container .contents .form .link .btn2 .btn2__inner .icon {
  width: 7.5px;
  position: absolute;
  z-index: 1;
  right: 24px;
}

.main .other-link {
  display: flex;
  flex-wrap: wrap;
}
.main .other-link .item {
  width: 50%;
}
@media only screen and (max-width: 600px) {
  .main .other-link .item {
    width: 100%;
  }
}
.main .other-link .item:first-of-type:before {
  transition-delay: 0.2s;
}
.main .other-link .item:last-of-type:before {
  transition-delay: 0.4s;
}
.main .other-link .item .link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
  padding: 167px 40px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .main .other-link .item .link {
    padding: 72px 5%;
  }
}
@media only screen and (hover: hover) and (min-width: 600px) {
  .main .other-link .item .link:hover .img {
    transform: scale(1.05);
  }
  .main .other-link .item .link:hover .txt .head .icon {
    transform: translate3d(10px, 0, 0);
  }
}
@media only screen and (hover: hover) and (min-width: 600px) and (max-width: 600px) {
  .main .other-link .item .link:hover .txt .head .icon {
    transform: translate3d(5px, 0, 0);
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .main .other-link .item .link:active .img {
    transform: scale(1.05);
  }
  .main .other-link .item .link:active .txt .head .icon {
    transform: translate3d(10px, 0, 0);
  }
}
@media only screen and (hover: none) and (min-width: 600px) and (max-width: 600px) {
  .main .other-link .item .link:active .txt .head .icon {
    transform: translate3d(5px, 0, 0);
  }
}
.main .other-link .item .link .img {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.main .other-link .item .link .img img {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  object-position: center center;
}
.main .other-link .item .link .txt .head {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.main .other-link .item .link .txt .head .ttl .ja {
  font-size: 32px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  display: block;
}
@media only screen and (max-width: 600px) {
  .main .other-link .item .link .txt .head .ttl .ja {
    font-size: 24px;
  }
}
.main .other-link .item .link .txt .head .ttl .en {
  display: block;
  font-size: 14px;
  color: #fff;
  font-family: "Teko", sans-serif;
  font-weight: 400;
}
.main .other-link .item .link .txt .head .ttl .en {
  color: #C0C5C9;
}
.main .other-link .item .link .txt .head .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  padding-top: 26px;
}
@media only screen and (max-width: 600px) {
  .main .other-link .item .link .txt .head .icon {
    margin-left: 0;
    padding-top: 5px;
  }
}
.main .other-link .item .link .txt .head .icon svg {
  width: 7.5px;
  display: block;
}
@media only screen and (max-width: 600px) {
  .main .other-link .item .link .txt .head {
    display: block;
  }
}
.main .other-link .item .link .txt .msg {
  margin-top: 16px;
}
@media only screen and (max-width: 600px) {
  .main .other-link .item .link .txt .msg {
    margin-top: 8px;
  }
}
.main .other-link .item .link .txt .msg p {
  color: #fff;
}

.main .c-head {
  padding-top: 24px;
  padding-right: 5%;
  padding-left: 5%;
}
@media only screen and (max-width: 600px) {
  .main .c-head {
    padding-top: 40px;
  }
}
.main .c-head.p-0 {
  padding-left: 0;
  padding-right: 0;
}
.main .c-head .ttl__wrap {
  border-bottom: 1px solid #C0C5C9;
}
.main .c-head .ttl__wrap .ttl {
  font-size: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.75;
  padding-left: 24px;
  position: relative;
}
.main .c-head .ttl__wrap .ttl:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #02468C;
  position: absolute;
  z-index: 1;
  top: 27px;
  left: 0;
}
@media only screen and (max-width: 600px) {
  .main .c-head .ttl__wrap .ttl:before {
    top: 19px;
  }
}
@media only screen and (max-width: 600px) {
  .main .c-head .ttl__wrap .ttl {
    font-size: 24px;
    padding-left: 16px;
  }
}
.main .c-head .ttl__wrap.no-border-bottom {
  border-bottom: 0;
}
.main .c-head .msg {
  margin-top: 25px;
}
@media only screen and (max-width: 600px) {
  .main .c-head .msg {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .main .c-head .msg p br {
    display: none;
  }
}
.main .c-head .container {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
.main .c-head .container .ttl__wrap {
  border-bottom: 1px solid #C0C5C9;
}
.main .c-head .container .ttl__wrap .ttl {
  font-size: 32px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.75;
  padding-left: 24px;
  position: relative;
}
.main .c-head .container .ttl__wrap .ttl:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #02468C;
  position: absolute;
  z-index: 1;
  top: 27px;
  left: 0;
}
@media only screen and (max-width: 600px) {
  .main .c-head .container .ttl__wrap .ttl:before {
    top: 19px;
  }
}
@media only screen and (max-width: 600px) {
  .main .c-head .container .ttl__wrap .ttl {
    font-size: 24px;
    padding-left: 16px;
  }
}
.main .c-head .container .msg {
  margin-top: 25px;
}
@media only screen and (max-width: 600px) {
  .main .c-head .container .msg {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .main .c-head .container .msg p br {
    display: none;
  }
}

.main .l-service .slider-img {
  padding-top: 80px;
  overflow: hidden;
  display: flex;
  flex-shrink: 0;
  background-color: #F7F7F7;
}
@media only screen and (max-width: 600px) {
  .main .l-service .slider-img {
    padding-top: 56px;
  }
}
.main .l-service .slider-img .list1 {
  display: flex;
  flex-shrink: 0;
  animation: infinite-slide1 100s -50s linear infinite;
}
.main .l-service .slider-img .list1 .item {
  width: 560px;
  position: relative;
  overflow: hidden;
  margin: 0 12px;
}
.main .l-service .slider-img .list1 .item:before {
  content: "";
  display: block;
  padding-top: 64%;
}
.main .l-service .slider-img .list1 .item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 600px) {
  .main .l-service .slider-img .list1 .item {
    width: 100vw;
    margin: 0 8px;
    position: relative;
    overflow: hidden;
  }
  .main .l-service .slider-img .list1 .item:before {
    content: "";
    display: block;
    padding-top: 62%;
  }
  .main .l-service .slider-img .list1 .item img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.main .l-service .slider-img .list1 .item:after {
  background-color: #F7F7F7;
}
.main .l-service .slider-img .list2 {
  display: flex;
  flex-shrink: 0;
  animation: infinite-slide2 100s linear infinite;
}
.main .l-service .slider-img .list2 .item {
  width: 560px;
  position: relative;
  overflow: hidden;
  margin: 0 12px;
}
.main .l-service .slider-img .list2 .item:before {
  content: "";
  display: block;
  padding-top: 64%;
}
.main .l-service .slider-img .list2 .item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 600px) {
  .main .l-service .slider-img .list2 .item {
    width: 100vw;
    margin: 0 8px;
    position: relative;
    overflow: hidden;
  }
  .main .l-service .slider-img .list2 .item:before {
    content: "";
    display: block;
    padding-top: 62%;
  }
  .main .l-service .slider-img .list2 .item img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.main .l-service .slider-img .list2 .item:after {
  background-color: #F7F7F7;
}
.main .l-service .infra {
  background-color: #F7F7F7;
  padding-top: 80px;
  padding-bottom: 120px;
  padding-right: 5%;
  padding-left: 5%;
}
@media only screen and (max-width: 600px) {
  .main .l-service .infra {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}
.main .l-service .infra .container {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
.main .l-service .infra .container .head {
  padding: 30px 0;
  position: relative;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .infra .container .head {
    padding: 0;
  }
}
.main .l-service .infra .container .head .ttl__wrap {
  width: calc(50% - 40px);
  margin-right: auto;
  margin-left: 0;
  border-bottom: 1px solid #C0C5C9;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .infra .container .head .ttl__wrap {
    margin: 0;
    width: 100%;
  }
}
.main .l-service .infra .container .head .ttl__wrap .ttl {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2.3333333333;
  padding-left: 24px;
  position: relative;
}
.main .l-service .infra .container .head .ttl__wrap .ttl:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #02468C;
  position: absolute;
  z-index: 1;
  top: 27px;
  left: 0;
}
@media only screen and (max-width: 600px) {
  .main .l-service .infra .container .head .ttl__wrap .ttl:before {
    top: 19px;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .infra .container .head .ttl__wrap .ttl {
    font-size: 18px;
    padding-left: 16px;
  }
}
.main .l-service .infra .container .head .img {
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .infra .container .head .img {
    width: 100%;
    height: initial;
    margin-top: 32px;
    position: static;
    position: relative;
    overflow: hidden;
  }
  .main .l-service .infra .container .head .img:before {
    content: "";
    display: block;
    padding-top: 62%;
  }
  .main .l-service .infra .container .head .img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.main .l-service .infra .container .head .img:after {
  background-color: #F7F7F7;
}
.main .l-service .infra .container .head .img img {
  margin: 0.5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.main .l-service .infra .container .head .msg {
  width: calc(50% - 40px);
  margin-right: auto;
  margin-left: 0;
  margin-top: 40px;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .infra .container .head .msg {
    width: 100%;
    margin: 0;
    margin-top: 16px;
  }
}
.main .l-service .infra .container .list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -40px;
  margin-top: 64px;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .infra .container .list {
    margin: 64px -15px 0;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .infra .container .list {
    margin: 0;
    margin-top: 32px;
  }
}
.main .l-service .infra .container .list .item {
  width: 33.3333333333%;
  padding: 0 40px;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .infra .container .list .item {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .infra .container .list .item {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .infra .container .list .item:not(:first-of-type) {
    margin-top: 32px;
  }
}
.main .l-service .infra .container .list .item .link {
  display: block;
}
@media only screen and (hover: hover) and (min-width: 600px) {
  .main .l-service .infra .container .list .item .link:hover .img img {
    transform: scale(1.05);
  }
  .main .l-service .infra .container .list .item .link:hover .txt .ttl {
    color: #00A0DB;
  }
  .main .l-service .infra .container .list .item .link:hover .txt .ttl:before {
    transform-origin: right;
    transform: scaleX(0);
  }
  .main .l-service .infra .container .list .item .link:hover .txt .tab svg #bridge_23326 {
    stroke: #00A0DB;
  }
  .main .l-service .infra .container .list .item .link:hover .txt .tab svg #bridge_23327 {
    fill: #00A0DB;
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .main .l-service .infra .container .list .item .link:active .img img {
    transform: scale(1.05);
  }
  .main .l-service .infra .container .list .item .link:active .txt .ttl {
    color: #00A0DB;
  }
  .main .l-service .infra .container .list .item .link:active .txt .ttl:before {
    transform-origin: right;
    transform: scaleX(0);
  }
  .main .l-service .infra .container .list .item .link:active .txt .tab svg #bridge_23326 {
    stroke: #00A0DB;
  }
  .main .l-service .infra .container .list .item .link:active .txt .tab svg #bridge_23327 {
    fill: #00A0DB;
  }
}
.main .l-service .infra .container .list .item .link:before {
  background-color: #F7F7F7;
}
.main .l-service .infra .container .list .item .link .img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
}
.main .l-service .infra .container .list .item .link .img:before {
  content: "";
  display: block;
  padding-top: 42%;
}
.main .l-service .infra .container .list .item .link .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .l-service .infra .container .list .item .link .txt {
  margin-top: 16px;
  padding-right: 24px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .main .l-service .infra .container .list .item .link .txt {
    margin-top: 8px;
  }
}
.main .l-service .infra .container .list .item .link .txt .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  position: relative;
  padding-bottom: 3px;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
@media only screen and (max-width: 600px) {
  .main .l-service .infra .container .list .item .link .txt .ttl {
    font-size: 16px;
  }
}
.main .l-service .infra .container .list .item .link .txt .ttl:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #00102B;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.main .l-service .infra .container .list .item .link .txt .tab {
  margin-left: 16px;
  display: block;
  width: 19px;
}
@media only screen and (max-width: 600px) {
  .main .l-service .infra .container .list .item .link .txt .tab {
    margin-left: 10px;
  }
}
.main .l-service .infra .container .list .item .link .txt .tab svg #bridge_23326 {
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.main .l-service .infra .container .list .item .link .txt .tab svg #bridge_23327 {
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.main .l-service .infra .container .list .item .link .txt .icon {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}
.main .l-service .infra .container .list .item .link .txt .icon svg {
  display: block;
  width: 7.5px;
}
.main .l-service .underwater_construction {
  padding: 120px 0;
  padding-right: 5%;
  padding-left: 5%;
  background-color: #F0F0F0;
}
@media only screen and (max-width: 600px) {
  .main .l-service .underwater_construction {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.main .l-service .underwater_construction .container {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
.main .l-service .underwater_construction .container .head {
  padding: 30px 0;
  position: relative;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .underwater_construction .container .head {
    padding: 0;
  }
}
.main .l-service .underwater_construction .container .head .ttl__wrap {
  width: calc(50% - 40px);
  margin-right: auto;
  margin-left: 0;
  border-bottom: 1px solid #C0C5C9;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .underwater_construction .container .head .ttl__wrap {
    margin: 0;
    width: 100%;
  }
}
.main .l-service .underwater_construction .container .head .ttl__wrap .ttl {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2.3333333333;
  padding-left: 24px;
  position: relative;
}
.main .l-service .underwater_construction .container .head .ttl__wrap .ttl:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #02468C;
  position: absolute;
  z-index: 1;
  top: 27px;
  left: 0;
}
@media only screen and (max-width: 600px) {
  .main .l-service .underwater_construction .container .head .ttl__wrap .ttl:before {
    top: 19px;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .underwater_construction .container .head .ttl__wrap .ttl {
    font-size: 18px;
    padding-left: 16px;
  }
}
.main .l-service .underwater_construction .container .head .img {
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .underwater_construction .container .head .img {
    width: 100%;
    height: initial;
    margin-top: 32px;
    position: static;
    position: relative;
    overflow: hidden;
  }
  .main .l-service .underwater_construction .container .head .img:before {
    content: "";
    display: block;
    padding-top: 62%;
  }
  .main .l-service .underwater_construction .container .head .img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.main .l-service .underwater_construction .container .head .img:after {
  background-color: #F0F0F0;
}
.main .l-service .underwater_construction .container .head .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.main .l-service .underwater_construction .container .head .msg {
  width: calc(50% - 40px);
  margin-right: auto;
  margin-left: 0;
  margin-top: 40px;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .underwater_construction .container .head .msg {
    width: 100%;
    margin: 0;
    margin-top: 16px;
  }
}
.main .l-service .underwater_construction .container .list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -40px;
  margin-top: 64px;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .underwater_construction .container .list {
    margin: 64px -15px 0;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .underwater_construction .container .list {
    margin: 0;
    margin-top: 32px;
  }
}
.main .l-service .underwater_construction .container .list .item {
  width: 33.3333333333%;
  padding: 0 40px;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .underwater_construction .container .list .item {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .underwater_construction .container .list .item {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .underwater_construction .container .list .item:not(:first-of-type) {
    margin-top: 32px;
  }
}
.main .l-service .underwater_construction .container .list .item .link {
  display: block;
}
@media only screen and (hover: hover) and (min-width: 600px) {
  .main .l-service .underwater_construction .container .list .item .link:hover .img img {
    transform: scale(1.05);
  }
  .main .l-service .underwater_construction .container .list .item .link:hover .txt .ttl {
    color: #00A0DB;
  }
  .main .l-service .underwater_construction .container .list .item .link:hover .txt .ttl:before {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .main .l-service .underwater_construction .container .list .item .link:active .img img {
    transform: scale(1.05);
  }
  .main .l-service .underwater_construction .container .list .item .link:active .txt .ttl {
    color: #00A0DB;
  }
  .main .l-service .underwater_construction .container .list .item .link:active .txt .ttl:before {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.main .l-service .underwater_construction .container .list .item .link:before {
  background-color: #F0F0F0;
}
.main .l-service .underwater_construction .container .list .item .link .img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
}
.main .l-service .underwater_construction .container .list .item .link .img:before {
  content: "";
  display: block;
  padding-top: 42%;
}
.main .l-service .underwater_construction .container .list .item .link .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .l-service .underwater_construction .container .list .item .link .txt {
  margin-top: 16px;
  padding-right: 24px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .main .l-service .underwater_construction .container .list .item .link .txt {
    margin-top: 8px;
  }
}
.main .l-service .underwater_construction .container .list .item .link .txt .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  position: relative;
  padding-bottom: 3px;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
@media only screen and (max-width: 600px) {
  .main .l-service .underwater_construction .container .list .item .link .txt .ttl {
    font-size: 16px;
  }
}
.main .l-service .underwater_construction .container .list .item .link .txt .ttl:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #00102B;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.main .l-service .underwater_construction .container .list .item .link .txt .icon {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}
.main .l-service .underwater_construction .container .list .item .link .txt .icon svg {
  display: block;
  width: 7.5px;
}
.main .l-service .safety_environment {
  padding: 120px 0;
  padding-right: 5%;
  padding-left: 5%;
  background-color: #F7F7F7;
}
@media only screen and (max-width: 600px) {
  .main .l-service .safety_environment {
    padding-top: 80px;
    padding-bottom: 108px;
  }
}
.main .l-service .safety_environment .container {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
.main .l-service .safety_environment .container .head {
  padding: 30px 0;
  position: relative;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .safety_environment .container .head {
    padding: 0;
  }
}
.main .l-service .safety_environment .container .head .ttl__wrap {
  width: calc(50% - 40px);
  margin-right: auto;
  margin-left: 0;
  border-bottom: 1px solid #C0C5C9;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .safety_environment .container .head .ttl__wrap {
    margin: 0;
    width: 100%;
  }
}
.main .l-service .safety_environment .container .head .ttl__wrap .ttl {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2.3333333333;
  padding-left: 24px;
  position: relative;
}
.main .l-service .safety_environment .container .head .ttl__wrap .ttl:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #02468C;
  position: absolute;
  z-index: 1;
  top: 27px;
  left: 0;
}
@media only screen and (max-width: 600px) {
  .main .l-service .safety_environment .container .head .ttl__wrap .ttl:before {
    top: 19px;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .safety_environment .container .head .ttl__wrap .ttl {
    font-size: 18px;
    padding-left: 16px;
  }
}
.main .l-service .safety_environment .container .head .img {
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .safety_environment .container .head .img {
    width: 100%;
    height: initial;
    margin-top: 32px;
    position: static;
    position: relative;
    overflow: hidden;
  }
  .main .l-service .safety_environment .container .head .img:before {
    content: "";
    display: block;
    padding-top: 62%;
  }
  .main .l-service .safety_environment .container .head .img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.main .l-service .safety_environment .container .head .img:after {
  background-color: #F7F7F7;
}
.main .l-service .safety_environment .container .head .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.main .l-service .safety_environment .container .head .msg {
  width: calc(50% - 40px);
  margin-right: auto;
  margin-left: 0;
  margin-top: 40px;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .safety_environment .container .head .msg {
    width: 100%;
    margin: 0;
    margin-top: 16px;
  }
}
.main .l-service .safety_environment .container .list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -40px;
  margin-top: 64px;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .safety_environment .container .list {
    margin: 64px -15px 0;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .safety_environment .container .list {
    margin: 0;
    margin-top: 32px;
  }
}
.main .l-service .safety_environment .container .list .item {
  width: 33.3333333333%;
  padding: 0 40px;
}
@media only screen and (max-width: 1250px) {
  .main .l-service .safety_environment .container .list .item {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .safety_environment .container .list .item {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-service .safety_environment .container .list .item:not(:first-of-type) {
    margin-top: 32px;
  }
}
.main .l-service .safety_environment .container .list .item .link {
  display: block;
}
@media only screen and (hover: hover) and (min-width: 600px) {
  .main .l-service .safety_environment .container .list .item .link:hover .img img {
    transform: scale(1.05);
  }
  .main .l-service .safety_environment .container .list .item .link:hover .txt .ttl {
    color: #00A0DB;
  }
  .main .l-service .safety_environment .container .list .item .link:hover .txt .ttl:before {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .main .l-service .safety_environment .container .list .item .link:active .img img {
    transform: scale(1.05);
  }
  .main .l-service .safety_environment .container .list .item .link:active .txt .ttl {
    color: #00A0DB;
  }
  .main .l-service .safety_environment .container .list .item .link:active .txt .ttl:before {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.main .l-service .safety_environment .container .list .item .link:before {
  background-color: #F7F7F7;
}
.main .l-service .safety_environment .container .list .item .link .img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
}
.main .l-service .safety_environment .container .list .item .link .img:before {
  content: "";
  display: block;
  padding-top: 42%;
}
.main .l-service .safety_environment .container .list .item .link .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .l-service .safety_environment .container .list .item .link .txt {
  margin-top: 16px;
  padding-right: 24px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .main .l-service .safety_environment .container .list .item .link .txt {
    margin-top: 8px;
  }
}
.main .l-service .safety_environment .container .list .item .link .txt .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  position: relative;
  padding-bottom: 3px;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
@media only screen and (max-width: 600px) {
  .main .l-service .safety_environment .container .list .item .link .txt .ttl {
    font-size: 16px;
  }
}
.main .l-service .safety_environment .container .list .item .link .txt .ttl:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #00102B;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.main .l-service .safety_environment .container .list .item .link .txt .icon {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}
.main .l-service .safety_environment .container .list .item .link .txt .icon svg {
  display: block;
  width: 7.5px;
}