@charset "UTF-8";

/* *{
  outline: 2px red solid;
} */

html {
  font-size: 100%;
}

body {
  background-color: #fff;
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 16px;
  color: #000;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

/* ここから */
/* 枠 */
.container {
  margin: 0 auto;
}

header {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 10%;
  background-color: #fff;
  z-index: 10;
}

header nav ul {
  display: flex;
}

header nav ul li {
  margin: 0 25px;
}
header nav ul li a:hover {
  color: #7a7d8e;
}

/* main-image */
main {
  display: block;
  padding: 60px 0 0 0;
}

#main-image {
  background-image: url(../img/仕事風景.jpeg );
  background-size: cover;
  width: 100%;
  height: 700px;
  background-attachment: fixed;
  background-position: 30% 5%;
}

.main-text {
  padding-top: 5%;
  padding-left: 10%;
}

.main-text h2 {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: #fff;
}

.main-text p {
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
  color: #fff;
}

.main-text .text {
  margin-top: 50px;
}

/* mission */
#mission {
  margin: 100px auto;
  text-align: center;
  width: 80%;
}

.mission-title {
  color: #7a7d8e;
  margin-bottom: 50px;
}

.mission-title h2 {
  margin-bottom: 30px;
}

.mission-title p {
  font-size: 1.1rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

.mission-lists {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.mission-lists li {
  width: 30%;
}

.my-big {
  font-size: 3.5rem;
}

.my-blue {
  color: #070781;
}

.micon {
  margin-bottom: 40px;
}

.mission-text h3 {
  font-weight: bold;
  margin-bottom: 30px;
}

.mission-text p {
  font-size: 1.1rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
}

/* hover カッコ　飛び出す */
.mission-list:hover h3::before,
.mission-list:hover h3::after {
  transform: translateX(0px);
  opacity:1;
}

.mission-list h3::before {
  margin-right: 10px;
  content: '[';
  transform: translateX(20px);
}
.mission-list h3::after {
  margin-left: 10px;
  content: ']';
  transform: translateX(-20px);
}
.mission-list h3::before,
.mission-list h3::after {
  display: inline-block;
  opacity: 0;
  transition:transform 0.3s,opacity 0.2s;
}

/* animation */
.animation {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* list 順番に表示 */
.fade-lists .fade-list {
  position: relative;
  opacity: 0;
  bottom: -15px;
  transition: 1s;
}

.fade-lists .fade-list.fadein {
  opacity: 1;
  bottom: 0;
}

/* project */
#project {
  text-align: center;
  width: 100%;
  background-color: #f2f6f6;
  padding: 80px 15%;
}
.project-title {
  color: #7a7d8e;
  margin-bottom: 80px;
}
.project-lists {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-area {
  display: flex;
  flex-direction: row;
}
.project-image {
  width: 50%;
}
.project-lists {
  width: 50%;
  margin-left: 50px;
}
.my-gray {
  color: #a5a5a8;
}
.project-list-title {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.project-list-title h3{
  color: #333;
  font-weight: bold;
  margin-left: 20px;
  padding-bottom: 10px;
}
.project-text {
  margin-left: 52px;
  text-align: left;
}

/* recruitment */
/* recruitment-image  上からドット柄　文字　カンガルー*/
.recruit-image {
  width: 100%;
  height: 700px;
  background-image: 
  radial-gradient(#9da1a1 15%, transparent 15%),
  radial-gradient(#9da1a1 15%, transparent 15%),
  url(../img/ムキムキ.png),
  url(../img/カンガルー.jpeg)
  ;
  background-repeat:repeat,repeat,no-repeat,no-repeat;
  background-size:4px 4px,4px 4px,30%,100%;
  background-position:0 0,20px 20px,0% 40%,center top;
  background-attachment: fixed;
}
#recruitment {
  position: relative;
}

#app {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  z-index: 3;
}
.recruit-text {
  width: 40%;
  background-color: rgba(255, 255, 255, 0.019);
  margin-top: 30%;
  margin-left: 60%;
}
.recruit-text h2{
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.recruit-text p{
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* recruit button */
.recruit-text button{
  background-color: #fff;
  text-align: center;
  padding: 10px 20%;
}



/* inquiry */
#inquiry {
  background-color: #504f4f;
  display: flex;
  flex-direction: row;
  justify-content:space-evenly;
  color: #fff;
  padding: 50px 10%;
}
.inner {
  max-height: 110px;
  border: #fff 1px solid;
  text-align: center;
  padding: 40px 60px;
}
.tel {
  width: 45%;
}
.inner h5 {
  font-size: 1.2rem;
  font-weight: bold;
}
.inner p{
  font-size: 0.8rem;
}
.icon-beside h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.net {
  width: 45%;
}
.inner button{
  background-color: #ff8c00;
  padding: 5px 9%;
  color: #fff;
}
.icon-beside {
  display: flex;
  align-items: baseline;
  text-align: center;

}
.icon-beside h3 {
  margin-left: 20px;
}
.my-white {
  color: #fff;
}

/* お問い合わせ */
#contact {height: auto;
  background-image: url(../img/白い背景1.jpeg);
  background-repeat: repeat;
  background-size: auto;
  background-position:50% 50%;
  text-align: center;
  padding: 50px 0;
}
#contact h2 {
  padding: 50px 0 30px 0;

}

.form {
  width: 80%;
  margin: 0 auto;
  border: #9c9c9c solid 1px;
  padding: 50px;
  background-color: #fff;
}
.item {
  margin-bottom: 50px;
}
.label-left {
  display:block;
  text-align: center;
  margin-bottom: 10px;
}
.form input {
  padding: 5px;
  width: 70%;
  background-color: #ececef;
}
.form textarea {
  padding: 3px;
  height: 200px;
  font-size: 14px;
  width: 70%;
  background-color: #ececef;
}

.form input[type="submit"] {
  background: #ea791c;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  margin: 0 5px;
  width: 10%;
}
.form input[type="reset"]{
  background: #333;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  margin: 0 5px;
}

.error-text {
  color: #de3f2e;
  margin-top: 2px;
}

/* footer */
#last {
  background-color: #504f4f;
  margin: 0 auto;
  padding: 30px 0;
  color: #fff;
  text-align: center;
}

#page-top {
  display: block;
  font-weight: bold;
  text-align: center;
  color: #fff; /*文字色*/
  transition: .3s;
}
.return {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 20px;
}

.last-lists ul{
  display: flex;
  justify-content: center;
  flex-direction: row;
  font-size: 0.8rem;
 
}
.company {
  padding: 20px 0;
 font-size: 0.7rem;
}
.last-list {
  border-right: solid 1px #fff;
  padding: 0 10px;
}
.last-lists a{
  color: #fff;
}
.last-list-end {
  padding: 0 10px;
}























/* スマホ用メニュー */
@media (max-width:600px) {
  header {
    display: block;
    overflow: hidden;
  }

  header.on {
    height: 100%;
  }

  header .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
  }

  header h1 {
    font-size: 1.1rem;
  }

  header nav ul {
    display: block;
    margin: 40px 0 0 0;
  }

  header nav ul li {
    margin: 0 0 30px 0;
    text-align: center;
  }

  /* ハンバーガー */
  header .hamburger {
    position: relative;
    width: 20px;
    height: 16px;
  }

  header .hamburger span,
  header .hamburger:before,
  header .hamburger:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
  }

  header .hamburger:before,
  header .hamburger:after {
    content: '';
  }

  header .hamburger span {
    top: 50%;
    margin: -1px 0 0 0;
  }

  /* bottomプロラティに0を指定してあげることで、親要素に対して一番下に配置されるようになります。つまり、このafter擬似要素がハンバーガーメニューボタンの一番下の横棒ということになります。 */
  header .hamburger:after {
    bottom: 0;
  }

  header.on .hamburger span {
    display: none;
  }

  header.on .hamburger:before {
    top: 50%;
    margin: -1px 0 0 0;
    transform: rotate(45deg);
  }

  header.on .hamburger:after {
    top: 50%;
    margin: -1px 0 0 0;
    transform: rotate(-45deg);
  }

  #main-image {
    background-position:75% top;
  }
  /* second list column */
  #mission {
    margin: 30px auto;
  }
  .mission-title {
    margin-bottom: 25px;
  }
  .mission-lists {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mission-list {
    margin-top: 25px;
  }
  .mission-lists li {
    width: 100%;
  }
  /* third list column */
  #project {
    padding: 30px 10px;
  }
  .project-title {
    margin-bottom: 40px;
  }
  .project-area {
    display: flex;
    flex-direction: column;
  }
  .project-image {
    width: 100%;
  }
  .project-lists {
    width: 100%;
    margin-left: 0px;
  }
  .project-list {
    margin-top: 20px;
  }

/* recruitment */
.recruit-image {
  height: 250px;
  background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;
  background-position:0 0,20px 20px,0% 15%,center top;
  background-attachment: scroll;
}
.recruit-text {
  width: 64%;
  margin-top: 45%;
  margin-left: 5%;
}
.recruit-text button{
  padding: 5px 5%;
}

 .recruit-text h2{
  font-size: 1.2rem;
 }
 .recruit-text p{
  display: none;
 }


/* inquiry */
 #inquiry {
  flex-direction: column;
 }
 .tel {
  width: 100%;
  margin-bottom: 10px;
 }
 .net {
  width: 100%;
 }
 /* contact */
 #contact {
  padding: 10px 0; 
 }
 #contact h2{
  padding: 5px 0 10px 0;
 }
 .form {
  width: 95%;
  padding: 10px;
 }
 .form input{
  width: 90%;
 }
 .form textarea {
  width: 90%;
 }
 .form input[type="submit"]{
  width: 30%;
 }
 .item {
  margin-bottom: 0px;
 }

}