:root {
  --orange: #f07548;
  --green: #1dac56;
  --light-green: #ecfff4;
  --beige: #faf6e0;
  --yellow: #e2e316;
  --black: #333333;
  --white: #ffffff;
  --font-family-pr: "Noto Sans JP", sans-serif;
  --font-family-num: "Roboto";
  --h2: 30px;
  --h3: 20px;
  --p: 15px;
  --lp-sec-padding: 100px 4%;
}

body {
  font-family: var(--font-family-pr);
  color: var(--black);
  font-size: var(--p);
}

h2 {
  font-size: var(--h2);
  text-align: center;
  margin-bottom: 50px;
}
h2 span {
  font-size: var(--p);
}
.h2_under {
  text-align: center;
  color: var(--black);
  margin-bottom: 50px;
  font-weight: 600;
}
h3 {
  margin: 5px 0;
}
.Forsp {
  display: none !important;
}

ul {
  padding: 0;
}

img {
  width: 100%;
}

a,
li {
  list-style: none;
  text-decoration: none;
  color: inherit;
}

.wrapper {
  display: flex;
  overflow: hidden;
}
.container {
  width: 73vw;
}
.registration_box {
  width: 25vw;
}
#registration {
  position: fixed;
  width: 24vw;
  right: 1.5%;
  top: 5px;
}

.inner_box_50 {
  padding: 50px 0;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.inner_box {
  padding: 100px 0;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

/* header */
header {
  width: 68vw;
  background-color: #fff;
  box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  padding: 0px 2.5vw;
}
.header-contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 68vw;
  margin: 0 auto;
  padding: 10px 0 12px;
}
.header-contents .header-btn-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 500px;
}
.header-contents .header-logo {
  width: 200px;
  margin-top: 10px;
}
.header-btn-area a {
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
  font-weight: bold;
  line-height: 1.3;
  box-shadow: 2px 2px 4px #ddd;
}
.header-btn-area a:first-child {
  width: 140px;
  background: var(--orange);
}
.header-btn-area a:nth-child(2) {
  width: 170px;
  background: var(--green);
}
.header-btn-area a:last-child {
  width: 160px;
  background: var(--light-green);
  color: var(--green);
  font-size: 11px;
  border-radius: 50px;
}
header #g-navi {
  display: flex;
  width: 1050px;
  margin: 0 auto;
  justify-content: space-around;
}

/* ----------
スクロールすると出てくるメニュー
---------- */
#scrollmenu {
  position: fixed;
  width: 68vw;
  z-index: 2;
  color: #fff;
  padding: 15px 2.5vw;
  color: var(--black);
  font-weight: 600;
  left: 0;
}
#scrollmenu .g-nav-menu {
  display: flex;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  justify-content: space-around;
  font-size: 13px;
}

/*　上に上がる動き　*/
#scrollmenu.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#scrollmenu.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* footer */
footer {
  padding: 65px 2.5vw 40px;
  width: 68vw;
}
footer .footer-box {
  display: flex;
  width: 100%;
  margin: 0 auto;
  color: var(--black);
  justify-content: space-around;
}
footer .footer-txt {
  font-size: 36px;
  font-weight: bold;
  margin-top: 20px;
}
footer .footer-logo {
  width: 340px;
}
footer .footer-link-box {
  display: flex;
  width: 550px;
  justify-content: space-between;
}
footer .footer-link-box ul.footer-s-link {
  font-weight: bold;
}
footer .footer-link-box ul.footer-s-link li {
  font-size: var(--p);
  margin-bottom: 10px;
}
footer .footer-link-box ul.footer-s-link li:first-child {
  font-size: var(--p);
  border-bottom: 1px solid;
}
footer .footer-link-box ul.footer-s-link li a small {
  margin-top: 0;
  text-align: left;
}
footer small {
  text-align: center;
  color: var(--black);
  display: block;
  margin-top: 60px;
}
.triangle {
  width: 0;
  height: 0;
  border-left: 7px solid var(--black);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 1px;
}

