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

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/* =========================
Recruit first view
========================= */
.recruit_cont .first-view {
  max-height: 285px;
  padding-top: 111px;
}

@media (max-width: 1050px) {
  .recruit_cont .first-view {
    padding-top: 91px;
  }
}

@media (max-width: 767px) {
  .recruit_cont .first-view {
    padding-top: 60px;
  }
}

.recruit_cont .first-view__imgWrap {
  padding-top: 25.4%;
}

@media (max-width: 989px) {
  .first-view__title {
    font-size: 3.5rem;
  }
}

/* =========================
Contents title
========================= */
.contents__title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #666;
  letter-spacing: 0.06em;
}

.contents__title::after {
  content: "";
  display: block;
  width: 0.5px;
  height: 48px;
  margin: 20px 0 24px 40px;
  background: #a39161;
}

@media screen and (max-width: 767px) {
  .contents__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 32px;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    color: #666;
    white-space: nowrap;
    margin-left: 20px;
  }

  .contents__title::before {
    content: "";
    display: block;
    width: 30px;
    height: 0.5px;
    flex-shrink: 0;
    margin: 0;
    background: #a39161;
  }

  .contents__title::after {
    display: none;
  }
}

/* =========================
Intro
========================= */
.intro {
  max-width: 1440px;
  margin: 0 auto;
  padding: 108px 120px 149px;
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 171px 1fr;
  column-gap: 47px;
  align-items: start;
  scroll-margin-top: 120px;
}

@media screen and (max-width: 1050px) {
  .intro {
    padding-top: 38px;
  }
}

@media screen and (max-width: 767px) {
  .intro {
    display: block;
    max-width: none;
    padding: 38px 20px 0;
    scroll-margin-top: 80px;
  }
}

@media screen and (max-width: 430px) {
  .intro {
    scroll-margin-top: 70px;
  }
}

/* SP full-width override */
@media screen and (max-width: 767px) {
  .intro {
    padding: 38px 0 0 !important;
    margin-bottom: 0 !important;
    max-width: none !important;
    width: 100% !important;
  }
}

/* =========================
Intro items
========================= */
.intro__items {
  height: auto;
  margin-left: auto;
  /* width: min(982px, calc(100% - 260px)); */
}

