@charset "UTF-8";

/* ===== mv ========================================== */
.mv{
    max-width: 1100px;
    margin: 0 auto;
    height: auto;
    position: relative;
  }
.fv{
    background-image: url(../img/mv_pc_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.mv-inner{
  position: absolute;
  bottom: clamp(5px, 3vw, 70px);
  left: 3%;
  width: clamp(260px, 40vw, 450px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.mv-inner .anno{
  color: #f21300;
  font-size: clamp(8px, 1.1vw, 11px);
  margin: 0;
}
.mv-inner .cta{
  display: flex;
  gap: 10px;
}
.mv-inner .cta a{
  transition: opacity 0.3s ease;
}
.mv-inner .cta a:hover{
  opacity: 0.7;
}

@media (max-width: 768px){
  .mv-inner{
    margin: 0 auto;
    width: 94%;
  }
}


/* ===== コンテンツ共通 ========================================== */
  .content8{
    max-width: 850px;
    margin: 0 auto;
  }
  .content10{
    max-width: 1000px;
    margin: 0 auto;
  }
  .content11{
    max-width: 1100px;
    margin: 0 auto;
  }
  .content12{
    max-width: 1200px;
    margin: 0 auto;
  }

  .ttl {
    position: relative;
    display: block;
    text-align: center;
    margin: 0 auto 10px;
    font-size: 45px;
    font-weight: bold;
    color: #393636;
    padding-bottom: 15px;
    width: fit-content;
    letter-spacing: 0.12em;
  }
  .ttl::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;          /* 線の長さ */
    height: 7px;          /* 線の太さ */
    background-color: #e77908; /* オレンジ */
    border-radius: 999px; /* 角丸 */
  }

  .anno{
    font-size: 11px;
    color: #818181;
    text-align: right;
    margin: 10px;
  }


  @media (max-width: 768px){
    .content8,.content10,.content11,.content12{
      width: 100%;
      margin: 0 auto;
    }
    .info,.worktype,.strengths,.flow,.qa{
      padding: 40px 0 !important;
    }
    .image{
      padding: 0px 0 40px !important;
    }

    .ttl {
      font-size: 30px;
      padding-bottom: 15px;
    }
    .ttl::after {
      width: 90px;
      height: 6px;
    }
  }

/* ===== ★求人情報★ ========================================== */
.info{
  background-color: #fcefcc;
  padding: 90px 20px;
}

.info-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.info-item {
  border-radius: 10px;
  width: 250px;
  padding-top: 24px;
  overflow: hidden;
  text-align: center;
  position: relative;
  margin-top: 20px;
}
.info-badge {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 15px;
  padding: 0px 14px;
  border-radius: 999px;
  z-index: 2;
  white-space: nowrap;
}
.info-title {
  background: #fff;
  border-radius: 10px 10px 0 0;
  padding: 20px 0px 15px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.3;
  z-index: 1;

  position: relative;
  display: inline-block;
}
.info-title::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 10px solid #fff;
}
.info-title p{
  height: 75px;
  margin: 0 0 5px;
  color: #393636;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-footer {
  color: #fff;
  padding: 10px 12px;
  font-size: 25px;
}

p.info-time {
  border-bottom: 2px solid #fff;
  margin: 0;
}
p.info-price {
  margin: 5px 0 0;
}

.yellow{
  background: #f1c900;
}
.orange{
  background: #e39c39;
}


@media (max-width: 768px){
  .info-list{
    width: 95%;
    margin: 0 auto;
  }
  .info-item {
    width: 48%;
    padding-top: 24px;
    margin-top: 0px;
  }
  .info-title {
    padding: 12px 0px 8px;
    position: relative;
    display: inline-block;
  }
  .info-title p{
    height: 60px;
    font-size: 13px;
    line-height: 1.2;
  }
  .info-footer {
    padding: 10px 12px 7px;
    font-size: 25px;
  }
  p.info-time {
    border-bottom: 1px solid #fff;
  }
  .info-badge {
    font-size: 12px;
    padding: 1px 8px;
  }
}

/* ===== ★選べるワークタイプ★ ========================================== */
.worktype{
  padding: 90px 0;
}
.work-inner{
  background-image: url(../img/work_bg_pc.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-bottom: 70px;

  transform: scale(calc(100vw / 1100));
}
.orange-text{
  font-size: clamp(16px, 2.2vw, 24px);
  color: #e39c39;
  font-weight: bold;
  text-align: center;
  margin: 30px 0 90px;
}
.work-item{
  display: flex;
  justify-content: space-between;
  padding: 30px 90px;
  gap: 40px;
}
.work-text{
  width: 45%;
  color: #fff;
  font-size: clamp(14px, 1.6vw, 19px);
}
.work-text h3{
  font-size: clamp(30px, 3vw, 35px);
  margin: 0;
  text-shadow: 0 4px 10px rgba(216, 115, 0, 0.863);
}
.work-text img{
  width: 200px;
  margin-top: 40px;
}
.work-img{
  display: flex;
  width: 55%;
  gap: 15px;
}
.work-con{
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 0;
}
.work-con .text{
  padding: 0px 15px 10px;
  font-weight: bold;
  line-height: 1.2;
  font-size: clamp(16px, 2vw, 23px);
}
.fcO{
  color: #e39c39 !important;
}
.fsS{
  font-size: clamp(13px, 1.5vw, 16px);
  color: #393636;
}


@media (max-width: 768px){
  .work-inner{
    background-image: url(../img/work_bg_sp.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-bottom: 90px;
    padding-bottom: 120px;
  }
  .work-item{
    display: block;
    justify-content: space-between;
    padding: 15px;
    gap: 40px;
    margin-bottom: 0;
  }
  .work-text{
    width: 100%;
    text-align: center;
  }
  .work-text p{
    text-align: left;
  }
  .work-img{
    display: flex;
    width: 100%;
    gap: 8px;
  }
  .work-con .text{
    padding: 0px 10px 10px;
  }
  .orange-text{
    margin: 20px 0 0;
  }
  .work-text img {
    margin-top: 30px;
}
}


/* ===== ★勤務イメージ★ ========================================== */
.image{
  padding: 0 0 90px;
}
.image-content{
  display: flex;
}
.image-box{
  position: relative;
}
.image-text{
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
  font-size: clamp(10px, 1.5vw, 18px);
  color: #393636;
  font-weight: bold;
  line-height: 1.2;
}
.image-text .anno{
  margin: 0;
}
.fsM{
  font-size: clamp(23px, 2vw, 27px);
}


@media (max-width: 768px){
  .image-content{
    display: block;
  }
  .image-text{
    position: absolute;
    top: 20%;
    left: 22%;
    transform: none;
    white-space: nowrap;
    text-align: left;
    font-size: 17px;
    color: #393636;
    font-weight: bold;
    line-height: 1.2;
  }
  .image .anno{
    text-align: left;
  }
}


/* ===== ★fitfullの強み★ ========================================== */
.strengths{
  background-color: #fcefcc;
  padding: 90px 20px;
}
.strengths .ttl{
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 45px;
  margin: 0 auto;
  padding-bottom: 20px;
}
.strengths .ttl img{
  height: 52px;
  width: auto;
  display: block;
}
.strengths-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
  margin-top: 20px;
}
.strengths-item {
  border-radius: 10px;
  width: 340px;
  padding: 20px;
  text-align: center;
  position: relative;
  margin-top: 30px;
  background-color: #fff;
  text-align: left;
}
.strengths-item .anno{
  margin: 0;
}
.strengths-title{
  display: flex;
  gap: 10px;
  position: relative;
  color: #e39c39;
  font-weight: bold;
  line-height: 1.2;
  font-size: clamp(18px, 1.5vw, 20px);
  margin-bottom: 10px;
}
.strengths-img01{
  position: absolute;
  width: 80px;
  right: -30px;
  top: -35px;
}
.strengths-img02{
  position: absolute;
  width: 90px;
  right: -30px;
  top: -35px;
}
.strengths-img03{
  position: absolute;
  width: 100px;
  right: -30px;
  top: -35px;
}
.num{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(40deg, #e2943c, #ecda00);
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strengths-con{
  font-size: clamp(15px, 1.5vw, 18px);
  color: #393636;
}


@media (max-width: 768px){
  .strengths .ttl{
    font-size: 30px;
  }
  .strengths .ttl img{
    height: 38px;
    width: auto;
    display: block;
  }
  .strengths-img01{
    position: absolute;
    width: 70px;
    right: -7px;
    top: -30px;
  }
  .strengths-img02{
    position: absolute;
    width: 83px;
    right: -9px;
    top: -35px;
  }
  .strengths-img03{
    position: absolute;
    width: 94px;
    right: -14px;
    top: -30px;
  }
  .strengths-item {
    width: 93%;
    margin-top: 22px;
  }
  .strengths-list{
    margin-top: 5px;
  }
}


/* ===== ★働くまでの流れ★ ========================================== */
.flow{
  padding: 90px;
}
.flow-content{
  margin-top: 60px;
  display: flex;
  gap: 20px;
}
.flow-box {
  position: relative;
  width: 240px;
  background: #fff2cc;
  border-radius: 10px;
  padding: 35px 2% 20px;
  box-sizing: border-box;
  text-align: center;
}
.flow-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: #fff2cc;
  color: #e39c39;
  border-radius: 50%;
  font-weight: bold;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-circle img {
  height: auto;
}
.flow-text {
  color: #e39c39;
  font-weight: bold;
  font-size: clamp(20px, 1.5vw, 25px);
  line-height: 1.2;
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}


@media (max-width: 766px) {

  .flow {
    padding: 40px 10px;
  }
  .flow-content {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    padding: 0 14px;
    margin-top: 30px;
  }
  .flow-box {
    width: calc(50% - 6px);  /* 2列 */
    padding: 26px 8px 6px;
    margin-bottom: 15px;
  }
  .flow-badge {
    width: 40px;
    height: 40px;
    font-size: 22px;
    top: -14px;
  }
  .flow-text {
    font-size: 18px;
    margin-top: 0px;
  }
  .flow-circle img {
    height: auto;
    width: 90%;
  }
}


/* ===== ★QA★ ========================================== */
.qa{
  padding: 90px;
  background-color: #f0f0f0;
}
.qa-acc{
  background-color: #fff;
  border-radius: 10px;
  margin: 20px;
  color: #393636;
  padding: 0 20px;
}
.qa-q img{
  width: 30px;
  margin-right: 10px;
  margin-bottom: 5px;
}
.qa-q{
  position: relative;
  padding: 20px 0;
  font-size: 25px;
  font-weight: bold;
}
.qa-a{
  font-size: 20px;
  padding: 20px 0;
  border-top: 2px dotted #f1c900;
}
.qa-a{
  display: none;
}

/* 矢印 */
.qa-q::after {
  border-right: solid 2px #393636;
  border-top: solid 2px #393636;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 43%;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 8px;
}
.qa-q.open::after {
  top: 43%;
  transform: rotate(-45deg);
}

@media (max-width: 768px){
  .qa-acc{
    margin: 14px;
  }
  .qa-q img{
    width: 20px;
    margin-right: 10px;
    margin-bottom: 5px;
  }
  .qa-q{
    font-size: 20px;
    font-weight: bold;
  }
  .qa-a{
    font-size: 15px;
    border-top: 2px dotted #f1c900;
  }
  .qa-q::after {
    right: 0px;
  }
  .qa .ttl{
    margin-bottom: 30px;
  }
}

/* ===== ★採用を始めてみませんか？★ ========================================== */
.last{
  padding: 90px 0 120px;
  background-image: url(../img/last_bg_pc.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100%;
  transform: scale(calc(100vw / 1100));
  margin-bottom: 90px;
}
.last .ttl{
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 45px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.last .ttl img{
  height: 52px;
  width: auto;
  display: block;
}
.last .ttl::after{
  display: none;
}
.fuki{
  width: 300px;
  margin: 0 auto;
}
.last-text{
  color: #fff;
  font-size: clamp(14px, 1.6vw, 19px);
  margin-left: 10%;
  position: relative;
  font-weight: 500;
}
.last-text h3{
  font-size: clamp(22px, 3vw, 30px);
  margin: 0;
  text-shadow: 0 4px 10px rgba(216, 115, 0, 0.863);
}
.line{
  background-color: #fff;
  padding: 0 3px;
  color: #e39c39;
}

.last-cta {
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 58px;
  background: #333333;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 9999px;

  position: absolute;
  left: 45%;
  transform: translateX(-50%);
  bottom: -100px;
}
.last-cta:hover{
  opacity: .9;
}

@media (max-width: 768px){
  .last{
    padding: 40px 0 180px;
    background-image: url(../img/last_bg_sp.jpg);
    background-size: 100%;
  background-position: bottom center;
}
  .last .ttl{
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    line-height: 0.1;
    font-size: 25px;
    padding-bottom: 65px;
  }
  .last-text{
    text-align: center;
    margin-left: 0;
    margin-bottom: 100px;
  }
  .last-text p{
    margin-left: 0;
    font-size: 16px !important;
  }
  .fuki{
    width: 200px;
    margin: 0 auto 20px;
  }

  .last-cta {
    margin: 50px auto 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -250px;
  }
}


/* ===== 追従CTA ========================================== */
/* 追従ボタン全体（ボタン＋注釈） */
.btn-contact-wrap{
  position: fixed;
  z-index: 9999;
  right: 20px;
  bottom: 10px;
  text-align: center;
  padding: 10px 0 0 ;
  background-color: none;

  /* ▼ 追加 */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

/* 表示状態 */
.btn-contact-wrap.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ボタン本体 */
.btn-contact{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  background: #D8842A;
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 9999px;
}

/* 右上の白丸（元のデザイン） */
.btn-contact::after{
  content: "";
  position: absolute;
  top: 12px;
  right: 18px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.btn-contact:hover{
  opacity: .9;
}

/* SP */
@media only screen and (max-width: 766px){
  .btn-contact-wrap{
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fbefcb;
    text-align: center;
  }

  .btn-contact{
    width: 80%;
    height: 60px;
    padding: 0;
    font-size: 18px;
  }

  .btn-contact-wrap .anno{
    text-align: center;
    margin-top: 0;
  }
}

/* フッター手前で止める用 */
.btn-contact-wrap.is-stop{
  position: absolute;
}
