@charset "UTF-8";
/* ==================================================
  media query
    (SP）
		* 819px以下：スマホ100%表示
		* 820px以上：スマホ表示(375px) + メニュー
		
  =================================================== */

:root {
  --white: #ffffff;
  --black: #2f2f2f;
  --accent: #ffa012;
  --subAccent: #ffc812;

  /* マージン等 */
  --wh10: 2.667vw;
  --wh15: calc(var(--wh10) * 1.5);
  --wh16: calc(var(--wh10) * 1.6);
  --wh20: calc(var(--wh10) * 2);
  --wh24: calc(var(--wh10) * 2.4);
  --wh25: calc(var(--wh10) * 2.5);
  --wh30: calc(var(--wh10) * 3);
  --wh32: calc(var(--wh10) * 3.2);
  --wh35: calc(var(--wh10) * 3.5);
  --wh40: calc(var(--wh10) * 4);
  --wh50: calc(var(--wh10) * 5);
  --wh60: calc(var(--wh10) * 6);

  @media (min-width: 820px) {
    --wh10: 10px;
  }
}
/* jinji color */
body.jinji {
  --black: #444444;
  --accent: #eeee00;
}
body.thanks {
  --black: #333333;
}
/* リセット */

body,
h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  outline: none;
  text-decoration: none;
  transition: opacity 0.2s ease;
  opacity: var(--opacity, 1);
}
button {
  all: unset;
  outline: revert;
  -webkit-tap-heighlight-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    cursor: pointer !important;
    --opacity: 0.7;
  }
  button:hover {
    cursor: pointer !important;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
*:focus {
  outline: none;
}
::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 820px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* コンテンツ */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
  font-weight: 500;
}
/* デバイスサイズ表示調整 */
.pc_contents > header,
aside {
  display: none;
}
.sp_contents {
  position: relative;
  background: var(--white);
  width: 100%;
  height: auto;
}
.pc_wrapper {
  height: auto;
  overflow: visible;
  display: block;
}
@media (min-width: 820px) {
  body {
    background: url(../img/form/bg.png) top center / 100% 100%;
    object-fit: contain;
  }
  body.jinji {
    background: url(../img/jinji/bg.png) top center / 100% 100%;
    object-fit: contain;
  }
  .pc_contents {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
  }
  .pc_contents > header,
  aside {
    display: block;
  }
  .pc_contents > header {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 2;
  }
  .pc_wrapper {
    height: 100vh;
    overflow: hidden; /* 背景スクロールを禁止 */
    width: 100%;
    max-width: 1000px;
    min-width: 866px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  aside {
    width: 455px;
    text-align: left;
    color: var(--black);
  }
  aside .copy {
    margin: 144px 0 40px;
  }
  aside ul {
    padding: 34px 0;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
  }
  aside li {
    font-size: 16px;
    margin-bottom: 18px;
    letter-spacing: 0.01em;
  }
  aside li:last-of-type {
    margin-bottom: 0;
  }
  .sp_contents {
    scroll-behavior: smooth;
    width: 430px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-padding-top: 0;
  }
  .sp_contents.scroll_adjustment {
    scroll-padding-top: calc(var(--wh10) * 47.5);
  }
}
.sp_contents > .wrapper {
  position: absolute;
  top: 0;
  z-index: 1;
}
section h1 > img {
  width: 100%;
}
main .contents {
  text-align: center;
}
/* Menu */
.global_menu {
  /* position: absolute;
  top: 0;
  left: 0; */
  /* width: 100%; */
  height: auto;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.15s ease-out;
}
.global_menu.off {
  opacity: 0;
  transition: opacity 0.15s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
.scroll_adjustment .global_menu {
  position: fixed;
}
@media (min-width: 820px) {
  .scroll_adjustment .global_menu {
    position: sticky;
  }
}
.menu_btn {
  width: var(--wh30);
  height: var(--wh40);
  border-radius: var(--wh25);
  display: flex;
  flex-direction: row;
  row-gap: var(--wh10);
  align-items: center;
  justify-content: center;
  /* position: absolute;
  top: calc(var(--wh10) * 1.2);
  right: var(--wh20); */
  z-index: 3;
}

.menu_btn span {
  position: relative;
}
.menu_btn span::before,
.menu_btn span::after {
  content: "";
  display: block;
  position: absolute;
  transform: rotate(0);
}
.menu_btn span,
.menu_btn span::before,
.menu_btn span::after {
  width: var(--wh25);
  height: calc(var(--wh10) / 4);
  background-color: #ffa012;
  transition: all 0.2s ease-out;
  right: 0;
}
body.jinji .menu_btn span,
body.jinji .menu_btn span::before,
body.jinji .menu_btn span::after {
  background-color: var(--black);
}
.menu_btn span::before {
  top: calc(-1 * (var(--wh10) / 2 + var(--wh10) / 4));
  transform-origin: top right;
}
.menu_btn span::after {
  top: calc(var(--wh10) / 2 + var(--wh10) / 4);
  transform-origin: bottom right;
}
.global_menu.open .menu_btn span {
  background-color: transparent;
}
.global_menu.open .menu_btn span::before {
  top: calc(-1 * (var(--wh10) / 2 + var(--wh10) / 4 + var(--wh10) / 6));
  right: calc(var(--wh10) / 4);
  transform: rotate(-45deg);
  height: calc(var(--wh10) * 0.3);
  opacity: 1;
}
.global_menu.open .menu_btn span::after {
  transform: rotate(45deg);
  right: calc(var(--wh10) / 4);
  height: calc(var(--wh10) * 0.3);
  opacity: 1;
}
.menu_nav {
  background: var(--accent);
  padding-top: calc(var(--wh10) * 6.8);
  height: calc(var(--wh10) * 47.5);
  text-align: center;
  position: relative;
  display: none;
  transition: fade-out 0.3s cubic-bezier(0.46, 0.03, 0.52, 0.96);
  overflow: hidden;
  z-index: 2;
  color: #fff;
  font-weight: bold;
}
.global_menu.open .menu_nav {
  display: block;
  transition: fade-in 0.3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.menu_nav ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: var(--wh32) 0;
  width: calc(var(--wh10) * 24);
  margin: 0 auto;
}
/* sectionKV */
/* #sectionKV {
  position: relative;
  text-align: center;
}
#sectionKV header {
  width: 100%;
  height: 100%;
  position: absolute;
}
#sectionKV .logo {
  width: calc(var(--wh10) * 14);
  height: auto;
  position: absolute;
  top: calc(var(--wh10) * 1.2);
  left: var(--wh20);
}
#sectionKV .contents img {
  width: 100%;
} */

#sectionKV header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2% 4%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

#sectionKV .contents {
  position: relative;
  overflow: hidden;
}

#sectionKV .contents .main-tit {
  position: absolute;
  bottom: 2%;
  left: 0%;
  font-size: 32px;
  letter-spacing: 4px;
  text-align: left;
  color: #fff;
  text-shadow: 1px 1px 10px #000;
  z-index: 3;
  /* background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

#sectionKV .contents h1 p {
  display: block;
  margin: 0;
}

#sectionKV .contents h1 span {
  font-size: 30px;
}
#sectionKV .contents h1 .orange {
  font-size: 40px;
  color: #ffa012;
}

#sectionKV header img {
  width: 32%;
  height: auto;
}

.contenst {
  width: 100%;
  overflow: hidden;
}

.contenst .circle {
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  background: #ffa012;
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}

.contenst .circle-1 {
  top: -32%;
  left: -12%;
  width: 220px;
  height: 220px;
}

.contenst .circle-2 {
  top: -24%;
  right: -12%;
}

.contenst .circle-3 {
  bottom: 0%;
  right: 0%;
}

.contenst .circle-4 {
  width: 80px;
  height: 80px;
  bottom: -4%;
  right: 16%;
}

.img-boxs {
  background-image: url(../img/form/fv-1.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0px;
  width: 100vw;
  height: 42vh;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

#sectionKV .tit {
  position: relative;
  width: 80vw;
  top: -16%;
  left: 10vw;
  text-align: left;
  color: #fff;
  z-index: 3;
  background: #1f9ddc;
  text-shadow: none;
  text-align: center;
  padding: 2% 0;
  border-radius: 4px;
  margin-bottom: 8%;
}

#sectionKV .pop {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 0%;
  font-weight: bold;
  line-height: 24px;
  z-index: 3;
  justify-content: center;
  font-weight: bold;
}

#sectionKV .pop span {
  font-size: 12px;
}

#sectionKV .sab-tit {
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #333;
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  letter-spacing: 4px;
  line-height: 24px;
}

#sectionKV .sab-tit span {
  font-size: 12px;
}

#sectionKV .list-boxs {
  width: 110%;
  padding: 4% 6%;
  box-sizing: border-box;
}

#sectionKV .list-boxs div {
  width: 48%;
}

/* #sectionKV .list-boxs img {
  width: 90%;
} */
#sectionKV ul {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  gap: 10px;
  flex: 1;
}

