@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  line-height: 1.5;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
body {
  color: #333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP";
}
:root {
  --coldiv-4-column-gap: 2rem;
  --coldiv-4_2: calc((100% - var(--coldiv-4-column-gap) * (2 - 1)) / 2);
  --coldiv-4_3: calc((100% - var(--coldiv-4-column-gap) * (3 - 1)) / 3);
  --coldiv-4_4: calc((100% - var(--coldiv-4-column-gap) * (4 - 1)) / 4);
  --coldiv-2-column-gap: 4rem;
  --coldiv-2: calc((100% - var(--coldiv-2-column-gap) * (2 - 1)) / 2);
}

/* 共通 */
.img,
.logo {
  width: 100%;
}
.pre {
  display: inline-block;
}
.section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 5.2rem;
}
.section__inner--wide-gap {
  gap: clamp(6rem, 5vw, 8rem);
}
.section__head {
  text-align: center;
}
.section__body {
  display: flex;
  justify-content: center;
  width: 100%;
}
.section__head--left {
  text-align: left;
}
.section__head-text {
  font-weight: bold;
  font-size: clamp(3rem, 5vw, 3.6rem);
}
.section__head-ribbon {
  position: relative;
}
.section__head-ribbon-img {
  width: 100%;
  max-width: 691px;
}
.section__head-ribbon-img-elem {
  aspect-ratio: 691 / 132;
}
.section__head-ribbon-text {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.8rem, 4vw, 3rem);
  white-space: nowrap;
}
.bg-parent {
  position: relative;
}
.bg-lightblue {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg-lightblue.png);
  background-size: cover;
}

/* ヘッダー */
.header {
  display: flex;
  flex-direction: column;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 8rem;
  padding: 1.2rem 2rem;
  background-color: #fff;
}
.header__space {
  height: 8rem;
}
.header__main {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.header-logo {
  width: 100%;
}
.header-logo-elem {
  width: 15rem;
  aspect-ratio: 300/72;
}
.header__menus {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.header__menu li {
  display: flex;
  align-items: center;
  color: #444;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: .1rem;
}
.header__menu li > a {
  border-bottom: 2px solid transparent;
}
.header__menu li > a:hover {
  border-bottom: 2px solid #5bc8ac;
  color: #5bc8ac;
  transition: all .2s;
}
.header__btns {
  display: flex;
  align-items: center;
}
.header__btn {
  padding: 1.4rem 3.2rem;
  border: 2px solid transparent;
  border-radius: 32px;
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  text-align: center;
  word-break: keep-all;
}
.header__btn:hover {
  background-color: #fff;
  transition: .3s;
}
.header__btn > a:hover {
  border-bottom: 2px solid transparent;
}
.header__btn--document {
  background-color: #eb1400;
}
.header__btn--document:hover {
  border: 2px solid #eb1400;
  color: #eb1400;
}
.pre--header__btn {
  display: none;
}
.case__link,
.privacy-policy__link {
  color: #217e9e;
  text-decoration: underline;
}

/* ヘッダーメニュー */
.hamburger-menu {
  display: none;
  list-style: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(1, 0);
  margin: 70px 16px 0 0;
  padding: 0 8px 4px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  background: #fff;
  transition: .3192s cubic-bezier(.04, .04, .12, .96) .1008s;

  transform-origin: top;
}
.hamburger-btn:checked ~ .hamburger-menu {
  transform: scale(1, 1);
}
.hamburger-menu a {
  display: block;
  opacity: 0;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  transition: .5s;
}
.hamburger-menu li {
  opacity: 0;
  padding: 16px;
  transition: .5s;
}
.hamburger-menu li:not(:first-child) {
  border-top: 1px solid #ddd;
}
.hamburger-btn:checked ~ .hamburger-menu a,
.hamburger-btn:checked ~ .hamburger-menu li {
  opacity: 1;
  transition: .3192s cubic-bezier(.04, .04, .12, .96) .2s;
}
.hamburger-btn {
  display: none;
}
.hamburger-icon {
  display: none;
  position: relative;
  padding: 24px 14px;
  cursor: pointer;
}
.navicon {
  display: block;
  position: relative;
  width: 26px;
  height: 3px;
  background: #868686;
  transition: .3192s cubic-bezier(.04, .04, .12, .96) .1008s;
}
.navicon:before,
.navicon:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #868686;
  content: "";
  transition: .3192s cubic-bezier(.04, .04, .12, .96) .1008s;
}
.navicon:before {
  top: 9px;
}
.navicon:after {
  bottom: 9px;
}
.hamburger-btn:checked ~ .hamburger-icon .navicon:before {
  transform: rotate(-45deg);
}
.hamburger-btn:checked ~ .hamburger-icon .navicon:after {
  transform: rotate(45deg);
}
.hamburger-btn:checked ~ .hamburger-icon:not(.steps) .navicon:before {
  top: 0;
}
.hamburger-btn:checked ~ .hamburger-icon:not(.steps) .navicon:after {
  bottom: 0;
}
.hamburger-btn:checked ~ .hamburger-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: .2192s cubic-bezier(.04, .04, .12, .96) .1008s;
}

