@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
#introduction {
  scroll-margin-top: 140px;
}
.contents {
  margin-top: 100px;
}

@media screen and (max-width: 1050px) {
  .contents {
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .contents {
    margin-top: 40px;
  }
}

.contents__inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: auto;
}

.contents__link {
  color: #000;
}
.contents__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media screen and (max-width: 767px) {
  .contents__items {
    flex-direction: column;
  }
}

.contents__item {
  width: calc(50% - 20px);
  max-width: 588px;
  padding: 85px 50px 72px;
  border: 1.5px solid #a39161;
  transition: 0.3s;
  position: relative;
  min-height: 350px;  /*部署リストボックスの高さ*/
}

@media screen and (max-width: 1050px) {
  .contents__item {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 767px) {
  .contents__item {
    width: 100%;
    max-width: none;
    padding: 24px;
    margin: 0;
    min-height: inherit;
  }
}
.contents__item + .contents__item {
  margin-left: 24px;
}

@media screen and (max-width: 1050px) {
  .contents__item + .contents__item {
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .contents__item + .contents__item {
    margin: 80px auto 0;
  }
}

.contents__item:hover {
  transform: translate(-10px, -10px);
  box-shadow: 10px 10px #898989;
}

@media screen and (max-width: 767px) {
  .contents__item:hover {
    transform: inherit;
    box-shadow: none;
  }
}

.contents__item:nth-child(2n -1) {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .contents__item:nth-child(2n -1) {
    margin: 32px auto 0;
  }
}

.contents__item:nth-child(n + 3) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .contents__item:nth-child(n + 3) {
    margin-top: 48px;
  }
}

.contents__titleWrap {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: center;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .contents__titleWrap {
    flex-direction: column-reverse;
    height: auto;
    gap: 0;
  }
}
.contents__img {
  display: block;
  max-width: none;
  width: 90px;
  height: auto;
  object-fit: contain;
  margin-right: 100px;
}
@media screen and (max-width: 1100px) {
  .contents__img {
    margin-right: 60px;
  }
}

@media screen and (max-width: 767px) {
  .contents__img {
    height: 78px;
    margin: 0;
  }
}

.contents__subtitle {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.5;
  color: #666;
  position: relative;
  width: auto;
  flex: 0 0 auto;
  text-align: center;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 1050px) {
  .contents__subtitle {
    font-size: 20px;
    margin-top: 24px;
  }
}

@media screen and (max-width: 767px) {
  .contents__subtitle {
    font-size: 20px;
    margin-top: 20px;
  }
}

.contents__subtitle::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 1.5px;
  background: #a39161;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 1050px) {
  .contents__subtitle::after {
    bottom: -15px;
  }
}

.contents__text {
  font-size: 15px;
  line-height: 2;
  margin-top: 68px;
}

@media screen and (max-width: 1439px) {
  .contents__text {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1050px) {
  .contents__text {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .contents__text {
    font-size: 14px;
    margin-top: 30px;
  }
}

.interview {
  margin-top: 180px;
  background-color: #faf6f1;
}

@media screen and (max-width: 767px) {
  .interview {
    margin-top: 100px;
  }
}
.interview__ttl {
  position: relative;
  display: block;
  padding-left: 0;
  color: #666;
  font-family: "Marcellus", serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.6;
  text-align: left;
  padding: 0 20px;
}

.interview__ttl .section-label {
  position: relative;
  display: inline-block;
  padding-left: 14px;
}

.interview__ttl .section-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a39161;
  transform: translateY(-50%);
  opacity: 0.5;
}

.interview__ttl--small {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #666;
  text-align: left;
}

.interview__inner {
  max-width: 1220px;
  padding: 73px 20px 111px;
  width: 100%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .interview__inner {
    padding: 48px 0;
  }
}
.interview-container {
  display: flex;
  align-items: stretch;
  gap: 68px;
}

@media screen and (max-width: 767px) {
  .interview-container {
    flex-direction: column;
    gap: 0;
  }
}

.interview-container > .interview__item:first-child {
  width: min(44vw, 534px);
  max-width: 534px;
  flex-shrink: 0;
}

.interview-container > .interview__item:nth-child(2) {
  flex: 1;
  margin-left: 0;
}

.interview__imgWrap {
  width: 100%;
  aspect-ratio: 534 / 356;
  position: relative;
}

.interview__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .interview-container > .interview__item:first-child,
  .interview-container > .interview__item:nth-child(2) {
    width: 100%;
    max-width: none;
  }

  .interview__imgWrap {
    aspect-ratio: auto;
    line-height: 0;
  }

  .interview__img {
    height: auto;
  }
}