#sectionKV ul li {
  font-size: 16px;
  position: relative;
  text-shadow: #000 1px 0 10px;
}

#sectionKV ul li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -10px;
  width: 4px;
  height: 16px;
  background-color: #ffa012;
}

#sectionKV .circle-area {
  display: none;
  background-color: transparent;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: absolute;
  right: -50px;
  bottom: -24px;
  color: #fff;
  font-size: 14px;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#sectionKV .circle-area p {
  line-height: 140px;
  margin-right: 30px;
  display: inline;
  overflow: hidden;
}

#sectionKV .circle-area .js-string {
  display: inline-block;
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.6s ease-out;
}

#section-form {
  width: 100vw;
}

.btn-form {
  position: relative;
  width: 325px;
  height: 70px;
  padding: 0 16px 0 65px;
  box-sizing: border-box;
  background-color: #ffa012;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: clamp(
    18px,
    calc(5.666666666666666px + 3.3333333333333335vw),
    20px
  );
  text-align: center;
  font-weight: bold;
  border-radius: 56px;
  box-shadow: 0px 4px 0px rgba(255, 105, 0, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4% auto;
}

.btn-form-ma {
  margin: 0% auto 4%;
}

.btn-form span {
  font-size: 14px;
  letter-spacing: 3px;
}