/* フッター */
.section--footer {
  display: block;
  width: 100%;
}
.footer {
  display: flex;
  flex-direction: column;
  background-color: #f0f5f8;
}
.footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.6rem;
}
.footer__main-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__main {
  font-size: 2rem;
}
.aisys-logo {
  width: 100%;
  max-width: 130px;
}
.aisys-logo-elem {
  aspect-ratio: 130 / 39;
}
.footer__menus {
  display: flex;
  gap: 48px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__menu-item {
  color: #333;
  font-weight: bold;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
}
.footer__sub {
  display: flex;
  justify-content: space-between;
  align-items: self-end;
  padding: 4rem 4rem 2rem;
}
.footer__submenu {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}
.footer__submenu-item {
  color: #333;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
}
.footer__submenu-item::before {
  margin-right: 1rem;
  content: "／";
}
.footer__submenu-privacypolicy::before {
  content: none;
}
.footer__submenu-blog {
  display: none;
}
.footer__icons {
  display: flex;
  gap: 4px;
}
.footer__bottom {
  padding: 2rem;
  background-color: #fff;
  color: #0d2127;
  font-size: 1.4rem;
  text-align: center;
}

/* ファーストビュー */
.firstview__bg {
  align-items: center;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/reseller_firstview__bg.png);
  background-position: center center;
  background-size: cover;
}
.firstview__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
}
.firstview__content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10rem;
}
.firstview__main {
  display: flex;
  flex-direction: column;
  max-width: 764px;
  padding: 6rem 0 0;
}
.firstview__main-text {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.firstview__main-subtitle {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  text-shadow: 0 0 4px rgba(106, 106, 106, .25);
}
.firstview__main-subtitle-img {
  width: 100%;
  max-width: 160px;
  height: fit-content;
  text-shadow: 0 0 4px rgba(106, 106, 106, .25);
}
.firstview__main-subtitle-img-elem {
  aspect-ratio: 160 / 30;
}
.firstview__main-title {
  color: #fff;
  font-weight: 900;
  font-size: clamp(5.2rem, 5vw, 7rem);
  line-height: 1.2;
  text-shadow: 0 0 4px rgba(106, 106, 106, .25);
}
.firstview__main-title--yellow {
  color: #f5ff8c;
}
.firstview__main-description {
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: .16rem;
  text-shadow: 0 0 4px rgba(106, 106, 106, .25);
}
.firstview__main-img {
  width: 100%;
  max-width: 764px;
}
.firstview__main-img-elem {
  aspect-ratio: 1531 / 623;
}
.firstview__form {
  display: flex;
  flex-direction: column;
  min-width: 378px;
  max-width: 378px;
  height: fit-content;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, .25);
  background-color: #fff;
}
.firstview__form-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  background-color: #f0f0f0;
}
.firstview__form-head-icon {
  width: 0;
  height: 0;
  border-top: 16px solid #2f4283;
  border-right: 10px solid transparent;
  border-bottom: 0;
  border-left: 10px solid transparent;
  border-style: solid;
}
.firstview__form-head-title {
  font-weight: bold;
  font-size: 20px;
}
.firstview__form-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}
.form__input {
  display: flex;
  align-items: center;
  gap: 4px;
}
.form__input--row {
  flex-direction: column;
  align-items: flex-start;
}
.form__input--row .form__inputlabel {
  min-width: auto;
  max-width: none;
}
.form__inputlabel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 56px;
  max-width: 56px;
}
.firstview__form .ECM_CheckboxInput-LabelText {
  font-size: 12px;
}