/* button*/
.cta {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px 0;
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
}
.cta div p {
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 25px;
}
.btn {
  display: inline-block;
  width: 280px;
  box-shadow: 2px 2px 4px #ddd;
  color: #fff;
  padding: 13px;
  text-align: center;
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease;
  font-size: 17px;
}
.btn.btn_left {
  background: var(--orange);
  border: 1px solid var(--orange);
}
.btn.btn_right {
  background: var(--white);
  border: 2px solid var(--green);
  color: var(--green);
}
.btn::after {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  font-size: 13px;
  padding: 3px 15px;
  border-radius: 50px;
  width: max-content;
}
.btn.btn_left::after {
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn.btn_right::after {
  color: var(--white);
  background: var(--green);
}
.btn:hover {
  opacity: 0.8;
}

/* 人材・法人 */

/* fv */
#fv {
  padding: 170px 0 70px;
  position: relative;
}
#fv p {
  text-align: left;
}
#fv .fv_img {
  position: absolute;
  bottom: -6px;
  left: 53%;
}
#fv .fv_box {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
#fv .fv_box h1 {
  text-align: left;
  position: relative;
  font-size: 50px;
  font-weight: bold;
  color: var(--green);
}
.fv_text {
  flex: 4;
}
#fv .fv_circle_img {
  width: 380px;
  margin-top: 20px;
}
#fv .fv_box h1 strong {
  background: linear-gradient(transparent 64%, var(--yellow) 0%);
}

/* flow */
#flow {
  background: var(--light-green);
}
#flow .flow_box {
  display: flex;
  align-items: stretch;
  margin: 50px auto 0;
  width: fit-content;
}
#flow .flow_box .flow_s_box {
  background: var(--white);
  position: relative;
  width: 33%;
}
#flow .flow_box .flow_s_box:nth-child(2n),
#flow .flow_box .flow_s_box:nth-child(2n) .num {
  background: #cfffe3;
}
#flow .flow_box .flow_s_box h3 {
  color: var(--green);
  padding-top: 30px;
  text-align: center;
  margin-top: 15px;
}
#flow .flow_box .flow_s_box .num {
  content: "";
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  background: var(--white);
  text-align: center;
  margin: 0;
  padding: 0;
  border-radius: 50px;
  font-size: 35px;
  font-family: var(--font-family-num);
  line-height: 1.5;
  font-weight: 600;
}
#flow .flow_box .flow_s_box p {
  padding: 10px 10px 20px;
  text-align: left;
  margin: 0;
}

#flow .flow_box .flow_s_box .flow_img {
  width: 30%;
  margin: 40px auto 0;
  height: 40px;
}

/* faq */
#faq .faq_s_box {
  margin-bottom: 25px;
  padding: 20px;
}
#faq .faq_s_box h3 {
  margin-bottom: 5px;
}

/* form */
#registration .inner_box {
  width: 45%;
  margin: 0 auto;
}
.hs-form-field label {
  text-align: left;
  font-size: var(--p);
  width: 130px;
  color: var(--orange);
  display: block;
  float: none;
  width: auto;
  font-weight: 500;
  line-height: 20px;
  padding-top: 0;
  margin-bottom: 0px;
  margin-top: 5px;
}
.hs-form-field label span {
  font-size: 12px;
  color: #111111;
  font-weight: 600;
}
.hs-form-field label span.hs-form-required {
  color: var(--red);
}
.input input {
  box-sizing: border-box;
  padding: 0 15px;
  width: 100%;
  max-width: 100%;
  width: 100%;
}
.hs-input:not([type="file"]) {
  background-color: #f5f8fa;
}
.hs-input[type="file"] {
  background-color: #f5f8fa;
  border: none;
  padding: 0;
}
.hs-richtext {
  margin-top: 15px;
}
.hs-input {
  display: inline-block;
  width: 100%;
  height: 35px;
  padding: 5px 10px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--p);
  font-weight: normal;
  line-height: 22px;
  color: var(--blue);
  border: 1px solid #cbd6e2;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}
