@charset "UTF-8";
/*--------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 このファイルはsassでコンパイルされています
 以下の内容を変更したい場合は構成するscssファイルを
 ご確認ください
 ※※※※※※※※※※※※※※※※※※※※※※※※
--------------------------------------------------*/
/*============================
//_mixin.cscc
============================ */
/*============================
//_animate.scss
//PC
============================ */
@keyframes float {
  0% {
    transform: translateY(0) rotate(25deg);
  }
  33.33333% {
    transform: translateY(-10px) rotate(25deg);
  }
  66.66667% {
    transform: translateY(0) rotate(25deg);
  }
  100% {
    transform: translateY(0) rotate(25deg);
  }
}
@keyframes curtain {
  100% {
    left: -450px;
  }
  33% {
    left: -450px;
  }
  0% {
    left: 0;
  }
}
@keyframes move {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes wave {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  65% {
    background-color: rgba(203, 210, 217, 0.6);
    opacity: 0;
    box-shadow: 0 0 0 40px rgba(31, 41, 51, 0.1);
  }
  100% {
    opacity: 0;
  }
}
/*============================
//_button.scss
//PC
============================ */
.button {
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 60px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 40px;
  transition: .3s;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}
.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  width: 0;
  height: 100%;
  transform: skewX(-15deg);
  transition: .3s;
}
.button::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: calc(50% - 6px);
  right: 20px;
  width: 13px;
  height: 12px;
  transition: .2s;
  background: url("../../images/ico_arrow.svg") no-repeat center center/100% 100%;
}
.button span {
  position: relative;
  z-index: 2;
}
.button:hover {
  transition: .2s;
}
.button:hover::after {
  width: calc(100% + 10px);
}

.button--main {
  z-index: 2;
  color: #fbb03b;
  font-size: 18px;
}
.button--main span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 52px;
  border: 4px solid #fbb03b;
  border-radius: 30px;
}
.button--main:hover {
  color: #ffffff;
}
.button--main:hover::before {
  z-index: 2;
}
.button--main:hover::after {
  width: calc(100% + 10px);
  background: #fbb03b;
}
.button--base {
  margin-top: 80px;
  border: 4px solid #1f2933;
  background: #1f2933;
  color: #ffffff;
}
.button--base:hover {
  color: #1f2933;
}
.button--base:hover::after {
  width: calc(100% + 10px);
  background: #ffffff;
}

/*============================
//_common.scss
//PC
============================ */
.is-onlySP {
  display: none;
}

.is-onlyPC {
  display: block;
}

body {
  letter-spacing: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
}

a,
a:hover {
  text-decoration: none;
}

p, h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
}

.header {
  z-index: 2;
  min-width: 1300px;
  background: #ffffff;
  letter-spacing: .07em;
}

.footer__map {
  margin: 0;
}

.main {
  position: relative;
}

.heading {
  position: relative;
  margin: 0 0 80px;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .1em;
}
.heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 35px);
  width: 70px;
  height: 6px;
  background: url("../../images/ico_heading.svg") no-repeat center center/100% 100%;
}

.text-link {
  display: inline-block;
  position: relative;
  padding: 0 20px 0 0;
  color: #03449e;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
}
.text-link::before {
  content: "";
  position: absolute;
  top: calc(50% - 8.5px);
  right: 0;
  width: 15px;
  height: 15px;
  transition: .2s;
  background: url("../../images/ico_arrow_link.svg") no-repeat center center/100% 100%;
}
.text-link:hover::before {
  right: -5px;
}

