









/* 募集要項 */
.recruit-info {
    max-width: 95%;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
    color: #333;
    line-height: 1.7;
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }
  
  .recruit-catch {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #444;
    margin-bottom: 15px;
  }
  
  .recruit-subtext {
    text-align: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .recruit-title {
    font-size: 24px;
    text-align: center;
    border-bottom: 2px solid #161666;
    display: inline-block;
    padding-bottom: 6px;
    margin: 0 auto 30px auto;
  }
  
  .recruit-table {
    border-top: 1px solid #ddd;
  }
  .recruit-table div {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
  }
  .recruit-table dt {
    width: 160px;
    font-weight: bold;
    color: #161666;
    padding-right: 10px;
    font-size: 15px;
  }
  .recruit-table dd {
    flex: 1;
    font-size: 15px;
    color: #333;
  }
  
  .recruit-note {
    background: #fffdf0;
    border: 1px solid #f0e2a8;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 30px;
  }
  .recruit-note p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
  }
  
  .recruit-message {
    margin-top: 30px;
    font-size: 15px;
    text-align: center;
    color: #444;
    background: #f5f7ff;
    border-radius: 8px;
    padding: 15px 20px;
    border: 1px solid #d0d8f0;
  }

  
  @media (max-width:768px){

    .recruit-info {
      max-width: 95%;
      margin: 0 auto;
      padding: 40px 0;
      font-family: "Hiragino Kaku Gothic ProN", sans-serif;
      color: #333;
      line-height: 1.7;
      background: #fafafa;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }


    .recruit-table div {
      display: block;
      flex-wrap: wrap;
      border-bottom: 1px solid #ddd;
      padding: 12px 10px;
    }
    .recruit-table dt {
      width: 100%;
   
      padding: 0 0 5px 0;

      font-size: 15px;
    }
    .recruit-table dd {
      flex: 1;
      font-size: 15px;
      color: #333;
    }

  }


  


  /* １日のスケジュール */

  .oneday-section {
    max-width: 95%;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
    color: #333;
  }
  

  
  .timeline {
    list-style: none;
    padding: 0;
    border-left: 4px solid #3b3d6a;
    position: relative;
  }
  .timeline li {
    position: relative;
    padding: 20px 20px 20px 40px;
    margin-bottom: 10px;
    background: #f9f9ff;
    border-radius: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }
  .timeline li::before {
    content: "";
    width: 16px;
    height: 16px;
    background: #161666;
    border-radius: 50%;
    position: absolute;
    left: -10px;
    top: 28px;
  }
  .timeline li .time {
    display: block;
    font-weight: bold;
    color: #161666;
    margin-bottom: 4px;
  }
  .timeline li .desc {
    font-size: 15px;
    line-height: 1.5;
  }
  .timeline li small {
    font-size: 13px;
    color: #555;
    display: block;
    margin-top: 4px;
  }
  
  .points {
    margin-top: 40px;
  }
  .points h3 {
    font-size: 20px;
    margin-bottom: 10px;
    border-left: 4px solid #3b3d6a;
    padding-left: 10px;
  }
  .points ul {
    list-style: none;
    padding-left: 1em;
  }
  .points li {
    margin-bottom: 8px;
    font-size: 15px;
  }

  

  /* 福利厚生 & 働く環境 */

  .work-environment {
    width: 95%;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: "Hiragino Kaku Gothic ProN", sans-serif;
    color: #333;
  }
  
  .section-title {
    text-align: center;
    font-size: 28px;
    color: #161666;
    margin-bottom: 40px;
    border-bottom: 2px solid #161666;
    display: inline-block;
    padding-bottom: 8px;
  }
  
  .benefit-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
  }
  
  .benefit-list li {
    background: #f9f9ff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 30%;
    margin-bottom: 20px;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .benefit-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-list .img {
    width: 60px;
    height: 60px;
    background: #ddd;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px auto;
  }
  
  .benefit-list .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .benefit-list h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3b3d6a;
  }
  
  .benefit-list p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  

  
  @media (max-width: 580px) {
    .benefit-list li {

      
      width: 100%;

    }


    .benefit-list {
      margin: 0;
    }


  }
  



  
/* よくある質問 */


  .qa {
    max-width: 95%;
    margin: 0 auto 20px;
    /* margin-bottom: 10px; */
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
}

.qa summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa summary::before,
.qa p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa summary::before {
    color: #75bbff;
    content: "Q";
}

.qa summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa[open] summary::after {
    transform: rotate(225deg);
}

.qa p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa[open] p {
    transform: none;
    opacity: 1;
}

.qa p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}