@charset "UTF-8";
/* CSS Document */
section {
  height: 100vh;
}
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  text-align: center;
  color: #00214e;
}
/* Loading画像中央配置　*/
#splash img {
  width: 300px;
  margin: 20% auto 60px;
  padding-top: 20px;
}
/* Loading アイコンの大きさ設定　*/
#splash_logo svg {
  /*	width:300px;*/
}
.TextTyping, .sec_top h1 {
  font-family: Arial, Helvetica, "sans-serif";
}
.TextTyping span {
  display: none;
  font-size: 3.6rem;
  font-weight: 600;
  /*	letter-spacing: px;*/
}
/*文字列後ろの線の設定*/
.TextTyping::after {
  content: "|";
  font-size: 4.6rem;
  animation: typinganime 2s ease infinite;
}
@media(max-width:1000px) {
  #splash img {
    width: 210px;
    margin: 40% auto 60px;
  }
  .TextTyping span {
    display: none;
    font-size: 1.6rem;
    font-weight: 600;
    /*	letter-spacing: px;*/
  }
  /*文字列後ろの線の設定*/
  .TextTyping::after {
    content: "|";
    font-size: 2.6rem;
    animation: typinganime 2s ease infinite;
  }
}
@keyframes typinganime {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
.sec_top {
  overflow: hidden;
  position: relative;
}
.sec_top img {
  width: 400px;
  margin: 20% auto 60px;
}
.sec_top h1 {
  font-size: 4.0rem;
	position: relative;
	z-index: 10;
}
.fluid {
  width: 300px;
  height: 300px;
  border-radius: 300px;
  background-color: #9af0d4;
  opacity: 70%;
  position: absolute;
  bottom: 70px;
  left: 5%;
  animation: fuwafuwa 5s ease 0s infinite;
}
.fluid1 {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  background-color: #fbc937;
  opacity: 80%;
  position: absolute;
  bottom: 260px;
  left: 4%;
  z-index: 1;
  animation: fuwafuwa 4s ease 1s infinite;
}
.fluid2 {
  width: 200px;
  height: 200px;
  border-radius: 250px;
  background-color: #fbc937;
  opacity: 70%;
  position: absolute;
  bottom: 40px;
  left: 15%;
  z-index: 1;
  animation: fuwafuwa 3s ease 2s infinite;
}
.fluid3 {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  background-color: #00214e;
  opacity: 60%;
  position: absolute;
  bottom: 300px;
  left: 16%;
  animation: fuwafuwa 3s ease 0s infinite;
}
.fluid4 {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  background-color: #aff1ff;
  opacity: 70%;
  position: absolute;
  bottom: 70px;
  left: 22%;
  z-index: 1;
  animation: fuwafuwa 2s ease 1s infinite;
}
.fluid5 {
  width: 60px;
  height: 60px;
  border-radius: 120px;
  background-color: #00214e;
  opacity: 80%;
  position: absolute;
  bottom: 271px;
  left: 35%;
  animation: fuwafuwa 3s ease 0s infinite;
}
.fluid6 {
  width: 120px;
  height: 120px;
  border-radius: 300px;
  background-color: #9af0d4;
  opacity: 78%;
  position: absolute;
  bottom: 70px;
  left: 40%;
  animation: fuwafuwa 2.5s ease .5s infinite;
}
.fluid7 {
  width: 90px;
  height: 90px;
  border-radius: 120px;
  background-color: #aff1ff;
  opacity: 70%;
  position: absolute;
  bottom: 200px;
  left: 50%;
  z-index: 1;
  animation: fuwafuwa 2s ease 1s infinite;
}
.fluid8 {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  background-color: #fbc937;
  opacity: 80%;
  position: absolute;
  bottom: 120px;
  left: 58%;
  z-index: 1;
  animation: fuwafuwa 5s ease 0s infinite;
}
.fluid9 {
  width: 120px;
  height: 120px;
  border-radius: 300px;
  background-color: #9af0d4;
  opacity: 78%;
  position: absolute;
  bottom: 300px;
  left: 68%;
  animation: fuwafuwa 2.5s ease .5s infinite;
}
.fluid10 {
  width: 185px;
  height: 185px;
  border-radius: 185px;
  background-color: #00214e;
  opacity: 80%;
  position: absolute;
  bottom: 100px;
  left: 75%;
  animation: fuwafuwa 3s ease 0s infinite;
}
.fluid11 {
  width: 260px;
  height: 260px;
  border-radius: 260px;
  background-color: #aff1ff;
  opacity: 70%;
  position: absolute;
  bottom: 200px;
  left: 80%;
  z-index: -1;
  animation: fuwafuwa 2s ease 1s infinite;
}
.fluid12 {
  width: 120px;
  height: 120px;
  border-radius: 120px;
  background-color: #fbc937;
  opacity: 65%;
  position: absolute;
  bottom: 180px;
  left: 90%;
  animation: fuwafuwa 5s ease 0s infinite;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -15%);
  }
  100% {
    transform: translate(0, 0);
  }
}
.wave {
  position: relative;
  height: 200px; /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
}
canvas {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  z-index: -1;
}
@media(max-width:1000px) {
  .sec_top img {
    width: 210px;
    margin: 40% auto 60px;
  }
  .sec_top h1 {
    font-size: 1.8rem;
  }
  .fluid {
    width: 120px;
    height: 120px;
    border-radius: 300px;
    background-color: #9af0d4;
    opacity: 70%;
    position: absolute;
    bottom: 70px;
    left: 0%;
    animation: fuwafuwa 5s ease 0s infinite;
  }
  .fluid1 {
    width: 60px;
    height: 60px;
    border-radius: 120px;
    background-color: #fbc937;
    opacity: 80%;
    position: absolute;
    bottom: 260px;
    left: -1;
    z-index: 1;
    animation: fuwafuwa 4s ease 1s infinite;
  }
  .fluid2 {
    width: 35px;
    height: 35px;
    border-radius: 250px;
    background-color: #fbc937;
    opacity: 70%;
    position: absolute;
    bottom: 40px;
    left: 15%;
    z-index: 1;
    animation: fuwafuwa 3s ease 2s infinite;
  }
  .fluid3 {
    width: 60px;
    height: 60px;
    border-radius: 120px;
    background-color: #00214e;
    opacity: 60%;
    position: absolute;
    bottom: 300px;
    left: 16%;
    animation: fuwafuwa 3s ease 0s infinite;
  }
  .fluid4 {
    width: 40px;
    height: 40px;
    border-radius: 120px;
    background-color: #aff1ff;
    opacity: 70%;
    position: absolute;
    bottom: 283px;
    left: 22%;
    z-index: 1;
    animation: fuwafuwa 2s ease 1s infinite;
  }
  .fluid5 {
    width: 30px;
    height: 30px;
    border-radius: 120px;
    background-color: #00214e;
    opacity: 80%;
    position: absolute;
    bottom: 271px;
    left: 35%;
    animation: fuwafuwa 3s ease 0s infinite;
  }
  .fluid6 {
    width: 60px;
    height: 60px;
    border-radius: 300px;
    background-color: #9af0d4;
    opacity: 78%;
    position: absolute;
    bottom: 70px;
    left: 40%;
    animation: fuwafuwa 2.5s ease .5s infinite;
  }
  .fluid7 {
    width: 45px;
    height: 45px;
    border-radius: 120px;
    background-color: #aff1ff;
    opacity: 70%;
    position: absolute;
    bottom: 200px;
    left: 50%;
    z-index: 1;
    animation: fuwafuwa 2s ease 1s infinite;
  }
  .fluid8 {
    width: 35px;
    height: 35px;
    border-radius: 120px;
    background-color: #fbc937;
    opacity: 80%;
    position: absolute;
    bottom: 120px;
    left: 58%;
    z-index: 1;
    animation: fuwafuwa 5s ease 0s infinite;
  }
  .fluid9 {
    width: 60px;
    height: 60px;
    border-radius: 300px;
    background-color: #9af0d4;
    opacity: 78%;
    position: absolute;
    bottom: 300px;
    left: 68%;
    animation: fuwafuwa 2.5s ease .5s infinite;
  }
  .fluid10 {
    width: 90px;
    height: 90px;
    border-radius: 185px;
    background-color: #00214e;
    opacity: 80%;
    position: absolute;
    bottom: 100px;
    left: 75%;
    animation: fuwafuwa 3s ease 0s infinite;
  }
  .fluid11 {
    width: 130px;
    height: 130px;
    border-radius: 260px;
    background-color: #aff1ff;
    opacity: 70%;
    position: absolute;
    bottom: 200px;
    left: 80%;
    z-index: -1;
    animation: fuwafuwa 2s ease 1s infinite;
  }
  .fluid12 {
    width: 60px;
    height: 60px;
    border-radius: 120px;
    background-color: #fbc937;
    opacity: 65%;
    position: absolute;
    bottom: 180px;
    left: 90%;
    animation: fuwafuwa 5s ease 0s infinite;
  }
  .wave {
    position: relative;
    height: 200px; /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
  }
  canvas {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 100%;
    z-index: -1;
  }
}
/*CEO*/
.sec-CEO {
  height: auto;
}
.sec-CEO h2 {
  font-size: 4.8rem;
  text-align: left;
  padding: 80px 8vw;
  font-family: Arial, Helvetica, "sans-serif";
}
.sec-CEO h3 {
  font-size: 2.8rem;
  text-align: left;
  line-height: 4.8rem;
  padding-right: 3vw;
  padding-bottom: 80px;
  font-weight: 400;
}
.sec-CEO__contents {
  display: flex;
  padding-bottom: 80px;
}
.sec-CEO__left {
  width: 30%;
  padding: 8vw;
}
.sec-CEO__left img {
  width: 400px;
}
.sec-CEO__right {
  width: 70%;
  text-align: left;
}
@media(max-width:1000px) {
  .sec-CEO h2 {
    font-size: 2.8rem;
    line-height: 4.0rem;
  }
  .sec-CEO h3 {
    font-size: 2.0rem;
    text-align: right;
    line-height: 3.8rem;
    padding: 80px 0vw 40px;
  }
  .sec-CEO__contents {
    display: block;
    padding-bottom: 80px;
  }
  .sec-CEO__left {
    width: 100%;
    padding: 0vw;
  }
  .sec-CEO__left img {
    width: 360px;
  }
  .sec-CEO__right {
    width: 100%;
    text-align: left;
  }
  .ceo_message {
    padding: 10px;
  }
}
/*philosophy*/
.sec_philosophy {
  /*	height: 90vh;*/
  background: url("../img/VISION_colorfil.png") no-repeat;
  background-size: 75%;
  background-position: center;
}
.sec_philosophy h2 {
  font-size: 2.8rem;
  line-height: 6.6rem;
  padding-top: 80px;
}
.sec_philosophy p {
  font-size: 2.8rem;
  padding-top: 100px;
}
@media(max-width:1000px) {
  .sec_philosophy {
    /*	height: 90vh;*/
    background: url("../img/VISION_colorfil.png") no-repeat;
    background-size: 106%;
    background-position: center;
  }
  .sec_philosophy h2 {
    font-size: 1.6rem;
    line-height: 4.6rem;
    padding-top: 40px;
  }
  .sec_philosophy p {
    font-size: 1.6rem;
    padding-top: 60px;
		padding-bottom: 80px;
  }
}
/*ビジネス*/
.sec_business {
  height: fit-content;
}
.sec_business__content {
  display: flex;
  width: fit-content;
  margin: 80px auto 0;
}
.regolis_business {
  padding-top: 50%;
}
.sec_business-img {
  list-style: none;
  width: fit-content;
  margin: 0 auto;
}
.list_img {
  display: block;
  width: 200px;
}
.sec_business-img li {
  display: flex;
  margin-bottom: 30px;
}
.sec_business-img li p {
  text-align: left;
  padding-top: 23px;
  margin-left: 40px;
}
.sec_business-img li:first-child, .sec_business-img li:nth-child(5) {
  transform: translateX(-110px) !important;
}
.sec_business-img li:nth-child(2), .sec_business-img li:nth-child(4) {
  transform: translateX(-38px) !important;
}
@media(max-width:1000px) {
  .sec_business__content {
    display: block;
    width: fit-content;
    margin: 0px auto 0;
  }
  .regolis_business {
    padding-top: 20%;
    padding-bottom: 30px;
    width: 260px;
  }
  .sec_business-img {
    list-style: none;
    width: fit-content;
    margin: 0 20px 60px;
  }
  .list_img {
    display: block;
    width: 200px;
    margin: 0 auto;
  }
  .sec_business-img li {
    display: block;
    margin-bottom: 40px;
  }
  .sec_business-img li p {
    text-align: left;
    padding-top: 40px;
    margin-left: 0px;
    width: 300px;
  }
  .sec_business-img li:first-child, .sec_business-img li:nth-child(5) {
    transform: translateX(0px) !important;
  }
  .sec_business-img li:nth-child(2), .sec_business-img li:nth-child(4) {
    transform: translateX(0px) !important;
  }
}
/*アクセス*/
.sec_access {
  height: 130vh;
}
.access_content {
  padding-top: 20px;
  max-width: 1500px;
  margin: 0 auto;
}
.access_content a {
  text-decoration: none;
  color: #091138;
}
.tokyo, .yamanashi {
  /*  width: 500px;*/
  text-align: left;
}
.tokyo {
   transform: translate(-126px,-86px); 
  position: absolute;
  right: 0px;
  /* bottom: 20px; */
/*  transform: translateY(-124px);*/
}
.yamanashi {
  margin-left: 9vw;
  margin-top: 30px;
}
.map_pc{
	width: 50%;
}
.map_sp {
  display: none;
}
@media(max-width:1000px) {
  .sec_access {
    height: fit-content;
  }
  .map_pc {
    display: none;
  }
  .map_sp {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    width: 300px;
  }
  .tokyo, .yamanashi {
    width: fit-content;
    text-align: left;
    font-size: 1.4rem;
  }
  .tokyo img, .yamanashi img {
    width: 200px;
  }
  address {
    padding-bottom: 20px;
  }
  .tokyo {
    /* transform: translate(10px,10px); */
    position: relative;
    margin-left: 10%;
    /* bottom: 20px; */
    transform: translateY(-6px);
  }
  .yamanashi {
    margin-left: 10%;
    margin-top: 30px;
  }
  .access_content {
    margin-bottom: 40px;
  }
}
/*会社概要*/
.sec_overview {
    height: fit-content;
  }
.sec_overview img {
  width: 20px;
  padding-right: 20px;
}
.sec_overview ul {
  max-width: 800px;
  margin: 100px auto 0;
}
.sec_overview li {
  display: flex;
  text-align: left;
  margin-bottom: 50px;
}
.sec_overview__title {
  text-align: center;
  width: 300px;
}
.omotesando, .yamanakako {
  display: grid;
}
address {
  line-height: 3.0rem;
  font-style: normal;
  padding-bottom: 30px;
}
mail {
  padding-top: 30px;
}
.sec_overview li span {
  vertical-align: 14%;
}
.lake_yamanakako {
  width: 40px;
  height: 20px;
  background-color: deepskyblue;
  /*	border: #fff solid 1px;*/
  border-radius: 10px;
  transform: translate(625px, 216px);
}
@media(max-width:1000px) {
  
  .sec_overview li {
    display: block;
    text-align: center;
  }
  .sec_overview__title {
    width: fit-content;
    padding-bottom: 30px;
    margin: 0 auto;
  }
}