* {
  box-sizing: border-box;
}

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

body {
  color: #3b3b3b;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  font-size: 16px;
}

li {
  list-style-type: none;
}

a {
  color: #3b3b3b;;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.br_tb {
  display: none;
}

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

.sp {
  display: block;
}
}


@media (max-width: 768px){
  .br_tb{
    display: block;
  }
}

:root{
  --green: #4AB917;
  --orange: #FA831C;
  --lightgreen: #F1FFEA;
}

.inner {
    margin: 0 auto;
    max-width: 900px;
    width: 90%;
}

.inner-l{
  margin: 0 auto;
  max-width: 828px;
  width: 90%;
}

.inner-m{
  margin: 0 auto;
  max-width: 633px;
  width: 90%;
}

.img-sp{
  display: none;
}

@media (max-width: 440px) {
  .img-sp{
    display: block;
  }

  .img-pc{
    display: none;
  }
}

@media all and (max-width: 768px) {}



/* 共通パーツ


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


.title{
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  margin-bottom: 46px;
  line-height: 1.2;
}

.title-en{
  font-family: "Fuzzy Bubbles", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
}

.-white{
  color: #fff;
}

.fuzzy-bubbles-regular {
  font-family: "Fuzzy Bubbles", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fuzzy-bubbles-bold {
  font-family: "Fuzzy Bubbles", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.fv{
  width: 100%;
  height: 390px;
  position: relative;
  margin-bottom: 100px;
}

.page-title{
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px){
  .fv{
    margin-bottom: 64px;
  }
}

.br-pc{
  display: block;
}

@media (max-width: 768px){
  .br-pc{
  display: none;
}

}



/* ---  header  --- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 3000;
}


.header_inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3100;
}

.header-brand a {
  display: flex;
  align-items: center; 
}

.header-brand {
  position: relative;
  z-index: 1200;
  padding: 12px 0 12px 40px;
}

.header-brand_logo {
  width: 88px;
}

.header-logo_company{
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
}

.header-list {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-item a {
  position: relative;
  display: inline-block;
}

.header-item a:hover {
  color: var(--green);
}

.header-item a::after {
  background-color: var(--green); /* 下線の色 */
  bottom: -4px; /* 要素の下端からの距離 */
  content: ""; /* 要素に内容を追加 */
  height: 2px; /* 下線の高さ */
  left: 0; /* 要素の左端からの距離 */
  position: absolute; /* 絶対位置指定 */
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transition: transform .3s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
}

.header-item a:hover::after {
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.header-cta a {
  display: flex;
  align-items: center;
  gap: 8px; 
  padding: 24px 16px;
  background-color: var(--green);
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  pointer-events: none;
}

.header-cta img {
  display: block;
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .header-cta a {
    pointer-events: auto;
    cursor: pointer;
}
}

/* ハンバーガー */
.header-hamburger {
  display: none;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 1200;
  background-color: #fff;
  border: none;
}

.header-hamburger span {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--green);
  margin: 7px 0;
  transition: transform 0.5s ease, opacity 0.3s ease;
  
}

/* 開いた状態 */
.header-hamburger.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.header-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.header-hamburger.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .header-hamburger {
    display: block;
  }

  .header {
    z-index: 3000;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh);
    z-index: 2000;
    transform: translateY(-100%);
    transition: transform .6s ease;
    pointer-events: none;
  }


  .header-nav.is-open {
    transform: translateY(0);
  }

  .header-list {
    position: relative;
    width: 100%;
    margin-top: 0;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    background-color: var(--green);
    z-index: auto;
    padding-top: 60px;
    pointer-events: auto;
  }

  .header-list a{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    width: 100%;
  }

  .header-item {
    margin-bottom: 40px;
  }

  .header-cta {
    width: 100%;
    padding-bottom: 40px;
  }

  .header-cta a{
    font-size: 30px;
    width: 100%;
    justify-content: center;
  }

  .header-list a:hover {
    color: #fff;
  }

  .header-item a::after {
    background-color: #fff; /* 下線の色 */
    bottom: -4px; /* 要素の下端からの距離 */
    content: ""; /* 要素に内容を追加 */
    height: 2px; /* 下線の高さ */
    left: 0; /* 要素の左端からの距離 */
    position: absolute; /* 絶対位置指定 */
    transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
    transform-origin: left top; /* 変形の原点を左上に指定 */
    transition: transform .3s; /* 変形をアニメーション化 */
    width: 100%; /* 要素の幅 */
  }
  /* リンクにホバーした際の下線の表示 */
  .header-item a:hover::after {
    transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
  }

}


