@charset "UTF-8";
/*
  /rakurakucloud/jidootai/asset/css/object/module/m-form-col2.css
  フォーム用CSS
*/

.m-form-col2 {
  padding: 70px 0;
  @media screen and (max-width: 840px) {
    padding: 0;
  }
}
.m-form-col2__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 840px) {
    display: block;
    padding: 0;
  }
}

/* 
左カラムコンテンツ 
*/
.m-form-col2-content {
  width: 45%;
  box-sizing: border-box;
  @media screen and (max-width: 840px) {
    width: 100%;
  }
  .slick-prev {
    bottom: -78px;
    left: 60px;
    &::after {
      left: 10px;
    }
    @media screen and (max-width: 840px) {
      bottom: -56px;
      left: 50px;
    }
  }
  .slick-next {
    bottom: -78px;
    right: 60px;
    &::after {
      right: 10px;
    }
    @media screen and (max-width: 840px) {
      bottom: -56px;
      right: 50px;
    }
  }
  .slick-pause {
    bottom: -12px;
    @media screen and (max-width: 840px) {
      bottom: 8px;
    }
  }
  .slick-dots {
    bottom: -60px;
    @media screen and (max-width: 840px) {
      bottom: -40px;
    }
  }
}
.m-form-col2-heading {
  display: grid;
  grid-template-columns: auto 1fr; /* 左列/右列 */
  grid-template-areas:
    "C A"
    "C B";
  gap: 20px 30px;
  @media screen and (max-width: 840px) {
    display: block;
  }
}
.m-form-col2-heading__main {
  grid-area: A;
  @media screen and (max-width: 840px) {
    flex: 0 0 100%;
  }
}
.m-form-col2-heading__right {
  grid-area: B;
  @media screen and (max-width: 840px) {
    align-self: center;
  }
}
.m-form-col2-heading__left {
  grid-area: C;
}
.m-form-col2-talent__image-wrap {
  width: 142px;
  align-self: flex-end;
  @media screen and (max-width: 840px) {
    display: none;
  }
}
.m-form-col2-talent__image-wrap.m-form-col2-talent__image-wrap--circle {
  width: 146px;
}
.m-form-col2-title {
  font-size: 34px;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  color: var(--rjidootai-primary);
  @media screen and (max-width: 840px) {
    background-color: var(--gray-bg-02);
    font-size: 26px;
    padding: 10px 20px;
    text-align: center;
  }
}
.m-form-col2-title-small {
  font-size: 24px;
  @media screen and (max-width: 840px) {
    font-size: 18px;
  }
}
.m-form-col2-title-strong {
  font-size: 42px;
  @media screen and (max-width: 840px) {
    font-size: 34px;
  }
}
.m-form-col2-block {
  @media screen and (max-width: 840px) {
    padding: 0 20px;
  }
}
.m-form-col2__note {
  margin: 20px 0 0 0;
}
.m-form-col2-lead {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  @media screen and (max-width: 840px) {
    font-size: 13px;
    margin: 20px 0;
    text-align: center;
    padding: 0 20px;
  }
}
.m-form-col2__image-wrap {
  padding: 30px 0 0;
  @media screen and (max-width: 840px) {
    max-width: 500px;
    margin-inline: auto;
    padding: 0;
  }
}
.m-form-col2-box {
  position: relative;
  padding: 24px;
  border-radius: 10px;
  background: var(--gray-bg-02);
  margin: 30px auto 0;
  &.m-form-col2-box--margin {
    margin: 90px auto 0;
  }
  @media screen and (max-width: 840px) {
    max-width: 500px;
    margin-inline: auto;
    padding: 16px 20px 20px;
  }
}
.m-form-col2-box-title {
  position: relative;
  border-radius: 10px;
  color: var(--rjidootai-primary);
  text-align: center;
  font-size: 20px;
  max-width: 90%;
  margin: 0 auto;
  font-weight: bold;
  @media screen and (max-width: 840px) {
    font-size: 15px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--rjidootai-primary);
    color: var(--white);
    border-radius: 1000px;
    padding: 4px 10px 3px;
    width: 100%;
    line-height: 1.2;
    max-width: 75%;
  }
}
.m-form-col2-box-list {
  margin: 15px 0 0 0;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0;
  box-sizing: border-box;
  font-weight: bold;
  text-align: left;
  font-weight: bold;
  &.m-form-col2-box-list--2column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  @media screen and (max-width: 840px) {
    margin: 12px 0 0 0;
  }
}
.m-form-col2-box-item {
  position: relative;
  width: 100%;
  padding: 0 0 0 22px;
  font-size: 17px;
  text-align: left;
  @media screen and (max-width: 840px) {
    font-size: 14px;
  }
  &::before {
    content: "";
    width: 12px;
    height: 8px;
    border-radius: 0;
    background: none;
    border-top: solid 2px var(--rjidootai-primary);
    border-right: solid 2px var(--rjidootai-primary);
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
    transform: rotate(135deg);
  }
}
.m-form-col2-text-area {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 30px 0 0 0;
  @media screen and (max-width: 840px) {
    margin: 25px 0 0 0;
  }
}

