@charset "UTF-8";
:root {
  --base: "Noto Sans", sans-serif;
  --sub: "Zen Kaku Gothic New", sans-serif;
  --mc: #1f2a66;
  --sc: #ef8200;
  --bc: #c9ccd8;
  --mq: 4.8;
  /*
  --mq: 12.8vw;
  @media screen and (max-width: 1024px) {
    --mq: 7.5vw;
  }
  @media screen and (max-width: 479px) {
    --mq: 3.75vw;
  }*/
}

/*---変数---*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 行の高=フォントサイズ */
body {
  line-height: 1.5;
  letter-spacing: 0.1em;
}

/* 新規追加要素をブロック要素化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul,
li {
  list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
  border: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

section {
  position: relative;
}

input[type=submit],
input[type=button] {
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

main {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

sup {
  position: relative;
  top: -1ex;
  vertical-align: baseline;
}

button {
  outline: none;
}

iframe {
  display: block;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  position: relative;
  -webkit-text-size-adjust: 100%;
  font-family: var(--base);
  font-size: 1rem;
  color: var(--mc);
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: var(--base);
  }
}
body.fix {
  position: fixed;
  width: 100%;
}
body.open {
  overflow: hidden;
}

html,
body {
  position: relative;
  width: 100%;
}

*:focus {
  outline: none;
}

p,
li,
dl,
tr,
th,
td,
div {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.75;
}
@media screen and (max-width: 479px) {
  p,
  li,
  dl,
  tr,
  th,
  td,
  div {
    font-size: 1.4rem;
  }
}

span {
  font-weight: inherit;
  letter-spacing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  line-height: 1.35;
}

a,
a * {
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

.pc {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

.pc-tb {
  display: block;
}
@media screen and (max-width: 479px) {
  .pc-tb {
    display: none !important;
  }
}

.tb-sp {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tb-sp {
    display: block !important;
  }
}

.tb {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .tb {
    display: block !important;
  }
}
@media screen and (max-width: 479px) {
  .tb {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 479px) {
  .sp {
    display: block !important;
  }
}

.cmn-wrap {
  position: relative;
  margin: 0 auto;
  padding-inline: 20px;
  width: 100%;
}
.cmn-wrap.--full {
  padding-bottom: 0;
  padding-inline: 0;
}
.cmn-wrap.--small {
  padding-inline: 30px;
}
@media screen and (max-width: 479px) {
  .cmn-wrap.--small {
    padding-inline: 20px;
  }
}

.cmn-ttl {
  position: relative;
  color: var(--mc);
}
.cmn-ttl__main {
  display: block;
  margin-bottom: 8px;
}
.cmn-ttl__main img {
  width: auto;
  height: 45.5px;
}
.cmn-ttl__sub {
  position: relative;
  display: block;
  font-family: "Noto Sans";
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 3.2rem; /* 266.667% */
  letter-spacing: 0.06rem;
}
.cmn-ttl__sub::before {
  content: "";
  display: inline-block;
  margin-right: 11px;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ef8200;
}
.cmn-ttl.--white .cmn-ttl__main {
  color: #fff;
}
.cmn-ttl.--white .cmn-ttl__sub {
  color: #fff;
}
.cmn-ttl.--manual {
  padding-left: 11px;
}
.cmn-ttl.--manual .cmn-ttl__main {
  margin-bottom: 8px;
  padding-left: 4px;
}
.cmn-ttl.--manual .cmn-ttl__main img {
  height: 93px;
}
.cmn-ttl.--vision .cmn-ttl__main {
  margin-bottom: 11px;
}
.cmn-ttl.--interview {
  padding-left: 10px;
}
.cmn-ttl.--interview .cmn-ttl__main {
  margin-bottom: 16px;
  padding-left: 7px;
}
.cmn-ttl.--interview .cmn-ttl__main img {
  height: 45px;
}
.cmn-ttl.--interview .cmn-ttl__sub::before {
  margin-right: 20px;
}
.cmn-ttl.--message .cmn-ttl__main {
  margin-bottom: 4px;
}
.cmn-ttl.--message .cmn-ttl__main img {
  padding-left: 8px;
  height: 55.5px;
}
.cmn-ttl.--recruit {
  padding-left: 2px;
}
.cmn-ttl.--recruit .cmn-ttl__main {
  margin-bottom: 16px;
}
.cmn-ttl.--recruit .cmn-ttl__main img {
  padding-left: 5px;
  height: 45px;
}
.cmn-ttl.--recruit .cmn-ttl__sub::before {
  margin-right: 18px;
}
.cmn-ttl.--flow {
  padding-left: 0px;
}
.cmn-ttl.--flow .cmn-ttl__main {
  margin-bottom: 17px;
}
.cmn-ttl.--flow .cmn-ttl__main img {
  padding-left: 4px;
}
.cmn-ttl.--flow .cmn-ttl__sub::before {
  margin-right: 26px;
}
.cmn-ttl.--entry {
  padding-left: 0px;
}
.cmn-ttl.--entry .cmn-ttl__main {
  margin-bottom: 4px;
}
.cmn-ttl.--entry .cmn-ttl__main img {
  padding-left: 3px;
  height: 55px;
}
.cmn-ttl.--entry .cmn-ttl__sub::before {
  margin-right: 14px;
}