/*============================
//_concept.scss
//PC
============================ */
.concept {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  color: #ffffff;
  background: #1f2933;
}
.concept__inner {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  padding: 140px 0 180px;
}
.concept__lead {
  margin: 0 0 80px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.concept-service {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.concept-service--sp {
  display: none;
}
.concept-service__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (-ms-high-contrast: none) {
  .concept-service .concept-service:before {
    content: "";
  }
  .concept-service .concept-service__box {
    width: 360px;
  }
}
.concept-service__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: bold;
}
.concept-service__title--main {
  color: #fbb03b;
}
.concept-service__bubble {
  display: flex;
  position: relative;
  justify-content: center;
  width: 320px;
  margin: 0 0 30px;
  padding: 20px 0;
  border-radius: 10px;
  background: #3e4c59;
  font-size: 16px;
}
.concept-service__bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: calc(50% - 12.5px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0;
  border-color: #3e4c59 transparent transparent;
}
.concept-service__check {
  position: relative;
  margin: 0 0 15px;
  padding: 0 0 0 20px;
}
.concept-service__check:last-child {
  margin: 0;
}
.concept-service__check::before {
  content: "";
  position: absolute;
  top: calc(50% - 4.5px);
  left: 0;
  width: 12px;
  height: 9px;
  background: url("../../images/ico_check.svg") no-repeat center center/100% 100%;
}
.concept-service__symbol {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 0 70px;
  border: 2px solid #ffffff;
  border-radius: 55px;
}
.concept-service__symbol img {
  max-width: 46px;
  max-height: 46px;
}
.concept-service__symbol::before, .concept-service__symbol::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.concept-service__symbol::before {
  bottom: -60px;
  left: calc(50% - 80px);
  width: 160px;
  height: 50px;
  background-color: rgba(154, 165, 177, 0.6);
}
.concept-service__symbol::after {
  bottom: -45px;
  left: calc(50% - 40px);
  width: 80px;
  height: 26px;
  background: #9aa5b1;
}
.concept-service__name {
  font-size: 16px;
  font-weight: bold;
}

.concept-summary {
  display: flex;
  position: absolute;
  justify-content: space-between;
  bottom: 30px;
  left: calc(50% - 220px);
  width: 440px;
}
.concept-summary__box {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 180px;
}
.concept-summary__box:nth-child(2) {
  width: 80px;
  justify-content: space-between;
}
.concept-summary__box:first-child::before, .concept-summary__box:last-child::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 500px;
  height: 2px;
  background: #ffffff;
}
.concept-summary__box:first-child::after, .concept-summary__box:last-child::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent #ffffff;
}
.concept-summary__box:first-child::before {
  top: 70px;
  left: -30px;
}
.concept-summary__box:first-child::after {
  top: 61px;
  left: 470px;
}
.concept-summary__box:last-child::before {
  bottom: 70px;
  right: -30px;
}
.concept-summary__box:last-child::after {
  bottom: 61px;
  right: 470px;
  transform: scale(-1, 1);
}
.concept-summary__title {
  font-size: 20px;
  font-weight: bold;
}
.concept-summary__title--yellow {
  color: #fbb03b;
}
.concept-summary__title--small {
  font-size: 16px;
}
.concept-summary__ico {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 15px 0;
  border: 2px solid #ffffff;
  border-radius: 30px;
  background: #ffffff;
}
.concept-summary__ico--yellow {
  background: #fbb03b;
}
.concept-summary__ico img {
  max-width: 30px;
  max-height: 30px;
}