.hs-richtext p {
  color: #111111;
  font-size: 10px;
}
.hs-richtext p a {
  color: #120e6a;
  text-decoration: underline;
}
.actions input {
  background: var(--orange);
  border-color: #c95f19;
  color: #ffffff;
  font-size: var(--p);
  line-height: 14px;
  margin: 1.2vw auto 0.2vw;
  cursor: pointer;
  display: block;
  font-weight: bold;
  line-height: 12px;
  position: relative;
  text-align: center;
  transition: all 0.15s linear;
  color: #fff;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  font-size: var(--p);
  padding: 12px 24px;
  width: 70%;
}
legend.hs-field-desc {
  font-family: Noto Sans JP;
  color: #7c98b6;
  font-size: 11px;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #c87872;
}
.hs-error-msgs label {
  color: #f2545b;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 5px;
}
.inputs-list label {
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  white-space: normal;
  font-weight: normal;
}

.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
  list-style-type: disc;
}

.hs-form-b8902e4e-7155-433e-a1f3-3cd5456ce490_58fbf51e-0303-4fea-aea2-1ba4ff064634
  fieldset.form-columns-1
  input[type="checkbox"],
.hs-form-b8902e4e-7155-433e-a1f3-3cd5456ce490_58fbf51e-0303-4fea-aea2-1ba4ff064634
  fieldset.form-columns-1
  input[type="radio"] {
  width: auto;
}

.hs-input:not([type="file"]) {
  background-color: #f5f8fa;
  width: 100%;
}

.hs-input[type="checkbox"],
.hs-input[type="radio"] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

/* 揺れるアニメーションの定義 */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}

/* 揺れ効果用のクラス */
.shake {
  animation: shake 0.5s ease;
}