.cmn-btn__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  max-width: 269px;
  width: 100%;
  height: 56px;
  background: #ef8200;
  border-radius: 5px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  color: #f4f4f4;
  text-align: center;
  font-family: Volte;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.2rem; /* 160% */
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: 0.4s;
	pointer-events: auto;
}
.cmn-btn__link img {
  width: 148px;
}
@media screen and (min-width: 1025px) {
  .cmn-btn__link:hover {
    opacity: 0.8;
  }
}
.cmn-btn.--menu {
  margin-bottom: 32px;
}
.cmn-btn.--menu .cmn-btn__link {
  background: var(--mc);
}
.cmn-btn.--menu .cmn-btn__link img {
  width: 50px;
}

.wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 960px;
}
@media screen and (max-width: 479px) {
  .wrap {
    padding-inline: 0;
  }
}
.wrap::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/recruit-lp/bg-body.jpg) repeat-x center center/cover;
  pointer-events: none;
}
@media screen and (max-width: 479px) {
  .wrap::before {
    content: none;
  }
}

@media screen and (max-width: 1024px) {
  #about,
  #manual,
  #vision,
  #interview,
  #message,
  #recruit,
  #flow,
  #entry {
    scroll-margin-top: 72px;
  }
}

.hd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.hd-cnt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-inline: 24px;
  margin-inline: auto;
  max-width: 1200px;
  height: 100vh;
}
.hd-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 75px;
  text-align: center;
  min-width: 420px;
}
.hd-name {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 180px;
  aspect-ratio: 180/52.7;
}
.hd-name img {
  width: 100%;
}
.hd-contact {
  margin-inline: auto;
  padding-bottom: 50px;
}
.hd-contact__txt {
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.hd-btn {
  margin-bottom: 24px;
  margin-inline: auto;
  width: 100%;
  max-width: 269px;
}
.hd-corporate {
  margin-bottom: 6px;
}
.hd-corporate__st {
  color: #fff;
  text-align: center;
  font-family: var(--sub);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 4rem; /* 222.222% */
  letter-spacing: 0.09rem;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .hd-corporate__st:hover {
    color: var(--sc);
  }
}
.hd-phone {
  margin-bottom: 15px;
}
.hd-phone__link {
  color: #f4f4f4;
  text-align: center;
  font-family: var(--sub);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 4rem; /* 222.222% */
  letter-spacing: 0.09rem;
  text-decoration-line: underline;
	text-underline-offset: 3px;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .hd-phone__link:hover {
    color: var(--sc);
  }
}
.hd-menu {
  margin-inline: auto 0;
  padding: 0;
  width: auto;
  max-width: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(29.1666666667vw, 42rem);
  margin-inline: auto 0;
}
.hd-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: url(../images/recruit-lp/bg-nav.jpg) no-repeat center center/cover;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
	overflow: auto;
}
.hd-nav__inr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8vw 90px;
  margin-inline: auto;
  width: 100%;
  max-width: 1060px;
	padding: 50px 0;
}
.hd-nav__contact {
  display: block;
  margin-inline: auto;
  width: 300px;
  text-align: center;
}
.hd-nav__btn {
  margin-bottom: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: 269px;
}
.hd-nav__corporate-st {
  text-align: center;
  font-family: var(--sub);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 4rem; /* 222.222% */
  letter-spacing: 0.09rem;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .hd-nav__corporate-st:hover {
    color: var(--sc);
  }
}
.hd-nav__phone-link {
  text-align: center;
  font-family: var(--sub);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 4rem; /* 222.222% */
  letter-spacing: 0.09rem;
  text-decoration-line: underline;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .hd-nav__phone-link:hover {
    color: var(--sc);
  }
}
.hd-nav__cnt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hd-nav__list {
  align-items: center;
  flex-direction: column;
  gap: 0;
  margin-bottom: 30px;
  width: 280px;
}
.hd-nav__item {
  margin-bottom: 0;
  padding: 0;
  width: 100%;
  border: none;
}
.hd-nav__item:first-child {
  border: none;
}
.hd-nav__link {
  display: block;
  padding-block: 28px;
  padding-inline: 0;
  height: auto;
  width: auto;
  overflow: visible;
  text-align: center;
}
.hd-nav__link-en {
  display: block;
  margin-bottom: 5px;
  color: rgba(31, 42, 102, 0.6);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.hd-nav__link-jp {
  display: block;
  color: rgba(31, 42, 102, 0.6);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.hd-toggle {
  position: absolute;
  top: 8%;
  right: 9%;
  width: 45px;
  height: 45px;
  opacity: 0;
  cursor: pointer;
  z-index: 1002;
}
.hd-toggle div {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 16px;
}
.hd-toggle span {
  display: block;
  position: absolute;
  right: 0;
  transition: 0.35s ease-in-out;
  width: 100%;
  background: #303030;
  color: #303030;
}
.hd-toggle__line {
  height: 1px;
}
.hd-toggle__line:nth-child(1) {
  top: 0;
  width: 57.78%;
}
.hd-toggle__line:nth-child(2) {
  top: 16px;
}
@media screen and (max-width: 1024px) {
  .hd {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
    width: 100%;
    max-width: 480px;
    height: 72px;
    line-height: 1;
    transition: all 0.4s;
    z-index: 1000;
  }
  .hd-cnt {
    position: relative;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    padding-block: 0;
    padding-inline: 20px;
    height: 100%;
  }
  .hd-info {
    padding-top: 0;
    width: auto;
    background: transparent;
    min-width: auto;
  }
  .hd-name {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 0;
    width: 130px;
    z-index: 1001;
  }
  .hd-contact {
    display: none;
  }
  .hd-menu {
    margin-inline: auto 0;
    padding: 0;
    width: auto;
    max-width: none;
  }
  .hd-nav__inr {
    justify-content: center;
    flex-direction: column-reverse;
  }
  .hd-nav__cnt {
    padding-inline: 30px;
    width: 100%;
  }
  .hd-nav__list {
    margin-bottom: 0;
    width: 180px;
  }
  .hd-nav__link {
    padding-block: min(3.3333333333vw, 1.6rem);
  }
  .hd-nav__link-en {
    margin-bottom: 0;
    text-align: center;
    font-weight: 700;
    line-height: 3.2rem; /* 200% */
    letter-spacing: 0.08rem;
  }
  .hd-nav__link-jp {
    text-align: center;
    font-weight: 500;
    line-height: 3.2rem; /* 200% */
    letter-spacing: 0.08rem;
  }
  .hd-toggle {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
  }
}
@media screen and (max-width: 479px) {
  .hd-nav__inr {
    justify-content: flex-start;
    padding-bottom: 30px;
  }
  .hd-nav__link-en {
    font-size: 1.4rem;
  }
  .hd-nav__link-jp {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1024px) {
  .hd.fixed {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }
}
.hd.open {
  z-index: 100;
}
.hd.open .hd-name__logo {
  opacity: 0;
}
.hd.open .hd-nav {
  opacity: 1;
  transition: 0.4s;
  visibility: visible;
}
.hd.open .hd-toggle {
  opacity: 1;
}
.hd.open .hd-toggle span:nth-child(1) {
  top: 7px;
  width: 100%;
  transform: rotate(45deg);
}
@media screen and (max-width: 479px) {
  .hd.open .hd-toggle span:nth-child(1) {
    transform: rotate(30deg);
  }
}
.hd.open .hd-toggle span:nth-child(2) {
  top: 7px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 479px) {
  .hd.open .hd-toggle span:nth-child(2) {
    transform: rotate(-30deg);
  }
}

.ft {
  position: relative;
  background: var(--bc);
}
.ft-cnt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
}
.ft-name {
  margin-bottom: 45px;
  width: 180px;
  aspect-ratio: 180/52.7;
}
.ft-logo {
  display: block;
  width: 100%;
  height: 100%;
}
.ft-logo img {
  width: 100%;
}
.ft-copy {
  background: var(--mc);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 3.2rem; /* 266.667% */
  letter-spacing: 0.06rem;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  padding-inline: 20px;
  width: 100%;
  max-width: 480px;
  height: 108px;
  z-index: 99;
  pointer-events: none;
  transition: transform 0.4s;
  transform: translate(-50%, 0);
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .banner {
    display: none;
  }
}
.banner__inr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  height: 100%;
  background: #d9d9d9;
  border-radius: 5px;
}
.banner__txt {
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem; /* 166.667% */
  letter-spacing: 0.036rem;
}
.banner__btn {
  width: 269px;
}
.banner.hidden {
  transform: translate(-50%, 100%);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.content {
  position: relative;
  margin-top: 94px;
  width: 480px;
  background: #fcfcfc;
  border-radius: 30px 30px 0px 0px;
  box-shadow: 1px 3px 29px 0px rgba(0, 0, 0, 0.25);
  overflow: clip;
}
@media screen and (max-width: 1024px) {
  .content {
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
    border-radius: 0;
  }
}
.content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/recruit-lp/bg-content.jpg) repeat-x center center/cover;
  pointer-events: none;
}
.content.open {
  background: transparent;
  box-shadow: none;
}
.sec-fv {
  position: relative;
  padding-top: 32px;
}
@media screen and (max-width: 1024px) {
  .sec-fv {
    padding-top: 72px;
  }
}
.sec-fv__head {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 23svh;
}
@media screen and (max-width: 1024px) {
  .sec-fv__head {
    height: 26svh;
  }
}
.sec-fv__ttl-main {
  display: block;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 4rem;
  line-height: 4rem; /* 160% */
  letter-spacing: 0.15rem;
}
.sec-fv__ttl-sub {
  display: block;
  text-align: center;
  font-family: YuGothic;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2rem; /* 200% */
  letter-spacing: 0.16rem;
}
@media screen and (max-width: 1024px) {
  .sec-fv__ttl-sub {
    padding-left: 5px;
  }
}
.sec-fv__ph {
  position: relative;
    height: auto;
}
@media screen and (max-width: 1024px) {
  .sec-fv__ph {
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .sec-fv__ph {
    height: auto;
  }
}
.sec-fv__ph-txt {
  position: absolute;
  bottom: 0;
  right: -8px;
  width: auto;
  height: 155px;
  aspect-ratio: 22/155;
  z-index: 1;
}
.sec-fv__ph-txt img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sec-fv__slide-cnt {
  position: relative;
  margin-inline: auto 0;
    height: auto;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .sec-fv__slide-cnt {
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .sec-fv__slide-cnt {
    height: auto;
  }
}
.sec-fv__slide-ph {
  position: relative;
  width: 100%;
  aspect-ratio: 440/500;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .sec-fv__slide-ph {
  aspect-ratio: 440/500;
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .sec-fv__slide-ph {
  aspect-ratio: 440/500;
    height: auto;
  }
}
.sec-fv__slide-ph img {
  width: auto;
  max-width: none;
  height: 100%;
  aspect-ratio: 440/500;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
.sec-fv__slide-ph img {
	width: 100%;
    height: auto;
  }
}
.sec-fv__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.sec-fv__scroll-line {
  position: relative;
}
.sec-fv__scroll-line::before {
  content: "";
  position: absolute;
  top: calc(100% - 44px);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 88px;
  background: var(--mc);
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}

.sec-about {
  position: relative;
  padding-top: 135px;
}
.sec-about__head {
  margin-bottom: 55px;
}
.sec-about__txt {
  position: relative;
  margin-bottom: 100px;
  z-index: 1;
}
.sec-about__txt-st {
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.05rem;
}
.sec-about__txt-st.--txt01 {
  margin-bottom: 137px;
}
.sec-about__txt-st.--txt02, .sec-about__txt-st.--txt03 {
  display: flex;
  justify-content: flex-end;
}
.sec-about__txt-st.--txt02 {
  margin-bottom: 52px;
  padding-right: 28px;
}
@media screen and (max-width: 479px) {
  .sec-about__txt-st.--txt02 {
    padding-right: 0;
  }
}
.sec-about__ph-item.--item01 {
  position: absolute;
  top: 260px;
  right: 0;
  width: min(200vw / var(--mq), 20rem);
}
.sec-about__ph-item.--item02 {
  position: absolute;
  top: 373px;
  left: 0;
  width: min(141vw / var(--mq), 14.1rem);
}
.sec-about__ph-item.--item03 {
  position: absolute;
  top: 840px;
  left: 0;
  width: min(200vw / var(--mq), 20rem);
}
.sec-about__ph-item.--item04 {
  margin-inline: auto -32px;
  width: 360px;
}

.sec-manual {
  padding-block: 76px 80px;
}
.sec-manual__head {
  margin-bottom: 50px;
}
.sec-manual__txt {
  padding-left: 10px;
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.sec-manual .manual-list {
  margin-top: 40px;
}
.sec-manual .manual-list__item {
  padding: 19px 10px;
  border-radius: 30px;
  background: #fff;
}
@media screen and (max-width: 479px) {
  .sec-manual .manual-list__item {
    padding-block: 16px;
  }
}
.sec-manual .manual-list__item:not(:last-child) {
  margin-bottom: 25px;
}
.sec-manual .manual-list__item.--item01, .sec-manual .manual-list__item.--item03, .sec-manual .manual-list__item.--item05 {
  background: var(--bc);
}
.sec-manual .manual-list__item.--item01 .manual-list__head::before, .sec-manual .manual-list__item.--item01 .manual-list__head::after, .sec-manual .manual-list__item.--item03 .manual-list__head::before, .sec-manual .manual-list__item.--item03 .manual-list__head::after, .sec-manual .manual-list__item.--item05 .manual-list__head::before, .sec-manual .manual-list__item.--item05 .manual-list__head::after {
  background: var(--mc);
}
.sec-manual .manual-list__item.--item02, .sec-manual .manual-list__item.--item04 {
  background: var(--mc);
  color: #fff;
}
.sec-manual .manual-list__item.--item02 .manual-list__head::before, .sec-manual .manual-list__item.--item02 .manual-list__head::after, .sec-manual .manual-list__item.--item04 .manual-list__head::before, .sec-manual .manual-list__item.--item04 .manual-list__head::after {
  background: #fff;
}
.sec-manual .manual-list__head {
  position: relative;
  padding-right: 24px;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .sec-manual .manual-list__head:hover {
    opacity: 0.6;
  }
}
.sec-manual .manual-list__head-num {
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  height: 65px;
}
@media screen and (max-width: 479px) {
  .sec-manual .manual-list__head-num {
    height: 50px;
  }
}
.sec-manual .manual-list__head-num img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sec-manual .manual-list__head-name {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 30px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 4rem; /* 200% */
  letter-spacing: 0.1rem;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .sec-manual .manual-list__head-name {
    font-size: 1.6rem;
  }
}
.sec-manual .manual-list__head::before, .sec-manual .manual-list__head::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 24px;
  height: 1px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 479px) {
  .sec-manual .manual-list__head::before, .sec-manual .manual-list__head::after {
    right: 4px;
  }
}
.sec-manual .manual-list__head::before {
  top: 50%;
  transform: translateY(-50%);
}
.sec-manual .manual-list__head::after {
  top: 50%;
  transform: rotate(90deg);
  transition: 0.3s;
}
.sec-manual .manual-list__head.selected::after {
  transform: rotate(180deg);
  transition: 0.3s;
}
.sec-manual .manual-list__cnt {
  display: none;
  position: relative;
  padding-block: 19px 40px;
}
@media screen and (max-width: 479px) {
  .sec-manual .manual-list__cnt {
    padding-block: 16px;
  }
}
.sec-manual .manual-list__cnt-ph {
  margin-bottom: 24px;
}
.sec-manual .manual-list__cnt-txt {
  margin-inline: 10px;
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 479px) {
  .sec-manual .manual-list__cnt-txt {
    margin-inline: 0;
  }
}

.sec-vision {
  padding-bottom: 50px;
}
.sec-vision__top {
  padding-block: 60px 40px;
  background: url(../images/recruit-lp/bg-vision.jpg) no-repeat center center/cover;
}
.sec-vision__head {
  margin-bottom: 60px;
}
.sec-vision__txt-st {
  margin-bottom: 32px;
  color: #fff;
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.sec-vision__bottom {
  padding-block: 77px 30px;
}
.sec-vision__bottom-ttl {
  margin-bottom: 25px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 4rem; /* 200% */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 479px) {
  .sec-vision__bottom-ttl {
    font-size: 1.6rem;
  }
}
.sec-vision__bottom-ttl span {
  position: relative;
  z-index: 1;
}
.sec-vision__bottom-ttl span::before {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 100%;
  height: 21px;
  background: #fff;
  border-radius: 10px;
  filter: blur(2px);
  z-index: -1;
}
.sec-vision__bottom-txt {
  text-align: center;
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.sec-vision__btn {
  margin-top: 40px;
}

.sec-interview {
  padding-top: 68px;
  border-radius: 30px;
  background: var(--mc);
}
.sec-interview__head {
  margin-bottom: 58px;
}
.sec-interview__txt {
  margin-bottom: 50px;
  text-align: center;
}
.sec-interview__txt-st {
  color: #f4f4f4;
  text-align: center;
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.sec-interview .interview-slide {
  position: relative;
}
.sec-interview .interview-slide__item {
  height: auto;
}
.sec-interview .interview-box {
  padding-inline: 4px;
  height: 100%;
  color: #fafafa;
}
.sec-interview .interview-box__link {
  display: flex;
  justify-content: stretch;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .sec-interview .interview-box__link:hover .interview-box__btn {
    color: #ef8200;
  }
  .sec-interview .interview-box__link:hover .interview-box__btn-arrow {
    transform: translateX(5px);
  }
}
.sec-interview .interview-box__ph {
  margin-bottom: 24px;
}
.sec-interview .interview-box__name {
  margin-bottom: 12px;
	text-align: center;
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.sec-interview .interview-box__txt {
  margin-bottom: 18px;
  font-family: var(--sub);
  font-weight: 400;
  line-height: 3rem; /* 187.5% */
  letter-spacing: 0.08rem;
}
.sec-interview .interview-box__btn {
  position: relative;
  display: flex;
  align-items: center;
  margin-block: auto 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #ef8200;
  text-align: center;
  transition: 0.4s;
}
.sec-interview .interview-box__btn-st {
  display: inline-block;
  margin-right: 18px;
  width: 72px;
  height: 14px;
}
.sec-interview .interview-box__btn-arrow {
  display: inline-block;
  transition: 0.4s;
}
.sec-interview .swiper-button-next, .sec-interview .swiper-button-prev {
  position: absolute;
  top: 40%;
  right: 0;
	transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: url(../images/recruit-lp/icon-arrow_slide02.svg) no-repeat center center/cover;
  transition: 0.4s;
  z-index: 1;
}
@media screen and (max-width: 479px) {
  .sec-interview .swiper-button-next, .sec-interview .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}
.sec-interview .swiper-button-next::after, .sec-interview .swiper-button-prev::after {
  display: none;
}
@media screen and (min-width: ) {
  .sec-interview .swiper-button-next:hover, .sec-interview .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
.sec-interview .swiper-button-prev {
  left: 0;
  right: auto;
  transform: scale(-1, 1) translateY(-50%);
}

.interview-modal {
  padding-top: 61px;
}
.interview-modal__item {
  padding-block: 94px 0;
  padding-inline: 17px;
  max-width: 440px;
  width: 100%;
  border-radius: 30px;
  background: var(--mc);
  box-shadow: 0px 0px 4px 0px rgba(65, 65, 65, 0.16);
  color: #f4f4f4;
  overflow: hidden;
}
.interview-modal__head {
  margin-bottom: 66px;
}
.interview-modal__ttl {
  padding-bottom: 30px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 4rem; /* 200% */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 479px) {
  .interview-modal__ttl {
    font-size: 1.6rem;
  }
}
.interview-modal__ph {
  margin-bottom: 40px;
  width: 100%;
  height: auto;
  aspect-ratio: 399/480;
}
.interview-modal__ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview-modal__name {
  margin-bottom: 12px;
  text-align: center;
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.interview-modal__position {
  text-align: center;
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
}
.interview-modal__box {
  padding-bottom: 57px;
}
.interview-modal__box-ttl {
  margin-bottom: 40px;
  margin-inline: -5px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 4rem; /* 200% */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 479px) {
  .interview-modal__box-ttl {
    font-size: 1.6rem;
  }
}
.interview-modal__box-txt {
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.interview-modal__box-ph {
  margin-bottom: 56px;
  margin-inline: -20px;
}
.interview-modal__bottom {
  padding-bottom: 57px;
}
.interview-modal__other {
  margin-bottom: 56px;
}
.interview-modal__anchor {
  margin-bottom: 32px;
  width: 100%;
}
.interview-modal__anchor-link {
  display: flex;
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .interview-modal__anchor-link:hover {
    opacity: 0.7;
  }
}
.interview-modal__anchor-ph {
  width: 100px;
}
.interview-modal__anchor-ph img {
  height: 100%;
  object-fit: cover;
}
.interview-modal__anchor-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  padding-block: 21px 8px;
  padding-inline: 15px 8px;
  background: var(--bc);
}
@media screen and (max-width: 479px) {
  .interview-modal__anchor-info {
    gap: 4px;
    padding-block: 8px;
  }
}
.interview-modal__anchor-txt {
  padding-right: 4px;
  line-height: 20px;
  color: var(--mc);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem; /* 171.429% */
  letter-spacing: 0.07rem;
}
@media screen and (max-width: 479px) {
  .interview-modal__anchor-txt {
    font-size: 1.2rem;
  }
}
.interview-modal__anchor-btn {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-block: auto 0;
  margin-inline: auto 0;
  letter-spacing: 0.16em;
  height: 26px;
  border-bottom: 1px solid #ef8200;
  font-family: Volte;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 4rem; /* 285.714% */
  letter-spacing: 0.07rem;
  text-align: right;
}
.interview-modal__anchor span {
  line-height: 0;
}
.interview-modal__anchor-st {
  display: inline-block;
  padding-right: 10px;
  width: 85px;
  height: 14px;
}
.interview-modal__description {
  margin-bottom: 96px;
}
.interview-modal__description-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  width: 100%;
  height: 86px;
  border-radius: 5px;
  background: #f4f4f4;
  color: #303030;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .interview-modal__description-link:hover {
    opacity: 0.7;
  }
}
.interview-modal__txt {
  margin-bottom: 45px;
  text-align: center;
  font-weight: 600;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.interview-modal__close-st {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: -20px;
  height: 80px;
  background: #d9d9d9;
  border-radius: 0px 0px 30px 30px;
  color: #303030;
  text-align: center;
  font-family: var(--sub);
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem; /* 150% */
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .interview-modal__close-st:hover {
    opacity: 0.7;
  }
}

.sec-message {
  position: relative;
  padding-top: 105px;
}
.sec-message__head {
  margin-bottom: 46px;
}
.sec-message__catch-st {
  font-family: "Noto Sans";
  font-size: 2rem;
  font-weight: 600;
  line-height: 4rem; /* 200% */
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 479px) {
  .sec-message__catch-st {
    font-size: 1.6rem;
  }
}
.sec-message__txt {
  margin-top: 40px;
}
.sec-message__txt-st {
  font-family: "Noto Sans";
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.sec-message__name {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-top: 58px;
}
.sec-message__name-ph {
  width: 220px;
}
@media screen and (max-width: 479px) {
  .sec-message__name-ph {
    width: 200px;
  }
}
.sec-message__name-st {
  flex: 1;
  text-align: right;
  font-weight: 600;
  line-height: 4rem; /* 250% */
  letter-spacing: 0.08rem;
}

.sec-recruit {
  padding-top: 65px;
}
.sec-recruit__head {
  margin-bottom: 56px;
}
.sec-recruit .recruit-list__item {
  border-radius: 10px;
  background: var(--bc);
}
.sec-recruit .recruit-list__item:not(:first-child) {
  margin-top: 24px;
}
.sec-recruit .recruit-list__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-inline: auto;
  padding-block: 24px;
  padding-inline: 30px 16px;
  cursor: pointer;
}
@media screen and (max-width: 479px) {
  .sec-recruit .recruit-list__head {
    padding-block: 16px;
  }
}
.sec-recruit .recruit-list__head.selected .recruit-list__arrow {
  transform: scale(1, -1);
}
.sec-recruit .recruit-list__ttl {
  position: relative;
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.sec-recruit .recruit-list__arrow {
  transition: 0.4s;
}
.sec-recruit .recruit-list__cnt {
  display: none;
}
.sec-recruit .recruit-overview {
  padding-bottom: 47px;
  padding-inline: 16px;
}
.sec-recruit .recruit-overview__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  padding-block: 32px;
  padding-inline: 32px 12px;
  border-bottom: 1px solid #ffffff;
}
@media screen and (max-width: 479px) {
  .sec-recruit .recruit-overview__item {
    gap: 4.2666666667vw;
    padding-inline: 0;
  }
}
.sec-recruit .recruit-overview__ttl {
  width: 60px;
  color: #303030;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem; /* 171.429% */
  letter-spacing: 0.07rem;
}
.sec-recruit .recruit-overview__txt {
  flex: 1;
  color: #303030;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.4rem; /* 171.429% */
  letter-spacing: 0.07rem;
}

.sec-flow {
  padding-block: 80px;
}
.sec-flow .flow-list {
  position: relative;
  margin-top: 56px;
  margin-left: 12px;
}
.sec-flow .flow-list__item {
  position: relative;
}
.sec-flow .flow-list__item:not(:last-child) {
  padding-bottom: 40px;
}
.sec-flow .flow-list__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 2px;
  width: 1px;
  height: 100%;
  background: var(--mc);
}
.sec-flow .flow-list__ttl {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-left: 26px;
}
.sec-flow .flow-list__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--mc);
  border-radius: 50%;
}
.sec-flow .flow-list__ttl-st {
  font-family: "Noto Sans";
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 3.2rem; /* 133.333% */
  letter-spacing: 0.12rem;
}
@media screen and (max-width: 479px) {
  .sec-flow .flow-list__ttl-st {
    font-size: 1.8rem;
  }
}
.sec-flow .flow-list__txt {
  padding-left: 26px;
  font-family: "Noto Sans";
  font-weight: 500;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}
.sec-flow__txt {
  margin-top: 64px;
}
.sec-flow__txt-st {
  text-align: center;
  font-weight: 600;
  line-height: 3.2rem; /* 200% */
  letter-spacing: 0.08rem;
}

.sec-entry {
  padding-block: 80px;
  background: rgba(201, 204, 216, 0.2);
}

.mfp-bg {
  background: rgba(48, 48, 48, 0.6);
  box-shadow: 0px 0px 4px rgba(65, 65, 65, 0.160784);
}
.mfp-wrap.mfp-ready .mfp-content {
  max-width: 440px;
  max-height: 85%;
  overflow-y: auto;
}
.mfp-wrap.mfp-ready .mfp-content::-webkit-scrollbar {
  width: 6px;
}
.mfp-wrap.mfp-ready .mfp-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
.mfp-arrow-left:before, .mfp-arrow-right:before {
  border: none !important;
}
.mfp-arrow-left:after, .mfp-arrow-right:after {
  width: 32px !important;
  height: 20px !important;
  border: none !important;
  background: url(../images/recruit-lp/icon-arrow.svg) no-repeat center center/cover;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(52deg) brightness(105%) contrast(101%);
}
.mfp-arrow-left:after {
  margin-left: 18px !important;
  transform: scale(-1, 1);
}
.mfp-close-btn-in .mfp-close {
  top: auto !important;
  bottom: 100%;
  color: #fff !important;
}
.mfp-arrow.mfp-arrow-left.mfp-prevent-close, .mfp-arrow.mfp-arrow-right.mfp-prevent-close {
  display: none;
}

button.modal-prev,
button.modal-next,
button.mfp-close {
  display: none;
}

.content.modal-open {
  position: relative;
}
.content.modal-open::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(48, 48, 48, 0.6);
  z-index: 10;
}
.content .mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.interview-mfp .mfp-wrap,
.area-mfp .mfp-wrap {
  position: relative;
  z-index: 11;
}


/* form */
.contact__form {
  max-width: 900px;
  margin: auto;
  /* width:90%; */
}
.contact__form ul.form-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 80px;
}
.contact__form ul.form-tab button {
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: calc(50% - 24px);
  font-size: 24px;
  padding: 30px 0;
  cursor: pointer !important;
}

.form-content {
  width: 100%;
}
.form-content > div {
  width: 100%;
}
.form-content > div > form {
  width: 100%;
}

.wpcf7-list-item {
  margin: 0 0 1em 0;
}

form ul {
  display: block;
  margin-bottom: 32px;
  margin-top: 40px;
}

.item-notice {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 13px;
  line-height: 1.5;
  font-size: 14px !important;
    color: #222;
}
.item-notice strong {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
    color: #222;
}
.item-notice p {
  font-size: 14px;
    color: #222;
}

form ul li:last-of-type {
  width: 100%;
}
form ul .item-name {
  color: #2C2928;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row-reverse;
  gap: 15px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
}
form ul .item-name span.item-req {
  color: #fff;
  background: #1F2A66;
  border-radius: 21px;
  text-align: center;
  padding: 6px 28px;
  font-size: 14px;
	white-space: nowrap;
	border-radius: 100px;
}
form ul .item-name span.item-any {
  color: #fff;
  background: #9D9D9D;
  border-radius: 21px;
  text-align: center;
  padding: 6px 28px;
  font-size: 14px;
	white-space: nowrap;
	border-radius: 100px;
}
form ul .item-name span.item-noreq {
  color: #fff;
  background: #9D9D9D;
  border-radius: 21px;
  text-align: center;
  padding: 6px 28px;
  font-size: 14px;
	white-space: nowrap;
	border-radius: 100px;
}
form ul li:last-of-type .item-form {
  width: 100%;
  display: block;
}
form ul li:last-of-type .item-form span {
  width: 100%;
  display: block;
}
form ul li:last-of-type input {
  width: 100%;
  display: block;
}
form ul li:last-of-type textarea {
  width: 100%;
  display: block;
  resize: vertical;
  height: 240px;
}
form ul li:last-of-type input, form ul li:last-of-type textarea {
  background-color: #FFF;
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  opacity: 0.6;
}

.section-form__check1 {
  text-align: center;
  font-size: 14px;
}

.contact__form ul.form-tab button.active {
  color: #186a68;
  border-top: 1px solid #1F2A66;
  border-bottom: 1px solid #1F2A66;
}

.submit_btn {
  display: block;
  width: 100%;
  color: #000;
  text-align: center;
  border-radius: 100px;
  border: none;
  margin: auto;
  /* border: 1px solid #216724; */
  position: relative;
}
.submit_btn:hover {
  /* border: 1px solid rgba(108, 142, 120, 0.5); */
}

.section-form__check {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 48px;
}
.section-form__check span {
  background: none;
}

form [type=submit] {
  background: #1F2A66;
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  border: none;
  padding: 16px;
  margin: auto;
  margin-top: 0px;
  position: relative;
text-align: center;
  font-size: 18px;
  opacity: 1;
  transition: 0.3s;
}
form [type=submit]:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.submit_btn:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 6px;
  top: 50%;
  transform: translateY(-48%);
  right: 24px;
  background-size: cover !important;
  background-position: center center !important;
}

.wpcf7-spinner {
  display: none !important;
}

li.item-form.itemform_add_search {
  display: flex;
  justify-content: space-between;
  display: flex;
  justify-content: space-between;
}
li.item-form.itemform_add_search span {
  width: calc(100% - 140px);
}
li.item-form.itemform_add_search button {
  width: 120px;
  background: #707070;
  border: none;
  color: #111;
}

.form-caption {
  margin-bottom: 120px;
}
.form-caption p {
  font-size: 16px;
  text-align: center;
}

.section-form-privacy__cnt {
  height: 180px;
  overflow-y: scroll;
  padding: 18px;
  background-color: #FFF;
  margin-bottom: 32px;
}
.section-form-privacy__cnt h3 {
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 6px;
  margin-bottom: 12px;
  margin-top: 32px;
}
.section-form-privacy__cnt h3:first-of-type {
  margin-top: 0;
}
.section-form-privacy__cnt p {
  font-size: 14px;
}

.formError {
  z-index: 20 !important;
}

.xdsoft_datetimepicker {
  z-index: 21 !important;
}

@media screen and (max-width: 640px) {
  form ul {
    /* margin-bottom:32px; */
    margin-top: 5%;
    margin-bottom: 3%;
    flex-wrap: wrap;
  }
  form ul li:first-of-type, form ul li:last-of-type {
    width: 100%;
  }
  form ul li:first-of-type {
    margin-bottom: 16px;
  }
  .contact__form ul.form-tab::after {
    display: none;
  }
  .contact__form ul.form-tab button {
    width: calc(50% - 8px);
    font-size: 18px;
    padding: 16px 0;
  }
  form ul li:last-of-type input, form ul li:last-of-type textarea {
    padding: 16px;
    font-size: 14px;
  }
  form [type=submit] {
    font-size: 18px;
  }
  .form-caption {
    margin-bottom: 32px;
  }
  .form-caption p {
    font-size: 14px;
    text-align: left;
  }
  .contact__form ul.form-tab {
    margin-bottom: 40px;
  }
  .item-notice, li.item-form.itemform_add_search span {
    width: 100%;
  }
  .section-form__check {
    margin-bottom: 5%;
  }
}
.wpcf7-form-control {
  background-color: #fff;
  border: none;
  padding: 8px;
  font-size: 16px;
  letter-spacing: normal;
  box-sizing: border-box;
  opacity: 0.6;
  width: 100%;
}
.wpcf7-form-control.wpcf7-radio label {
  display: flex;
  gap: 12px;
  cursor: pointer;
}
.wpcf7-form-control.wpcf7-radio label input {
  width: 24px;
  height: 24px;
}
.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: calc(100% - 36px);
}

.form-caption p, form * {
}

.wpcf7-not-valid-tip {
/*   display: none !important; */
}

.contact__form .privacy-policy-scroll {
  background: #FFF;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.contact__form .privacy-policy-scroll p {
  font-size: 14px;
  line-height: 1.71;
  color: #2C2928;
}
.contact__form .privacy-policy-scroll p a {
  color: #5839FF;
}

.form__notice {
  font-size: 14px;
  margin-top: 16px;
    color: #222;
}

.privacy-policy-scroll {
  background: #FFF;
  padding: 20px 16px;
  max-height: 200px;
  height: 100%;
  margin-top: 24px;
  overflow: hidden scroll;
}
.privacy-policy-scroll::-webkit-scrollbar {
  width: 8px;
}
.privacy-policy-scroll::-webkit-scrollbar-thumb {
  background: #A7A7A7;
  border-radius: 10px;
}
.privacy-policy-scroll::-webkit-scrollbar-track {
  background: #FFF;
}
.privacy-policy-scroll .simplebar-track {
  width: 0.3rem;
}
.privacy-policy-scroll .simplebar-scrollbar {
  width: 0.3rem;
}
.privacy-policy-scroll .simplebar-scrollbar::before {
  width: 0.3rem;
  background-color: #fff;
  opacity: 1;
}
.privacy-policy-scroll p {
  font-size: 14px;
  line-height: 1.71;
}

@media (max-width: 640px) {
  .form__notice {
    font-size: 12px;
    margin-top: 2%;
  }
}

.item-form.itemform_add_search {
  display: flex!important;
  gap: 16px;
}
.item-form.itemform_add_search .wpcf7-form-control-wrap {
 width: calc(100% - 96px);
}
.item-form.itemform_add_search button.wpcf7c-elm-step1 {
  width: 80px;
  background: #1F2A66;
  border: none;
	text-align: center;
  color: #fff;
}
  font-size: 1.2rem;
  text-align: center;
}
form ul li:last-of-type .item-form {
  
}
span.wpcf7-form-control.wpcf7-radio {
  background: unset;
}

