﻿@charset "UTF-8";

html { scroll-behavior: smooth;}


body {
  display: none;
}
body.loaded {
  display: block;
  animation: body-fade-in 0.5s;
}

@keyframes body-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html {
  font-size: 10px;
}

@media screen and (max-width: 1320px) {
  html {
    font-size: 0.7936507937vw;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 0.9333333333vw;
  }
}
@media screen and (max-width: 540px) {
  html {
    font-size: 1.3333333333vw;
  }
}
:root {
  --var-translate-val: 15px;
  --var-translate-negative-val: -15px;
  --var-animation-timing-function: cubic-bezier(.18,.52,.33,1);
}

@media screen and (max-width: 1024px) {
  body,
html {
    min-width: 0;
  }
}

body {
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  font-stretch: 95%;
  line-height: 1.75;
  color: #000;
  font-weight: 400;
  word-break: break-all;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 2.6rem;
    font-size: 1.8rem;
  }
}
body.open-menu, body.modal {
  position: fixed;
  width: 100%;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 11rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.2s;
}
.header.header-inner{
  right: auto;
  left: auto;
  /*width: 80%;*/
  /*width: 90%;*/
}
.header.is-scrolled {
  height: 8rem;
}
@media screen and (max-width: 1024px) {
  .header.is-scrolled {
    height: 11rem;
  }
}

.header__logo {
  /*width: 20rem;*/
  width: 25rem;
  margin-left: 20rem;
}


@media screen and (max-width: 1320px) {
  .header__logo {
    /*width: 160px;*/
    width: 200px;
    margin-left: 80px;
    max-width: 250px;
  }
}
.header__logo img {
  width: 100%;
}

.header-inner {
  height: 100%;
  margin-right: 20rem;
}
@media screen and (max-width: 1320px) {
.header-inner {
  height: 100%;
  margin-right: 80px;
}
}

@media screen and (max-width: 1024px) {
  .header-inner {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 30;
    overflow-y: auto;
    overflow-x: hidden;
    /*background-color: #00759c;*/
    background-color: #355055;
    transform: translateX(100%);
    transition: transform 0.3s;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .header-inner::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .is-drawerActive .header-inner {
    transform: translateX(0);
  }
}

.header__menu__wrapper {
  height: 100%;
}

.header__nav {
  height: 100%;
}

.header__nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header__nav__inner {
    display: block;
    padding-top: 11rem;
    padding-bottom: 15rem;
    height: auto;
  }
}

.header__nav__list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__nav__list {
    display: block;
  }
}

.header__nav__list.current-solution .header__nav__item.item01 .underline::before {
  transform: scale(1);
}
.header__nav__list.current-projects .header__nav__item.item02 .underline::before {
  transform: scale(1);
}
.header__nav__list.current-business .header__nav__item.item03 .underline::before {
  transform: scale(1);
}
.header__nav__list.current-recruit .header__nav__item.item04 .underline::before {
  transform: scale(1);
}
.header__nav__list.current-company .header__nav__item.item05 .underline::before {
  transform: scale(1);
}

.header__nav__item {
  margin-right: 5.5rem;
}
@media screen and (max-width: 1024px) {
  .header__nav__item {
    border-bottom: 1px solid #ccddec;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav__item:first-child {
    border-top: 1px solid #ccddec;
  }
}