/*============================
//_contact.scss
//PC
============================ */
.contact {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.contact::before, .contact::after {
  content: "";
  position: absolute;
  z-index: 1;
}
.contact::before {
  bottom: -20px;
  left: -80px;
  width: 280px;
  height: 280px;
  transform: rotate(25deg);
  animation: float 3s linear infinite;
  border: 4px solid #03449e;
  border-radius: 8px;
  opacity: .4;
  background-color: rgba(3, 68, 158, 0.2);
}
.contact::after {
  bottom: -140px;
  right: -60px;
  width: 400px;
  height: 400px;
  transform: rotate(25deg);
  animation: float 3s linear infinite;
  border: 4px solid #ffffff;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
}
.contact__inner {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  padding: 140px 0 0;
}
.contact__lead {
  margin: 0 0 80px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.contact__heading {
  display: flex;
  position: relative;
  justify-content: center;
  margin: 0 0 65px;
  font-size: 20px;
}
.contact__heading span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 50px;
  background: #ffffff;
}
.contact__heading::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(50% - 55px);
  left: calc(50% - 55px);
  width: 100px;
  height: 100px;
  border: 5px solid #cbd2d9;
  border-radius: 55px;
  background: #ffffff;
}
.contact__wrap {
  position: relative;
  margin: 0 0 85px;
}
.contact__wrap--type::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -40px;
  left: calc(50% - 2.5px);
  width: 5px;
  height: 1900px;
  background: #cbd2d9;
}
.contact__wrap--flow {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__wrap--flow::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: calc(50% - 195.5px);
  width: 390px;
  height: 685px;
  background: url("../../images/contact_bg.png") no-repeat center center/100% 100%;
}
.contact__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 40px;
  padding: 30px 50px;
  border-radius: 10px;
  background: #f5f7fa;
  box-shadow: 0 0 10px rgba(31, 41, 51, 0.15);
}
.contact__image {
  width: 430px;
}
.contact__image img {
  width: 100%;
}
.contact__body {
  width: 500px;
}
.contact__title {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
  font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 26px;
}
.contact__title span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 15px 0 0;
  border-radius: 10px;
  background: #1f2933;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.contact__desc {
  font-size: 16px;
}
.contact__item {
  position: relative;
  box-sizing: border-box;
  width: 420px;
  padding: 45px 30px 30px;
  background: #f5f7fa;
  box-shadow: 0 0 10px rgba(31, 41, 51, 0.15);
}
.contact__item:nth-child(odd) {
  left: 250px;
}
.contact__item:nth-child(odd)::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 14px 10px 0;
  border-color: transparent #f5f7fa transparent transparent;
}
.contact__item:nth-child(odd) .contact__number {
  left: 20px;
}
.contact__item:nth-child(odd) .contact__tag {
  right: 20px;
}
.contact__item:nth-child(even) {
  right: 250px;
}
.contact__item:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 7px;
  right: -14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent #f5f7fa;
}
.contact__item:nth-child(even) .contact__number {
  right: 20px;
  text-align: right;
}
.contact__item:nth-child(even) .contact__tag {
  left: 20px;
}
.contact__item:nth-child(2) {
  top: 10px;
}
.contact__item:nth-child(3) {
  top: -34px;
}
.contact__item:nth-child(4) {
  top: -50px;
}
.contact__number {
  position: absolute;
  top: -25px;
  font-family: 'Roboto', sans-serif, "游ゴシック体", "Yu Gothic";
  font-size: 36px;
  font-weight: bold;
}
.contact__tag {
  display: flex;
  position: absolute;
  top: -20px;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  background: #fbb03b;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
}
.contact__text {
  font-size: 16px;
}

.message {
  position: relative;
  top: -15px;
  margin: 0 0 -35px;
  padding: 200px 0;
  background: #f5f7fa;
}
.message__ico {
  position: absolute;
  top: -82.5px;
  left: calc(50% - 82.5px);
  width: 165px;
  height: 165px;
}
.message__ico img {
  width: 100%;
  height: 100%;
}
.message__headline {
  position: relative;
  font-family: 'Red Hat Display', sans-serif, "游ゴシック体", "Yu Gothic";
  font-size: 56px;
  font-weight: 500;
  text-align: center;
  letter-spacing: .07em;
}
.message__headline span {
  display: block;
  color: #3e4c59;
  font-size: 24px;
  font-weight: normal;
}
.message__headline::before, .message__headline::after {
  content: "";
  position: absolute;
  z-index: 2;
  transform: rotate(25deg);
  animation: float 3s linear infinite;
  animation-delay: 2s;
  border-radius: 8px;
}
.message__headline::before {
  bottom: -60px;
  right: 90px;
  width: 80px;
  height: 80px;
  border: 4px solid #f35627;
  opacity: .5;
}
.message__headline::after {
  bottom: -80px;
  right: 90px;
  width: 80px;
  height: 80px;
  background-color: rgba(243, 86, 39, 0.2);
}

/*============================
//_hero.scss
//PC
============================ */
.hero {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 730px;
  background-size: cover;
  background-position: center center;
  color: #ffffff;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  left: 0;
}
.hero::before {
  top: 82px;
  z-index: 2;
  width: 100%;
  height: 80px;
  background: url("../../images/hero_top.png") no-repeat center center/100% 100%;
}
.hero::after {
  top: 6vh;
  z-index: 1;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  opacity: .2;
  background: url("../../images/hero_bg.png") repeat center bottom/1500px 900px;
}
.hero__headline {
  margin: 20vh 0 0;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 62px;
  font-weight: 500;
  text-align: center;
  letter-spacing: .07em;
}
.hero__headline span {
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 28px;
  font-weight: normal;
}
.hero__desc {
  margin: 6vh 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  letter-spacing: .075em;
}

.scroll {
  display: inline-block;
  position: absolute;
  z-index: 2;
  bottom: 2vh;
  left: 50%;
  padding: 20px 0 0;
  transform: translateX(-50%);
  color: #ffffff;
}
.scroll span {
  position: absolute;
  top: -40px;
  left: calc(50% - 15px);
  box-sizing: border-box;
  width: 30px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 50px;
}
.scroll span::before {
  content: "";
  position: absolute;
  top: 10px;
  left: calc(50% - 3px);
  width: 6px;
  height: 6px;
  animation: move 2s infinite;
  border-radius: 100%;
  background: #ffffff;
}