.m-form-col2__document-wrap {
  margin: 30px auto 0;
  position: relative;
  width: 250px;
  @media screen and (max-width: 840px) {
    width: 230px;
    margin: 10px auto 0;
  }
}
.m-form-col2__image-document {
  height: auto;
}

.m-form-col2-slide__image-wrap {
  flex-shrink: 0;
  width: 120px;
  @media screen and (max-width: 840px) {
    width: auto;
  }
}
.m-form-col2-slide__image {
  @media screen and (max-width: 840px) {
    display: none;
  }
}
.m-form-col2-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 0 25px;
  @media screen and (max-width: 840px) {
    margin: 0;
    font-size: 14px;
  }
}
.m-form-col2-slide-wrap {
  position: relative;
  width: 400px;
  margin: 50px auto 30px;
  @media screen and (max-width: 840px) {
    width: 230px;
    margin: 30px auto 0px;
  }
}
.m-form-col2-flex {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 30px 0 0 0;
  @media screen and (max-width: 840px) {
    margin: 20px 0 0 0;
  }
}
.m-form-col2-flex__image-wrap {
  flex-shrink: 0;
  width: 120px;
  @media screen and (max-width: 840px) {
    width: 0;
  }
}
.m-form-col2-flex__image {
  height: auto;
  @media screen and (max-width: 840px) {
    display: none;
  }
}
.m-form-col2-flex__text {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 0 25px;
  @media screen and (max-width: 840px) {
    margin: 0;
    font-size: 14px;
    padding: 0 20px;
  }
}
.m-form-col2-flex-list {
  margin: 15px 0 0 0;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0;
  box-sizing: border-box;
  font-weight: bold;
  text-align: left;
  padding: 0 0 0 20px;
  width: 360px;
  @media screen and (max-width: 840px) {
    margin: 12px 0 0 0;
    padding: 0;
  }
}
.m-form-col2-flex-item {
  position: relative;
  width: 100%;
  padding: 0 0 0 24px;
  font-size: 15px;
  line-height: 1.2;
  @media screen and (max-width: 840px) {
    font-size: 15px;
    padding: 0 0 0 18px;
  }
  &::before {
    content: "";
    width: 12px;
    height: 8px;
    border-radius: 0;
    background: none;
    border-top: solid 2px var(--rjidootai-primary);
    border-right: solid 2px var(--rjidootai-primary);
    display: block;
    position: absolute;
    top: 5px;
    left: 0;
    transform: rotate(135deg);
    @media screen and (max-width: 840px) {
      height: 7px;
      width: 10px;
      top: 2px;
    }
  }
  &:nth-child(n + 2) {
    margin: 11px 0 0 0;
    @media screen and (max-width: 840px) {
      margin: 8px 0 0 0;
    }
  }
}

/* 
右カラムフォーム
*/
.m-form-hs {
  padding: 40px 0 0 0;
  @media screen and (max-width: 840px) {
    padding: 30px 0 0 0;
  }
}
.m-form-col2-form {
  padding: 35px 25px 30px;
  background: var(--rjidootai-bg-sub-03);
  border-radius: 10px;
  box-sizing: border-box;
  width: 50%;
  align-self: flex-start;
  @media screen and (max-width: 840px) {
    width: 100%;
    margin: 60px 0 0 0;
    padding: 30px 20px 50px;
    border-radius: 0;
    width: auto;
  }
}
.m-form-col2-form--margin-small {
  @media screen and (max-width: 840px) {
    margin: 30px 0 0 0;
  }
}
.m-form-col2-form__copy {
  font-size: 20px;
  text-align: center;
  border-radius: 0;
  color: var(--rjidootai-primary);
  font-weight: bold;
  padding: 0 0 5px;
  &.m-form-col2-form__copy--small {
    font-size: 16px;
  }
  @media screen and (max-width: 840px) {
    margin: 0 auto;
    font-size: 18px;
  }
}
.m-form-col2-form__title {
  font-size: 20px;
  text-align: center;
  border-radius: 0;
  font-weight: bold;
  padding: 0 0 10px;
  @media screen and (max-width: 840px) {
    margin: 0 auto;
    font-size: 18px;
  }
}
.m-form-col2-form__text {
  font-size: 18px;
  text-align: center;
  @media screen and (max-width: 840px) {
    margin: 0 auto;
    font-size: 16px;
  }
}
.m-form-privacymark__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px 0 0;
  gap: 10px;
}
.m-form-privacymark__image {
  display: inline-block;
  width: 60px;
  height: 60px;
}
