@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&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-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;
}

.l-skill_layer {
  padding-right: 5%;
  padding-left: 5%;
  padding-bottom: 120px;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer {
    padding-bottom: 80px;
  }
}
.l-skill_layer.first {
  padding-top: 72px;
  margin-top: -72px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer.first {
    padding-top: 64px;
    margin-top: -64px;
  }
}
@media only screen and (max-width: 400px) {
  .l-skill_layer.first {
    padding-top: 50px;
    margin-top: -50px;
  }
}
.l-skill_layer:nth-child(odd) {
  padding-top: 96px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer:nth-child(odd) {
    padding-top: 40px;
  }
}
.l-skill_layer:nth-child(odd):before {
  background-color: #F0F0F0;
}
.l-skill_layer:nth-child(odd) .c-head {
  background-color: #F0F0F0;
}
.l-skill_layer:before {
  content: "";
  background-color: #F7F7F7;
  position: absolute;
  z-index: -5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-skill_layer .container {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
.l-skill_layer .container .method {
  position: relative;
  margin-top: 40px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .method {
    margin-top: 32px;
  }
}
.l-skill_layer .container .method .img {
  position: relative;
  overflow: hidden;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}
.l-skill_layer .container .method .img:before {
  content: "";
  display: block;
  padding-top: 37.5%;
}
.l-skill_layer .container .method .img 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) {
  .l-skill_layer .container .method .img {
    width: 100%;
    height: 300px;
  }
}
.l-skill_layer .container .method .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.l-skill_layer .container .method .txt {
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #02376B;
  padding: 40px;
  width: 90%;
  max-width: 640px;
  margin-right: auto;
  margin-top: -12%;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .method .txt {
    position: static;
    padding: 32px;
    margin-top: 0;
    width: 100%;
  }
}
.l-skill_layer .container .method .txt .head .ttl {
  font-size: 24px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .method .txt .head .ttl {
    font-size: 18px;
  }
}
.l-skill_layer .container .method .txt .msg {
  margin-top: 15px;
}
.l-skill_layer .container .method .txt .msg p {
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .method .txt .msg p br {
    display: none;
  }
}
.l-skill_layer .container .feature,
.l-skill_layer .container .detail {
  margin-top: 64px;
  border-top: 8px solid #02376B;
  background-color: #fff;
  padding: 40px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .detail {
    padding: 20px;
  }
}
.l-skill_layer .container .detail .content {
  margin-left: auto;
  margin-right: auto;
  max-width: 920px;
}
@media only screen and (max-width: 1250px) {
  .l-skill_layer .container .detail .content {
    max-width: 100%;
  }
  .l-skill_layer .container .detail .content img {
    max-width: 100%;
    height: auto;
  }
}
.l-skill_layer .container .detail .content > * {
  margin-top: 24px;
  line-height: 2;
}
.l-skill_layer .container .detail .content a:not(:has(img)) {
  padding-bottom: 1px;
  background: linear-gradient(#00AAAA, #00AAAA) no-repeat;
  background-size: 100% 1px;
  background-position: left bottom;
  color: #00AAAA;
  transition: background-size 0.3s ease;
}
@media only screen and (hover: hover) and (min-width: 600px) {
  .l-skill_layer .container .detail .content a:not(:has(img)):hover {
    background-size: 0% 1px;
    background-position: right bottom;
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .l-skill_layer .container .detail .content a:not(:has(img)):active {
    background-size: 0% 1px;
    background-position: right bottom;
  }
}
.l-skill_layer .container .detail .content a:has(img) {
  display: inline-block;
  margin-top: 24px;
}
.l-skill_layer .container .detail .content h3 {
  font-size: 20px;
  margin-top: 40px;
  padding-bottom: 16px;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .detail .content h3 {
    margin-top: 24px;
    font-size: 16px;
    padding-bottom: 8px;
  }
}
.l-skill_layer .container .detail .content h3:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background-color: #02468C;
}
.l-skill_layer .container .detail .content h4 {
  font-size: 18px;
  margin-top: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid #C0C5C9;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .detail .content h4 {
    margin-top: 24px;
    font-size: 14px;
    padding-bottom: 8px;
  }
}
.l-skill_layer .container .detail .content h5 {
  position: relative;
  font-size: 16px;
  padding-left: 16px;
  padding-bottom: 8px;
}
.l-skill_layer .container .detail .content h5:after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00AAAA;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .detail .content h5 {
    margin-top: 24px;
    font-size: 14px;
    padding-bottom: 8px;
  }
}
.l-skill_layer .container .detail .content div, .l-skill_layer .container .detail .content p, .l-skill_layer .container .detail .content blockquote, .l-skill_layer .container .detail .content ul, .l-skill_layer .container .detail .content ol, .l-skill_layer .container .detail .content dl {
  line-height: 2;
}
.l-skill_layer .container .detail .content ul li:not(:first-child), .l-skill_layer .container .detail .content ol li:not(:first-child) {
  margin-top: 2px;
}
.l-skill_layer .container .detail .content ul li {
  position: relative;
  padding-left: 24px;
  line-height: 2;
}
.l-skill_layer .container .detail .content ul li:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  width: 6px;
  height: 6px;
  background-color: #00AAAA;
  border-radius: 50%;
}
.l-skill_layer .container .detail .content table {
  width: 100%;
  border-collapse: collapse;
}
.l-skill_layer .container .detail .content table tr th,
.l-skill_layer .container .detail .content table tr td {
  padding: 8px 16px;
  border-bottom: 1px solid #F0F0F0;
  border-right: 1px solid #F0F0F0;
  border-collapse: collapse;
  width: 240px;
}
.l-skill_layer .container .detail .content table tr th:first-child,
.l-skill_layer .container .detail .content table tr td:first-child {
  background-color: #F0F0F0;
  border-bottom: 1px solid #fff;
}
.l-skill_layer .container .detail .content table tr:first-child th,
.l-skill_layer .container .detail .content table tr:first-child td {
  border-top: 1px solid #F0F0F0;
  border-collapse: collapse;
}
@media only screen and (max-width: 1250px) {
  .l-skill_layer .container .detail .content table th,
  .l-skill_layer .container .detail .content table td {
    width: calc(100% - 160px);
    font-size: 13px;
    line-height: 1.5;
  }
  .l-skill_layer .container .detail .content table th:first-child,
  .l-skill_layer .container .detail .content table td:first-child {
    max-width: 160px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .detail .content table th,
  .l-skill_layer .container .detail .content table td {
    padding: 8px;
    width: calc(100% - 140px);
  }
  .l-skill_layer .container .detail .content table th:first-child,
  .l-skill_layer .container .detail .content table td:first-child {
    padding: 8px;
    max-width: 140px;
  }
}
.l-skill_layer .container .detail .content .wp-block-image {
  text-align: center;
}
.l-skill_layer .container .detail .content .wp-block-image figcaption {
  font-size: 12px;
}
.l-skill_layer .container .detail .content .wp-block-columns {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 1250px) {
  .l-skill_layer .container .detail .content .wp-block-columns {
    flex-direction: column;
    gap: 20px;
  }
}
.l-skill_layer .container .detail .content .wp-block-gallery {
  display: flex;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .detail .content .wp-block-gallery {
    flex-direction: column;
    gap: 20px;
  }
}
.l-skill_layer .container .detail .content ol li {
  margin-left: 24px;
  list-style-type: decimal;
  line-height: 2;
}
.l-skill_layer .container .detail .content iframe {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .feature {
    margin-top: 72px;
    padding: 32px;
  }
}
.l-skill_layer .container .feature.case {
  border-top: none;
}
.l-skill_layer .container .feature .head {
  text-align: center;
}
.l-skill_layer .container .feature .head .ttl {
  font-size: 24px;
  line-height: 2;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .feature .head .ttl {
    font-size: 16px;
  }
}
.l-skill_layer .container .feature .list {
  margin: 0 -20px;
  counter-reset: number;
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .feature .list {
    margin-top: 32px;
  }
}
.l-skill_layer .container .feature .list.type2 {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .feature .list.type2 {
    margin-top: 32px;
  }
}
.l-skill_layer .container .feature .list.type2 .item {
  width: 100%;
  margin: 16px 0 0 0;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .feature .list.type2 .item p {
    font-size: 12px;
  }
  .l-skill_layer .container .feature .list.type2 .item p br {
    display: none;
  }
}
.l-skill_layer .container .feature .list.type2 .item p span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .feature .list.type2 .item p span {
    font-size: 14px;
  }
}
.l-skill_layer .container .feature .list .item {
  width: calc(50% - 40px);
  margin: 40px 20px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #C0C5C9;
  list-style: none;
  counter-increment: number;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .feature .list .item {
    width: 100%;
    margin: 16px 0 0 0;
  }
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .feature .list .item:first-of-type {
    margin-top: 0;
  }
}
.l-skill_layer .container .feature .list .item::before {
  content: counter(number);
  background-color: #00AAAA;
  color: #fff;
  width: 40px;
  line-height: 40px;
  border-radius: 20px;
  display: block;
  text-align: center;
  margin-right: 16px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .feature .list .item::before {
    width: 32px;
    line-height: 32px;
    margin-right: 8px;
  }
}
.l-skill_layer .container .feature .list .item p {
  width: calc(100% - 56px);
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .feature .list .item p {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .feature .list .item p br {
    display: none;
  }
}
.l-skill_layer .container .view {
  margin-top: 40px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .view {
    margin-top: 64px;
  }
}
.l-skill_layer .container .view .list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -24px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .view .list {
    margin: 0;
  }
}
.l-skill_layer .container .view .list .item {
  width: 50%;
  padding: 24px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .view .list .item {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .view .list .item:not(:first-of-type) {
    margin-top: 32px;
  }
}
.l-skill_layer .container .view .list .item .img {
  position: relative;
  overflow: hidden;
}
.l-skill_layer .container .view .list .item .img:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.l-skill_layer .container .view .list .item .img 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) {
  .l-skill_layer .container .view .list .item .img {
    position: relative;
    overflow: hidden;
  }
  .l-skill_layer .container .view .list .item .img:before {
    content: "";
    display: block;
    padding-top: 62%;
  }
  .l-skill_layer .container .view .list .item .img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.l-skill_layer .container .view .list .item .txt {
  margin-top: 16px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .view .list .item .txt {
    margin-top: 8px;
  }
}
.l-skill_layer .container .link {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .link {
    margin-top: 64px;
    display: block;
  }
}
.l-skill_layer .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) {
  .l-skill_layer .container .link .btn1 {
    height: 64px;
  }
}
.l-skill_layer .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;
}
.l-skill_layer .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) {
  .l-skill_layer .container .link .btn1:hover:after {
    height: 100%;
  }
}
@media only screen and (hover: none) and (min-width: 600px) {
  .l-skill_layer .container .link .btn1:active:after {
    height: 100%;
  }
}
.l-skill_layer .container .link .btn1 .btn1__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.l-skill_layer .container .link .btn1 .btn1__inner .txt {
  font-size: 14px;
  color: #fff;
}
.l-skill_layer .container .link .btn1 .btn1__inner .tab {
  display: block;
  margin-left: 10px;
}
.l-skill_layer .container .link .btn1 .btn1__inner .icon {
  width: 7.5px;
  position: absolute;
  z-index: 1;
  right: 24px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .link .btn1 {
    display: block;
    margin: 0 auto;
  }
}
.l-skill_layer .container .link .btn1:first-of-type {
  margin-right: 24px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .container .link .btn1:first-of-type {
    margin: 0 auto;
    margin-bottom: 32px;
  }
}
.l-skill_layer .article-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -26px;
}
@media only screen and (max-width: 767px) {
  .l-skill_layer .article-list {
    margin: 0;
  }
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .article-list {
    margin-top: 10px;
  }
}
.l-skill_layer .article-list.case {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
.l-skill_layer .article-list .item {
  margin-left: 26px;
  margin-right: 26px;
  padding-top: 25px;
  padding-bottom: 25px;
  width: calc(100% - 26px);
  border-bottom: 1px solid #C0C5C9;
}
@media only screen and (max-width: 767px) {
  .l-skill_layer .article-list .item {
    margin-left: 0;
    margin-right: 0;
    padding: 24px 0;
    width: 100%;
  }
}
.l-skill_layer .article-list .item .item-link {
  display: block;
}
.l-skill_layer .article-list .item .item-link .item-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.l-skill_layer .article-list .item .item-link .item-img:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.l-skill_layer .article-list .item .item-link .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-skill_layer .article-list .item .item-link .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.l-skill_layer .article-list .item .item-link .item-info-category,
.l-skill_layer .article-list .item .item-link .item-info-detail,
.l-skill_layer .article-list .item .item-link .item-info-sitem {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.l-skill_layer .article-list .item .item-link .item-info-category {
  margin-left: 0;
  margin-top: 0;
}
.l-skill_layer .article-list .item .item-link .item-info-detail {
  margin-top: 12px;
  margin-left: -8px;
}
.l-skill_layer .article-list .item .item-link .item-info-sitem {
  margin-left: 24px;
  margin-top: 2px;
}
.l-skill_layer .article-list .item .item-link .item-info-headline {
  font-size: 14px;
  font-weight: normal;
}
.l-skill_layer .article-list .item .item-link .item-info-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.l-skill_layer .article-list .item .item-link .item-info-text {
  font-size: 16px;
}
.l-skill_layer .article-list .item .item-link .item-info {
  margin-top: -12px;
  margin-left: -16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .article-list .item .item-link .item-info {
    display: block;
  }
}
.l-skill_layer .article-list .item .item-link .item-info .item-cat,
.l-skill_layer .article-list .item .item-link .item-info .item-cat-reverse {
  margin-left: 16px;
  margin-top: 16px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .article-list .item .item-link .item-info .item-cat {
    text-align: left;
  }
}
.l-skill_layer .article-list .item .item-link .item-info .item-cat span {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  background-color: #02376B;
  padding: 5px 10px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .article-list .item .item-link .item-info .item-cat-reverse {
    text-align: left;
  }
}
.l-skill_layer .article-list .item .item-link .item-info .item-cat-reverse span {
  display: inline-block;
  color: #02376B;
  font-size: 14px;
  border: 2px solid #02376B;
  padding: 3px 10px;
}
.l-skill_layer .article-list .item .item-link .item-info .item-date {
  font-family: "Teko", sans-serif;
  font-weight: 400;
  padding-top: 5px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .article-list .item .item-link .item-info .item-date {
    width: 100%;
    text-align: left;
    margin-top: 8px;
    padding-top: 0;
  }
}
.l-skill_layer .article-list .item .item-link .item-head {
  text-align: left;
  margin-top: 16px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .article-list .item .item-link .item-head {
    margin-top: 16px;
  }
}
.l-skill_layer .article-list .item .item-link .item-head .item-head__inner {
  display: inline-block;
}
.l-skill_layer .article-list .item .item-link .item-head .item-head__inner .item-ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  overflow: hidden;
  display: -webkit-box;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
  position: relative;
  padding-bottom: 2px;
}
.l-skill_layer .article-list .item .item-link .item-msg {
  margin-top: 12px;
}
@media only screen and (max-width: 600px) {
  .l-skill_layer .article-list .item .item-link .item-msg {
    margin-top: 8px;
  }
}
.l-skill_layer .article-list .item .item-link .item-msg p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.l-skill_layer .article-list .item .item-link .item-msg p .msg {
  display: block;
  font-size: 12px;
  margin-right: 8.5px;
}
.l-skill_layer .article-list .item .item-link .item-msg p .icon {
  display: block;
  width: 7.41px;
  transition: all 0.6s cubic-bezier(0.32, 0.94, 0.6, 1);
}
.l-skill_layer .article-list .item .item-link .item-msg p .icon svg {
  display: block;
  width: 100%;
}

.main .faq .content {
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 50px;
  width: 960px;
}
@media only screen and (max-width: 1250px) {
  .main .faq .content {
    padding-right: 5%;
    padding-left: 5%;
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
  }
}
.main .faq .ttl {
  margin-bottom: 68px;
  text-align: center;
}
@media only screen and (max-width: 1250px) {
  .main .faq .ttl {
    margin-bottom: 40px;
    font-size: 16px;
  }
}
.main .faq-item {
  position: relative;
  padding: 28px 30px;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
}
.main .faq-item-container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 50px;
}
.main .faq-item .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main .faq-item .question .text {
  display: flex;
  align-items: center;
  column-gap: 16px;
  width: calc(100% - 36px);
  font-size: 16px;
  line-height: 2;
}
.main .faq-item .question .text:before {
  font-family: "Teko", sans-serif;
  font-weight: 400;
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 41px;
  background-color: #00AAAA;
  border-radius: 50%;
  font-size: 26px;
  color: #fff;
  line-height: 1;
}
.main .faq-item .question .open-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main .faq-item .question .open-button .icon {
  position: relative;
  right: 16px;
}
.main .faq-item .question .open-button .icon:before, .main .faq-item .question .open-button .icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  width: 14px;
  height: 2px;
  background-color: #333;
}
.main .faq-item .question .open-button .icon:after {
  transform: rotate(90deg);
}
.main .faq-item .question .open-button.is-active .icon:after {
  display: none;
}
.main .faq-item .answer {
  display: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #C0C5C9;
  line-height: 2;
}
@media only screen and (max-width: 600px) {
  .main .faq-item {
    padding: 16px;
  }
  .main .faq-item .question .text {
    width: calc(100% - 22px);
    font-size: 14px;
  }
  .main .faq-item .question .text:before {
    min-width: 32px;
    height: 32px;
    font-size: 22px;
  }
  .main .faq-item-container {
    margin-bottom: 40px;
  }
}
.main .contact-text {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .main .contact-text {
    font-size: 18px;
  }
}