/*============================
//_loading.scss
//PC
============================ */
.loader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #ffffff;
}
.loader__inner {
  position: relative;
}
.loader__object {
  position: absolute;
  top: 0;
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  animation: bound 1s infinite;
  background: url("../../images/ico_logo.png") no-repeat center center/100% 100%;
}
.loader__text {
  margin: 60px 0 0;
  color: #9aa5b1;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .25em;
}

@keyframes bound {
  0%,100% {
    top: 0;
    transform: scale(1);
  }
  30% {
    top: -20%;
    transform: scale(0.96, 1.04);
  }
  60% {
    transform: scale(1);
  }
  90% {
    top: 0;
    transform: scale(1.3, 0.9);
  }
}
.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

@media all and (-ms-high-contrast: none) {
  .is-fixed {
    position: relative;
  }
}
/*============================
//_panel.scss
//PC
//レイアウトパネル
============================ */
.panel {
  display: flex;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #ffffff;
}
.panel__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  margin: 40px 0 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(31, 41, 51, 0.2);
}
.panel__item--large {
  width: 710px;
}
.panel__item--small {
  width: 350px;
}
.panel__item:nth-child(-n+2) {
  margin: 0;
}
.panel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panel__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, #1f2933, rgba(31, 41, 51, 0));
}
.panel__body {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.panel__item--large .panel__body {
  width: 430px;
}
.panel__item--small .panel__body {
  margin: 0 30px 0 0;
}
.panel__title {
  font-size: 22px;
  font-weight: bold;
  text-shadow: 0 3px 10px rgba(31, 41, 51, 0.5);
}
.panel__title--large {
  font-size: 24px;
}
.panel__title--small {
  font-size: 18px;
}
.panel__name {
  margin: 20px 0 0;
}
.panel__tag {
  display: flex;
  margin: 15px 0 0;
}
.panel__list {
  margin: 0 10px 0 0;
  padding: 5px 15px;
  border: 1px solid #fbb03b;
  border-radius: 5px;
  color: #fbb03b;
  font-size: 10px;
  font-weight: bold;
}
.panel__desc {
  margin: 15px 0 0;
  font-size: 14px;
}
.panel__desc--ryoma {
  padding: 0 0 40px;
}
.panel__copyright {
  margin-top: 15px;
}
.panel__copyright small {
  display: block;
  font-size: 12px;
}
.panel__link {
  display: inline-block;
  position: relative;
  margin: 25px 0 0;
  padding: 0 20px 0 0;
  transition: .3s ease-out;
  color: #ffffff;
}
.panel__link::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 12px;
  height: 12px;
  background: url("../../images/ico_external.svg") no-repeat center center/100% 100%;
}
.panel__link:hover {
  transform: scale(1.1, 1.1) translate3d(0, 0, 0);
}