@media (max-width: 768px){
  .header-brand{
    padding-left: 24px;
  }
}

@media (max-width: 440px){
  .header-brand{
    padding-left: 16px;
  }

  .header-brand_logo {
    width: 56px;
  }
  
  .header-logo_company{
    font-size: 24px;
  }
}


/* --- cta --- */

.contact-cta{
  background-image: url(img/contact-cta_bg.png);
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-cta_txt{
  text-align: center;
  font-size: 20px;
}

.contact-cta_tel{
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.contact-cta_tel a {
  display: flex;
  align-items: center;
  gap: 8px;  
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  pointer-events: none;
}

.contact-cta_tel img {
  display: block;
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .contact-cta_tel a {
    pointer-events: auto;
    cursor: pointer;
}

.contact-cta_txt{
  font-size: 16px;
}

}

@media (max-width: 440px){
  .contact-cta{
    padding-top: 72px;
  }

  .contact-cta_tel{
    margin-top: 48px;
  }

  .contact-cta_tel a{
    font-size: 40px;
  }
}


/* --- footer --- */

.footer{
  margin-top: 64px;
  margin-bottom: 24px;
}

.footer-flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-info_company a{
  color: var(--green);
  font-weight: 700;
  font-size: 32px;
}

.footer-info_address{
  margin-top: 24px;
}

.footer-list{
  display: flex;
  column-gap: 36px;
  flex-wrap: wrap;
}

.footer-item a{
  font-size: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.footer-item a:hover {
  color: var(--green);
}

.footer-item a::after {
  background-color: var(--green); /* 下線の色 */
  bottom: -4px; /* 要素の下端からの距離 */
  content: ""; /* 要素に内容を追加 */
  height: 2px; /* 下線の高さ */
  left: 0; /* 要素の左端からの距離 */
  position: absolute; /* 絶対位置指定 */
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transition: transform .3s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
}

.footer-item a:hover::after {
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.copyright{
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: #8f8f8f;
}

@media (max-width: 1100px) {
  .footer{
    margin-top: 48px;
  }

  .footer-flex{
    flex-direction: column;
  }

  .footer-info{
    text-align: center;
  }

  .footer-list{
    max-width: 240px;
    margin-top: 32px;
    row-gap: 16px;
    column-gap: 40px;
    justify-content: center;
  }

}

 

/* TOP

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


/* ---  mv --- */
.mv-innner{
  width: 100%;
  background-color: var(--lightgreen);
  margin-top: 86px;
}

.mv-img{
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 440px){
  .mv-innner{
    margin-top: 63px;
  }
}


/* ---  message --- */

.message{
  margin-top: 80px;
  margin-bottom: 56px;
}

.title-message{
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
}

.message-txt{
  margin-top: 48px;
  text-align: center;
}

.message-txt p{
  margin-top: 24px;
}

.message-txt p:first-child{
  margin-top: 0;
}

.message-img{
  margin-top: 24px;
  text-align: center;
}

.message-img img{
  width: 1000px;
}

@media (max-width: 768px){
  .message{
    margin-top: 64px;
    margin-bottom: 32px;
  }
  
  .title-message{
    font-size: 24px;
  }
  
  .message-txt{
    margin-top: 36px;
    text-align: left;
  }
  
  .message-img{
    margin-top: 16px;
  }
}


/* menu

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

.menu{
  background-color: var(--lightgreen);
  padding-top: 30px;
  padding-bottom: 30px;
}

.menu-flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: flex-start;
  column-gap: 64px;
  row-gap: 34px;
}

.menu-content{
  position: relative;
}

.menu-content_btn{
  position: absolute;
  bottom: 6px;
  left: 120px;
}



/* ホバー時グラデーション */

.menu-btn {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  width: 142px;
  text-align: center;
  text-decoration: none;
  line-height: 42px;
  outline: none;
  color: var(--green);
  background-color: #fff;
  position: relative;
  border: 4px solid var(--green);
  border-radius: 30px;
  transition: color 0.5s ease;
  overflow: hidden;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-btn:hover {
  background-image: linear-gradient(
    110deg,
    #69db34 0%,
    #69db34 40%,
    #baff8a 50%,
    #69db34 60%,
    #69db34 100%
  );
  background-size: 300% 100%;
  background-position: 100% 0%;
  animation: shine 0.6s ease forwards;
  color: #fff;
}

@keyframes shine {
  to {
    background-position: 0% 0%;
  }
}



/* ホバー時横から緑設定
.menu-btn {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  width: 142px;
  text-align: center;
  text-decoration: none;
  line-height: 42px;
  outline: none;
  color: var(--green);
  background-color: #fff;
  position: relative;
  border: 4px solid var(--green);
  border-radius: 30px;
  transition: color 0.5s ease;
  overflow: hidden;
}

.menu-btn:hover { 
  color: #fff;
}
.menu-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.menu-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

*/
.menu-btn_text {
  position: relative;
}

@media (max-width: 768px){
  .menu{
    padding-top: 64px;
    padding-bottom: 64px;
  }
}


/*  recruit

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

.recruit{
  margin-top: 80px;
  margin-bottom: 100px;
}

.recruit-btn_wrap{
  text-align: center;
  margin-top: 64px;
}

.recruit-btn {
  position: relative;
  padding: 24px 70px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  background: linear-gradient(
    60deg,
    #33A100 0%,
    #69DB34 50%,
    #33A100 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0%;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.recruit-btn:hover {
  background-position: 0 100%;
  transform: translateY(-2px);
}

.recruit-btn:hover {
  background-image: linear-gradient(
    110deg,
    #69db34 0%,
    #69db34 40%,
    #baff8a 50%,
    #69db34 60%,
    #69db34 100%
  );
  background-size: 300% 100%;
  background-position: 100% 0%;
  animation: shine 0.6s ease forwards;
  color: #fff;
}

.recruit-recommend-img{
  text-align: center;
}

@keyframes shine {
  to {
    background-position: 0% 0%;
  }
}


.recruit-btn_text {
  display: block;
}

@media (max-width: 440px){
  .recruit{
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .recruit-btn_wrap{
    margin-top: 48px;
  }
}


/*  会社概要

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

.fv.company{
  background: linear-gradient(rgba(31, 31, 31, 0.3), rgba(31, 31, 31, 0.3)), url(img/company/fv-company.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 26%;
}

.greeting-flex{
  display: flex;
  column-gap: 24px;
  align-items: center;
}

.greeting-txt{
  max-width: 575px;
}

.greeting-txt p{
  margin-top: 24px;
}

.greeting-txt p:first-child{
  margin-top: 12px;
}

.greeting-img_name{
  margin-top: 16px;
  line-height: 1.8;
}

@media (max-width: 1000px){
  .greeting-flex{
    flex-direction: column;
  }

  .greeting-txt p:first-child{
    margin-top: 0;
  }

  .greeting-img_wrap{
    margin-top: 48px;
  }
}

.company-company{
  margin-top: 80px;
}

.company-item_container{
  display: flex;
}

.company-item{
  border-top: solid 1px #ccc;
}

.company-item:last-child{
  border-bottom: solid 1px #ccc;
}

.company-item_title{
  width: 267px;
  background-color: var(--lightgreen);
  padding: 26px 0 26px 16px;
  
}

.company-item_text {
  padding: 26px 0 26px 16px;
  width: 100%;
}

.company-partner_wrap{
  margin-top: 80px;
  display: flex;
  justify-content: center;
  column-gap: 28px;
}

@media (max-width: 768px){
  

  .company-item_container{
    flex-direction: column;
  }

  .company-item{
    border-top: none;
  }
  
  .company-item:last-child{
    border-bottom: none;
  }

  .company-item_title{
    width: auto;
    font-weight: 700;
  }

  .company-item_text {
    padding: 26px 0 40px 16px;
  }

  .company-partner_wrap{
    margin-top: 64px;
  }
}

@media (max-width: 440px){
  .company-company{
    margin-top: 80px;
  }
}

.company-access{
  padding-top: 80px;
  padding-bottom: 100px;
  margin-top: 100px;
  margin-bottom: 16px;
  background-color: var(--lightgreen);
}

.access-map_wrap{
  display: flex;
  align-items: center;
  column-gap: 50px;
}

@media (max-width: 768px){
  .company-access{
    background-color: unset;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 74px;
  }

  .access-map_wrap{
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .access-map_map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9のアスペクト比 */
    height: 0;
    margin-top: 46px;
}

.access-map_map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
}

@media (max-width: 440px){
  .company-access{
    margin-top: 100px;
  }
}


/*  事業内容

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

.fv.business{
  background: linear-gradient(rgba(0, 55, 82, 0.3), rgba(0, 55, 82, 0.3)), url(img/business/fv-business.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.business-pipework{
  margin-bottom: 100px;
}

.business-main{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 32px;
}

.business-main_img{
  flex-shrink: 0;
}

.business-main_txt{
  max-width: 432px;
}

.business-sub-title{
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
}

.business-sub-title::before{
  content: "";
  display: inline-block;  
  background-image: url(img/business/icon-business_orange.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.business-main_txt p{
  margin-top: 16px;
}

.business-flow{
  margin-top: 48px;
}

.business-flow_item:not(:first-child){
  margin-top: 24px;
}

.business-flow_title{
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
}

.business-flow_num{
  color: #fff;
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  text-align:center;
  line-height: 28px;
  margin-right: 8px;
}

.business-flow_txt{
  margin-top: 8px;
}

@media (max-width: 768px) {
  .business-main {
    flex-direction: column;
    row-gap: 40px;
  }

  .business-main_img {
    max-width: 400px;
  }

  .business-main_img img {
    width: 100%;
  }

  .business-main_txt{
    max-width: none;
  }
}

@media (max-width: 440px){
  .business-pipework{
    margin-bottom: 80px;
  }

  .business-flow_item:not(:first-child){
    margin-top: 18px;
  }
}

.business-repair{
  padding-top: 80px;
  padding-bottom: 100px;
  background-color: var(--lightgreen);
}

.business-repair .business-sub-title::before{
  content: "";
  display: inline-block;  
  background-image: url(img/business/icon-business_green.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.business-repair .business-sub-title{
  color: var(--green);
}

.business-repair .business-flow_title{
  color: var(--green);
}

.business-repair .business-flow_num{
  color: var(--lightgreen);
  background: var(--green);
}

@media (max-width: 440px){
  .business-repair{
    padding-top: 80px;
    padding-bottom: 80px;
  }
}


/*  事業内容

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


.fv.works{
  background: linear-gradient(rgba(42, 42, 42, 0.3), rgba(42, 42, 42, 0.3)), url(img/works/fv-works.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 55%;
}

.works-item_container{
  display: flex;
}

.works-item{
  border-top: solid 1px #ccc;
}

.works-item:last-child{
  border-bottom: solid 1px #ccc;
}

.works-item_title{
  width: 227px;
  background-color: var(--lightgreen);
  padding: 32px 0 32px 24px;
  flex-shrink: 0;
  
}

.works-item_text {
  padding: 32px 0 32px 107px;
  width: 100%;
}

@media (max-width: 768px){

  .works-item_container{
    flex-direction: column;
  }

  .works-item{
    border-top: none;
    margin-bottom: 24px;
  }

  .works-item:last-child{
    margin-bottom: 0;
  }
  
  .works-item:last-child{
    border-bottom: none;
  }

  .works-item_title{
    width: auto;
    padding: 24px;
  }

  .works-item_text {
    padding: 22px;
  }

}

.work-private{
  margin-top: 80px;
  margin-bottom: 100px;
}

.-private_flex{
  display: flex;
  flex-wrap: wrap;
  column-gap: 46px;
  row-gap: 24px;
}

.works-item_flex{
  width: 260px;
  
}

@media (max-width: 440px){
  .work-private{
    margin-top: 80px;
    margin-bottom: 80px;
  }
}


/*  採用情報

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


.fv.recruit{
  background: linear-gradient(rgba(42, 42, 42, 0.3), rgba(42, 42, 42, 0.3)), url(img/recruit/fv-recruit.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 55%;
  margin-top: 0;
}


/* tab */

.job-content_area {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 20px;
}

.job-tab_container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 48px;
  row-gap: 12px;
  justify-content: center;
}

.job-tab_container {
    margin: 0 0 15px;
}
.job-tab {
  text-align:center;
  width: 300px;
  padding: 16px;
  background-color: #fff;
  border-radius: 40px;
  font-size: 20px;
  border: solid 3px var(--orange);
  color: var(--orange);
  cursor: pointer;
}

.job-tab.active {
  background-color: var(--orange);
  color: #fff;
}

.job-content {
  display: none;
}

.job-content.show {
  display: block;
}

.job-sub-title{
  margin-top: 100px;
  color: var(--orange);
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  line-height: 1.4;
}

.job-item_container{
  display: flex;
  column-gap: 8px;
}

.job-list{
  margin-top: 40px;
}

.job-item_title{
  width: 200px;
  padding: 16px 0 16px 8px;
  flex-shrink: 0;
  color: var(--orange);
  font-weight: 700;
  border-bottom: solid 1px var(--orange);
}

.job-item_text {
  padding: 16px 0 16px 8px;
  width: 100%;
  border-bottom: solid 1px #ccc;
}

@media (max-width: 768px){

  .job-item_container{
    flex-direction: column;
  }

  .job-item_title{
    width: auto;
    padding: 24px;
    outline: solid 1px var(--orange);
    outline-offset: -1px;
    padding: 14px;
    text-align: center;
    border-bottom: none;
  }

  .job-item_text {
    padding: 14px;
    background-color: #FFF4E5;
    text-align: center;
    border-bottom: none;
  }

  .job-item_text.-left{
    text-align: left;
    padding-left: 40px;
    padding-right: 40px;
  }

  .job-item_text.-row-gap{
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }

  .tb-none{
    display: none;
  }

}

@media (max-width: 440px){
  .job-sub-title{
    font-size: 24px;
    margin-top: 60px;
  }

  .job-item_text.-left{
    text-align: left;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.recruit-oneday{
  margin-top: 80px;
  margin-bottom: 100px;
}

.oneday-schedule_content{
  display: flex;
  align-items: center;
  column-gap: 60px;
  padding: 30px 25px;
}

.oneday-schedule_wrap{
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.oneday-schedule_title{
  font-weight: 700;
  color: var(--green);
  display: flex;
  column-gap: 16px;
  align-items: center;
}

.oneday-schedule_time{
  width: 80px;
  background-color: var(--green);
  font-size: 14px;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  padding-bottom: 2px;
}

.oneday-schedule_txt{
  max-width: 400px;
  font-size: 14px;
  margin-top: 8px;
  margin-left: 4px;
}

.bg-lightgreen{
  background-color: var(--lightgreen);
}

@media (max-width: 768px){
  .oneday-schedule_content{
    flex-direction: column;
    row-gap: 24px;
  }

  .oneday-schedule_title{
    column-gap: 16px;
  }
}

.recruit-recommend_txt{
  font-size: 36px;
  color: var(--orange);
  text-align: center;
}

.recruit-recommend{
  position:relative;
  margin-bottom: 100px;
}

.recruit-recommend-img{
  position: absolute;
}

.recruit-recommend_txt{
  padding-top: 180px;
}

.recruit-recommend-img.-position1{
  top: 10%; /*親のtopから50%*/
  left: 35%; /*親のleftから50%*/
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}

.recruit-recommend-img.-position2{
  top: 14%; /*親のtopから50%*/
  left: 65%; /*親のleftから50%*/
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}

.recruit-recommend-img.-position3{
  top: 55%; /*親のtopから50%*/
  left: 25%; /*親のleftから50%*/
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}

.recruit-recommend-img.-position4{
  top: 60%; /*親のtopから50%*/
  left: 75%; /*親のleftから50%*/
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}

@media (max-width: 1000px){
  .recruit-recommend-img{
    width: 30%;
  }
}


@media (max-width: 768px){
  .recruit-recommend_txt{
    font-size: 28px;
  }
}