<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ----- 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&amp;display=swap");
/* regular */
/* medium */
/* bold */
/* -------------------------------------------- */
/* -------------------- Teko ------------------ */
/* -------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@400;500&amp;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-skill {
  background-color: #F7F7F7;
}
.main .l-skill.back-gray4 {
  background-color: #F0F0F0;
}
.main .l-skill .head_contents {
  padding-top: 60px;
  padding-bottom: 20px;
}
.main .l-skill .skill_contents {
  padding-top: 40px;
  padding-bottom: 80px;
  padding-right: 5%;
  padding-left: 5%;
}
@media only screen and (max-width: 600px) {
  .main .l-skill .skill_contents {
    padding-top: 32px;
  }
}
.main .l-skill .skill_contents .container {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
.main .l-skill .skill_contents .container .ttl__wrap {
  margin-bottom: 16px;
}
.main .l-skill .skill_contents .container .main-skill .list {
  margin: -16px -40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: auto;
}
@media only screen and (max-width: 1250px) {
  .main .l-skill .skill_contents .container .main-skill .list {
    margin: -16px -20px;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-skill .skill_contents .container .main-skill .list {
    margin: 0;
  }
}
.main .l-skill .skill_contents .container .main-skill .list .item {
  width: 33.3333333333%;
  margin-bottom: 16px;
  padding: 0 40px;
}
@media only screen and (max-width: 1250px) {
  .main .l-skill .skill_contents .container .main-skill .list .item {
    margin-bottom: 16px;
    padding: 0 20px;
    width: 50%;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-skill .skill_contents .container .main-skill .list .item {
    margin-bottom: 0;
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-skill .skill_contents .container .main-skill .list .item:not(:first-of-type) {
    margin-top: 32px;
  }
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link {
  display: block;
  border-radius: 8px 8px 0 0;
}
@media only screen and (hover: hover) and (min-width: 600px) {
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link:hover .img img {
    transform: scale(1.05);
  }
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link:hover .txt .head .ttl {
    color: #00A0DB;
  }
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link:hover .txt .head .ttl:before {
    transform-origin: right;
    transform: scaleX(0);
  }
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link:hover .txt .head .icon svg #bridge_23326 {
    stroke: #00A0DB;
  }
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link:hover .txt .head .icon svg #bridge_23327 {
    fill: #00A0DB;
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link:active .img img {
    transform: scale(1.05);
  }
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link:active .txt .head .ttl {
    color: #00A0DB;
  }
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link:active .txt .head .ttl:before {
    transform-origin: right;
    transform: scaleX(0);
  }
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link:active .txt .head .icon svg #bridge_23326 {
    stroke: #00A0DB;
  }
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link:active .txt .head .icon svg #bridge_23327 {
    fill: #00A0DB;
  }
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link.nohover {
  pointer-events: none;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link.nohover .txt .head .ttl:before {
  display: none;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link:before {
  background-color: #F7F7F7;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link.js-delay-1 {
  transition-delay: 0s !important;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link.js-delay-1:before {
  transition-delay: 0s !important;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link.js-delay-2 {
  transition-delay: 0.2s !important;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link.js-delay-2:before {
  transition-delay: 0.2s !important;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link.js-delay-3 {
  transition-delay: 0.4s !important;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link.js-delay-3:before {
  transition-delay: 0.4s !important;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link .img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link .img:before {
  content: "";
  display: block;
  padding-top: 42%;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link .txt {
  margin-top: 16px;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link .txt .head {
  text-align: left;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link .txt .head .ttl {
  font-size: 20px;
  max-width: calc(100% - 29px);
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
@media only screen and (max-width: 600px) {
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link .txt .head .ttl {
    font-size: 16px;
    max-width: calc(100% - 19px);
  }
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link .txt .head .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-skill .skill_contents .container .main-skill .list .item .main-link .txt .head .icon {
  display: inline-block;
  width: 19px;
  margin-left: 10px;
}
@media only screen and (max-width: 600px) {
  .main .l-skill .skill_contents .container .main-skill .list .item .main-link .txt .head .icon {
    margin-left: 5px;
    width: 14px;
  }
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link .txt .head .icon svg {
  display: block;
  width: 100%;
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link .txt .head .icon svg #bridge_23326 {
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link .txt .head .icon svg #bridge_23327 {
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.main .l-skill .skill_contents .container .main-skill .list .item .main-link .txt .msg {
  text-align: left;
  margin-top: 16px;
}
.main .l-skill .skill_contents .container .sub-skill {
  margin-top: 16px;
}
.main .l-skill .skill_contents .container .sub-skill .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1000px;
}
@media only screen and (max-width: 1250px) {
  .main .l-skill .skill_contents .container .sub-skill .list {
    margin: 0 -12px;
  }
}
@media only screen and (max-width: 767px) {
  .main .l-skill .skill_contents .container .sub-skill .list {
    margin: -9px -12px;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-skill .skill_contents .container .sub-skill .list {
    margin: -9px -8px;
  }
}
.main .l-skill .skill_contents .container .sub-skill .list .item {
  width: 33.3333333333%;
  padding: 24px;
}
@media only screen and (max-width: 1250px) {
  .main .l-skill .skill_contents .container .sub-skill .list .item {
    padding: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .main .l-skill .skill_contents .container .sub-skill .list .item {
    width: 50%;
    padding: 9px 12px;
  }
}
@media only screen and (max-width: 600px) {
  .main .l-skill .skill_contents .container .sub-skill .list .item {
    padding: 9px 8px;
  }
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link {
  display: block;
}
@media only screen and (hover: hover) and (min-width: 600px) {
  .main .l-skill .skill_contents .container .sub-skill .list .item .sub-link:hover .img img {
    transform: scale(1.05);
  }
  .main .l-skill .skill_contents .container .sub-skill .list .item .sub-link:hover .txt h3 {
    color: #00A0DB;
  }
  .main .l-skill .skill_contents .container .sub-skill .list .item .sub-link:hover .txt h3:before {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .main .l-skill .skill_contents .container .sub-skill .list .item .sub-link:active .img img {
    transform: scale(1.05);
  }
  .main .l-skill .skill_contents .container .sub-skill .list .item .sub-link:active .txt h3 {
    color: #00A0DB;
  }
  .main .l-skill .skill_contents .container .sub-skill .list .item .sub-link:active .txt h3:before {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link.nohover {
  pointer-events: none;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link.nohover .txt h3:before {
  display: none;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link:before {
  background-color: #F7F7F7;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link.js-delay-4 {
  transition-delay: 0.6s !important;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link.js-delay-4:before {
  transition-delay: 0.6s !important;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link.js-delay-5 {
  transition-delay: 0.8s !important;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link.js-delay-5:before {
  transition-delay: 0.8s !important;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link.js-delay-6 {
  transition-delay: 1s !important;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link.js-delay-6:before {
  transition-delay: 1s !important;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link.js-delay-7 {
  transition-delay: 1.2s !important;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link.js-delay-7:before {
  transition-delay: 1.2s !important;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link .img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link .img:before {
  content: "";
  display: block;
  padding-top: 42%;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link .img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link .txt {
  margin-top: 8px;
}
@media only screen and (max-width: 600px) {
  .main .l-skill .skill_contents .container .sub-skill .list .item .sub-link .txt {
    margin-top: 6px;
  }
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link .txt h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  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-skill .skill_contents .container .sub-skill .list .item .sub-link .txt h3 {
    font-size: 14px;
  }
}
.main .l-skill .skill_contents .container .sub-skill .list .item .sub-link .txt h3: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-skill .skill_contents .container .sub-skill .list .item .sub-link .msg {
  text-align: left;
  margin-top: 16px;
}
.main .l-skill .skill_contents .container .main-skill .line-link,
.main .l-skill .skill_contents .container .sub-skill .line-link {
  display: inline-flex;
}
.main .l-skill .skill_contents .container .main-skill .line-link .link-txt,
.main .l-skill .skill_contents .container .sub-skill .line-link .link-txt {
  display: inline;
  position: relative;
  transition: all 0.5s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.main .l-skill .skill_contents .container .main-skill .line-link .link-txt:before,
.main .l-skill .skill_contents .container .sub-skill .line-link .link-txt:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #00102B;
  z-index: 1;
  left: 0;
  bottom: 0;
  transform: scaleX(1);
  transition: transform 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
  transform-origin: left;
}
.main .l-skill .skill_contents .container .main-skill .line-link .icon,
.main .l-skill .skill_contents .container .sub-skill .line-link .icon {
  margin-left: 10px;
}
.main .l-skill .skill_contents .container .main-skill .line-link:before,
.main .l-skill .skill_contents .container .sub-skill .line-link:before {
  content: "・";
}
@media only screen and (hover: hover) and (min-width: 600px) {
  .main .l-skill .skill_contents .container .main-skill .line-link:hover .link-txt,
  .main .l-skill .skill_contents .container .sub-skill .line-link:hover .link-txt {
    color: #00A0DB;
  }
  .main .l-skill .skill_contents .container .main-skill .line-link:hover .link-txt:before,
  .main .l-skill .skill_contents .container .sub-skill .line-link:hover .link-txt:before {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .main .l-skill .skill_contents .container .main-skill .line-link:active .link-txt,
  .main .l-skill .skill_contents .container .sub-skill .line-link:active .link-txt {
    color: #00A0DB;
  }
  .main .l-skill .skill_contents .container .main-skill .line-link:active .link-txt:before,
  .main .l-skill .skill_contents .container .sub-skill .line-link:active .link-txt:before {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@media only screen and (max-width: 1250px) {
  .main .l-skill .skill_contents .container .main-skill .line-link,
  .main .l-skill .skill_contents .container .sub-skill .line-link {
    font-size: 14px;
    display: inline;
  }
  .main .l-skill .skill_contents .container .main-skill .line-link .link-txt,
  .main .l-skill .skill_contents .container .sub-skill .line-link .link-txt {
    background: linear-gradient(90deg, #00102B, #00102B);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% 1px;
    text-decoration: none;
  }
  .main .l-skill .skill_contents .container .main-skill .line-link .link-txt:before,
  .main .l-skill .skill_contents .container .sub-skill .line-link .link-txt:before {
    display: none;
  }
}
.main .l-skill .skill_contents .container .main-skill .link-item .link-list,
.main .l-skill .skill_contents .container .sub-skill .link-item .link-list {
  margin-top: 10px;
}
.main .l-skill .skill_contents .container .link {
  margin-top: 64px;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .main .l-skill .skill_contents .container .link {
    margin-top: 44px;
  }
}
.main .l-skill .skill_contents .container .link .btn1 {
  display: inline-block;
  border-radius: 8px;
  max-width: 320px;
  width: 100%;
  height: 96px;
  padding: 18px 40px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  .main .l-skill .skill_contents .container .link .btn1 {
    height: 64px;
  }
}
.main .l-skill .skill_contents .container .link .btn1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #1B224C;
  border-radius: 8px;
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.main .l-skill .skill_contents .container .link .btn1: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 .l-skill .skill_contents .container .link .btn1:hover:after {
    height: 100%;
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .main .l-skill .skill_contents .container .link .btn1:active:after {
    height: 100%;
  }
}
.main .l-skill .skill_contents .container .link .btn1 .btn1__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.main .l-skill .skill_contents .container .link .btn1 .btn1__inner .txt {
  font-size: 14px;
  color: #fff;
}
.main .l-skill .skill_contents .container .link .btn1 .btn1__inner .tab {
  display: block;
  margin-left: 10px;
}
.main .l-skill .skill_contents .container .link .btn1 .btn1__inner .icon {
  width: 7.5px;
  position: absolute;
  z-index: 1;
  right: 24px;
}</pre></body></html>