/* responsive */
@media screen and (max-width: 1024px) {
  .shake {
    animation: none !important;
  }
  header {
    width: 100% !important;
  }
  .container,
  .registration_box {
    width: 100% !important;
  }
  .wrapper {
    display: block !important;
  }
  .header-btn-area a:first-child {
    width: 11vw;
  }
  .header-btn-area a:last-child {
    width: 15vw;
  }
  .header-contents {
    width: 94vw;
  }
  .header-contents .header-btn-area {
    width: 28vw;
  }
  #scrollmenu .g-nav-menu {
    font-size: 1.5vw;
  }
  footer {
    width: 100%;
    padding: 20px;
  }
  footer .footer-box {
    width: 90vw !important;
  }
  footer .footer-logo {
    width: 33vw !important;
  }
  footer .footer-txt {
    font-size: 3vw;
  }
  footer .footer-link-box {
    width: 46vw !important;
  }
  footer .footer-link-box ul.footer-s-link li {
    font-size: 1.4vw;
  }
  .container_left .btn {
    display: block !important;
  }
  .container_left,
  .footer,
  .scrollmenu {
    width: 100% !important;
  }
  .container_right {
    display: none;
  }
  .footer_form {
    display: block !important;
  }
  #registration {
    position: inherit;
    width: 90%;
    margin: 0 auto;
    padding: 70px 0;
  }
  .header-btn-area a:last-child {
    width: 16vw;
  }
  .header-contents .header-btn-area {
    width: 29vw;
  }
  .header-sp {
    position: fixed;
    background: rgba(255, 255, 255, 0.699);
    box-shadow: inherit;
    padding: 5px 0;
  }
  .header-sp .header__inner {
    width: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff57;
    padding: 10px;
  }
  .header-sp .header-logo {
    width: 170px;
  }
  .header-sp .header__menu {
    position: fixed;
    z-index: 50000;
    top: 50px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    right: 0;
  }
  .header-sp .header__inner.active .header__menu {
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: 0;
    z-index: -1;
    height: fit-content;
    padding: 5rem 10px;
    width: 80%;
  }
  .header-sp .menu__item {
    border-bottom: 1px solid var(--orange);
  }
  .header-sp .menu__link {
    display: block;
    padding: 13px 20px;
    color: var(--orange);
    font-size: var(--p);
    font-weight: bold;
  }
  .header-sp .header__menu-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    width: 30px;
    height: 30px;
    cursor: pointer;
    right: 30px;
  }
  .header-sp .header__menu-btn span:nth-child(-n + 3) {
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--black);
  }
  .header-sp .header__menu-btn span:nth-child(1) {
    top: 10px;
    transition: all 0.2s ease;
  }
  .header-sp .header__inner.active .header__menu-btn span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }
  .header-sp .header__menu-btn span:nth-child(2) {
    top: 18px;
    transition: opacity 0.2s ease;
  }
  .header-sp .header__inner.active .header__menu-btn span:nth-child(2) {
    opacity: 0;
  }
  .header-sp .header__menu-btn span:nth-child(3) {
    top: 26px;
    transition: all 0.2s ease;
  }
  .header-sp .header__inner.active .header__menu-btn span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }
  .header-sp .header__menu-btn span:nth-child(4) {
    font-size: 10px;
    color: #f5675b;
  }
  .fixbutton {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 20px 0 10px;
    background-color: #ffffffbd;
    width: 100%;
    z-index: 100;
    justify-content: space-evenly;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  .fixbutton .btn {
    margin: 10px auto;
    display: block;
  }
  footer .footer-box {
    display: block;
  }
  footer .footer-logo {
    width: 100% !important;
  }
  footer .footer-logo div {
    width: 90% !important;
  }
  footer .footer-txt {
    font-size: var(--h3);
    margin: 10px 0 40px;
  }
  footer .footer-link-box {
    display: block;
    width: 80% !important;
  }
  footer .footer-link-box ul.footer-s-link li {
    font-size: var(--p);
  }
  footer .footer-link-box ul.footer-s-link {
    margin: 20px 0;
  }
  footer .footer-link-box ul.footer-s-link li:first-child {
    font-size: 13px;
  }
  footer {
    padding: 45px 0 110px;
  }
  h2 {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .active {
    opacity: 1;
    visibility: visible;
  }
  .inner_box {
    width: 90% !important;
    padding: 70px 0;
  }
  .heading {
    padding: 0px 10px;
  }
  .header-cta {
    padding: 15px 0;
  }
  .css-fukidashi {
    width: 25vw;
    height: 25vw;
  }
  .scrolldown4 span {
    font-size: 0.5rem;
  }
  .scrolldown4:after {
    bottom: 8px;
    height: 30px;
  }
  .scrolldown4:before {
    bottom: 8px;
  }
  .text {
    top: 11vw;
    right: 3vw;
  }
  .tab {
    font-size: 13px;
  }
  #registration .inner_box {
    width: 90%;
  }
  #flow .flow_box {
    display: block;
  }
  #fv {
    padding: 100px 0 70px;
  }
  #fv .fv_img {
    width: 110px !important;
    right: 2%;
    left: inherit;
  }
  #fv .fv_box {
    width: 90%;
  }
  #fv .fv_box h1 {
    font-size: 40px;
  }
  #fv .fv_box p {
    margin-top: 10px;
  }
  #fv .fv_circle_img {
    width: 280px;
    margin-top: 20px;
  }
  .cta {
    display: block;
    padding: 20px 0;
  }
  .inner_box_50 {
    max-width: 90%;
  }
  #flow .flow_box {
    display: block;
  }
  #flow .flow_box .flow_s_box {
    width: 80%;
    margin: 0 auto 45px;
    padding: 5%;
  }
  #flow .flow_box .flow_s_box .flow_img {
    width: 50px;
    margin: 0px auto 0;
    padding-top: 20px;
  }
  #faq .faq_s_box {
    width: 80%;
    margin: 0 auto 25px;
    padding: 5%;
  }
  .hs-form-field label {
    margin-top: 20px;
  }
  .hs-input {
    height: 45px;
  }
  .inputs-list label {
    margin-top: 10px;
  }
  .actions input {
    width: 90%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 900px) {
  .Forsp {
    display: block !important;
  }
  .Forpc {
    display: none !important;
  }
}