/*============================
//_performance.scss
//PC
============================ */
.performance {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: -1;
  overflow: hidden;
  color: #ffffff;
  background: url("../../images/img_team.jpg") no-repeat center center/cover;
}
.performance::before, .performance::after {
  content: "";
  position: absolute;
}
.performance::before {
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  transform: scale(-1, -1);
  background: url("../../images/bg_wave.png") no-repeat center center/100% 100%;
}
.performance::after {
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 41, 51, 0.8);
}
.performance__inner {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 240px 0 140px;
}
.performance__inner::before, .performance__inner::after {
  content: "";
  position: absolute;
}
.performance__inner::before {
  bottom: 60px;
  left: -180px;
  width: 200px;
  height: 200px;
  transform: rotate(25deg);
  animation: float 3s linear infinite;
  border: 4px solid #03449e;
  border-radius: 8px;
  opacity: .8;
  background-color: rgba(3, 68, 158, 0.2);
}
.performance__inner::after {
  bottom: -290px;
  right: -300px;
  width: 400px;
  height: 400px;
  transform: rotate(25deg);
  animation: float 3s linear infinite;
  border: 4px solid #ffffff;
  border-radius: 8px;
  opacity: .5;
  background-color: rgba(255, 255, 255, 0.5);
}
.performance__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.performance__box:first-of-type {
  margin: 0 0 60px;
}
.performance__heading {
  margin: 0 0 20px;
  font-size: 20px;
  text-align: center;
}
.performance__panel {
  display: flex;
  justify-content: space-between;
  width: 880px;
}
.performance__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 80px) / 3);
  padding: 50px 0;
  border: 1px solid #f5f7fa;
  border-radius: 10px;
  background-color: rgba(31, 41, 51, 0.7);
  text-align: center;
}
.performance__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}
.performance__ico img {
  max-width: 50px;
  max-height: 50px;
}
.performance__title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  font-size: 18px;
  font-weight: bold;
}
.performance__value {
  position: relative;
  font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: .05em;
}
.performance__value span {
  padding: 0 2px;
  color: #fbb03b;
  font-family: 'Roboto', sans-serif;
  font-size: 42px;
  font-weight: 700;
}
.performance__value::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: calc(50% - 18px);
  width: 36px;
  height: 2px;
  background: #fbb03b;
}
.performance__list {
  margin: 25px 0 0;
}
.performance__desc {
  font-size: 18px;
  font-weight: bold;
}
.performance__desc span {
  color: #fbb03b;
  font-size: 26px;
}
.performance .deco {
  display: block;
  position: absolute;
  right: -50px;
  bottom: 130px;
  width: 90px;
  height: 90px;
  transform: rotate(25deg);
  animation: float 3s linear infinite;
  animation-delay: 2s;
  border: 4px solid #f35627;
  border-radius: 8px;
  opacity: .5;
}
.performance .deco::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  background-color: rgba(243, 86, 39, 0.2);
}

@media all and (-ms-high-contrast: none) {
  .performance {
    top: -1px;
  }
}
/*============================
//_strength.scss
//PC
============================ */
.strength {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  position: relative;
  padding: 100px 0 60px;
  background: #f5f7fa;
}
.strength::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -150px;
  left: 0;
  width: 100%;
  height: 150px;
  background: url("../../images/bg_wave.png") no-repeat center center/100% 100%;
}
.strength__contents {
  background: #ffffff;
}
.strength__contents--01 {
  position: relative;
  background: #f5f7fa;
}
.strength__contents--01::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 0;
  width: 100%;
  height: 90px;
  background: url("../../images/bg_triangle.png") no-repeat center center/100% 100%;
}
.strength__contents--02 {
  padding: 170px 0 140px;
}
.strength__inner {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  padding: 0 0 80px;
}
.strength__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  font-size: 36px;
  text-align: center;
}
.strength__heading span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 15px 0 0;
  border-radius: 10px;
  background: #1f2933;
  color: #ffffff;
  font-size: 24px;
}
.strength__lead {
  margin: 0 0 60px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.knowledge {
  display: flex;
  justify-content: space-between;
  margin: 100px 0 0;
}
.knowledge__wrap:first-child {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 340px;
}
.knowledge__wrap:first-child::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 35px;
  left: 0;
  width: 450px;
  height: 340px;
  animation: curtain 5s linear infinite;
  background: #f5f7fa;
}
.knowledge__wrap:first-child::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: 450px;
  height: 340px;
  background: url("../../images/knowledge_bg.png") no-repeat center center/100% 100%;
}
.knowledge__wrap:last-child {
  width: 650px;
}
@media all and (-ms-high-contrast: none) {
  .knowledge .knowledge__wrap:first-child::before {
    display: none;
  }
}
.knowledge__object {
  display: flex;
  position: relative;
  z-index: 1;
  top: 55px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  border-radius: 150px;
  background: url("../../images/hero_img01.jpg") no-repeat center center/630px 355px;
}
.knowledge__object::before, .knowledge__object::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.knowledge__object::before {
  bottom: -100px;
  left: calc(50% - 120px);
  width: 240px;
  height: 60px;
  background-color: rgba(203, 210, 217, 0.6);
}
.knowledge__object::after {
  bottom: -80px;
  left: calc(50% - 60px);
  width: 120px;
  height: 25px;
  background: #cbd2d9;
}
.knowledge__catch {
  color: #ffffff;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: .05em;
}
.knowledge__catch span {
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: normal;
}
.knowledge__desc {
  position: relative;
  margin: 175px 0 0;
  width: 340px;
}
.knowledge__desc::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50px;
  width: 240px;
  height: 20px;
  animation: wave 5s linear infinite;
  border-radius: 50%;
}
@media all and (-ms-high-contrast: none) {
  .knowledge .knowledge__desc::before {
    animation: none;
  }
}
.knowledge__box {
  position: relative;
  z-index: 3;
  margin: 0 0 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(62, 76, 89, 0.8);
  color: #ffffff;
  font-weight: bold;
}
.knowledge__panel {
  display: flex;
  justify-content: space-between;
}
.knowledge__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120px;
  background-color: rgba(62, 76, 89, 0.8);
}
.knowledge__panel--aset .knowledge__item {
  width: calc((100% - 50px) / 6);
}
.knowledge__panel--staff .knowledge__item {
  width: calc((100% - 50px) / 5);
}
.knowledge__title {
  margin: 0 0 10px;
  font-size: 14px;
}
.knowledge__ico {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0 0 10px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: #3e4c59;
  box-shadow: 5px 5px 10px rgba(31, 41, 51, 0.5);
}
.knowledge__ico img {
  max-width: 28px;
  max-height: 28px;
}
.knowledge__ico::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 25px;
  width: 10px;
  height: 14px;
}
.knowledge__ico--red::before {
  background: url("../../images/ico_card_red.svg") no-repeat center center/100% 100%;
}
.knowledge__ico--green::before {
  background: url("../../images/ico_card_green.svg") no-repeat center center/100% 100%;
}
.knowledge__ico--yellow::before {
  background: url("../../images/ico_card_yellow.svg") no-repeat center center/100% 100%;
}
.knowledge__ico--orange::before {
  background: url("../../images/ico_card_orange.svg") no-repeat center center/100% 100%;
}
.knowledge__ico--purple::before {
  background: url("../../images/ico_card_purple.svg") no-repeat center center/100% 100%;
}
.knowledge__text {
  display: flex;
  align-items: center;
  height: 20px;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
}
.knowledge__list {
  height: 30px;
}
.knowledge__check {
  position: relative;
  padding: 0 0 0 10px;
  font-size: 10px;
}
.knowledge__check::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  width: 8px;
  height: 8px;
  background: url("../../images/ico_check.svg") no-repeat center center/100% 100%;
}

