@charset "utf-8";

/* ====================
   .common
   ==================== */
.contents-wrapper{
  max-width: 800px;
  margin: 0 auto;
}

.hero {
	width: 100%;
	padding: 100px 0 50px 0;
}

@media only screen and (max-width: 767px) {
	.hero {
		padding: 65px 0 5vw 0;
	}
}

.title-area{
   text-align: center;
}

.title-area .m-text{
   font-size: 29px;
   line-height: 1.4;
   border-bottom: 5px solid #dc000c;
   padding-bottom: 15px;
   margin-bottom: 20px;
}

.text{
     font-size: 18px;
    line-height: 2.2;
}

.title-text {
    font-size: 24px;
    line-height: 1.4;
    margin: 60px 0 20px 0;
}

@media only screen and (max-width: 767px) {
   .title-area .m-text{
      font-size: 5.5vw;
      border-bottom: 3px solid #dc000c;
      padding-bottom: 5px;
      margin-bottom: 5px;
   }

   .text{
      font-size: 4vw;
      line-height: 1.6;
   }
    
   .title-text {
       font-size: 4vw;
       line-height: 1.4;
       margin: 30px 0 15px 0;
    }
}


/* ====================
   .recruiting
   ==================== */
.lead-inner figure{
  max-width: 937px;
  margin: 77px auto 0 auto;
}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 767px) {
   .lead-inner figure{
      max-width: 90%;
      margin: 20px auto 0 auto;
    }
}

/* ====================
   .faq
   ==================== */
.sec01{
    padding: 120px 0 10px 0;
}

.faq-item {
    margin-bottom: 50px;
}

.faq-header {
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid #dc000c;
    cursor: pointer;
    transition: all .3s ease;
}

@media (any-hover: hover) {
    .faq-header:hover {
        background-color: #fffafa;
    }
}

.faq-q-icon{
    width: 50px;
    height: 50px;
    background: #dc000c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-q-icon img{
    width: 23px;
    height: auto;
}

.faq-question {
    flex: 1;
    margin: 0 15px;
    color: #dc000c;
    text-align: left;
    font-size: 22px;
    font-weight: bold;
}

.faq-arrow {
    width: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.faq-header.is-open .faq-arrow {
    transform: rotate(180deg);
}

.faq-content {
    display: none;
    overflow: hidden;
}

.faq-answer-wrapper {
    display: flex;
    padding: 15px;
}

.faq-a-icon img{
    width: 23px;
    height: auto;
    margin: 7px 0 0 0;
}

.faq-answer {
    flex: 1;
    margin-left: 30px;
}

@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 767px) {
   .sec01{
        padding: 50px 0;
    }

    .faq-item {
        margin-bottom: 25px;
    }

    .faq-q-icon{
        width: 30px;
        height: 35px;
    }

    .faq-q-icon img{
        width: 13px;
        height: auto;
    }

    .faq-question {
        margin: 0 5px;
        font-size: 3.5vw;
        display: inline-block;
        min-width: 0;
        overflow: visible;
    }

    .faq-arrow {
        width: 13px;
        margin-right: 5px;
    }

    .faq-answer-wrapper {
        padding: 7px;
    }

    .faq-a-icon img{
        width: 14px;
        margin: 3px 0 0 0;
    }

    .faq-answer {
        margin-left: 10px;
    }
}

/* ====================
   .recruit
   ==================== */
.recruit-info {
    padding: 30px 0 0 0;
}

.recruit-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #949494;
    border-bottom: 1px solid #949494;
    font-size: 15px;
    line-height: 1.7;
}

.recruit-table th,
.recruit-table td {
    padding: 10px 20px;
    border-bottom: 1px solid #949494;
}

.recruit-table th {
    width: 131px;
    background-color: #f7f7f7;
    text-align-last: justify;
    text-justify: inter-character;
}

@media screen and (max-width: 767px) {
    .recruit-info {
        padding: 30px 0 0 0;
    }

    .recruit-table {
        font-size: 3vw;
    }

    .recruit-table th,
    .recruit-table td {
        padding: 5px 10px;
    }

    .recruit-table th {
        width: 28%;
    }
}


/* ====================
   .flow
   ==================== */
.flow-area{
   padding: 0 0 100px 0;
}

.flow-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flow-item {
    display: flex;
    align-items: center;     
}

.flow-box {
    background-color: #e6e6e6;
    padding: 20px 0;
    text-align: center;
    width: 165px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1.4;
}

.flow-item:not(:last-child)::after {
    content: "";
    width: 36px;
    height: 36px;
    background: url('../img/recruiting/icon_arrow2.png') no-repeat center/contain;
}

@media only screen and (max-width: 1024px) {
    .flow-box {
        width: 145px;
        font-size: 15px;
    }
}


@media screen and (max-width: 767px) {
    .flow-area{
       padding: 0 0 50px 0;
    }

    .flow-box {
        padding: 20px 0;
        width: 19vw;
        height: 13vw;
        font-size: 2.5vw;
    }

    .flow-item:not(:last-child)::after {
        width: 15px;
        height: 15px;
    }
}





