@charset "utf-8";

/* ===============================
page 19  Monic Rental (モニックレンタルについて)  Start
=============================== */
/* rental section Start */
.monic-rental-page .language-div .dropdown .dropbtn{
    background-color: #5F5F5F;
}
.ttl-green-bg.company-page-mv.mv-ttl-gray-bg {
  background-color: #5f5f5f;
}

.ttl-green-bg.mv-ttl-gray-bg .ttl.company-page-mv {
  color: #ffffff;
}

.rental-mv-section {
  background-color: #5f5f5f;
  padding-bottom: 24px;
}

.rental-mv-img-wrap {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, 1fr);
  place-items: center;
  padding-bottom: 40px;
}

.rental-mv-img {
  max-width: 188px;
  width: 100%;
  height: 100%;
}

.rental-mv-img img {
  width: 100%;
  height: 100%;
}

.rental-mv-txt {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .rental-mv-section {
    padding-bottom: 30px;
  }

  .rental-mv-img-wrap {
    grid-template-columns: repeat(4, 1fr);
  }

  .rental-mv-txt {
    font-size: 1.8rem;
    line-height: 1.66;
  }
}

@media screen and (max-width: 600px) {
  .rental-mv-img-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 400px) {
  .rental-mv-img-wrap {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 13px;
    column-gap: 12px;
  }
}
/* rental section End */

/* rental instock section Start */
.rental-instock-section {
  margin: 25px auto 90px;
}

.instock-wrap {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}

.instock-circle {
  width: 123px;
  height: 123px;
  background-color: #e3e8e4;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instock-circle-txt {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #3b4043;
}

.instock-detail {
  width: 223px;
  border-left: 2px solid #5f5f5f;
  position: relative;
  margin-right: 10px;
  padding-bottom: 10px;
}

.instock-detail::before {
  content: "";
  width: 100%;
  height: 3.6px;
  background-color: #e3e8e4;
  position: absolute;
  left: 0;
  bottom: 0;
}

.instock-detail-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.instock-detail-inner-top {
  padding-left: 10px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: end;
}

.instock-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.instock-ttl-eng {
  font-family: "din-2014", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #5f5f5f;
}

.instock-ttl-jp {
  width: 60px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
  background-color: #5f5f5f;
  color: #ffffff;
  text-align: center;
}

.instock-detail-inner-bottom {
  display: flex;
  gap: 10px;
  justify-content: end;
  align-items: end;
}

.instock-num {
  font-family: "din-2014", sans-serif;
  font-size: 5.4rem;
  font-weight: 400;
  line-height: 0.8;
  color: #35ccd9;
}

.instock-detail-inner-top .instock-num {
  font-size: 6.8rem;
  font-weight: 500;
  line-height: 0.7;
}

.instock-txt {
  font-size: 1.6rem;
  font-weight: 700;
  color: #5f5f5f;
}

.instock-detail-inner-top .instock-txt {
  line-height: 1.5;
}