.develop {
  position: relative;
  width: 640px;
  margin: 0 auto;
}
.develop__panel {
  display: flex;
  position: relative;
  z-index: 1;
  top: 5px;
  justify-content: space-between;
  width: 640px;
  margin: 0 auto;
}
.develop__item {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 180px;
  padding: 30px 0 20px;
  border-radius: 0 0 10px 10px;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(31, 41, 51, 0.1);
}
.develop__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 162px;
  left: 0;
  height: 500px;
}
.develop__item:first-child::before {
  left: -5px;
  width: 230px;
  transform: scale(-1, 1);
  background: url("../../images/knowledge_bg_arrow01.png") no-repeat center center/100% 100%;
}
.develop__item:nth-child(2)::before {
  left: -15px;
  width: 210px;
  background: url("../../images/knowledge_bg_arrow02.png") no-repeat center center/100% 100%;
}
.develop__item:last-child::before {
  left: -45px;
  width: 230px;
  background: url("../../images/knowledge_bg_arrow01.png") no-repeat center center/100% 100%;
}
.develop__title {
  margin: 0 0 15px;
  color: #9aa5b1;
  font-size: 18px;
  font-weight: bold;
}
.develop__ico {
  width: 70px;
  height: 70px;
  border-radius: 35px;
  overflow: hidden;
}
.develop__ico img {
  width: 100%;
  height: 100%;
}
.develop__bg {
  display: flex;
  justify-content: space-between;
  margin: 45px 0 0;
}
.develop__bg li {
  position: absolute;
  z-index: 2;
  bottom: -20px;
  height: 672px;
  background: #f5f7fa;
}
.develop__bg li:first-child {
  left: -5px;
  width: 230px;
}
.develop__bg li:nth-child(2) {
  left: 220px;
  width: 200px;
}
.develop__bg li:last-child {
  right: -10px;
  width: 230px;
}

.fadein-bg {
  transform: translate(0, 0);
}
.fadein-bg.scrollin {
  transform: translate(0, -672px);
  transition: 1.5s linear;
  transition-delay: 1s;
  height: 0;
}

