﻿@charset "utf-8";
/* animation css */

url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');


/*文字回転のアニメーション--------About/Recruit-----------------*/
.text__slideIn {
  animation: slideIn 1.5s;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.link {
  padding: 10px;
  text-align: center;
}

.container{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}


.ppt{
  padding: 30px 0;
  font-size: 60px;
  font-weight: bold;
  color: black;
  line-height:0;
}

.ppt span{
  display: inline-block;
}


.ppt span:hover{
  color: red;
  animation: rotation_anim 1s linear ;
}

.ppt_02 span{
  display: inline-block;
}

.ppt_02 span:hover{
  color: green;
  animation: rotation_anim 1s linear ;
}

@keyframes rotation_anim {
  100% {
    transform: rotatey(360deg);
  }
}


/*文字回転のアニメーション--------Service-----------------*/
.text__slideIn {
  animation: slideIn 1.5s;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.link {
  padding: 10px;
  text-align: center;
}

.container{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.heading{
  padding: 30px 0;
  font-size: 60px;
  font-weight: bold;
  color: black;
  line-height:0;
}

.heading span{
  display: inline-block;
}

.heading span:hover{
  color: green;
  animation: rotation_anim 1s linear ;
}

.heading_02 span{
  display: inline-block;
}

.heading_02 span:hover{
  color: red;
  animation: rotation_anim 1s linear ;
}

.heading_03 span{
  display: inline-block;
}

.heading_03 span:hover{
  color: green;
  animation: rotation_anim 1s linear ;
}

@keyframes rotation_anim {
  100% {
    transform: rotatey(360deg);
  }
}

/*文字回転のアニメーション-------Outline-----------------*/
.text__slideIn {
  animation: slideIn 1.5s;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.link {
  padding: 10px;
  
  text-align: center;
}

.container{
  display:flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.ppt_02{
  padding: 30px 0;
  font-size: 60px;
  font-weight: bold;
  color: black;
  line-height:0;
}

.ppt_02 span{
  display: inline-block;
}

.ppt_02 span:hover{
  color: green;
  animation: rotation_anim 1s linear ;
}

@keyframes rotation_anim {
  100% {
    transform: rotatey(360deg);
  }
}

.cls_company{
    margin-left:20px;
    left     : 0%;
    right    : 100%;
    width:60%;
    height:400px;


.cls_vision{
    position: absolute;
    top: 320px;
    left: 39%;
    right: 60%;
    width:60%;
    height:400px;

  background-color: rgba(194,34,34,0.95);
  border-radius: 50%;
  color: #fffff0;

   
}
.cls_strategy{
    position: absolute;
    top: 640px;
    left: 1.1%;
    right: 100%;
    width:60%;
    height:350px;
    background-color: rgba(11,170,128,0.95);
}
.saiyou img, .requirementsImg img{
  width:100%;
  height:auto;
  padding-top:46px;
}
.entryform img{
  width:100%;
  height:auto;
}
  
* {
  margin: 0;
  padding: 0;
}
section {
  margin-top: 30px;
}
.accordion {
  width: 200px;
  margin: 0 auto;
}
.menu {
  background-color: purple;
  color: white;
  font-size: 18px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}
.menu:hover,
.menu:active,
.menu.is-active {
  background-color: black;
}
.contents {
  text-align: center;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: 0.4s;
}

.contents.is-open {
  border: 1px solid black;
  padding: 10px;
  line-height: normal;
  height: auto;
  opacity: 1;
}

/****** Base style. ******/
body {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  margin: 0;
}
