.anchor {
	margin-top: 80px;
	transform: translateY(-9rem);
}

.job-card {
  display: flex;
  gap: 3.6rem;
  margin-bottom: 30px;
  align-items: center;
}
.job-image {
  width: 50%;
}
.job-image img {
  width: 100%;
}
.job-info {
  width: 50%;
}
.job-title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  color: #00744b;
  margin-bottom: 5px;
}
.job-description {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .job-image {
    width: 100%;
  }
  .job-image img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .job-info {
    width: 100%;
  }
  .flat-link {
    margin: 0 auto;
  }
}
.button-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.button-container p {
  width: 50%;
}
.button-container a {
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 1.2;
}
.button-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid #666666;
  text-decoration: none;
  color: #1a1a1a;
  border-radius: 0;
  transition: background-color 0.3s ease;
  min-width: 150px;
}
.button-links:hover {
  background-color: #e6e6e6;
  color: #1a1a1a;
}
.arrow {
  margin-left: 5px;
  color: #008080;
  font-size: 1.6em;
}
.arrow::before {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.8em;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .button-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .button-container p {
    width: 100%;
  }
  .arrow::before {
    margin-left: 0;
  }
}


/* インタビューレイアウト */
.card-block-x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-gap: 2.0rem;
}

.card-block.card-border .card-item .thumb-frame {
    width: 180px;
    height: 180px;
}
.card-block.card-border .card-item .card-body > h6 {
    width: 180px;
}
@media (max-width: 991px) {
    .card-block-x4 {
		grid-template-columns: repeat(2, 1fr);
        grid-gap: 3.0rem;
    }
}


@media (max-width: 767px) {
    .card-block-x4 {
        grid-template-columns: repeat(1, 1fr);
    }
}


.schedule {
    position: relative;
	margin-bottom: 6rem;
}
.schedule::before {
    content: "";
    background: #DBDBDB;
    position: absolute;
    inset: 50% auto auto 1rem;
    translate: 0 -50%;
    width: 2px;
    height: calc(100% - 4rem);
}
.schedule dl {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 0;
}
.schedule dt {
    color: #00744b;
    position: relative;
    width: 20%;
    padding-left: 5rem;
    font-size: 1.8rem;
    font-weight: 700;
	letter-spacing: 0.2rem;
}
.schedule dt::before {
    content: "";
    background: #00744b;
    display: inline-block;
    position: absolute;
    inset: calc(1rem - 1px) auto auto 1px;
    width: 2rem;
    height: 2rem;
    border-radius: 100%;
}
.schedule dd {
    width: 70%;
    font-size: 1.4rem;
    line-height: 2;
	letter-spacing: 0.2rem;
}
.schedule_txt {
    width: 50%;
}
.schedule dd span {
    color: var(--c-blue);
    display: block;
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
}


@media screen and (max-width: 767px) {
.schedule::before {
    inset: 50% auto auto 0.5rem;
    height: calc(100% - 2rem);
}
.schedule dl {
    gap: 0;
}
.schedule dt {
    width: 100%;
    padding-left: 3rem;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.schedule dt::before {
    inset: calc(0.6rem + 5px - 1px) auto auto 1px;
    width: 1rem;
    height: 1rem;
}
.schedule dd {
    width: 100%;
    padding-left: 3rem;
    font-size: 1.4rem;
}
.schedule dd span {
    font-size: 1.6rem;
}
.schedule_txt {
    width: 100%;
    padding-bottom: 3rem;
}
    .schedule dd + dt {
        margin-top: 1.5rem;
    }
}



.privacy-policy {
  height: 200px;
  overflow: scroll; 
  border: 1px solid #ccc;
  padding: 10px;
  overflow-y: auto; 
  overflow-x: hidden; 
}