@charset "utf-8";
/* ==========================================================================
   recruit.css
   採用情報ページ（recruit.php）専用スタイル
   ========================================================================== */

/* ---------------------------------
   働く魅力
--------------------------------- */
#recruit-messages {
  padding-bottom: 0;
}


.recruit-messages {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.recruit-messages img{
  width: 77%;
  margin: auto;
}


@media(max-width:1000px){
  
  .recruit-messages img{
    width: 100%;
  }
}

@media(min-width:601px){
  .recruit-messages-sp{
    display: none;
  }
}

@media(max-width:600px){
  .recruit-messages{
    display: none;
  }
  

  .recruit-messages-sp {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .recruit-messages-sp img{
    width: 100%;
    margin: auto;
  }
}

.recruit-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.recruit-feature {
  text-align: center;
  padding: 40px 20px 34px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.recruit-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(58, 54, 51, 0.1);
}

.recruit-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--beige-100);
  color: #8b5b27db;
  font-size: 26px;
}

.recruit-feature h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.recruit-feature p {
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .recruit-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 600px) {
  
  .recruit-features {
      grid-template-columns: repeat(1, 1fr);
      gap: 10px;
  }

  
  .recruit-feature {
    padding: 30px 16px 26px;
  }
  
  
  .recruit-feature .section-title-row {
    margin-bottom: 0!important;
  }
  
  .recruit-feature h3 {
    font-size: 1.05rem;
  }
  
}

/* ---------------------------------
   募集職種
--------------------------------- */



.job-section {
  background: url(../img/bk/beigu-bk.jpg);
  background-size: cover;
  border-radius: 150px 150px 0 0;
  box-shadow: 0 -3px 20px #e1dfd885;
}

.job-section .l-container {
  max-width: 1000px;
}


.job-card {
  background: var(--bg);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 3px 3px 10px #e7dfd7;
  border: 1px solid #e9e0e0;
}

.job-card + .job-card {
  margin-top: 32px;
}

.job-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 30px;
  background: var(--bg-beige);
}

.job-card-head h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #8b5b27db;
}

.job-card-type {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 999px;
  background: #8b5b27db;
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
}

.job-table tr {
  border-bottom: 1px solid var(--line);
}

.job-table tr:last-child {
  border-bottom: none;
}

.job-table th {
  width: 170px;
  text-align: left;
  vertical-align: top;
  padding: 20px 30px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.03em;
  background: var(--bg);
}

.job-table td {
  padding: 18px 32px 18px 0;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text);
  text-align: left;
}

@media (max-width: 768px) {
  .job-card-head {
    padding: 20px 22px;
  }

  .job-table,
  .job-table tbody,
  .job-table tr,
  .job-table th,
  .job-table td {
    display: block;
    width: auto;
  }

  .job-table th {
    padding: 18px 22px 4px;
  }

  .job-table td {
    padding: 0 22px 18px;
  }
}


@media (max-width: 600px) {
  .job-section{
    border-radius: 0;
  }
}

/* ---------------------------------
   エントリー
--------------------------------- */

#entry-section{
  padding-top: 80px;
  background: linear-gradient(#fff, transparent);
}


.entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.entry-card {
  padding: 40px 36px;
  border-radius: 22px;
  background: var(--bg);
  border: 1px solid var(--line);
  text-align: center;
}

.entry-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--beige-100);
  color: #8b5b27db;
  font-size: 22px;
}

.entry-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.entry-card .btn {
  margin-bottom: 22px;
}

.entry-card p {
  font-size: 12.5px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .entry-grid {
    grid-template-columns: 1fr;
  }

  .entry-card {
    padding: 32px 24px;
  }
  
  #entry-section {
    padding-top: 40px;
  }
  
}