.member {
  margin: -40px 0 0;
  padding: 0 0 10px;
}
.member__item {
  position: relative;
  width: 330px;
  margin: 0 20px;
  border-radius: 10px;
  background: #f5f7fa;
  box-shadow: 0 0 10px rgba(31, 41, 51, 0.2);
  overflow: hidden;
}
.member__item::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 58px;
  height: 90px;
  opacity: .5;
}
.member__item--red::after {
  background: url("../../images/ico_soul_red.svg") no-repeat center center/100% 100%;
}
.member__item--orange::after {
  background: url("../../images/ico_soul_orange.svg") no-repeat center center/100% 100%;
}
.member__item--yellow::after {
  background: url("../../images/ico_soul_yellow.svg") no-repeat center center/100% 100%;
}
.member__item--green::after {
  background: url("../../images/ico_soul_green.svg") no-repeat center center/100% 100%;
}
.member__item--blue::after {
  background: url("../../images/ico_soul_blue.svg") no-repeat center center/100% 100%;
}
.member__item--purple::after {
  background: url("../../images/ico_soul_purple.svg") no-repeat center center/100% 100%;
}
.member__image {
  width: 330px;
  height: 200px;
}
.member__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member__name {
  position: relative;
}
.member__name::before, .member__name::after {
  content: "";
  position: absolute;
}
.member__name::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
}
.member__name::after {
  bottom: -29px;
  left: 0;
  width: 100%;
  height: 30px;
}
.member__item--red .member__name::before {
  background: #E83631;
}
.member__item--red .member__name::after {
  background: url("../../images/member_bg_red.png") no-repeat center center/100% 100%;
}
.member__item--orange .member__name::before {
  background: #f35627;
}
.member__item--orange .member__name::after {
  background: url("../../images/member_bg_orange.png") no-repeat center center/100% 100%;
}
.member__item--yellow .member__name::before {
  background: #fbb03b;
}
.member__item--yellow .member__name::after {
  background: url("../../images/member_bg_yellow.png") no-repeat center center/100% 100%;
}
.member__item--green .member__name::before {
  background: #18981d;
}
.member__item--green .member__name::after {
  background: url("../../images/member_bg_green.png") no-repeat center center/100% 100%;
}
.member__item--blue .member__name::before {
  background: #03449e;
}
.member__item--blue .member__name::after {
  background: url("../../images/member_bg_blue.png") no-repeat center center/100% 100%;
}
.member__item--purple .member__name::before {
  background: #6633CC;
}
.member__item--purple .member__name::after {
  background: url("../../images/member_bg_purple.png") no-repeat center center/100% 100%;
}
.member__position {
  position: relative;
  z-index: 1;
  top: 8px;
  left: 10px;
  color: #ffffff;
  font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: bold;
}
.member__position span {
  margin: 0 10px 0 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: .05em;
}
.member__body {
  padding: 45px 25px 25px;
}
.member__title {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: bold;
}
.member__desc {
  height: 126px;
}
.member .slick-slide {
  outline: none;
}
.member .slick-dots li button::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 7.5px;
  background: #9aa5b1;
}