.btn-form img {
  position: absolute;
  top: 20px;
  left: 42px;
  width: 32px;
  height: 32px;
  height: auto;
}

.btn-form2 img {
  left: 26px;
}

.btn-form .triangle2 {
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

#section-form .contents {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease;
}
#section-form .contents.is-open {
  max-height: 1200px; /* 中身より少し大きめに */
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  #section-form .contents {
    transition: none;
  }
}

.fall-down {
  opacity: 0;
  transform: translateY(100px);
}

.fall-from-top {
  opacity: 0;
  transform: translateY(-300px);
}

.visible {
  opacity: 1;
  transform: translateY(0px);
}

/* section03 */
#sectionRecruit {
  background: url(../img/form/repeat_bg.png) repeat;
  background-size: calc(var(--wh10) * 1.1);
  padding: var(--wh60) var(--wh20);
}
#sectionRecruit header {
  padding-bottom: calc(var(--wh10) * 3.8);
  text-align: center;
}
#sectionRecruit ul {
  background: var(--white);
  padding: var(--wh20);
  border-radius: calc(var(--wh10) / 2);
}
#sectionRecruit li {
  display: flex;
  flex-direction: row;
  text-align: left;
  position: relative;
}
#sectionRecruit li:not(:first-of-type) {
  padding-top: calc(var(--wh10) * 1);
}
#sectionRecruit li:not(:last-of-type) {
  padding-bottom: var(--wh15);
  background-image: linear-gradient(
    to right,
    #9f9f9f,
    #9f9f9f 2px,
    transparent 2px,
    transparent 2px
  );
  background-size: 4px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
