#header .header {
  background-color: transparent;
  box-shadow: none;
}
#header .header .head-logo a {
  background-image: url(../img/logo-w.png);
}
#header .header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: headerShow 0.4s ease;
}
@keyframes headerShow {
  from {
    opacity: 0.8;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#header .header.scrolled .head-logo a {
  background-image: url(../img/logo.png);
}
#header .header.scrolled #gnavi ul li a {
  color: #333;
}
#header .header.scrolled #gnavi ul li a::after {
  background-color: #005bac;
}
@media (min-width: 480px) {
  #header .header.scrolled #gnavi ul li a:hover {
    color: #005bac;
  }
}
#header .header.scrolled #gnavi ul li.tel .ico {
  background-color: #333;
}
#header .header.scrolled #gnavi ul li.inquiry-navi a {
  color: #fff;
}
#header .header #gnavi ul li a {
  color: #fff;
}
#header .header #gnavi ul li a::after {
  background-color: #fff;
}
#header .header #gnavi ul li.tel .ico {
  background-color: #fff;
}
@media (min-width: 480px) {
  #header .header #gnavi ul li.inquiry-navi a:hover {
    color: #6eb92b;
  }
}

.visual {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 480px) {
  .visual {
    height: 151.7948717949vw;
  }
}
.visual .visual_img {
  position: relative;
  width: 100%;
  height: 100%;
}
.visual .visual_img img {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
}
.visual .visual_img img.active {
  opacity: 1;
}
.visual .visual_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  filter: drop-shadow(0 0 7px rgba(39, 39, 39, 0.5));
  transition: filter 2s ease;
}
@media (max-width: 480px) {
  .visual .visual_txt {
    transform: translate(-50%, -110%);
    filter: drop-shadow(0 0 4px rgba(39, 39, 39, 0.5));
  }
}
.visual .visual_txt .main,
.visual .visual_txt .sub {
  transition: color 2s ease;
}
.visual .visual_txt .main {
  font-size: 6.7rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1.2rem;
  font-feature-settings: "palt";
  margin-bottom: 45px;
}
@media (max-width: 480px) {
  .visual .visual_txt .main {
    font-size: 11.2820512821vw;
    white-space: nowrap;
    letter-spacing: 1.0256410256vw;
    margin-bottom: 4.6153846154vw;
  }
}
.visual .visual_txt .sub {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .visual .visual_txt .sub {
    font-size: 4.4871794872vw;
    line-height: 1.6;
    margin-bottom: 2.5641025641vw;
  }
}
.visual .visual_txt .list ul {
  display: flex;
  align-items: center;
  gap: 9px;
}
@media (max-width: 480px) {
  .visual .visual_txt .list ul {
    gap: 1.5384615385vw;
  }
}
.visual .visual_txt .list ul li {
  display: flex;
  justify-content: center;
  align-content: center;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  color: #005bac;
  background-color: #fff;
  padding: 11px 21px 12px;
  transition: color 2s, background-color 2s;
}
@media (max-width: 480px) {
  .visual .visual_txt .list ul li {
    font-size: 2.9487179487vw;
    padding: 2.1794871795vw 1.9230769231vw 2.0512820513vw;
  }
}
.visual .visual_txt.active {
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.5));
}
@media (max-width: 480px) {
  .visual .visual_txt.active {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
  }
}
.visual .visual_txt.active .main,
.visual .visual_txt.active .sub {
  color: #005bac;
}
.visual .visual_txt.active .list ul li {
  color: #fff;
  background-color: #005bac;
}

