@charset "UTF-8";


/* ================================
recruit
================================ */

/* --------------------------------
mainvisual
-------------------------------- */
#mainvisual {
  background-image: url(../img/concept_main_img.jpg);
  background-position: center;
  background-size: cover;
  height: calc(100vh - 120px);
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  z-index: -50;
}
#mainvisual .page-title {
  text-align: center;
  color: #00a3d2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 250px 20px 0;
}
#mainvisual .page-title .title {
  font-size: 4em;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.1rem;
  filter: drop-shadow(0 0 10px #fff);
}
#mainvisual .page-title .text {
  font-size: 1.1rem;
  filter: drop-shadow(0 0 10px #fff);
}

/* --------------------------------
who
-------------------------------- */
#who {
  margin-top: 1000px;
  padding: 100px 0 150px;
  background-color: #fff;
  position: relative;
  z-index: -20;
}
#who .message {
  margin-left: 23%;
  max-width: 750px;
  padding: 50px 50px 70px;
  background-color: #fff;
}
#who .message .title .en {
  font-size: 3.75rem;
  font-weight: bold;
  color: #00a3d2;
}
#who .message .title .ja {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00a3d2;
}
#who .message .text {
  font-size: 1.125rem;
  margin: 30px 0 70px;
}
#who .img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
  width: 800px;
}
#who .img img {
  object-fit: cover;
  object-position: center;
}
#who .link {
  text-align: center;
  margin-top: 40px;
}
#who .link .btn {
  display: inline-block;
  font-size: 1.3125rem;
  padding: 10px 20px;
  background-color: #00a3d2;
  color: #fff;
  border-radius: 40px;
  border: 1px solid #00a3d2;
  z-index: 20;
}
#who .link .btn:hover {
  color: #00a3d2;
  background-color: #fff;
}

/* --------------------------------
bland
-------------------------------- */
#bland {
  padding: 100px 0 150px;
  background-color: #fff;
  position: relative;
  z-index: -20;
}
#bland .message {
  margin-left: 37%;
  max-width: 750px;
  padding: 50px 50px 70px;
  z-index: 10;
  background-color: #fff;
}
#bland .message .title .en {
  font-size: 3.75rem;
  font-weight: bold;
  color: #00a3d2;
}
#bland .message .title .ja {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00a3d2;
}
#bland .message .text {
  font-size: 1.125rem;
  margin: 30px 0 70px;
}
#bland .img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  width: 800px;
}
#bland .img img {
  object-fit: cover;
  object-position: center;
}
#bland .link {
  text-align: center;
}
#bland .link .btn {
  display: inline-block;
  font-size: 1.3125rem;
  padding: 10px 20px;
  background-color: #00a3d2;
  color: #fff;
  border-radius: 40px;
  border: 1px solid #00a3d2;
}
#bland .link .btn:hover {
  color: #00a3d2;
  background-color: #fff;
}

/* --------------------------------
entry
-------------------------------- */
.entry {
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding: 50px 0 100px;
}
.entry .btn {
  display: inline-block;
  max-width: 1000px;
}

/* --------------------------------
number
-------------------------------- */
#number {
  background-color: #fff;
  text-align: center;
  padding: 0 0 70px;
}
#number .title {
  margin-bottom: 50px;
}
#number .title .en {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #00a3d2;
}
#number .title {
  font-size: 1.25rem;
}
#number .graph {
  display: flex;
  justify-content: center;
}
#number .graph .item {
  width: 20%;
  margin: 0 25px;
  border: 1px solid #00a3d2;
  border-radius: 15px;
  padding: 15px 0;
}
#number .graph .item .item-title {
  font-size: 1.3125rem;
  margin-bottom: 10px;
  font-weight: bold;
}

/* --------------------------------
info
-------------------------------- */
#info {
  background-color: #fff;
  text-align: center;
  padding: 50px 0 0px;
}
#info .title {
  margin-bottom: 50px;
}
#info .title .en {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #00a3d2;
}
#info .list {
  margin: 60px auto 0;
  padding: 0 0 60px 0;
  max-width: 800px;
  text-align: left;
}
#info .list .item {
  font-size: 1rem;
}
#info .list .item .btn {
  display: block;
  padding: 5px 50px 15px 5px;
  border-bottom: 1px solid #707070;
  position: relative;
}
#info .list .item .btn::after {
  content: "";
  border-top: 15px solid transparent;
  border-right: 15px solid #00a3d2;
  position: absolute;
  right: 30px;
  top: 30px;
  transform: rotate(-45deg);
  transition: ease 0.3s;
}
#info .list .item span {
  display: block;
  color: #00a3d2;
  margin-top: 3px;
}
#info .list .item .btn:hover {
  background-color: #00a3d2;
  color: #fff;
  border-bottom: 1px solid #fff;
}
#info .list .item .btn:hover span {
  color: #fff;
}
#info .list .item .btn:hover::after {
  right: 10px;
  top: 30px;
  border-right: 15px solid #fff;
  transform: rotate(315deg);
}