.header__nav__link {
  font-weight: 700;
  font-size: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .header__nav__link {
    font-size: 2rem;
    padding: 3.5rem 11rem 3.5rem 6rem;
    display: block;
    width: 100%;
    width: 80%;
    height: 100%;
    position: relative;
    color: #fff;
  }
}
.header__nav__link .underline::before {
  transform-origin: center;
}
@media screen and (max-width: 1024px) {
  .header__nav__link .underline::before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav__link::after {
    content: "";
    display: block;
    width: 5rem;
    height: 5rem;
    border: 1px solid #ccddec;
    border-radius: 100%;
    background-image: url(../img/arrow_right-1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 1.6rem 2.1rem;
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
  }
}

.header__nav__item.has-child {
  position: relative;
}
.header__nav__item.has-child .header__nav__parent .text {
  position: relative;
  padding-right: 2.2rem;
}
.header__nav__item.has-child .header__nav__parent .text::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.2rem;
  background-image: url(../img/arrow_down.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
 transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
  .header__nav__item.has-child .header__nav__parent .text::after {
    display: none;
  }
}

.header__nav__item.has-child .child__list {
  position: absolute;
  top: 5.4rem;
  left: 50%;
  transition: all 0.3s;
  transform-origin: top center;
  transform: translateY(-10px) translateX(calc(-50% - 1.1rem));
  opacity: 0;
  transition-timing-function: var(--var-animation-timing-function);
  visibility: hidden;
  background-color: #fff;
  padding-bottom: 0.8rem;
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
  .header__nav__item.has-child .child__list {
    /*display: none;*/
    transform: none;
    visibility: visible;
    }
}


.header__nav__item.has-child:hover .child__list {
  transform: translateY(0) translateX(calc(-50% - 1.1rem));
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1024px) {
  .header__nav__item.has-child:hover .child__list {
    transform: none;
  }
}

.header__nav__item.has-child:hover .header__nav__parent .text::after {
  animation: move-down 0.5s ease 1 normal forwards;
}

.header__nav__item.has-child .child__item a {
  display: block;
  white-space: nowrap;
  line-height: 1;
  padding: 1.2rem 2rem;
  color: #000;
  background-color: #fff;
  transition: all 0.2s;
  transition-timing-function: var(--var-animation-timing-function);
  text-decoration: none;
}
.header__nav__item.has-child .child__item a:hover {
  /*background-color: #f0f4fa;*/
    background-color: #dde6f4;
}

/*.header__facebook {
  margin-right: 5.5rem;
}

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

.facebook__link img {
  transition: all 0.3s;
  transform: scale(1);
}
.facebook__link:hover img {
  transform: scale(1.1);
}*/

.header__contact {
  height: 70%;
}
@media screen and (max-width: 1024px) {
  .header__contact {
    display: none;
  }
}
.header__contact .contact__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19.5rem;
  height: 100%;
  font-weight: 700;
  font-size: 1.6rem;
  overflow: hidden;
  position: relative;
  transition: all 0.3 ease-out;
  background-color: #355055;
}
.header__contact .contact__link .link__text {
  position: relative;
  z-index: 2;
  color: #fff;
  transition: all 0.3s ease-out;
  transform: scale(1);
  display: inline-block;
}
.header__contact .contact__link:hover .link__text {
  transform: scale(1.1);
}

/*.header__recruit__btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__recruit__btn {
    display: block;
    margin: 6rem auto 0;
    width: calc(100% - 12rem);
  }
}*/

.p-hamburger {
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 100;

  width: 11rem;
  height: 11rem;
  /*background-color: transparent;*/
  margin: auto;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  transition: all 0.3s ease-in-out;
  display: none;
  background-color: #355055;
}
@media screen and (max-width: 1024px) {
  .p-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
  }
}

.p-hamburger__line {
  display: block;
  width: 6rem;
  height: 5.7rem;
  position: relative;
}
.p-hamburger__line .line {
  display: block;
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-out;
}
.p-hamburger__line .line:nth-child(1) {
  top: 0px;
  animation: sp-menu07-bar01 0.3s forwards;
}
.p-hamburger__line .line:nth-child(2) {
  top: 2.4rem;
  animation: sp-menu07-bar03 0.3s forwards;
}
.p-hamburger__line .line:nth-child(3) {
  top: 4.8rem;
  animation: sp-menu07-bar03 0.3s forwards;
}

.p-hamburger[aria-expanded=true] {
  background-color: #fff;
}
.p-hamburger[aria-expanded=true] .p-hamburger__line .line {
  background-color: #355055;
}

.p-hamburger[aria-expanded=true] .p-hamburger__line .line:nth-child(1) {
  animation: sp-active-menu07-bar01 0.3s forwards;
}
.p-hamburger[aria-expanded=true] .p-hamburger__line .line:nth-child(2) {
  animation: sp-active-menu07-bar03 0.3s forwards;
}

@keyframes sp-menu07-bar01 {
  0% {
    transform: translateY(1.2rem) rotate(45deg);
  }
  30% {
    transform: translateY(1.2rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes sp-menu07-bar03 {
  0% {
    transform: translateY(-1.2rem) rotate(-45deg);
  }
  30% {
    transform: translateY(-1.2rem) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes sp-active-menu07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(1.2rem) rotate(0);
  }
  100% {
    transform: translateY(1.2rem) rotate(45deg);
  }
}
@keyframes sp-active-menu07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  30% {
    transform: translateY(-1.2rem) rotate(0);
  }
  100% {
    transform: translateY(-1.2rem) rotate(-45deg);
  }
}


.footer {
  background-color: #d8dee8;
  padding-top: 6rem;
  padding-bottom: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-top: 11rem;
  }
}

.footer .copyright {
  text-align: center;
  font-size: 13px;
}
@media screen and (max-width: 1024px) {
  .footer .copyright {
    font-size: 1.5rem;
    padding-top: 4.5rem;
    border-top: 1px solid #9caabf;
    width: calc(100% - 11rem);
    margin: 0 auto;
  }
}

.footer__logo {
  width: 15rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    width: 20.3rem;
    max-width: 165px;
    margin: 0 auto 4.5rem;
  }
}