@-moz-document url-prefix() {
  .member__name::after {
    bottom: -28px;
  }
}
.improvement {
  position: relative;
  margin: -100px 0 0;
  padding: 0 0 200px;
}
.improvement::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 0;
  width: 100%;
  height: 90px;
  background: url("../../images/bg_triangle_w.png") no-repeat center center/100% 100%;
}
.improvement__contents {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.improvement__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}
.improvement__box:first-child {
  border-right: 1px dashed #9aa5b1;
}
.improvement__heading {
  margin: 0 0 50px;
  font-family: 'Roboto', sans-serif, "游ゴシック体", "Yu Gothic";
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
.improvement__heading span {
  display: block;
  font-size: 16px;
  font-weight: bold;
}
.improvement__gigure {
  width: 450px;
  height: 400px;
  margin: 0 0 40px;
}
.improvement__gigure img {
  width: 100%;
  height: 100%;
}
.improvement__bubble {
  position: relative;
  box-sizing: border-box;
  width: 440px;
  padding: 35px 30px;
  border-radius: 10px;
  background: #f5f7fa;
}
.improvement__bubble::before {
  content: "";
  position: absolute;
  top: -18px;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 18px;
  border-color: transparent transparent #f5f7fa;
}
.improvement__title {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.improvement__data {
  width: 370px;
  height: 55px;
  margin: 0 0 20px;
}
.improvement__data img {
  width: 100%;
  height: 100%;
}
.improvement__desc {
  min-height: 144px;
  font-size: 16px;
}
.improvement__arrow {
  position: relative;
  width: 50px;
  margin: 0 auto;
  padding: 65px 0 15px;
  background: #f5f7fa;
  color: #3e4c59;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.improvement__arrow--position {
  top: 395px;
  background: #ffffff;
}
.improvement__arrow--ex {
  margin-top: 30px;
}
.improvement__arrow::before, .improvement__arrow::after {
  content: "";
  position: absolute;
}
.improvement__arrow::before {
  top: 0;
  left: calc(50% - 26px);
  width: 50px;
  height: 50px;
  border: 1px dashed #9aa5b1;
  border-radius: 26px;
}
.improvement__arrow::after {
  top: 14px;
  left: 18px;
  width: 16px;
  height: 25px;
  background: url("../../images/ico_right.svg") no-repeat center center/100% 100%;
}

.improvement-ex {
  background: #f5f7fa;
}
.improvement-ex__contents {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  position: relative;
}
.improvement-ex__contents::before {
  content: "";
  position: absolute;
  top: 140px;
  left: calc(50% - 2px);
  width: 2px;
  height: 540px;
  border-right: 1px dashed #9aa5b1;
}
.improvement-ex__float {
  display: flex;
  position: relative;
  z-index: 1;
  top: -60px;
  flex-direction: column;
  align-items: center;
}
.improvement-ex__heading {
  color: #3e4c59;
  font-size: 24px;
  text-align: center;
}
.improvement-ex__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin: 20px 0 0;
  overflow: hidden;
  border-radius: 105px;
}
.improvement-ex__ico img {
  width: 100%;
  height: 100%;
}
.improvement-ex__box {
  display: flex;
  justify-content: space-between;
}
.improvement-ex__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  margin: -60px 0 30px;
  font-family: 'Roboto', sans-serif, "游ゴシック体", "Yu Gothic";
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}
.improvement-ex__title span {
  font-size: 16px;
  font-weight: bold;
}
.improvement-ex__image {
  position: relative;
  z-index: 1;
  width: 1000px;
  margin: 0 auto;
}
.improvement-ex__image img {
  width: 100%;
}
.improvement-ex__image--graph02 {
  margin-top: -50px;
}

.aws {
  padding: 140px 0 0;
  background: #f5f7fa;
}
.aws__box {
  display: flex;
  justify-content: space-between;
  width: 880px;
  margin: 0 auto;
}
.aws__banner {
  width: 250px;
  height: 240px;
}
.aws__banner img {
  width: 100%;
  height: 100%;
}
.aws__body {
  display: flex;
  flex-direction: column;
  width: 590px;
}
.aws__title {
  margin: 0 0 30px;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .07em;
}
.aws__title span {
  display: block;
  font-family: "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 20px;
  font-weight: bold;
}
.aws__desc {
  margin: 0 0 30px;
  font-size: 16px;
}
.aws__link {
  margin: auto 0 0 auto;
}

@media all and (-ms-high-contrast: none) {
  .member__name::after {
    bottom: -27px;
  }
}
/*============================
//_works.scss
//PC
============================ */
.works {
  box-sizing: border-box;
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
.works::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: #1f2933;
}
.works__inner {
  box-sizing: border-box;
  width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 0 0 100px;
}
.works__inner::before, .works__inner::after {
  content: "";
  position: absolute;
}
.works__inner::before {
  top: 60px;
  left: -180px;
  width: 280px;
  height: 280px;
  transform: rotate(25deg);
  animation: float 2s linear infinite;
  border: 4px solid #03449e;
  border-radius: 8px;
  background-color: rgba(3, 68, 158, 0.2);
}
.works__inner::after {
  top: 150px;
  right: -210px;
  width: 400px;
  height: 400px;
  transform: rotate(25deg);
  animation: float 3s linear infinite;
  border: 4px solid #ffffff;
  border-radius: 8px;
  opacity: .5;
  background-color: rgba(255, 255, 255, 0.5);
}
.works__lead {
  position: relative;
  margin: 0 0 80px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.works__lead::before, .works__lead::after {
  content: "";
  position: absolute;
  transform: rotate(25deg);
  animation: float 3s linear infinite;
  animation-delay: 2s;
  border-radius: 8px;
}
.works__lead::before {
  top: -30px;
  right: -100px;
  width: 90px;
  height: 90px;
  border: 4px solid #f35627;
  opacity: .5;
}
.works__lead::after {
  top: 0;
  right: -110px;
  width: 98px;
  height: 98px;
  background-color: rgba(243, 86, 39, 0.2);
}

/*# sourceMappingURL=style.css.map */