#sectionRecruit h3 {
  width: calc(var(--wh10) * 9);
  font-size: calc(var(--wh10) * 1.4);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--subAccent);
}
#sectionRecruit h3 img {
  width: calc(var(--wh10) * 7);
  height: auto;
}
#sectionRecruit li p {
  width: calc(100% - var(--wh10) * 9);
  font-size: calc(var(--wh10) * 1.4);
  font-weight: 500;
  font-feature-settings: "pkna";
  line-height: 1.74;
  letter-spacing: -0.03em;
}
#sectionRecruit li p .s_txt {
  font-size: calc(var(--wh10) * 1.2);
  line-height: 1.66;
  display: inline-block;
}
#sectionRecruit li.toggle p {
  max-height: 3.2em;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
}
#sectionRecruit li.toggle.open p {
  max-height: 1000px;
}
#sectionRecruit li.toggle p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 40%,
    rgba(255, 255, 255, 1) 98%,
    transparent 98%
  );
  opacity: 1;
  transition: opacity 0.25s ease-out;
}
#sectionRecruit li.toggle:last-of-type p::before {
  background: linear-gradient(
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 40%,
    rgba(255, 255, 255, 1) 100%,
    transparent 100%
  );
}
#sectionRecruit li.toggle.open p::before {
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  #sectionRecruit li.toggle {
    opacity: var(--opacity, 1);
  }
  #sectionRecruit li.toggle:hover {
    cursor: pointer;
  }
}
#sectionRecruit li .icon {
  width: var(--wh20);
  height: var(--wh20);
  line-height: 1;
  position: relative;
  top: 0.2em;
  z-index: 1;
}
#sectionRecruit li .icon::after {
  content: "";
  width: calc(var(--wh10) * 1.9);
  height: calc(var(--wh10) * 1.9);
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/common/icon_close.png) center / contain no-repeat;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}
#sectionRecruit li.toggle.open .icon::after {
  opacity: 1;
}
/* フォーム */
.wpcf7 {
  width: 86.667%;
  margin: 0 auto;
  font-size: calc(var(--wh10) * 1.3);
  letter-spacing: 0.05em;
}
/* p:not(.btn p, p.txt_attention) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--wh20);
} */
p.txt_attention {
  font-size: calc(var(--wh10) * 1.2);
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin: -0.5em 0 var(--wh35);
  text-align: left;
}
.wpcf7-form-control:not(.wpcf7-submit.wpcf7-form-control) {
  width: 185px;
  box-sizing: border-box;
  background-color: #fbe9af;
  border: none;
  border-radius: calc(var(--wh10) / 2);
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: calc(var(--wh10) * 1.3);
  color: var(--black);
  padding: calc(var(--wh10) * 1.3) var(--wh10);
}
@media (min-width: 820px) {
  #section-form {
    width: 100%;
  }

  #sectionKV .contents .img-boxs {
    width: 120%
    height: 650px;
  }


  .wpcf7-form-control:not(.wpcf7-submit.wpcf7-form-control) {
    width: 210px;
  }
  .btn {
    transition: opacity 0.2s ease;
    opacity: var(--opacity, 1);
  }

  #sectionKV .contents h1 {
    font-size: 30px;
  }

  #sectionKV .contents h1 span {
    font-size: 28px;
  }

  #sectionKV .tit {
    width: 80%;
    left: 10%;
  }

  .img-boxs {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    cursor: pointer;
    opacity: var(--opacity, 0.7);
  }
}
.wpcf7-select {
  appearance: none;
}
.wpcf7-submit.wpcf7-form-control {
  background-image: url("../img/form/btn_sent.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: var(--wh50);
  border: none;
  cursor: pointer;
  text-indent: -9999px; /* 文字を非表示にする */
  border-radius: unset;
  max-width: 335px;
}
body.jinji .wpcf7-submit.wpcf7-form-control {
  background-image: url("../img/jinji/btn_sent.png");
}

/* .btn-img{
  background-image: url("../img/form/btn_sent.png");
} */
.wpcf7-not-valid-tip {
  font-size: calc(var(--wh10) * 1.2) !important;
  text-align: left;
  margin-top: 0.3em;
}
.wpcf7-response-output,
form .wpcf7-spinner {
  display: none;
}
/* モーダル */
#cf7-confirm-modal {
  font-size: calc(var(--wh10) * 1.4);
  color: var(--black);
}
#cf7-confirm-modal ul {
  margin: 20px 0;
}
#cf7-confirm-modal li {
  padding-bottom: 0.75em;
}
#cf7-confirm-modal li strong {
  font-weight: 500;
  color: #272727;
}
#cf7-confirm-modal .modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
#cf7-confirm-modal .cf7-dialog {
  background: rgba(255, 255, 255, 1);
  text-align: center;
  max-width: 400px;
  width: 90%;
  color: var(--black);
  padding: 30px 25px;
  position: relative;
  z-index: 101;
}
#cf7-confirm-modal button {
  all: unset;
  outline: revert;
  -webkit-tap-heighlight-color: transparent;
  margin: 10px 10px 0;
  padding: 10px 20px;
  width: 5em;
}
#cf7-confirm-modal #cf7-confirm-yes {
  background: var(--accent);
  color: var(--white);
}
#cf7-confirm-modal #cf7-confirm-no {
  background: #f0f0f0;
}
#cf7-loading .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
#cf7-loading .loader img {
  width: 40px;
  height: 40px;
}