.intro {
  position: relative;
  height: 760px;
  background-image: linear-gradient(#005bac, #24b2ef 55%, #c9ecff 83%, #ffffff);
  text-shadow: 0 0 10px rgba(0, 63, 104, 0.8);
  overflow-x: clip;
}
@media (max-width: 480px) {
  .intro {
    height: 197.4358974359vw;
    text-shadow: 0 0 5px rgba(0, 63, 104, 0.8);
  }
}
.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 70%, rgb(255, 255, 255) 100%), url(../img/noise.png);
  background-repeat: no-repeat, repeat;
  background-size: cover, 100px;
  z-index: 0;
}
.intro::after {
  content: "";
  position: absolute;
  bottom: 190px;
  left: 50%;
  transform: translateX(12%);
  width: 500px;
  height: 429px;
  background-image: url(../img/mark.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  mix-blend-mode: overlay;
  opacity: 0.4;
  z-index: 1;
}
@media (max-width: 480px) {
  .intro::after {
    bottom: auto;
    top: 7.6923076923vw;
    left: auto;
    right: 2.5641025641vw;
    transform: unset;
    width: 49.1025641026vw;
    height: 42.0512820513vw;
  }
}
.intro .intro_ttl {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: left;
  margin-bottom: 53px;
}
@media (max-width: 480px) {
  .intro .intro_ttl {
    font-size: 6.4102564103vw;
    line-height: 1.6;
    margin-bottom: 5.3846153846vw;
  }
}
.intro .msg {
  position: relative;
  color: #fff;
  z-index: 2;
}
.intro .msg p {
  line-height: 1.9;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .intro .msg p {
    line-height: 1.5;
  }
}
.intro .msg p:not(:last-child) {
  margin-bottom: 28px;
}
@media (max-width: 480px) {
  .intro .msg p:not(:last-child) {
    margin-bottom: 5.1282051282vw;
  }
}

.technology {
  position: relative;
  margin-top: -115px;
  z-index: 5;
}
@media (max-width: 480px) {
  .technology {
    margin-top: -44.8717948718vw;
  }
}
.technology .msg {
  line-height: 1.9;
  letter-spacing: 0;
  text-align: center;
  padding: 33px 0 53px;
}
@media (max-width: 480px) {
  .technology .msg {
    line-height: 1.6;
    text-align: left;
    padding: 7.1794871795vw 0 5.641025641vw;
  }
}
.technology .link_list {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 60px;
  margin-bottom: 70px;
}
@media (max-width: 480px) {
  .technology .link_list {
    flex-direction: column;
    gap: 3.8461538462vw;
    margin-bottom: 8.9743589744vw;
  }
}
.technology .link_list .btn_item {
  width: 520px;
}
@media (max-width: 480px) {
  .technology .link_list .btn_item {
    width: 100%;
  }
}
.technology .link_list .btn_item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.technology .link_list .btn_item a img {
  transition: transform 0.3s;
}
.technology .link_list .btn_item a .txt {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
}
@media (max-width: 480px) {
  .technology .link_list .btn_item a .txt {
    bottom: 3.8461538462vw;
  }
}
.technology .link_list .btn_item a .txt .sub_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .technology .link_list .btn_item a .txt .sub_ttl {
    font-size: 4.6153846154vw;
    margin-bottom: 1.2820512821vw;
  }
}
.technology .link_list .btn_item a .txt .main_ttl {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .technology .link_list .btn_item a .txt .main_ttl {
    font-size: 5.7692307692vw;
    margin-bottom: 1.2820512821vw;
  }
}
.technology .link_list .btn_item a .txt .detail {
  line-height: 1.8;
}
@media (max-width: 480px) {
  .technology .link_list .btn_item a .txt .detail {
    font-size: 3.3333333333vw;
    line-height: 1.7;
  }
}
.technology .link_list .btn_item a .arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58px;
  height: 58px;
  background: #005bac;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media (max-width: 480px) {
  .technology .link_list .btn_item a .arrow {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
  }
}
.technology .link_list .btn_item a .arrow .point {
  position: absolute;
  bottom: 14px;
  right: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 8.8px;
  border-color: transparent transparent transparent #FFFFFF;
}
@media (max-width: 480px) {
  .technology .link_list .btn_item a .arrow .point {
    bottom: 2.4358974359vw;
    right: 2.0512820513vw;
    border-width: 0.8333333333vw 0 0.8333333333vw 1.4102564103vw;
  }
}
@media (min-width: 480px) {
  .technology .link_list .btn_item a:hover img {
    transform: scale(1.1);
  }
}

.company .grid_in {
  display: grid;
  grid-template-columns: 1fr 500px;
  grid-template-rows: 308px 70px;
  padding-top: 90px;
}
@media (max-width: 480px) {
  .company .grid_in {
    grid-template-columns: 100%;
    grid-template-rows: 58.9743589744vw 67.9487179487vw auto;
    padding-top: 9.4871794872vw;
  }
}
.company .txt {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-top: -10px;
}
.company .txt .ttl {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .company .txt .ttl {
    font-size: 5.1282051282vw;
    margin-bottom: 5.7692307692vw;
  }
}
.company .txt .msg p {
  margin-bottom: 0;
}
.company .txt .msg p:not(:last-child) {
  margin-bottom: 23px;
}
@media (max-width: 480px) {
  .company .txt .msg p:not(:last-child) {
    margin-bottom: 0;
  }
}
.company .img {
  grid-column: 2/3;
  grid-row: 1/3;
  width: 471px;
  justify-self: flex-end;
}
@media (max-width: 480px) {
  .company .img {
    grid-column: 1/2;
    grid-row: 2/3;
    width: 100%;
    justify-self: center;
  }
}
.company .btn_list {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
}
@media (max-width: 480px) {
  .company .btn_list {
    grid-row: 3/4;
    flex-direction: column;
    justify-content: center;
    gap: 3.8461538462vw;
  }
}
.company .btn_list .link_btn a {
  width: 287px;
}
@media (max-width: 480px) {
  .company .btn_list .link_btn a {
    width: 83.3333333333vw;
  }
}
.company .btn_list .link_btn a .arrow {
  right: 30px;
}
@media (max-width: 480px) {
  .company .btn_list .link_btn a .arrow {
    right: 3.8461538462vw;
  }
}