.instock-detail-wrap {
  width: calc(100% - 173px);
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.instock-top-num {
  display: flex;
  justify-content: end;
  align-items: end;
  gap: 5px;
}

@media screen and (max-width: 950px) {

  .instock-top-num {
    gap: 0px;
  }

  .instock-wrap {
    gap: 20px;
  }

  .instock-detail-wrap {
    width: calc(100% - 143px);
  }
  .instock-circle-txt {
    font-size: 2rem;
  }

  .instock-num {
    font-size: 5.2rem;
  }

  .instock-detail-inner-top {
    gap: 2px;
    padding-left: 10px;
  }

  .instock-detail-inner-top .instock-num {
    font-size: 6rem;
  }

  .instock-txt {
    font-size: 1.4rem;
  }

  .instock-ttl-jp {
    width: 50px;
    font-size: 1.2rem;
  }

  .instock-ttl-eng {
    font-size: 2.3rem;
  }

  .instock-detail-inner {
    gap: 10px;
  }
}

@media screen and (max-width: 850px) {
  .instock-num {
    font-size: 4.5rem;
  }

  .instock-detail-inner-top .instock-num {
    font-size: 5.5rem;
  }

  .instock-txt {
    font-size: 1.2rem;
  }

  .instock-ttl-jp {
    font-size: 1rem;
  }

  .instock-ttl-eng {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .instock-detail {
    width: 230px;
    margin-bottom: 20px;
  }

  .rental-instock-section {
    margin: 25px auto 100px;
  }

  .instock-wrap,
  .instock-detail-wrap {
    gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .instock-circle-txt {
    font-size: 2.4rem;
  }

  .instock-ttl-eng {
    font-size: 2.5rem;
  }

  .instock-ttl-jp {
    width: 60px;
    font-size: 1.4rem;
    padding: 0;
    text-align: center;
  }

  .instock-detail-inner-top .instock-num {
    font-size: 6.8rem;
  }

  .instock-detail-inner-top .instock-txt {
    font-size: 1.6rem;
  }

  .instock-num {
    font-size: 5.4rem;
    letter-spacing: -1.2px;
  }

  .instock-txt {
    font-size: 1.6rem;
  }

  .instock-top-num {
    gap: 5px;
  }

  .instock-detail-inner-top {
    padding-left: 17px;
  }
}

/* rental instock section End */

/* choose us section Start */
.choose-us-ttl {
  background-color: #3b4043;
  border: 1px solid #707070;
  padding: 65px 0;
}

.choose-us-ttl-txt {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
}

.choose-us-card-box {
  padding: 60px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.choose-us-card-wrap {
  display: grid;
  grid-template-rows: 1fr auto;
  margin-left: 70px;
  padding-left: 15px;
  border-left: 1px solid #707070;
  position: relative;
}

.choose-us-card-wrap::before {
  font-family: "din-2014", sans-serif;
  content: counter(monic-rental);
  counter-increment: monic-rental;
  font-size: 6.8rem;
  font-weight: 400;
  line-height: 1;
  color: #35ccd9;
  position: absolute;
  left: -50px;
  top: 0;
}

.choose-us-card {
  display: grid;
  grid-template-areas:
    "ttl ttl"
    "txt-box img-box";
  column-gap: 35px;
  row-gap: 25px;
  grid-template-columns: repeat(2, 1fr);
}

.choose-us-card-ttl {
  grid-area: ttl;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.choose-us-card-txt-box {
  max-width: 442px;
  width: 100%;
  grid-area: txt-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  align-items: end;
}

.choose-us-card-txt-box .inner-txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

.choose-us-card-btn {
  max-width: 420px;
  width: 100%;
  background-color: #5f5f5f;
  border-radius: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  padding: 22px 0;
  text-align: center;
  position: relative;
  height: 73px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choose-us-card-btn::before {
  content: "";
  width: 50px;
  height: 50px;
  background: url(../img/common/footer_arr.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.choose-us-card-img-box {
  width: 100%;
  height: 100%;
  max-height: 290px;
}

.choose-us-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-us-small-wrap {
  display: flex;
  gap: 35px;
  margin-top: 25px;
}

.choose-us-small {
  max-width: 442px;
  width: 100%;
  background-color: #e3e8e4;
  display: flex;
  gap: 20px;
}

.choose-us-small-img {
  max-width: 157px;
  width: 100%;
  height: 100%;
}

.choose-us-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-us-small-txt {
  padding: 25px 10px 30px 0;
}

.small-txt-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 22px;
}

.small-inner-txt {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}


@media screen and (max-width: 950px) {
  .choose-us-small-img {
    max-width: 130px;
    height: auto;
  }
  .small-txt-ttl {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .small-inner-txt {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 900px) {
  .choose-us-card-btn::before {
    width: 40px;
    height: 40px;
    right: 20px;
  }

  .choose-us-card-btn{
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 769px) {
  .choose-us-card-btn:hover{
    font-size: 2.3rem;  
    background-color: #3B4043;
  }
  .choose-us-card-btn:hover::before{
    background: url(../img/common/item_btn.png) no-repeat;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}

@media screen and (max-width: 768px) {
    
  .choose-us-card-img-box {
    max-height: unset;
  }

  .choose-us-ttl {
    padding: 70px 0;
  }

  .choose-us-ttl-txt {
    font-size: 2.7rem;
  }

  .choose-us-card-box {
    padding: 50px 36px 100px;
    gap: 80px;
  }

  .choose-us-card-wrap {
    margin-left: 36px;
    padding-left: 10px;
  }

  .choose-us-card-wrap::before {
    font-size: 5rem;
    left: -32px;
  }

  .choose-us-card {
    display: grid;
    grid-template-areas:
      "ttl"
      "txt-box"
      "img-box";
    row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .choose-us-card-ttl {
    font-size: 1.8rem;
  }

  .choose-us-card-txt-box {
    max-width: 100%;
    gap: 25px;
    align-items: start;
  }

  .choose-us-card-txt-box .inner-txt {
    font-size: 1.4rem;
  }

  .choose-us-card-btn {
    max-width: 100%;
    font-size: 1.3rem;
    padding: 10px 0;
    padding-right: 50px;
    height: 52px;
  }

  .choose-us-card-btn::before {
    width: 37px;
    height: 37px;
    right: 15px;
  }

  .choose-us-small-wrap {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .choose-us-small {
    max-width: 100%;
    gap: 10px;
  }

  .choose-us-small-img {
    max-width: 100px;
  }

  .choose-us-small-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px 0 0;
  }

  .small-txt-ttl {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .small-inner-txt {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
/* choose us section End */

/* basketball section Start*/
.basketball-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 80px;
}

.team-logo-img {
  max-width: 327px;
  width: 100%;
  height: auto;
}

.team-logo-img img {
  width: 100%;
  height: 100%;
}

.basketball-txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.87;
  color: #3b4043;
  text-align: center;
}

.monic-rental-page .card-two-footer {
  padding-bottom: 105px;
}

.monic-rental-line {
  height: 2px;
  background-color: #707070;
  width: 100%;
  margin-top: 112px;
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .basketball-wrap {
    padding-bottom: 100px;
  }

  .team-logo-img {
    max-width: 192px;
  }

  .basketball-txt {
    font-size: 1.2rem;
  }

  .monic-rental-page .card-two-footer {
    padding-bottom: 80px;
  }

  .monic-rental-line {
    margin-top: 80px;
    margin-bottom: 66px;
  }
}

/* basketball section End*/
/* ===============================
page 19  Monic Rental (モニックレンタルについて)  End
=============================== */

/* ===============================
page 24  Entry Page (募集要項)  Start
=============================== */
#sale-job,#product-job{
    display: inline-block;
    height: 90px;
    margin-top: -90px;
}
.entry-mv-section {
  height: auto;
  background: url(../img/entry/entry_mv_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.entry-mv-inner {
  max-width: 1056px;
  width: 100%;
  height: 100%;
  padding: 100px 20px 0;
  margin: 0 auto;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.entry-mv-txt {
  font-size: 2.4rem;
  font-weight: 700;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  line-height: 1.5;
}

.entry-mv-img {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.entry-mv-img img {
  width: 100%;
  height: 100%;
}

.space-section {
  display: flex;
  justify-content: space-between;
  padding: 45px 20px 100px;
  gap: 30px;
}

.space-left {
  max-width: 600px;
  width: 100%;
}

.space-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  position: relative;
}

.space-ttl::before {
  content: "";
  width: 97%;
  height: 3px;
  background-color: #35ccd9;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.space-txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  padding-top: 45px;
}

.space-txt.bottom {
  padding-top: 40px;
}

@media screen and (max-width: 920px) {
  .space-left {
    max-width: 65%;
    width: 100%;
  }

  .space-right {
    max-width: 35%;
  }

  .space-txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 800px) {
  .entry-mv-txt {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 768px) {
  .space-ttl-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .entry-mv-section {
    background-position: left top;
    background: url(../img/entry/entry_mv_bg_sp.png);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .entry-mv-txt {
    font-size: 1.6rem;
  }

  .entry-mv-inner {
    padding: 40px 36px 0;
    align-items: center;
  }

  .entry-mv-img {
    width: 100%;
  }

  .entry-mv-img {
    object-position: center;
  }

  .space-section {
    padding: 45px 36px 100px;
  }

  .space-right {
    display: none;
  }

  .space-left {
    max-width: 100%;
    padding: 0 1px;
  }

  .space-txt {
    font-size: 1.6rem;
  }

  .space-txt.bottom {
    padding-top: 35px;
  }
}
/* position entry seciton */
.position-entry-section {
  background-color: #5f5f5f;
}

.position-entry-wrap {
  padding: 35px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.position-entry-left {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
}

.position-box-entry {
  max-width: 220px;
  width: 100%;
  padding: 14px 20px 14px 0;
  border: 1px solid #ffffff;
  text-align: center;
  position: relative;
}

.positon-entry-right {
  display: flex;
  gap: 18px;
  max-width: 456px;
  width: 100%;
}

.position-box-txt {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.9;
  position: relative;
}

.position-box-txt::before {
  content: "";
  width: 14px;
  height: 8px;
  background: url(../img/entry/entry_dropdown.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 56%;
  transform: translateY(-50%);
  right: -4px;
}

@media screen and (max-width: 768px) {
  .position-entry-wrap {
    padding: 50px 36px;
    flex-direction: column;
    gap: 35px;
  }

  .positon-entry-right {
    max-width: 220px;
    flex-direction: column;
  }
}

/* how to entry seciton */
.how-entry-section {
  max-width: 1050px;
  width: 100%;
  padding: 0 20px;
  margin: 140px auto 30px auto;
}

.how-entry {
  display: flex;
  gap: 150px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 65px 0;
}

.how-entry-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.how-entry-txt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}

.how-entry-txt span {
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .how-entry-section{
    padding: 0 36px;
    margin: 100px auto 15px auto;
  } 

  .how-entry {
    max-width: 1050px;
    width: 100%;
    padding: 20px 0 50px 0;
    flex-direction: column;
    gap: 20px;
  }

  .how-entry-ttl {
    font-size: 2rem;
  }

  .how-entry-txt {
    font-size: 1.3rem;
  }
}
/* product job */
.product-job-section {
  border-top: 1px solid #36cbda;
  border-left: 1px solid #36cbda;
  padding: 14px 0 0 24px;
  margin-top: 100px;
}

.sale-job-section{
    margin-top: 70px;
}

.product-job-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.job-explanation {
  display: flex;
  gap: 15px;
  padding-top: 55px;
}

.job-explanation .left {
  max-width: 385px;
  width: 100%;
}

.job-explanation .right {
  max-width: calc(100% - 400px);
  width: 100%;
}

.job-explanation .left .blue-warning {
  background-color: #35ccd9;
  border-radius: 17px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  padding: 3px 0;
}

.job-explanation .left .job-explan-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 20px 0;
  border-bottom: 1px solid #707070;
}

.job-explanation .left .job-explan-txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  padding-top: 10px;
}

.job-specific-wrap {
  width: 100%;
  display: flex;
  justify-content: start;
  flex-direction: column;
  align-items: end;
}

.job-specific {
  max-width: 920px;
  width: 100%;
  background-color: #5f5f5f;
  margin-top: 40px;
  border-radius: 30px;
  padding: 30px 30px 50px 30px;
}

.job-specific-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.12;
  color: #ffffff;
}

.job-flow {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 37px;
  flex-direction: column;
  gap: 40px;
}

.job-flow-box {
  max-width: 580px;
  width: 100%;
  position: relative;
  background-color: #e3e8e4;
  padding: 10px 14px 10px 83px;
}

.job-flow-box::before {
  width: 70px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #35ccd9;
  font-family: "Montserrat", sans-serif;
  content: counter(product-job);
  counter-increment: product-job;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.58;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}

.job-flow-box.job-flow-box:not(:last-child)::after {
  content: "";
  width: 30px;
  height: 18px;
  background: url(../img/entry/specific_arr_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.job-flow-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
}

.job-flow-txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 0 0 15px;
  position: relative;
}

.job-flow-txt::before {
  content: "";
  width: 9px;
  height: 14px;
  background: url(../img/entry/job-flow-arr.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 3px;
  top: 14px;
}

.job-flow-warning {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  width: 100%;
  max-width: 920px;
  padding-top: 10px;
}

.eligibility-wrap {
  width: 100%;
  display: flex;
  justify-content: end;
}

.eligibility {
  max-width: 926px;
  width: 100%;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin-top: 30px;
  padding: 35px 0;
  display: flex;
  gap: 80px;
}

.eligibility-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.eligibility-right-box {
  max-width: 580px;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #ffffff;
  background-color: #5f5f5f;
  border-radius: 22px;
  padding: 3px 45px 3px 30px;
}

.eligibility-right-box:first-child {
  margin-bottom: 30px;
}

.job-detail-wrap {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  margin-top: 40px;
}

.job-detail {
  max-width: 925px;
  width: 100%;
}

.job-detail-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.job-detail-table {
  max-width: 925px;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-top: 30px;
}

.job-detail-table tr th,
.job-detail-table tr td {
  border: 1px solid #95989a;
  padding: 16px 12px;
  text-align: left;
  vertical-align: top;
}

.job-detail-table tr td:first-child,
.job-detail-table tr th:first-child {
  border-left: 1px solid #95989a;
  border-right: none;
}

.job-detail-table tr td:last-child,
.job-detail-table tr th:last-child {
  border-right: 1px solid #95989a;
  border-left: none;
}

.job-detail-table .col-left {
  width: 160px;
  background-color: #e3e8e4;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
}

.job-detail-table .col-right {
  width: auto;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
}

.job-detail-btn {
  max-width: 390px;
  width: 100%;
  background-color: #5a5fed;
  padding: 23px 60px 23px 20px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  position: relative;
  border-radius: 8px;
  text-align: center;
}

.job-detail-btn::before {
  content: "";
  width: 50px;
  height: 50px;
  background: url(../img/common/footer_arr.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.job-detail-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.job-flow.sale-job .job-flow-box {
  position: relative;
  min-height: 43px;
}

.job-flow.sale-job .job-flow-box:not(:last-child)::after {
  content: "";
  width: 30px;
  height: 18px;
  background: url(../img/entry/specific_arr_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
}

.job-flow.sale-job .job-flow-box .job-flow-txt {
  padding-top: 0;
  line-height: 1.45;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000000;
}

.job-flow.sale-job .job-flow-box .job-flow-txt::before {
  display: none;
}

.job-flow.sale-job .job-flow-box::before {
  height: 100%;
  content: counter(sale-job);
  counter-increment: sale-job;
}

@media screen and (max-width: 1000px) {
  .job-explanation .left {
    max-width: 40%;
    width: 100%;
  }

  .job-explanation .right {
    max-width: 60%;
    width: 100%;
  }

  .product-job-ttl {
    font-size: 2.2rem;
  }

  .job-explanation .left .blue-warning {
    font-size: 1.4rem;
  }

  .job-explanation .left .job-explan-ttl {
    font-size: 1.4rem;
  }

  .job-explanation .left .job-explan-txt {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .product-job-section {
    margin-top: 50px;
    padding: 20px 0 0 15px;
  }

  .sale-job-section{
    margin-top: 50px;
  }


  .product-job-ttl {
    font-size: 2rem;
  }

  .job-explanation {
    padding-top: 30px;
    flex-direction: column;
  }

  .job-explanation .left {
    max-width: 100%;
    width: 100%;
  }

  .job-explanation .right {
    max-width: 100%;
    width: 100%;
  }

  .job-explanation .left .blue-warning {
    padding: 6px 0;
    border-radius: 27px;
  }

  .job-explanation .left .job-explan-ttl {
    font-size: 1.8rem;
    padding: 15px 0;
  }

  .job-explanation .left .job-explan-txt {
    font-size: 1.6rem;
  }

  .job-flow {
    gap: 30px;
  }

  .job-specific {
    padding: 25px 20px 30px 20px;
  }

  .job-specific-ttl {
    font-size: 2rem;
    text-align: center;
  }

  .job-flow-box {
    padding: 10px 15px 10px 50px;
  }

  .job-flow-box::before {
    font-size: 2rem;
    width: 40px;
    height: 55px;
  }

  .job-flow-ttl {
    font-size: 1.2rem;
  }

  .job-flow-txt {
    font-size: 1.2rem;
    padding: 0 0 0 20px;
  }

  .job-flow-txt::before {
    top: 5px;
    left: 0;
  }

  .job-flow-warning {
    font-size: 1.4rem;
  }

  .eligibility {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0 30px 0;
    margin-top: 50px;
  }

  .eligibility-ttl {
    font-size: 2rem;
  }

  .eligibility-right-box {
    max-width: 100%;
    font-size: 1.4rem;
    text-align: center;
    padding: 10px;
    border-radius: 42px;
    line-height: 1.4;
  }

  .job-detail-table tr {
    display: flex;
    flex-direction: column;
  }

  .job-detail-table .col-left {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: center;
  }

  .job-detail-table .col-right {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .job-detail-table tr td:first-child,
  .job-detail-table tr th:first-child {
    border-left: 1px solid #adadad;
    border-right: 1px solid #adadad;
    border-bottom: none;
  }

  .job-detail-table tr td:last-child,
  .job-detail-table tr th:last-child {
    border-right: 1px solid #adadad;
    border-left: 1px solid #adadad;
    border-bottom: none;
  }

  .job-detail-table tbody tr:last-child td:last-child {
    border-bottom: 1px solid #adadad;
  }

  .job-detail-ttl {
    font-size: 2rem;
  }

  .job-detail-table {
    margin-top: 20px;
  }

  .job-detail-table tr th,
  .job-detail-table tr td {
    padding: 18px 15px;
  }

  .job-flow.sale-job .job-flow-box .job-flow-txt {
    line-height: 1.4;
    font-size: 1.2rem;
    padding-left: 0;
  }

  .job-flow.sale-job .job-flow-box {
    min-height: 55px;
    padding-right: 5px;
    display: flex;
    justify-content: start;
    align-items: start;
  }

  .job-flow.sale-job .job-flow-box:not(:last-child)::after {
    left: 50%;
  }

  .job-flow.sale-job {
    gap: 30px;
  }
}

/* entry process */
.entry-process-section {
  margin-bottom: 100px;
}

.entry-process-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.process-box-entry {
  display: flex;
  gap: 10px;
  padding-top: 20px;
}

.entry-step {
  max-width: 330px;
  width: 100%;
}

.entry-step-ttl {
  width: calc(100% - 27px);
  background-color: #707070;
  min-height: 67px;
  border-left: 12px solid #35ccd9;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.entry-step-three .entry-step-ttl {
  width: 100%;
}

.entry-step-ttl::before {
  content: "";
  width: 27px;
  height: 100%;
  background: url(../img/entry/step_arr.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  right: -26.5px;
  top: 0;
}

.entry-step-three .entry-step-ttl::before {
  display: none;
}

.entry-step-subttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 25px 0 20px 0;
}

.entry-step-txt {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .process-box-entry {
    flex-direction: column;
  }

  .entry-step {
    max-width: 100%;
    width: 100%;
    margin-bottom: 40px;
  }

  .entry-step-ttl {
    width: 100%;
    min-height: 75px;
    border-left: none;
    border-top: 12px solid #35ccd9;
  }

  .entry-step-ttl::before {
    width: 100%;
    height: 42px;
    background: url(../img/entry/setp_arr_sp.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: absolute;
    right: 0;
    bottom: -41px;
    top: unset;
  }

  .entry-step-subttl {
    margin: 70px 0 20px 0;
  }

  .entry-step-three .entry-step-subttl {
    margin: 15px 0 15px 0;
  }
}
/* ===============================
page 24  Entry Page (募集要項)  End
=============================== */



/* ===============================
Page --  Contact Thanks (お問い合わせTHANKS) Start
=============================== */

.ttl-green-bg.thanks-page-banner {
  background-color: #5f5f5f;
}
.ttl-green-bg.thanks-page-banner {
  color: #ffffff;
}
.thanks-page {
  background-color: #e3e8e4;
  min-height: calc(100vh - 235px);
}

.thanks-section {
  max-width: 874px;
  width: 100%;
  padding: 80px 20px 152px 20px;
  margin: 0 auto;
}

.contact-thanks-box {
  background-color: #ffffff;
  width: 100%;
  border-radius: 22px;
  padding: 84px 50px 170px 50px;
  text-align: center;
}

.contact-thanks-box.catalog-thanks-box {
  padding: 80px 65px 170px 65px;
}

.thanks-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.78;
  color: #3b4043;
}

.thanks-txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.thanks-para-wrap {
  margin-top: 65px;
  margin-bottom: 135px;
}

.thanks-txt-para {
  margin-top: 35px;
}

.thanks-to-top-btn {
  max-width: 270px;
  width: 100%;
  display: inline-block;
  padding: 20px 72px;
  background-color: #5f5f5f;
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}

@media screen and (max-width: 875px) {
  .contact-thanks-box{
    padding: 80px 50px 170px 50px;
  }
  .contact-thanks-box.catalog-thanks-box {
    padding: 80px 10px 170px 10px;
  }
  .thanks-txt{
    font-size: 1.5rem;
  }
  .contact-thanks-box {
      padding: 84px 30px 170px 30px;
  }
}

@media screen and (max-width: 768px) {
  .thanks-ttl {
    font-size: 2rem;
    line-height: 1.5;
  }

  .thanks-section {
    padding: 50px 36px 100px 36px;
  }

  .contact-thanks-box,
  .contact-thanks-box.catalog-thanks-box {
    padding: 44px 25px 70px 25px;
  }

  .thanks-para-wrap {
    margin-top: 50px;
    margin-bottom: 85px;
  }

  .thanks-to-top-btn {
    max-width: 100%;
    width: 100%;
    padding: 20px 30px;
  }

  .thanks-txt-para {
    margin-top: 30px;
  }

  .thanks-txt {
    font-size: 1.4rem;
    text-align: left;
  }
}

@media screen and (max-width: 375px) {
  .thanks-ttl{
    font-size: 1.8rem;
  }
}

/* ===============================
Page --  Contact Thanks (お問い合わせTHANKS) End
=============================== */

/* ===============================
page 20  agreement (レンタル約款)  Start
=============================== */
/* https://monic.qualy.jp/agreement/*/

.rtc-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E3E8E4;
}

.rtc-title{
    font-size: 3.2rem;
    font-weight: 700;
    color: #3B4043;
    line-height: 1.5;
    padding: 20px 0px;
}

.rtc-product-container{
    width: 100%;
    max-width: 908px;
    margin: 0 auto;
    padding: 46px 36px 35px;
    padding-bottom: 31px;
}

.rtc-product{
    width: 100%;
    margin: 0 auto;
    border-bottom: 1px solid #707070;
}

.rtc-product-title{
    width: 100%;
    max-width: 608px;
    margin: 0 auto;
    margin-bottom: 34px;
}

.rtc-product-title p{
    font-size: 1.6rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 1.875;
    text-align: center;
}

.rtc-product-content{
    margin-top: 47px;
}

.rtc-product-item{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 1.875;
    margin-bottom: 33px;
    margin-left: 28px;
    padding-left: 40px;
}

.rtc-product-item:last-child{
    margin-bottom: 0;
}

.rtc-cancel-container{
    background-color: #E3E8E4;
    padding: 55px 36px;
    padding-bottom: 57px;
}

.rtc-cancel-box{
    width: 100%;
    max-width: 834px;
    background-color: #ffffff;
    border-radius: 6px;
    margin: 0 auto;
    padding: 36px 81px 74px;
}

.rtc-cancel-title{
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    color: #3B4043;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
    margin-bottom: 19px;
}

.cancel-fees-box p{
    font-size: 1.6rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 1.875;
    font-family: "Noto Sans JP", sans-serif;
}

.rtc-table-box{
    margin-top: 22px;
}

.table-scroll-box{
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: 10px;
}

.table-scroll-box::-webkit-scrollbar {
  width: 200px;
  height: 10px;
}

.table-scroll-box::-webkit-scrollbar-track {
  background: transparent;
}

.table-scroll-box::-webkit-scrollbar-thumb {
  width: 200px;
  background: rgba(111, 111, 111, 0.65);
  border-radius: 6px;
}

.table-scroll-box table{
    width: 665px;
    border: 1px solid #707070;
    border-collapse: collapse;
    border-left: none;
    border-right: none;
}

.table-scroll-box table tr td{
    width: 130px;
    height: 53px;
    border: 1px solid #707070;
    border-collapse: collapse;
    font-size: 1.3rem;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    vertical-align: middle;
    color: #3B4043;
}

.table-scroll-box table tr td.table-gray-cell{
    width: 144px;
    padding-left: 7px;
    text-align: start;
}

.table-scroll-box table tr td.table-gray-cell.text-center{
    text-align: center;
    width: 130px;
    height: 70px;
}

.table-scroll-box table tr td.table-row-span{
    vertical-align: middle;
}

.table-scroll-box table tr td.table-row-span p{
    vertical-align: middle;
    color: #3B4043;
}

.table-gray-cell{
    background-color: #E3E8E4;
}

.table-scroll-text{
    font-size: 1.2rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 2;
    font-family: "Noto Sans JP", sans-serif;
}

.cancel-notice-box{
    margin-top: 28px;
}

.cancel-notice-list{
    font-size: 1.2rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
}

.rental-card-container{
    padding-top: 128px;
    padding-bottom: 152px;
}

.table-scroll-box table tr td.table-gray-cell.diagonal-box{
    width: 144px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    position: relative;
    padding: 0;
    border: none;
}

.table-scroll-box table tr td.diagonal-box .diagonal-top-text{
    margin-left: 67px;
    margin-right: 5px;
    text-align: end;
}

.table-scroll-box table tr td.diagonal-box .diagonal-bottom-text{
    margin-left: 10px;
}

.table-scroll-box table tr td.diagonal-box::before{
    content: "";
    position: absolute;
    top: 34px;
    left: -9px;
    width: 162px;
    height: 1px;
    background-color: #707070;
    transform: rotate(26deg);
}

.table-scroll-box tr td:first-child{
    border-left: none;
}

.table-scroll-box tr td:last-child {
    border-right: none;
}

@media screen and (max-width: 1000px){
    .table-scroll-box table tr td{
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 768px){
    .rtc-title{
        font-size: 1.4rem;
        line-height: 2;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 700;
    }

    .rtc-container{
        padding: 0px 36px;
    }

    .rtc-product-item{
        padding-left: 16px;
    }

    .rtc-product-title{
        margin-bottom: 50px;
    }

    .rtc-product-title p{
        line-height: 1.375;
        text-align: start;
    }

    .cancel-fees-box p{
        font-size: 1.4rem;
    }

    .rtc-cancel-box{
        padding: 30px 20px;
        padding-top: 34px;
        padding-bottom: 38px;
    }

    .cancel-notice-box{
        margin-top: 35px;
    }

    .rental-card-container{
        padding: 100px 0px;
    }

    .rtc-cancel-container{
        padding-bottom: 50px;
    }
    
    .rtc-product-container{
        padding-bottom: 100px;
    }
} 
/* ===============================
page 20  agreement (レンタル約款)  End
=============================== */

/* ===============================
page 21  privacy-policy (プライバシーポリシー)  Start
=============================== */
/* https://monic.qualy.jp/privacy-policy/*/

.privacy-container{
    padding: 41px 0px 153px;
    background-color: #ffffff;
}

.privacy-content{
    width: 100%;
    max-width: 834px;
    margin: 0 auto;
}

.establish-text{
    font-size: 1.6rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 1.875;
    padding-bottom: 45px;
    border-bottom: 1px solid #707070;
}

.privacy-header{
    font-size: 2.4rem;
    font-weight: 700;
    color: #5F5F5F;
    margin-bottom: 36px;
}

.privacy-content-box{
    padding: 36px 0px;
    padding-bottom: 35px;
    border-bottom: 1px solid #707070;
}

.privacy-content-box:last-child{
    border-bottom: none;
}

.privacy-purpose-text{
    font-size: 1.6rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 1.875;
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 36px;
    margin-bottom: 30px;
}

.privacy-list-item{
    font-size: 1.6rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 1.875;
    margin-left: 28px;
    margin-top: 31px;
    padding-left: 40px;
}

.privacy-list .privacy-list-item:first-child{
    margin-top: 0px;
}

.suspension-text{
    font-size: 1.6rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 1.875;
    font-family: "Noto Sans JP", sans-serif;
}

.contact-us-text{
    font-size: 1.6rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 1.875;
    font-family: "Noto Sans JP", sans-serif;
}

.privacy-sub-list-item{
    font-size: 1.6rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 1.875;
    padding-left: 23px;
    margin-left: 36px;
}

.privacy-sub-list{
    counter-reset: custom-counter;
}

.privacy-sub-list li.privacy-sub-list-item{
    counter-increment: custom-counter;
    position: relative;
    margin-top: 31px;
}

.privacy-sub-list li.privacy-sub-list-item::before {
   content: "(" counter(custom-counter) ") ";
  font-size: 1.6rem;
  font-weight: 700;
  color: #3B4043;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  top: 0;
  left: -28px;
}

.privacy-sec-sub-list{
    list-style: lower-roman;
}

.privacy-sec-sub-item{
    margin-left: 20px;
}

.privacy-sub-text{
    font-size: 1.6rem;
    font-weight: 400;
    color: #3B4043;
    line-height: 1.875;
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {

    .rtc-container{
        padding: 0px 36px;
    }

    .privacy-header{
        font-size: 1.8rem;
        line-height: 1.6;
    }

    .privacy-list-item{
        padding-left: 22px;
    }

    .privacy-sub-list-item{
        padding-left: 10px;
    }

    .privacy-container{
        padding: 46px 0px 153px;
    }

    .privacy-content-box{
        padding: 49px 0px;
    }

    .privacy-header{
        margin-bottom: 21px;
    }

    .establish-text p{
        line-height: 1.375;
    }

    .privacy-purpose-text{
        margin-top: 20px;
        margin-bottom: 16px;
    }

    .privacy-sub-text{
        margin-top: 15px;
    }

    .privacy-sub-list li.privacy-sub-list-item:first-child{
        margin-top: 20px;
    }
    
}

/* ===============================
page 21  privacy-policy (プライバシーポリシー)  End
=============================== */
