@charset "UTF-8";

/* ==== root ========================== */
:root {
  --color-black: #555555;
  --color-white: #ffffff;
  --color-primary: #FF7F00;
  --color-bg: #F2F2F2;

  --noto-sans: "Noto Sans JP", serif;
  --shippori-m: "Shippori Mincho B1", serif;
  --montserrat: "Montserrat", sans-serif;

}


/*================================================
 * #subVisual
 ================================================*/
#subVisual::before {
  background-image: url(../../images/recruit/sub_vis.jpg);
}

#subVisual.other::before {
  background-image: url(../../images/recruit/sub_vis02.jpg);
}

@media screen and (max-width:767px) {}

/*================================================
 * detail
 ================================================*/
.recruit_list {
  font-size: 2rem;
  width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.recruit_list li:not(:last-child) {
  margin-bottom: 2rem;
}

.recruit_list li a {
  background: var(--color-white);
  padding: 2.2rem 6rem;
  border-radius: 0 1.5rem 1.5rem 0;
  border-left: 1rem solid var(--color-primary);
  font-weight: bold;
  position: relative;
}

.recruit_list li a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../../images/recruit/recruit_list-arrow.png);
  width: 1rem;
  height: 2rem;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
}

.pnavi {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin-top: 6rem;
}

.pnavi span,
.pnavi a {
  display: grid;
  place-content: center;
  width: 3.2rem;
  height: 3.2rem;
  aspect-ratio: 1/1;
  border-radius: 10000px;
}

.pnavi a:hover,
.pnavi span {
  background: var(--color-black);
  color: var(--color-white);
}

.pnavi a.next.page-numbers,
.pnavi a.prev.page-numbers {
  display: none;
}

@media screen and (max-width:767px) {
  .recruit_list {
    font-size: 1.8rem;
    width: 100%;
  }

  .recruit_list li a {
    padding: 2.2rem 4rem 2.2rem 2rem;
  }
}

/*================================================
 * detail
 ================================================*/
#recruit .wrap {
  width: 126rem;
  margin-left: calc((100% - 115rem) / 2);
  display: flex;
  align-items: start;
  justify-content: space-between;
}

#recruit.other .wrap {
  justify-content: center;
  margin-left: auto;
}

.recruit_menu {
  position: sticky;
  top: 15rem;
  left: 0;
}

.recruit_menu li {
  margin-bottom: 2rem;
}

.recruit_menu a {
  width: 23rem;
  height: 5rem;
  display: grid;
  place-content: center;
  background: var(--color-primary);
  border-radius: 1000px;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 600;
}

.recruit_menu a:hover {
  filter: brightness(1.2);
}

.recruit_detail {
  width: 92rem;
}


.recruit_section {
  padding: 4rem 3rem;
  margin-top: 12rem;
  background: var(--color-white);
}

.recruit_section:first-of-type {
  margin-top: 0;
}

.recruit_section h2 {
  font-size: 2.1rem;
  font-weight: 700;
  padding: 0 0 1rem 2.5rem;
  border-bottom: 0.2rem solid #D1D1D1;
  position: relative;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.recruit_section h2::before {
  position: absolute;
  content: "";
  width: 0.7rem;
  height: auto;
  top: 0;
  bottom: 1rem;
  left: 0;
  background: var(--color-primary);
}

.recruit_section dl {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  font-size: 1.5rem;
  line-height: 2;
}

.recruit_section dl dt {
  width: 18rem;
  padding: 1.5rem 0 1rem;
  border-bottom: 0.2rem solid #D1D1D1;
  font-weight: 700;
  text-align: center;
}

.recruit_section dl dd {
  width: calc(100% - 18rem);
  padding: 1.5rem 0 1rem;
  border-bottom: 0.2rem solid #D1D1D1;
}

.recruit_section p {
  line-height: 2;
}

.recruit_section p:not(:first-of-type) {
  margin-top: 2em;
}

.recruit_section dl dd iframe {
  display: block;
  width: 100%;
  height: 20rem;
}


.recruit_section h3 {
  font-size: 2.1rem;
  font-weight: 700;
  padding-left: 3.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.recruit_section h3:not(.nomal):before {
  position: absolute;
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background: var(--color-primary);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.recruit_section h3.nomal {
  padding-left: 0;
  font-size: 2.5rem;
}

.recruit_section .mb-20 {
  margin-bottom: 2rem;
}

.recruit_section .tel_link {
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.recruit_section .tel_link img {
  width: 1.8rem;
}

@media screen and (max-width:767px) {
  #recruit .wrap {
    width: 34.5rem;
    margin: 0 auto;
    flex-wrap: wrap;
  }

  .recruit_menu {
    position: static;
    width: 100%;
    display: grid;
    gap: 1rem 0.8rem;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 4rem;
  }

  .recruit_menu li {
    margin-bottom: 0;
  }

  .recruit_menu a {
    width: auto;
    height: 4rem;
    font-size: 1.4rem;
  }

  .recruit_section {
    padding: 4rem 1rem;
    margin-top: 8rem;
  }

  .recruit_section dl {
    font-size: 1.3rem;
  }

  .recruit_section dl dt {
    width: 30%;
    padding: 1.5rem 0 1rem;
    border-bottom: 0.2rem solid #D1D1D1;
    font-weight: 700;
    text-align: center;
  }

  .recruit_section dl dd {
    width: 70%;
    padding: 1.5rem 0 1rem;
    border-bottom: 0.2rem solid #D1D1D1;
  }
}



/*================================================
 *  
 ================================================*/
@media screen and (max-width:767px) {}



/*================================================
 * 
 ================================================*/


@media screen and (max-width:767px) {}

/*================================================
 * 
 ================================================*/


@media screen and (max-width:767px) {}



/*================================================
 *  
 ================================================*/
@media screen and (max-width:767px) {}



/*================================================
 * 
 ================================================*/


@media screen and (max-width:767px) {}

/*================================================
 * 
 ================================================*/


@media screen and (max-width:767px) {}



/*================================================
 *  
 ================================================*/
@media screen and (max-width:767px) {}



/*================================================
 * 
 ================================================*/


@media screen and (max-width:767px) {}