.cta {
  background-image: url(../img/cta_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0;
}
@media (max-width: 480px) {
  .cta {
    padding: 14.1025641026vw 0 15.3846153846vw;
  }
}
.cta .unit_ttl01 {
  font-size: 3rem;
}
@media (max-width: 480px) {
  .cta .unit_ttl01 {
    font-size: 5.7692307692vw;
    line-height: 1.2;
  }
}
.cta .msg {
  font-weight: 500;
  text-align: center;
  padding: 20px 0 40px;
}
@media (max-width: 480px) {
  .cta .msg {
    padding: 6.6666666667vw 0;
  }
}
.cta .cta_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 82px;
}
@media (max-width: 480px) {
  .cta .cta_list {
    flex-direction: column;
    gap: 3.3333333333vw;
  }
}
.cta .cta_list .list_item {
  width: 509px;
  height: 130px;
}
@media (max-width: 480px) {
  .cta .cta_list .list_item {
    width: 84.8717948718vw;
    height: 21.7948717949vw;
  }
}
.cta .cta_list .list_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #005bac;
  background-color: #fff;
  border: 2px solid #005bac;
}
@media (max-width: 480px) {
  .cta .cta_list .list_item a {
    border: 1px solid #005bac;
  }
}
.cta .cta_list .list_item a.tel_link {
  flex-direction: column;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4.9rem;
  font-weight: bold;
  line-height: 1.8;
}
@media (max-width: 480px) {
  .cta .cta_list .list_item a.tel_link {
    gap: 2.5641025641vw;
    font-size: 8.2051282051vw;
    line-height: 1;
  }
}
.cta .cta_list .list_item a.tel_link .icon {
  display: inline-block;
  width: 25px;
  height: 35px;
  -webkit-mask-image: url(../img/tel_ico.png);
          mask-image: url(../img/tel_ico.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #005bac;
  margin-right: 17px;
}
@media (max-width: 480px) {
  .cta .cta_list .list_item a.tel_link .icon {
    width: 4.2307692308vw;
    height: 5.8974358974vw;
    margin-right: 2.3076923077vw;
  }
}
.cta .cta_list .list_item a.tel_link .time {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
}
@media (max-width: 480px) {
  .cta .cta_list .list_item a.tel_link .time {
    font-size: 3.2051282051vw;
    margin-bottom: 0;
  }
}
.cta .cta_list .list_item a.mail_link {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
  background-color: #005bac;
  transition: color 0.3s, background-color 0.3s;
}
@media (max-width: 480px) {
  .cta .cta_list .list_item a.mail_link {
    font-size: 3.8461538462vw;
    line-height: 1.2;
    padding-right: 6.1538461538vw;
  }
}
.cta .cta_list .list_item a.mail_link .icon {
  width: 55px;
  height: 43px;
  -webkit-mask-image: url(../img/inquiry_ico.png);
          mask-image: url(../img/inquiry_ico.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  margin-right: 30px;
  transition: background-color 0.3s;
}
@media (max-width: 480px) {
  .cta .cta_list .list_item a.mail_link .icon {
    width: 9.1025641026vw;
    height: 7.3076923077vw;
    margin-right: 5.1282051282vw;
  }
}
.cta .cta_list .list_item a.mail_link .arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background-color: #fff;
  border-radius: 50px;
  transition: background-color 0.3s;
}
@media (max-width: 480px) {
  .cta .cta_list .list_item a.mail_link .arrow {
    right: 5.1282051282vw;
    width: 5.7692307692vw;
    height: 5.7692307692vw;
  }
}
.cta .cta_list .list_item a.mail_link .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 10.8px;
  border-color: transparent transparent transparent #005bac;
  transition: border-color 0.3s;
}
@media (max-width: 480px) {
  .cta .cta_list .list_item a.mail_link .arrow::before {
    transform: translate(-27%, -50%);
    border-width: 1.2820512821vw 0 1.2820512821vw 1.9230769231vw;
  }
}
@media (min-width: 480px) {
  .cta .cta_list .list_item a.mail_link:hover {
    color: #005bac;
    background-color: #fff;
  }
  .cta .cta_list .list_item a.mail_link:hover .icon {
    background-color: #005bac;
  }
  .cta .cta_list .list_item a.mail_link:hover .arrow {
    background-color: #005bac;
  }
  .cta .cta_list .list_item a.mail_link:hover .arrow::before {
    border-color: transparent transparent transparent #fff;
  }
}/*# sourceMappingURL=top.css.map */