@media screen and (max-width: 767px) {
  .intro__items {
    height: auto;
    margin-top: 0;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .intro__title::before {
    background: none;
  }
}

/* SP full-width override */
@media screen and (max-width: 767px) {
  .intro__items {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* =========================
Intro left
========================= */
.intro__left {
  width: 100px;
  margin-left: 50px;
}

.intro__left > img {
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .intro__left {
    display: none;
  }
}

/* =========================
Intro right
========================= */
.intro__right {
  height: 100%;
  position: relative;
}

.intro__right > img {
  object-fit: cover;
  height: 100%;
}

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

/* SP full-width override */
@media screen and (max-width: 767px) {
  .intro__right,
  .intro__right-img {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* =========================
Intro lead
========================= */
.intro__lead {
  grid-column: 2;
  grid-row: 2;
  margin-left: auto;
  margin-top: 29px;
  color: #a39161;
  font-weight: 400;
  width: 568px;
  z-index: 1;
  font-size: 15px;
  line-height: 2.1;
  padding-right: 68px;
  position: relative;
}

.intro__lead::before {
  content: "";
  position: absolute;
  top: -61px;
  left: -55px;
  width: 177px;
  height: 145px;
  border-top: 1px solid #a39161;
  border-left: 1px solid #a39161;
}

.intro__lead::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -60px;
  width: 177px;
  height: 145px;
  border-right: 1px solid #a39161;
  border-bottom: 1px solid #a39161;
}

.master .intro__lead::after {
  right: 73px;
}

@media screen and (max-width: 767px) {
  .intro__lead {
    width: 100%;
    margin-top: 0;
    padding: 48px 20px 48px;
    font-size: 14px;
  }

  .intro__lead::before,
  .intro__lead::after {
    display: none;
  }
}

/* =========================
Point background
========================= */
.point {
  position: relative;
}

.point::before {
  content: "";
  background: #FAF6F1;
  width: 100%;
  height: 284px;
  position: absolute;
  top: 0;
  z-index: -1;
}

.point::after {
  content: "";
  background: #FAF6F1;
  width: 1014px;
  height: 443px;
  position: absolute;
  bottom: 540px;
  z-index: -1;
}

@media screen and (max-width: 989px) {
  .point::before {
    height: 330px;
  }

  .point::after {
    width: 100%;
    height: 330px;
  }
}

@media screen and (max-width: 767px) {
  .point::before,
  .point::after {
    display: none !important;
  }
}

/* =========================
Point list
========================= */
.point__list {
  width: 100%;
  max-width: 1216px;
  margin: auto;
}

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

/* =========================
Point item
========================= */
.point__item {
  width: 980px;
  margin-left: auto;
  display: flex;
}

@media (max-width: 989px) {
  .point__item {
    width: 100%;
    margin: unset;
    padding: 0 20px;
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .point__item {
    width: 100%;
    padding: 0;
  }
}

/* =========================
Point item 1
========================= */
.point__item.item_1 {
  margin-bottom: 34px;
}

@media screen and (max-width: 767px) {
  .point__item.item_1 {
    flex-wrap: wrap-reverse;
    margin-bottom: 0;
  }

  .point__item.item_1 {
    order: 2;
    flex-wrap: wrap-reverse;
    margin-bottom: 0;
    background-color: #f0fcff;
  }
}

/* SP full-width background override */
@media screen and (max-width: 767px) {
  .point__item.item_1 {
    background-color: #FAF6F1 !important;
    width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: relative !important;
  }
}

/* =========================
Point item 2
========================= */
.point__item.item_2 {
  margin-top: 122px;
}

@media screen and (max-width: 767px) {
  .point__item.item_2 {
    display: contents;
  }

  .point__item.item_2 .left_content {
    order: 1;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .point__item.item_2 .right_content {
    order: 3;
    width: 100%;
    padding: 0 20px 48px;
  }

  .point__item.item_2 .left_content picture,
  .point__item.item_2 .left_content img {
    display: block;
    width: 100%;
  }
}

/* =========================
Point item 3
========================= */
.point__item.item_3 {
  margin-top: 144px;
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  .point__item.item_3 {
    order: 4;
    margin: 0;
    padding: 6px 20px 48px;
  }
}

/* SP full-width background override */
@media screen and (max-width: 767px) {
  .point__item.item_3 {
    background-color: #FAF6F1 !important;
    width: 100vw !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    position: relative !important;
  }
}

/* =========================
Point image item
========================= */
@media screen and (max-width: 767px) {
  .point__item.image {
    order: 5;
  }
}

/* =========================
Content columns
========================= */
.first_content {
  width: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-right: 20px;
}

.left_content {
  width: 405px;
  margin-right: 84px;
  padding-bottom: 35px;
}

.right_content {
  padding-top: 20px;
  width: 514px;
  padding-right: 15px;
}

.harf_content {
  width: 680px;
  margin-left: auto;
  padding: 30px 160px 60px 0;
}

.third_content {
  width: 614px;
}

@media screen and (max-width: 989px) {
  .third_content {
    padding-bottom: 30px;
  }

  .left_content {
    margin-right: 30px;
  }
}

@media screen and (max-width: 767px) {
  .first_content {
    width: 100%;
    padding: 8px 20px 48px;
  }

  .right_content {
    width: 100%;
    padding-top: 0;
  }

  .left_content {
    width: 100%;
    padding-top: 0px;
    margin-right: 0;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* .point__item.item_1,
  .point__item.item_3 {
    background-color: #f0fcff;
  } */

  .harf_content {
    width: 100%;
    padding: 10px 20px;
  }
}

/* =========================
Point title
========================= */
.point__ttl {
  font-size: 32px;
  font-weight: bold;
  padding-left: 88px;
  margin-bottom: 11px;
  color: #666;
  position: relative;
}

.point__ttl::before,
.point__ttl::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 65px;
  left: 0;
  z-index: 1;
  top: -12px;
}

.point__item.item_1 .point__ttl::before {
  background: url(../images/recruit/cont/point-01.svg) no-repeat;
  background-size: contain;
}

.point__item.item_2 .point__ttl::after {
  background: url(../images/recruit/cont/point-02.svg) no-repeat;
  background-size: contain;
}

.point__item.item_3 .point__ttl::after {
  background: url(../images/recruit/cont/point-03.svg) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .point__ttl {
    margin-top: 48px;
    font-size: 20px;
    padding-left: 60px;
    margin-bottom: 24px;
  }

  .point__ttl::before,
  .point__ttl::after {
    width: 43px;
    height: 45px;
    top: -4px;
  }
}

@media screen and (max-width: 767px) {
  .point__ttl {
    margin-top: 42px;
    font-size: 20px;
    padding-left: 60px;
  }

  .point__ttl::before,
  .point__ttl::after {
    width: 43px;
    height: 45px;
  }
}

/* =========================
Point text
========================= */
.point_text {
  font-size: 15px;
  line-height: 2.1;
  color: #666;
  font-weight: 400;
}

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

/* =========================
Bottom content
========================= */
.bottom_cont {
  /* width: 95%; */
  max-width: 1216px;
  margin: 128px auto 90px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .bottom_cont {
    margin: 48px 28px 100px;
  }
}

/* =========================
Bottom content inner
========================= */
.bottom_cont_inner {
  margin-left: auto;
  width: 980px;
}

@media screen and (max-width: 989px) {
  .bottom_cont_inner {
    width: 100%;
  }
}

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

/* =========================
Bottom title wrap
========================= */
.bottom_cont_ttl_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin: 0 auto 90px;
}

@media screen and (max-width: 767px) {
  .bottom_cont_ttl_wrap {
    margin: 0 auto 70px;
  }
}

/* =========================
Bottom line
========================= */
.bottom_cont_line {
  width: 1px;
  height: 50px;
  background: #a39161;
}

/* =========================
Bottom title picture
========================= */
.bottom_cont_ttl_pic {
  width: 148px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =========================
Bottom title
========================= */
.bottom_ttl {
  font-size: 20px;
  font-weight: 800;
  color: #a39161;
  margin: 19px auto;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .bottom_ttl {
    font-size: 18px;
    margin: 28px auto;
  }
}

/* =========================
Bottom text
========================= */
.bottom_text {
  line-height: 2;
  margin-bottom: 72px;
}

/* =========================
Bottom picture
========================= */
.bottom_cont_pic {
  width: 116px;
  margin: auto;
}

/* =========================
Bottom buttons
========================= */
.bottom_button_area {
  width: 458px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.bottom_button_area .morebtn {
  width: 200px;
  margin-top: 99px;
  padding: 4px 0;
}

@media screen and (max-width: 767px) {
  .bottom_button_area {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 59px;
  }

  .button_area__btn {
    width: 45%;
    margin-top: 57px;
    padding: 5px 0;
  }

  .bottom_button_area .morebtn {
    margin-top: 0;
    width: 66%;
  }
}

/* =========================
Master more button
========================= */
.master .morebtn {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .master .morebtn {
    margin-bottom: 0;
  }
}

/*# sourceMappingURL=maps/recruit.css.map */
