/* ==========採用情報ここから=========== */
.information-page-body {
  background: linear-gradient(180deg, #f7f4ec 0%, #ffffff 28%, #f5f1e6 100%);
}

.information-page a {
  color: inherit;
  text-decoration: none;
}

.information-page {
  min-width: 0;
}

.information-hero {
  position: relative;
  aspect-ratio: 16 / 5;
  background:
    linear-gradient(
      90deg,
      rgba(18, 28, 48, 0.88) 0%,
      rgba(18, 28, 48, 0.55) 38%,
      rgba(18, 28, 48, 0.1) 100%
    ),
    url("../img/top-bg5.jpg") no-repeat center center / cover;
  overflow: hidden;
}

.information-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(247, 244, 236, 1) 100%
  );
}

.information-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 6%;
  z-index: 1;
}

.information-hero-copy {
  color: #fff;
  max-width: 580px;
}

.information-hero-copy span {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 0.28em;
}

.info-hero-title span {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(32px, 5.6vw, 32px) !important;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.information-hero-copy p {
  margin-top: 18px;
  line-height: 2;
  font-size: clamp(14px, 1.4vw, 18px);
}

.information-body {
  width: min(1080px, calc(100% - 64px));
  margin: -44px auto 80px;
  position: relative;
  z-index: 2;
}


.info-tab-section {
  margin-top: 40px;
  background-color: #fff;
  padding: 32px;
  box-shadow: 0 18px 36px rgba(31, 42, 70, 0.08);
}

.info-tabs input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tab-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tab-labels label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 16px;
  background: #f4efe3;
  color: #1f2a46;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.tab-labels label:hover {
  transform: translateY(-2px);
}

#tab-area:checked ~ .tab-labels label[for="tab-area"],
#tab-occupation:checked ~ .tab-labels label[for="tab-occupation"],
#tab-type:checked ~ .tab-labels label[for="tab-type"] {
  background: #1f2a46;
  color: #fff;
}

.tab-panels {
  margin-top: 24px;
}

.tab-panel {
  display: none;
}

#tab-area:checked ~ .tab-panels .panel-area,
#tab-occupation:checked ~ .tab-panels .panel-job,
#tab-type:checked ~ .tab-panels .panel-type {
  display: grid;
}

.tab-section-title {
  font-size: 28px;
  font-family: "Shippori Mincho", serif;
  color: #1f2a46;
}

.tab-section-lead {
  margin-top: 12px;
  line-height: 1.9;
  color: #4b4b4b;
}

.job-groups {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.job-group {
  border: 1px solid rgba(31, 42, 70, 0.12);
  border-radius: 5px;
  background-color: #fffdfa;
  overflow: hidden;
}

.job-group-title {
  padding: 16px 20px;
  background-color: #f4efe3;
  color: #1f2a46;
  font-size: 20px;
  font-weight: 700;
}

.area-job-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 95%;
  margin: 20px auto 0;
  padding-bottom: 30px;
}

.area-job-list img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.name-job {
  height: 70px;
}

.name-job h6 {
  display: flex;
}

.tags {
  display: flex;
  gap: 5px;
  width: 100%;
  margin: 5px auto 0;
}

.job-tag {
  padding: 1px 12px;
  border-radius: 999px;
  background-color: rgba(31, 42, 70, 0.08);
  color: #1f2a46;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  width: 50%;
}

.shop-name {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
}

.part-time {
  font-size: clamp(9px, 0.7vw, 12.5px);
}

.type-group {
  border: 1px solid rgba(31, 42, 70, 0.12);
}

.occupation-title,
.type-title {
  padding: 16px 20px;
  background-color: #f4efe3;
  color: #1f2a46;
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
}

.type-title {
  border-radius: 5px 5px 0 0;
  margin-top: 0;
}


.occupation-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 8px 14px;
  border-radius: 999px;
  margin-left: 12px;
  vertical-align: middle;
  white-space: nowrap;
  color: #fff;
}

.occupation-tag.fulltime {
  background-color: #3f7a4d;
}

.occupation-tag.area-limited {
  background-color: #c9a23a;
}

.occupation-tag.parttime {
  background-color: #c9772d;
}

.occupation-job,
.type-job {
  display: flex;
  margin-top: 15px;
  gap: 20px;
}

.type-job {
  background-color: #f9f8f8;
  border-radius: 0 0 5px 5px;
  margin-top: 0;
  padding: 20px;
}

.occupation-job img {
  max-width: 100%;
  height: auto;
}

.entry-banner {
  margin-top: 36px;
  padding: 26px 30px;
  border-radius: 24px;
  background: linear-gradient(120deg, #1f2a46 0%, #31456f 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.entry-banner h4 {
  font-size: clamp(24px, 2vw, 32px);
  font-family: "Shippori Mincho", serif;
}

.entry-banner p {
  line-height: 1.8;
  opacity: 0.9;
}

.entry-banner a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 16px 24px;
  border-radius: 999px;
  background-color: #dba95a;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
}


/* ==========採用情報ここまで=========== */