/* サンクスページ */
.thanks .sp_contents {
  background: #e7e7e7;
}
.thanks .contents {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: calc(var(--wh10) * 1.3);
  line-height: 1.4;
  font-weight: 300;
  text-align: left;
  padding: var(--wh25);
}
.thanks .contents .wrapper > p {
  padding: var(--wh20);
}
.thanks .contents ul {
  padding: 0 var(--wh20);
}
.thanks .contents ul li {
  font-size: var(--wh10);
}
.thanks .contents ul li a {
  font-weight: bold;
  text-decoration: underline;
}
.thanks .contact_list .line {
  border-bottom: 0.5px solid var(--black);
}
.thanks .contact_list .tel_num {
  font-weight: 700;
  padding-left: 1em;
  text-decoration: none;
}
.thanks footer {
  background: var(--white);
  color: #343434;
  box-shadow: none;
  text-align: center;
  margin-top: 0;
  padding: var(--wh40) 0;
}
.thanks footer .logo {
  width: 35.2vw;
}
.thanks footer .wrapper {
  width: 35.2vw;
  margin: var(--wh30) auto 0;
  text-align: center;
}
.thanks footer .freemova_logo {
  width: 7.3vw;
  height: auto;
  margin-bottom: 0.75em;
}
.thanks footer a {
  border-bottom: 0.5px solid currentColor;
}
.thanks footer .wrapper a {
  font-size: calc(var(--wh10) * 1.2);
}
.thanks footer p {
  font-size: calc(var(--wh10) * 1.3);
}
.thanks footer p:first-of-type {
  font-weight: 500;
}
.thanks footer small {
  display: inline-block;
  margin-top: calc(var(--wh10) * 1.8);
}

.caution-text {
  font-size: 8px;
  font-weight: bold;
}
@media (min-width: 820px) {
  .thanks footer .logo {
    width: 130px;
  }
  .thanks footer .wrapper {
    width: 130px;
  }
  .thanks footer .freemova_logo {
    width: 27px;
  }
}

/* jinji contents */
body.jinji .menu_btn {
  right: var(--wh10);
}
body.jinji .menu_nav {
  padding-top: calc(var(--wh10) * 11.4);
}
body.jinji .menu_nav p img {
  width: calc(var(--wh10) * 20.6);
  height: auto;
}
body.jinji .menu_nav ul {
  width: 100%;
  margin: var(--wh32) var(--wh20) 0;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: left;
  gap: var(--wh32) 0;
  overflow-x: hidden;
}
body.jinji .menu_nav li {
  width: calc((100% - var(--wh20) * 2) / 2);
  align-self: flex-start;
}
body.jinji #sectionTopForm {
  padding-bottom: var(--wh50);
}
body.jinji #sectionRecruit {
  background: linear-gradient(140deg, #e0f9ff 0%, #68daff 55%, #0b8ff1 85%);
}
body.jinji #cf7-confirm-modal #cf7-confirm-yes {
  color: var(--black);
}

/* Footer */
footer {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: calc(var(--wh10) * 1.4);
  background: #f0f0f0;
  box-shadow: 0 -20px 20px -24px #888888 inset;
  text-align: center;
  margin-top: var(--wh60);
  padding: var(--wh24) 0;
}
footer .logo {
  width: calc(var(--wh10) * 8.6);
}
footer > * {
  line-height: 1;
}
footer ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
footer li {
  width: fit-content;
}
footer nav {
  margin-top: var(--wh25);
}
footer .corp_links li {
  padding: 0 0.4em;
}
footer .corp_links li:not(li:first-of-type) {
  border-left: 1px solid var(--black);
}
footer .sns_links {
  align-items: center;
  column-gap: calc(var(--wh10) * 1.8);
  margin: calc(var(--wh10) * 1.6) auto;
}
footer .sns_links img {
  width: var(--wh25);
  height: auto;
}

footer p {
  display: block !important;
}

@media (min-width: 820px) {
  footer .logo {
    width: 130px;
  }
  footer .wrapper {
    width: 130px;
  }
  footer .freemova_logo {
    width: 27px;
  }
}
footer a:hover {
  text-decoration: none;
}

/* 7月22日　平岡　LPO分 */

h2 {
  margin: 32px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  font-size: 32px;
  font-weight: bold;
  color: #ffa012;
}
h2 span {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.flow-img {
  width: 90%;
}

#section04 .contents p {
  justify-content: center;
}

.triangle3 {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #1f9ddc;
  transform: translateX(-50%);
}

h1 {
  text-align: center;
  margin-bottom: 4%;
}

.tit-boxs {
  position: relative;
  margin: 4% 0;
}

section h1 > img {
  width: 80%;
  text-align: center;
}

#section01 {
/*   opacity: 0; */
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

#section01.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.form_wrapper p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  align-items: center;
}

.btn-top{
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-weight: normal;
  letter-spacing: 2px;
}

.btn-top span{
color: #ffa012;
}

.btn-form-ma{
  margin: 0 auto 4%;
}

.list-boxs{
  position: absolute; 
  bottom: 0%;
  left: 0%;
  z-index: 10;
  color: #fff;
  /* background-color: rgba(0, 0, 0, 0.2); */
  padding: 6%;
}