/* 採用管理システム”らくるーと”とは */
.about-product__bg {
  background: linear-gradient(90deg, #fff 0%, #f1f6f5 100%);
}
.about-product__container {
  display: flex;
  align-items: center;
  gap: 6rem;
  width: 100%;
  max-width: 1100px;
}
.about-product__img {
  width: 100%;
  max-width: 30rem;
}
.about-product__img-elem {
  aspect-ratio: 600 / 440;
}
.about-product__text {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.about-product__text-description {
  font-size: 2rem;
}

/* らくるーとのパートナー制度セクション */
.about-reseller__container {
  display: flex;
  justify-content: center;
  gap: 8rem;
}
.about-reseller__item {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2rem;
  max-width: 530px;
}
.about-reseller__img {
  max-width: 530px;
}
.about-reseller__img-elem {
  aspect-ratio: 519 / 375;
}
.about-reseller__text {
  font-size: 1.8rem;
}

/* ”らくるーと”のパートナーになるメリット */
.reseller-merits__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.8rem;
  width: 100%;
  max-width: 800px;
}
.reseller-merits__card {
  display: flex;
  flex: 0 0 calc((100% - 4.8rem * (2 - 1)) / 2);
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  position: relative;
  padding: 4rem 2.8rem 2.8rem;
  border-radius: 8px;
  background-color: #f5f5f5;;
}
.reseller-merits__card-num {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  border-radius: 50%;
  background-color: #3eb5a0;
  aspect-ratio: 1 / 1;
  color: #fff;
  font-weight: bold;
  font-size: 2.8rem;
}
.reseller-merits__card-title {
  font-weight: bold;
  font-size: 2.2rem;
  text-align: center;
}
.reseller-merits__card-img {
  height: 100%;
  max-height: 80px;
}
.reseller-merits__card-img-elem01 {
  aspect-ratio: 93.41 / 80;
}
.reseller-merits__card-img-elem02 {
  aspect-ratio: 59.33 / 80;
}
.reseller-merits__card-img-elem03 {
  aspect-ratio: 80.83 / 80;
}
.reseller-merits__card-img-elem04 {
  aspect-ratio: 56.33 / 80;
}
.reseller-merits__card-description {
  font-size: 1.5rem;
}

/* ご契約までの流れ */
.section__inner--flow {
  align-items: normal;
}
.section__body--flow {
  display: flex;
  justify-content: center;
  overflow-x: auto;
}
.flow__container {
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  position: relative;
  min-width: 950px;
  max-width: 1100px;
}
.flow__container::before {
  position: absolute;
  top: 92px;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 2px;
  border: none;
  background: repeating-linear-gradient(to right, #18a095 0px, #18a095 2px, transparent 2px, transparent 6px);
  content: "";
}
.flow__card {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.flow__card-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 184px;
  border: 3px solid #20a08b;
  border-radius: 50%;
  background-color: #fff;
  aspect-ratio: 1 / 1;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}
.flow__card-item-img {
  height: 100%;
  max-height: 56px;
}
.flow__item-card-img-elem01 {
  aspect-ratio: 46 / 56;
}
.flow__item-card-img-elem02 {
  aspect-ratio: 74 / 44;
}
.flow__item-card-img-elem03 {
  aspect-ratio: 50.85 / 56;
}
.flow__item-card-img-elem04 {
  aspect-ratio: 79.15 / 56;
}
.flow__card-text {
  font-size: 15px;
}

/* まずは資料請求から！ */
.contact-form {
  background-color: #fff;
}
.contact-form__container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 100%;
  max-width: 900px;
  padding: 4rem;
  border-radius: .8rem;
  background-color: #f0f0f0;
}
.contact-form__input-area {
  display: flex;
  gap: 3.2rem;
}
.contact-form__input-column {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2rem;
}
.contact-form__input {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.contact-form__inputlabel {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.form__inputlabel-text {
  font-weight: bold;
  font-size: 12px;
}
.form__inputlabel-required {
  width: fit-content;
  height: fit-content;
  padding: .1rem .4rem;
  border-radius: .2rem;
  background-color: #cb4b4b;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}
.form__textbox {
  width: 100%;
  height: 42px;
  padding: 1.4rem 1.6rem;
  border: solid 1px #64ada2;
  border-radius: 1rem;
  background-color: #fff;
  resize: none;
}
.form__textbox:focus,
.form__textarea:focus {
  border: solid 3px #64ada2;
}
.form__textbox:focus-visible,
.form__textarea:focus-visible {
  outline: none;
}
.form__radio-area {
  display: flex;
  gap: 1.6rem;
  margin-top: 4px;
}
.form__radio-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}
.form__radio {
  width: 2.3rem;
  height: 2.3rem;

  accent-color: #2f8477;
}
.form__radio-label {
  font-weight: bold;
  font-size: 12px;
}
.form__textarea {
  width: 100%;
  height: 91px;
  padding: 14px;
  border: rgb(100, 173, 162) solid 1px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  resize: none;
}
.form__input-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.ECM_CheckboxInput {
  display: flex;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.ECM_CheckboxInput-LabelText {
  font-size: 1.4rem;
}
.ECM_CheckboxInput {
  display: flex;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.ECM_CheckboxInput-Input {
  opacity: 0;
  width: 0;
  margin: 0;
}
.ECM_CheckboxInput-DummyInput {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 28px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .4) inset;
  background-color: #f5f5f5;
}
.ECM_CheckboxInput:hover > .ECM_CheckboxInput-DummyInput {
  background-color: #ccc;
}
.ECM_CheckboxInput-Input:focus + .ECM_CheckboxInput-DummyInput {
  background-color: #ccc;
}
.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput {
  background-color: #555;
}
.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-5px, 6px) rotateZ(-135deg);
  width: 35%;
  height: 2px;
  background-color: #fff;
  content: "";

  transform-origin: 1px 1px;
}
.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-5px, 6px) rotateZ(-45deg);
  width: 70%;
  height: 2px;
  background-color: #fff;
  content: "";

  transform-origin: 1px 1px;
}
.a_text {
  color: #00856d;
  text-decoration: underline;
}
.form__btn {
  padding: 2.4rem 1.6rem;
  border-radius: .8rem;
  background-color: #2f4283;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 1360px) {
  .header__menu li {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    padding-right: 0;
  }
  .header__menu {
    display: none;
  }
  .hamburger-icon {
    display: inline-block;
  }
  .hamburger-menu {
    display: block;
  }
}
@media screen and (max-width: 1053px) {
  .section__body--flow {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1023px) {
  .firstview__content {
    justify-content: center;
  }
  .firstview__main-description {
    width: 92%;
  }
  .firstview__form {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .about-product__container {
    flex-direction: column-reverse;
    gap: 4rem;
  }
  .about-product__container .section__head--left {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 54.6875%;
  }
  .footer__main {
    padding: 2.2rem 0 1.6rem;
  }
  .footer__main-inner {
    flex-direction: column;
    align-items: center;
  }
  .footer__menus {
    display: none;
  }
  .footer__sub {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }
  .footer__submenu {
    flex-direction: column;
    gap: 1.2rem;
  }
  .footer__submenu-item::before {
    content: none;
  }
  .footer__submenu-blog {
    display: block;
  }
  .footer__logo {
    align-items: center;
  }
  .aisys-logo {
    width: 100%;
    margin: auto;
    padding: 0 1rem;
  }
  .header__btn {
    padding: 1.4rem 1.8rem;
  }
  .about-reseller__container {
    flex-direction: column;
    gap: 4rem;
  }
  .contact-form__input-area {
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .reseller-merits__card {
    flex: auto;
    width: 100%;
    max-width: 310px;
  }
}
@media screen and (max-width: 484px) {
  .header__btn {
    padding: .8rem 1.4rem;
  }
  .pre--header__btn {
    display: block;
  }
}
@media screen and (max-width: 426px) {
  .section__inner {
    padding: 4rem 1.6rem;
  }
  .firstview__main {
    padding: 1.6rem 0 0;
  }
  .firstview__main-subtitle-img {
    max-width: 120px;
  }
  .firstview__main-description {
    width: auto;
  }
}