.interview__item--text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.interview__items {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 1050px) {
  .interview__items {
    margin-top: 56px;
  }
}

@media screen and (max-width: 767px) {
  .interview__items {
    flex-direction: column;
    margin-top: 40px;
  }
}

.interview__item {
  max-width: 580px;
  width: calc(50% - 30px);
}

@media screen and (max-width: 767px) {
  .interview__item {
    width: 100%;
    margin: auto;
  }
}

.interview__item:nth-child(2n) {
  margin-left: 78px;
}

@media screen and (max-width: 767px) {
  .interview-container > .interview__item:nth-child(2) {
    width: 100%;
    padding: 40px 20px 0;
    box-sizing: border-box;
  }
}

.interview__item:nth-child(n + 3) {
  margin-top: 88px;
}

@media screen and (max-width: 767px) {
  .interview__item:nth-child(n + 3) {
    margin: 15px auto 0;
  }
}

.interview__item--w {
  width: 100%;
}
.interview__staff-ttl {
  margin-top: 80px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #666;
  margin-left: -1.25em;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .interview__staff-ttl {
    font-size: 18px;
    margin-left: -8px;
    margin-right: 15px;
  }
}
.interview__staff-name {
  font-size: 25px;
  color: #666;
  font-weight: 700;
  border-bottom: 1px solid #666;
  line-height: 1.8;
  padding-bottom: 19px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1050px) {
  .interview__staff-name {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .interview__staff-name {
    margin: 0;
    padding-bottom: 19px;
  }
}

.interview__staff-head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a39161;
  font-weight: 800;
  font-size: 22px;
  padding-top: 40px;
  position: relative;
}

.interview__staff-head::before {
  display: block;
  content: "";
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #a39161;
}
@media screen and (max-width: 767px) {
  .interview__staff-head {
    font-size: 18px;
    padding: 32px 20px 0;
  }
}

.interview__staff-text {
  font-size: 15px;
  line-height: 2;
  color: #666;
  padding-top: 11px;
}

@media screen and (max-width: 767px) {
  .interview__staff-text {
    font-size: 14px;
    margin: 0 20px 32px;
  }
}

.bosyu {
  margin: 230px 0;
}

@media screen and (max-width: 1050px) {
  .bosyu {
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .bosyu {
    margin-top: 48px;
  }
}
.bosyu__title {
  color: #666;
  position: relative;
  width: 295px;
  text-align: center;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.05em;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .bosyu__title {
    font-size: 18px;
    width: 100%;
    margin-top: 80px;
    line-height: 1;
  }
}

.section-title__en {
  display: block;
  margin-top: 6px;
  color: #a39161;
  font-family: "Marcellus", serif;
  font-size: 12px;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.bosyu__info {
  max-width: 900px;
  padding: 0 20px;
  margin: 80px auto;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .bosyu__info {
    padding: 0 24px;
  }
}

.bosyu__text {
  padding: 27px 30px;
  color: #a39161;
  font-size: 15px;
  text-align: center;
  font-weight: 700;
  border: 1px solid #a39161;
}

@media screen and (max-width: 767px) {
  .bosyu__text {
    font-size: 16px;
    padding: 30px 3px;
  }
}

.bosyu__detail {
  max-width: 900px;
  width: 100%;
  margin: 80px auto;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .bosyu__detail {
    margin: 30px auto 0;
    padding: 0 40px;
  }
}

.bosyu__items {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #d6d6d6;
  padding: 16px 0;
}

@media screen and (max-width: 767px) {
  .bosyu__items {
    flex-direction: column;
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .bosyu__items:nth-child(1) {
    border-top: 1px solid #d6d6d6;
  }
}

.bosyu__items-left {
  max-width: 100px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .bosyu__items-left {
    min-width: inherit;
  }
}

.bosyu__items-right {
  width: calc(100%- 140px);
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .bosyu__items-right {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
}

.bosyu__itemsText {
  font-size: 15px;
  line-height: 2;
  color: #666;
}

@media screen and (max-width: 767px) {
  .bosyu__itemsText {
    font-size: 14px;
  }
}

.bosyu__btn {
  width: 250px;
  height: 47px;
  border: 1px solid #00abeb;
  margin: 80px auto 0;
}

@media screen and (max-width: 767px) {
  .bosyu__btn {
    margin: 80px auto 0;
  }
}
.bosyu__btn:hover {
  opacity: 0.6;
}
.bosyu-btn {
  margin-top: 130px;
  margin-bottom: 230px;
}
@media screen and (max-width: 767px) {
  .bosyu-btn {
    margin-top: 80px;
    margin-bottom: 100px;
  }
}
/*# sourceMappingURL=maps/recruit.css.map */