/* --------------------------------
job-description
-------------------------------- */
#job-description {
  margin-top: 120px;
  margin-bottom: 100px;
  background-color: #F1F1F1;
  padding: 50px 0;
}
#job-description .job-title {
  border-bottom: 1px solid #707070;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 2.1875rem;
  color: #00a3d2;
}
#job-description .flex {
  display: flex;
  justify-content: space-between;
  
}
#job-description .description {
  width: 65%;
}
#job-description .description .title {
  font-size: 1.125rem;
  padding: 5px 15px;
  margin-bottom: 8px;
  background-color: #00a3d2;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
}
#job-description .description .text {
  margin-bottom: 20px;
}
#job-description .img {
  width: 500px;
  width: 30%;
}
#job-description .img img {
  border-radius: 5px;
  box-shadow: 4px 6px 8px #777;
}
#job-description .link {
  text-align: center;
  margin-top: 20px;
}
#job-description .link .btn {
  background-color: #00a3d2;
  color: #fff;
  display: inline-block;
  padding: 10px 50px 10px 30px;
  border-radius: 40px;
  font-size: 1.125rem;
  border: 1px solid #00a3d2;
  position: relative;
}
#job-description .link .btn::after {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 1px;
  position: absolute;
  top: 19px;
  right: 23px;
  transform: rotate(45deg);
  transition: ease 0.3s;
}
#job-description .link .btn:hover {
  background-color: #fff;
  color: #00a3d2;
}
#job-description .link .btn:hover::after {
  border-top: 2px solid #00a3d2;
  border-right: 2px solid #00a3d2;
  transform: rotate(405deg);
}

/* --------------------------------
job-content
-------------------------------- */
#job-content {
  margin-bottom: 100px;
}
#job-content .title {
  color: #00a3d2;
  font-size: 1.3125rem;
  padding: 0 0 10px 30px;
  margin-bottom: 10px;
  border-bottom: 1px solid #707070;
}
#job-content .text {
  font-size: 1.125rem;
  margin-bottom: 40px;
  padding-left: 30px;
}
#job-content .link {
  text-align: center;
  margin-top: 20px;
}
#job-content .link .btn {
  background-color: #00a3d2;
  color: #fff;
  display: inline-block;
  padding: 10px 50px 10px 30px;
  border-radius: 40px;
  font-size: 1.125rem;
  border: 1px solid #00a3d2;
  position: relative;
}
#job-content .link .btn::after {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-radius: 1px;
  position: absolute;
  top: 19px;
  right: 23px;
  transform: rotate(45deg);
  transition: ease 0.3s;
}
#job-content .link .btn:hover {
  background-color: #fff;
  color: #00a3d2;
}
#job-content .link .btn:hover::after {
  border-top: 2px solid #00a3d2;
  border-right: 2px solid #00a3d2;
  transform: rotate(405deg);
}



/* --------------------------------
tb
-------------------------------- */
@media screen and (max-width: 1024px) {

  /* ================================
  recruit
  ================================ */

  /* --------------------------------
  who
  -------------------------------- */
  #who {
    padding: 0 0 100px;
  }
  
  #who .message {
    margin: 30px 30px 0;
    padding: 0;    
  }
  #who .img {
    position: static;
    width: 100%;
  }
  #who .message .text {
    font-size: 1.125rem;
    margin: 30px 0 0;
  }

  /* --------------------------------
  bland
  -------------------------------- */
  #bland {
    padding: 0 0 100px;
  }
  #bland .message {
    margin: 30px 30px 0;
    padding: 0; 
  }
  #bland .img {
    position: static;
    width: 100%;
  }
  #bland .message .text {
    font-size: 1.125rem;
    margin: 30px 0 0;
  }

  /* --------------------------------
  number
  -------------------------------- */
  #number .graph .item {
    width: 30%;
  }
}

/* --------------------------------
sp
-------------------------------- */
@media screen and (max-width: 799px) {
  
  /* ================================
  recruit
  ================================ */  

  /* --------------------------------
  mainvisual
  -------------------------------- */
  #mainvisual {
    height: calc(100vh - 40%);
    top: 60px;
  }
  #mainvisual .page-title {
    margin: 100px 20px 0;
  }
  #mainvisual .page-title .title {
    font-size: 2.5rem;
  }

  /* --------------------------------
  who
  -------------------------------- */
  #who {
    margin-top: 700px;
  }
  #who .message .title .en {
    font-size: 2.5rem;
  }
  #who .message .title .ja {
    font-size: 1.5rem;
  }
  #who .message .text {
    font-size: 1rem;
  }

  /* --------------------------------
  bland
  -------------------------------- */
  #bland .message {
    margin-top: 30px;
  }
  #bland .message .title .en {
    font-size: 2.5rem;
  }
  #bland .message .title .ja {
    font-size: 1.5rem;
  }
  #bland .message .text {
    font-size: 1rem;
  }

  /* --------------------------------
  number
  -------------------------------- */
  #number .graph {
    flex-direction: column;
    align-items: center;
  }
  #number .graph .item {
    width: 80%;
    margin: 0 0 20px 0;
  }

  /* --------------------------------
  entry
  -------------------------------- */
  .entry {
    padding: 0 0 90px;
  }

  /* --------------------------------
  job-description
  -------------------------------- */
  #job-description {
    margin-top: 60px;
    margin-bottom: 40px;
  }
  #job-description .job-title {
    font-size: 1.5rem;
  }
  #job-description .flex {
    flex-direction: column-reverse;
  }
  #job-description .description {
    width: 100%;
  }
  #job-description .img {
    margin: 0 auto;
    width: 100%;
    margin-bottom: 30px;
  }
  #job-description .link .btn {
    font-size: 1rem;
    padding: 8px 35px 8px 20px;
  }
  #job-description .link .btn::after {
    top: 16px;
    right: 17px;
    width: 9px;
    height: 9px;
  }
  /* --------------------------------
  job-content
  -------------------------------- */
  #job-content .title {
    font-size: 1rem;
    padding: 0 0 10px 0;
  }
  #job-content .text {
    font-size: 0.9rem;
    padding-left: 0;
  }
  #job-content .link .btn {
    font-size: 1rem;
    padding: 8px 35px 8px 20px;
  }
  #job-content .link .btn::after {
    top: 16px;
    right: 17px;
    width: 9px;
    height: 9px;
  }

}