.privacy-box {
  background: #FFF;
  height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 16px 26px;
  box-sizing: border-box;
}
@media(max-width: 1024px) {
  .privacy-box {
    padding: 2% 2% 3%;
  }
}
@media(max-width: 640px) {
  .privacy-box {
    padding: 4% 4% 5%;
  }
}
.privacy-box h3 {
  color: #111111;
  font-size: 16px;
  line-height: 1.71;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2%;
}
.privacy-box p {
  color: #111111;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.05em;
}
.privacy-box p:not(:last-of-type) {
  margin-bottom: 4%;
}
.section-form__check1,
.section-form__check2 {
  padding: 24px;
  text-align: center;
}
span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  background: none;
}
span.wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required .wpcf7-list-item-label {
  font-size: 14px;
  color: #111111;
  line-height: 1;
}
.wpcf7-form-control-wrap[data-name="radio-plan"] {
}
span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wpcf7-form-control-wrap[data-name="radio-plan"] span.wpcf7-list-item {
  margin: 0;
}
.wpcf7-form-control.wpcf7-radio label input[type="radio"] {
  width: 18px;
  height: 18px;
  border: 1px solid #111111; /* 枠線の色 */
  border-radius: 50%; /* 丸くする */
  background-color: #FFFFFF; /* 背景色 */
  appearance: none; /* デフォルトのスタイルを無効化 */
  -webkit-appearance: none; /* Safari対応 */
  outline: none; /* フォーカス時の枠線を消す */
  cursor: pointer; /* ポインタを変更 */
}

/* チェック時のスタイル */
.wpcf7-form-control.wpcf7-radio label input[type="radio"]:checked {
  background-color: #000000!important; /* チェック時の背景色 */
  box-shadow: inset 0 0 0 4px #FFFFFF; /* 中央に白い丸を作る */
}

.wpcf7-form-control.wpcf7-radio label .wpcf7-list-item-label {
  width: 100%;
}
.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item {
  margin: 0!important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.wpcf7-list-item input[type="radio"] {
  width: auto!important;
}

.wpcf7-not-valid-tip {
  display: none!important;
}

.section-form__check1 .wpcf7-list-item {
  justify-content: center;
}
.section-form__check2 .wpcf7-list-item {
  justify-content: center;
}

.grecaptcha-badge {
	display: none!important;
}