@charset "utf-8";
/* CSS Document */
.main-contents {
  width: 100%;
  background: linear-gradient(48deg, #fc7147, #f2cc96, #f2454b);
  background-size: 200% 200%;
  animation: bggradient 16s ease infinite;
}
@keyframes bggradient {
  0%{background-position: 0% 50%;}
  50%{background-position: 100% 50%;}
  100%{background-position: 0% 50%;}
}
.recruit-wrap {
  width: calc(100% - (4vh + 20%));
  padding-top: 10%;
  margin: 0 auto;
}
.recruit-inWrap{
  width: 100%;
  text-align: left;
}
.recruit-inWrap p {
  font-size: 6rem;
  font-weight: 600;
  line-height: 8rem;
  color: #fff;
}
.recruit-inWrap h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #444;
}
.recruit-inWrap ul {
  width: 100%;
  margin: 10% 0 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-right: solid 1px #fff;
}
.recruit-inWrap ul li {
  text-align: center;
  border-left: solid 1px #fff;
}
.recruit-inWrap ul li a {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}
.main-contInner {
  width: calc(100% - (4vh + 20%));
  margin: 0 auto;
  text-align: left;
  color: #444;
}
.section-outline {
  padding: 10% 0;
  color: #555;
  width: 80%;
}
@media(max-width: 767px) {
  .section-outline {
    width: 100%;
  }
}
.section-outline h3, .section-flow h3 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 3%;
  padding-bottom: 10px;
  border-bottom: solid 1px #fff;
}
.outline-inner table {
  width: 100%;
}
.outline-inner tr {
  border-bottom: 1px dashed #fff;
}
.outline-inner th {
  width: 20%;
  font-size: 1.5rem;
}
.outline-inner td {
  font-size: 1.4rem;
  line-height: 2;
}
.outline-inner th, .outline-inner td {
  padding: 3% 0;
}
.section-flow {
  width: 80%;
  margin-bottom: 10%;
}
.flow-content {
  color: #a37d72;
  width: 60%;
}
.flow-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.flow-menu{
  letter-spacing: .06em;
  position: relative;
  z-index: 1;
  background: #fad6be;
}
@media(max-width: 767px) {
  .flow-content {
    width: 100%;
  }
  .flow-inner {
    flex-direction: column;
    margin: 10% 0;
  }
  .flow-menu {
    display: flex;
    width: 100%;
    height: 6rem;
    margin-bottom: 3rem;
    font-weight: 600;
  }
  .flow-menu:nth-of-type(6) {
    color: #fff;
    background: #f2454b;
    margin-bottom: 0;
  }
}
@media(min-width: 768px) {
  .flow-menu {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 6rem;
    height: 35rem;
    margin-right: 3rem;
  }
  .flow-menu:nth-of-type(6) {
    color: #fff;
    background: #f2454b;
    margin-right: 0;
  }
}
.flow-num {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media(max-width: 767px) {
  .flow-num {
    font-size: 2rem;
    width: 6rem;
    border-right: 1px solid #fff;
  }
  .flow-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 500;
    margin: auto 2rem;
  }
  .flow-menu::after {
    content: "";
    position: absolute;
    top: 6rem;
    left: 50%;
    width: 6px;
    height: 3rem;
    background-image: radial-gradient(#f2454b 30%, transparent 0);
    background-size: 6px 6px;
    background-repeat: repeat-y;
  }
  .flow-menu:last-child::after {
    content: none;
  }
}
@media(min-width: 768px) {
  .flow-num {
    font-size: 1.3rem;
    font-weight: 600;
    width: 100%;
    height: 5.8rem;
    border-bottom: 1.5px solid #fff;
  }
  .flow-text {
    font-size: 1.5rem;
    writing-mode: vertical-lr;
    text-orientation: upright;
    margin: 0 auto;
    padding: 2rem 0.2rem 0 0;
  }
  .flow-menu::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 6rem;
    width: 7rem;
    height: 10px;
    background-image: radial-gradient(#f2454b 20%, transparent 0);
    background-size: 8px 8px;
    background-repeat: repeat-x;
  }
  .flow-menu:last-child::after {
    content: none;
  }
}
.section-entry {
  position: relative;
  height: auto;
  padding: 14vw 10%;
  background-image: url("../img/recruit/recruit-img.jpg");
  background-size: cover;
  display: grid;
  place-items: center;
}
.ent-contents-title span {
  color: #fff;
  font-size: 4rem;
  font-weight: 600;
  border-bottom: 2px solid #fff;
  padding-bottom: 6%;
}
.ent-contents-title p {
  color: #fff;
  font-weight: 600;
  padding-top: 20%;
}
.hover-anime::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  content: '';
  background: #fff;
  opacity: .2;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform .5s;
}
.hover-anime:hover::before {
  transform: scale(1, 1);
}

.footer-menu__list li a {
  color: #fff;
}