.footer__logo img {
  width: 100%;
}

.footer__cols {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1024px) {
  .footer__cols {
    display: block;
    margin-bottom: 3rem;
  }
}

.footer__left {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer__left {
    display: block;
    border-bottom: 1px solid #9caabf;
    padding-bottom: 5rem;
  }
}

.footer__right {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .footer__right {
    padding-top: 7rem;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@media screen and (max-width: 540px) {
  .footer__right {
    justify-content: space-between;
  }
}

.footer__address__list {
  margin-right: 4rem;
}
@media screen and (max-width: 1024px) {
  .footer__address__list {
    margin-right: 0;
  }
}

.footer__address__list li {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .footer__address__list li {
    font-size: 2.3rem;
    margin-bottom: 3rem;
  }
}
.footer__address__list li .office {
  display: inline-block;
  margin-bottom: 0.3rem;
}


@media screen and (max-width: 540px) {
  .footer__link__list {
    width: 50%;
    padding-left: 2.4rem;
  }
}

.footer__link__list li {
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.footer__link__list li ul {
  margin: 1rem ;
}
.footer__link__list li li {
  font-weight: 500;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 1024px) {
  .footer__link__list li {
    font-size: 2.5rem;
  }
}

.footer__link__list.list01 {
  margin-right: 8rem;
}
@media screen and (max-width: 1024px) {
  .footer__link__list.list01 {
    margin-right: 0;
  }
}
.footer__link__list.list02 {
  margin-right: 11rem;
}
@media screen and (max-width: 1024px) {
  .footer__link__list.list02 {
    margin-right: 0;
  }
}
@media screen and (max-width: 540px) {
  .footer__link__list.list03 {
    display: none;
  }
}
.footer__link__list.list04 {
  display: none;
}
@media screen and (max-width: 540px) {
  .footer__link__list.list04 {
    display: block;
    margin-top: 3.5rem;
  }
}
.footer__link__list.list05 {
  display: none;
}
@media screen and (max-width: 540px) {
  .footer__link__list.list05 {
    display: block;
    white-space: nowrap;
    margin-top: 3.5rem;
  }
}

.to__page__top {
  width: 6rem;
  height: 6rem;
  position: absolute;
  top: -12.5rem;
  right: 60px;
}
@media screen and (max-width: 1024px) {
  .to__page__top {
    right: 5.5rem;
    width: 9.8rem;
    height: 9.8rem;
    top: -15.9rem;
  }
}

.to__page__top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /*border-radius: 100%;*/
  border: 1px solid #355055;
  background-color: #fff;
}
.to__page__top a:hover {
  /*animation: move-bounce 0.3s ease-out 1 normal forwards;*/
    border: 1px solid #355055;
    background-color: #d8dee8;
}
.to__page__top .arrow_up {
  width: 2rem;
  height: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .to__page__top .arrow_up {
    width: 3.2rem;
    height: 2.3rem;
  }
}
.to__page__top .arrow_up-1 {
  fill: none;
  stroke: #355055;
  stroke-width: 2px;
  fill-rule: evenodd;
}





.section__contact .top__hl01 {
  margin-bottom: 1.2rem;
}
.section__contact .top__hl01 .text01 {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
    color: #C8EDFF;
}
.section__contact .top__hl01 .text02 {
  font-size: 4.8rem;
    color: #C8EDFF;
}
.section__contact .top__hl01 .text02 br {
  display: none;
}

@media screen and (max-width: 1180px) {
  .section__contact .top__hl01 .text02 br {
    display: initial;
  }
}

@media screen and (max-width: 540px) {
.section__contact .top__hl01 .text02 {
  font-size: 2.8rem;
}
.section__contact .top__hl01 .text01 {
  font-size: 2.2rem;
}
}

.contact__inner {
  text-align: center;
}

.contact__text__block {
  margin-bottom: 1.2rem;
}

.contact__btn__block{
  display: flex;
  justify-content: center;
}
.sec__contact__link{
  display: block;
  padding-top: 7rem;
  padding-bottom: 6rem;
  background-color: #355055;
}
.sec__contact__link p{
    color: #FFF;
}
@media screen and (max-width: 1024px) {
  .sec__contact__link{
  padding-top: 6.5rem;
  padding-bottom: 5.5rem;
  }
}
