/*
* 基本スタイル
* ┗共通スタイル
* ヘッダー
* ┗グローバルナビゲーション
* フッター
* 汎用
* パーツ
*/
/* LESS Document */
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  html {
    min-width: 320px;
  }
}
body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.8rem;
  font-feature-settings: "palt";
  color: #000;
  background: url(../img/bg_body.webp) repeat-y center -250px;
  position: relative;
}
body::before {
  content: '';
  display: block;
  width: 100%;
  height: 1000px;
  background: linear-gradient(to bottom, #ffe5c2 0, #ffe5c2 100px, rgba(255, 229, 194, 0) 1000px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.6vw;
    background-size: 150% auto;
  }
}
h1 {
  line-height: 1.2;
}
h2 {
  line-height: 1.3;
}
h3,
h4 {
  line-height: 1.4;
}
p {
  margin-bottom: 1em;
}
p:nth-last-child(1) {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  clear: both;
  border: none;
  border-top: #999 1px dotted;
  margin: 30px 0;
}
/* -------------------------------- テーブル */
table {
  margin: 0 0 20px;
  border-collapse: separate;
  border-spacing: 5px;
}
table th {
  border: none;
  background: #7C77CA;
  color: #FFF;
  text-align: center;
  padding: 15px 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  table th {
    padding: 5px 10px;
    font-size: 4vw;
  }
}
table td {
  border: none;
  background: #FFF;
  padding: 15px 20px;
}
@media screen and (max-width: 767px) {
  table td {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 767px) {
  .tableWrap {
    overflow: auto;
    white-space: nowrap;
  }
  .tableWrap::-webkit-scrollbar {
    background: #CCC;
    width: 15px;
    height: 15px;
    border-radius: 15px;
  }
  .tableWrap::-webkit-scrollbar-thumb {
    background: #F17900;
    border-radius: 15px;
  }
  table.tableResponsive thead {
    display: none;
  }
  table.tableResponsive th {
    display: block;
  }
  table.tableResponsive tr {
    display: block;
    margin-top: 10px;
  }
  table.tableResponsive td {
    display: block;
    border-top: none;
  }
  table.tableResponsive td::before {
    content: attr(aria-label);
    display: inline-block;
    width: 50px;
  }
}
/* -------------------------------- リスト */
.listDisc_01 {
  padding: 0 0 0 1.5rem;
}
.listDisc_01 li:not(:last-child) {
  margin: 0;
}
.listDisc_01 li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #000;
  margin-right: -6px;
  font-size: 1rem;
  text-align: center;
  vertical-align: 2px;
  position: relative;
  left: -12px;
}
.listDisc_02 {
  padding: 0 0 0 1.5rem;
}
.listDisc_02 li:not(:last-child) {
  margin: 0;
}
.listDisc_02 li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #333;
  margin-right: -6px;
  font-size: 1rem;
  text-align: center;
  vertical-align: 2px;
  position: relative;
  left: -12px;
}
.listDisc_03 {
  padding: 0 0 0 2rem;
}
.listDisc_03 li::before {
  content: '\f0da';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
.listDecimal_01 {
  list-style: decimal;
  padding-left: 25px;
}
.listDecimal_01 > li {
  text-indent: 0;
}
.listDecimal_02 {
  padding: 0 0 0 2.5rem;
}
.listDecimal_02 > li {
  counter-increment: number;
  margin-bottom: 10px;
}
.listDecimal_02 > li::before {
  content: '(' counter(number) ') ';
  display: inline-block;
  width: 2.5rem;
  margin: 0 0 0 -2.5rem;
}
/* -------------------------------- 定義リスト */
/* dlリスト
dl_01…PC横並び、SP以下改行
dl_02…PC、SP共に横並びリスト
*/
.dlList_01 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px 0;
}
.dlList_01 dt {
  width: 220px;
}
.dlList_01 dd {
  width: calc(100% - 220px);
}
@media screen and (max-width: 767px) {
  .dlList_01 {
    display: block;
  }
  .dlList_01 dt {
    width: 100%;
    padding: 8px 0 2px;
  }
  .dlList_01 dd {
    width: 100%;
    padding: 2px 0 8px;
  }
  .dlList_01 dd:nth-of-type(n+2) {
    border: none;
  }
}
.dlList_01.dlBorder > div {
  border-bottom: #666 1px dotted;
}
.dlList_02 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.dlList_02 dt {
  width: 200px;
}
.dlList_02 dd {
  width: calc(100% - 200px);
}
/*+++++++++++++++++++++++++++++++++++++++++++
	共通スタイル
+++++++++++++++++++++++++++++++++++++++++++ */
.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    width: auto;
    padding: 0 10px;
  }
}
main {
  min-height: 1000px;
  padding: 0 0 175px;
  overflow: hidden;
  position: relative;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	mv
+++++++++++++++++++++++++++++++++++++++++++ */
.mv {
  overflow: hidden;
  width: 100%;
  position: relative;
  overflow: visible;
}
.mv_inner {
  width: 1204px;
  min-height: 1200px;
  background: url(../img/mv_img_back.webp) no-repeat right top;
  position: absolute;
  top: -30%;
  left: 65%;
  z-index: -1;
  transform: translateX(-25%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .mv_inner {
    width: 100vw;
    max-height: 1000px;
    min-height: 520px;
    height: 168vw;
    margin: 65px calc(50% - 50vw) 0;
    background-size: 40vw auto;
    top: -12%;
  }
}
.mv_inner_circle {
  width: max-content;
  margin: 0 auto;
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .mv_inner_circle {
    width: 100vw;
  }
}
.mv_inner_circle img {
  display: block;
  transform-origin: center center;
}
.mv_inner_circle.carLeft img {
  animation: rotate 62s linear infinite reverse;
}
.mv_inner_circle.carRight img {
  animation: rotate 58s linear infinite;
}
.mv_inner_circle.centerLogo img {
  animation: rotate 90s linear infinite;
}
.mv_inner_img {
  width: max-content;
  margin: 0 auto;
  position: absolute;
  top: -20px;
  left: 13px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .mv_inner_img {
    width: calc(100vw + 160px);
    top: 0px;
    left: -70px;
  }
}
.mv_inner > img {
  position: absolute;
}
.mv_inner_bg1 {
  top: 260px;
  right: -150px;
}
@media screen and (max-width: 767px) {
  .mv_inner_bg1 {
    display: none;
  }
}
.mv_inner_bg2 {
  top: 66px;
  left: -66px;
}
@media screen and (max-width: 767px) {
  .mv_inner_bg2 {
    top: 5vw;
    left: -5vw;
  }
}
.mv_inner_bg3 {
  top: 656px;
  right: 24px;
}
@media screen and (max-width: 767px) {
  .mv_inner_bg3 {
    top: 64vw;
    right: -20px;
  }
}
.mv_inner_bg4 {
  top: 876px;
  left: 116px;
}
@media screen and (max-width: 767px) {
  .mv_inner_bg4 {
    top: 82vw;
    left: 0;
  }
}
.mv_inner_bg5 {
  top: 120px;
  left: 256px;
}
@media screen and (max-width: 767px) {
  .mv_inner_bg5 {
    display: none;
  }
}
.mv_inner_bg6 {
  top: 740px;
  right: -42px;
}
@media screen and (max-width: 767px) {
  .mv_inner_bg6 {
    display: none;
  }
}
.mv_inner_bg7 {
  position: absolute;
  top: 12px;
  left: 182px;
  animation: up-down 3.5s linear infinite alternate;
}
@media screen and (max-width: 767px) {
  .mv_inner_bg7 {
    left: 0;
  }
}
.mv_inner_bg7 img {
  transform: rotate(-25deg);
}
.mv_inner_bg8 {
  position: absolute;
  top: 36px;
  right: 324px;
  animation: up-down 4.2s linear infinite alternate-reverse;
}
@media screen and (max-width: 767px) {
  .mv_inner_bg8 {
    top: 90vw;
    right: 0;
  }
}
.mv_inner_bg9 {
  position: absolute;
  bottom: 360px;
  left: 45px;
  animation: up-down 2.8s linear infinite alternate-reverse;
}
@media screen and (max-width: 767px) {
  .mv_inner_bg9 {
    bottom: 25%;
  }
}
.mv_inner_bg9 img {
  transform: rotate(-90deg);
}
@keyframes up-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-25%);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	ctaArea
+++++++++++++++++++++++++++++++++++++++++++ */
.ctaArea {
  margin: 0 0 70px;
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1223px) {
  .ctaArea {
    padding: 80px 10px;
  }
}
@media screen and (max-width: 1023px) {
  .ctaArea {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 767px) {
  .ctaArea {
    padding: 20px 10px;
    border-radius: 0;
  }
}
.ctaArea ul {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: space-between;
  max-width: 1125px;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .ctaArea ul {
    flex-direction: column;
  }
}
.ctaArea ul li.btn {
  width: 100%;
  text-align: center;
}
.ctaArea ul li.btn.arrow a::after {
  right: 10px;
}
.ctaArea ul li.btn a {
  max-width: 530px;
  padding-right: 30px;
  min-height: 148px;
  height: 100%;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .ctaArea ul li.btn a {
    max-width: none;
    min-height: 30vw;
    padding-left: 15px;
    text-align: left;
  }
}
.ctaArea ul li.btn a[data-name="選考の流れ・募集要項"] {
  background: #E9659D;
}
.ctaArea ul li.btn a[data-name="エントリーフォーム"] {
  background: #E9656B;
}
.ctaArea ul li.btn a strong {
  font-weight: 700;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .ctaArea ul li.btn a strong {
    font-size: 7.2vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 10px;
  width: 100%;
  padding: 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 1223px) {
  header {
    padding: 0 5px;
    letter-spacing: -1px;
  }
}
@media screen and (max-width: 1023px) {
  header {
    letter-spacing: normal;
  }
}
header h1,
header strong a {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
  min-height: 66px;
  padding: 20px 0 0 5px;
  font-size: 1.6rem;
  color: #000;
  text-decoration: none;
  line-height: 1.2;
}
@media screen and (max-width: 1223px) {
  header h1,
  header strong a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  header h1,
  header strong a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  header h1,
  header strong a {
    font-size: clamp(1rem, 3.2vw, 1.6rem);
  }
}
header h1 img,
header strong a img {
  width: 76px;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	グローバルナビゲーション
+++++++++++++++++++++++++++++++++++++++++++ */
#pcNav {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1023px) {
  #pcNav {
    display: none;
  }
}
#pcNav .pcNav_inner {
  margin: 18px 0 0;
  background: #FFF;
  border-radius: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#pcNav .pcNav_inner ul {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 25px;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 36px;
  flex-shrink: 0;
}
@media screen and (max-width: 1223px) {
  #pcNav .pcNav_inner ul {
    gap: 15px;
    padding-left: 25px;
  }
}
#pcNav .pcNav_inner ul li a {
  display: block;
  height: 100%;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  color: #000;
}
#pcNav .pcNav_inner ul li a[data-name="Entry"] {
  width: 180px;
  background: #F17900;
  color: #FFF;
  font-size: 2.8rem;
  font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 1223px) {
  #pcNav .pcNav_inner ul li a[data-name="Entry"] {
    width: auto;
    padding: 0 30px;
    font-size: 2.6rem;
  }
}
#pcNav .pcNav_inner ul li a[data-name="Entry"]:hover {
  background: rgba(241, 121, 0, 0.7);
  color: #FFF;
}
#pcNav .pcNav_inner ul li a:hover {
  color: #F17900;
}
#pcNav [data-name="コーポレートサイト"] {
  display: block;
  padding: 0 10px 0px 20px;
  background: #4472C4;
  border-radius: 50px 0 1px 50px;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
  position: absolute;
  right: 0;
  bottom: -40px;
}
#pcNav [data-name="コーポレートサイト"]:hover {
  background: #6b8fd0;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	スマホサイズ用
+++++++++++++++++++++++++++++++++++++++++++ */
#gNav {
  display: none;
}
@media screen and (max-width: 1023px) {
  #gNav {
    display: block;
    width: 90vw;
    max-width: 400px;
    min-width: 0;
    background: #FFF url(../img/bg_drower.png) 0 -25px;
  }
  #gNav .drawer-menu {
    flex-direction: column;
    justify-content: flex-start;
    padding: 60px 20px 20px;
    background: none;
    gap: 0;
    box-shadow: none;
    border-radius: 0;
  }
  #gNav ul {
    display: block;
    width: 100%;
    padding: 0;
  }
  #gNav ul li {
    margin: 0 0 25px;
  }
  #gNav ul li .eng {
    display: block;
    text-shadow: 3px 0 #fff, -3px 0 #fff, 0 3px #fff, 0 -3px #fff, 2px 2px #fff, -2px 2px #fff, 2px -2px #fff, -2px -2px #fff, 1px 3px #fff, -1px 3px #fff, 3px 1px #fff, -3px 1px #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: bold;
  }
  #gNav ul li a {
    display: block;
    text-decoration: none;
    line-height: 1.2;
    color: #333;
    font-size: 1.3rem;
    font-weight: bold;
  }
  #gNav ul li a[data-name="トップページ"] .eng {
    color: #333;
  }
  #gNav ul li a[data-name="採用メッセージ"] .eng {
    color: #008F8F;
  }
  #gNav ul li a[data-name="先輩社員の声"] .eng {
    color: #49BAD8;
  }
  #gNav ul li a[data-name="VSCで働く"] .eng {
    color: #7C77CA;
  }
  #gNav ul li a[data-name="数字で見るVSC"] .eng {
    color: #F69525;
  }
  #gNav ul li a[data-name="募集要項"] .eng {
    color: #E9659D;
  }
  #gNav .subMenu {
    margin: 0 0 40px;
  }
  #gNav .subMenu a {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 46px;
    margin: 0 0 20px;
    color: #FFF;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    background-repeat: no-repeat;
    position: relative;
  }
  #gNav .subMenu a::before {
    content: '';
    display: block;
    position: absolute;
    background-size: contain;
    pointer-events: none;
  }
  #gNav .subMenu a[data-name="Entry"] {
    background: #F17900;
    font-family: 'Poppins', sans-serif;
  }
  #gNav .subMenu a[data-name="Entry"]::before {
    background-image: url(../img/img_robot_1.webp);
    width: 50px;
    height: 77px;
    top: -14px;
    right: -14px;
  }
  #gNav .subMenu a[data-name="コーポレートサイト"] {
    background: #4472C4;
    font-size: 1.6rem;
  }
  #gNav .subMenu a[data-name="コーポレートサイト"]::before {
    background-image: url(../img/img_robot_2.webp);
    width: 36px;
    height: 87px;
    top: -20px;
    left: -10px;
    transform: scale(-1, 1);
  }
  #gNav .instaBtn a {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: #FFF;
    border-radius: 50px;
    color: #EA336D;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  #gNav .bg1 {
    position: absolute;
    top: 268px;
    left: 160px;
    z-index: 0;
    animation: bg_drawer1 3s ease-in-out infinite alternate;
    transform-origin: bottom center;
    pointer-events: none;
  }
  #gNav .bg2 {
    position: absolute;
    top: 80px;
    right: 90px;
    z-index: 0;
    animation: bg_drawer2 6s ease-in-out infinite alternate;
    pointer-events: none;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bg_drawer1 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes bg_drawer2 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(80px);
  }
  100% {
    transform: translateX(0);
  }
}
/* +++++++++++++++++++++++++++++++++++++++++++ drawer */
@media screen and (max-width: 1023px) {
  .drawer--right .drawer-nav {
    right: -400px !important;
  }
  .drawer--right .drawer-menu {
    opacity: 0;
  }
  .drawer--right.drawer-open .drawer-hamburger {
    right: 0 !important;
    background: none;
  }
  .drawer--right.drawer-open .drawer-hamburger .drawer-text {
    color: #333;
  }
  .drawer--right.drawer-open .drawer-hamburger .drawer-text-open {
    display: none;
  }
  .drawer--right.drawer-open .drawer-hamburger .drawer-text-close {
    display: inline-block;
  }
  .drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon::before,
  .drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon::after {
    background: #333;
  }
  .drawer--right.drawer-open .drawer-menu {
    animation: opacity 0.5s 0.5s forwards;
  }
  .drawer--right.drawer-open .drawer-nav {
    right: 0 !important;
  }
}
header .drawer-toggle {
  display: none;
}
@media screen and (max-width: 1023px) {
  header .drawer-toggle {
    display: block;
  }
}
@media screen and (max-width: 1023px) {
  header .drawer-nav {
    z-index: 100;
    position: fixed;
    width: 28rem;
  }
  header .drawer-nav .drawer-menu {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  header .drawer-hamburger {
    background: #F17900;
    border-radius: 50px 0 0 50px;
    z-index: 10000;
    width: 106px;
    height: 51px;
    padding: 0;
    margin: 10px 0 0;
  }
  header .drawer-hamburger .drawer-text {
    white-space: nowrap;
    color: #FFF;
    position: absolute;
    top: 15px;
    left: 15px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
  }
  header .drawer-hamburger .drawer-text-open {
    display: inline-block;
  }
  header .drawer-hamburger .drawer-text-close {
    display: none;
  }
  header .drawer-hamburger:hover {
    background: #F17900;
  }
  header .drawer-hamburger-icon {
    margin: 0;
    position: absolute;
    top: 6px;
    background: #FFF;
    height: 4px;
    width: 25px;
    top: 23px;
    right: 15px;
  }
  header .drawer-hamburger-icon::before,
  header .drawer-hamburger-icon::after {
    background: #FFF;
    height: 4px;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	フッター
+++++++++++++++++++++++++++++++++++++++++++ */
footer {
  margin: 0 0 0;
  padding: 100px 0;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 50px 0;
  }
}
footer::before {
  content: '';
  display: block;
  width: 132px;
  height: 132px;
  background: rgba(255, 255, 255, 0.5);
  clip-path: circle(50% at 50% 110%);
  position: absolute;
  top: -132px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  footer .inner {
    overflow: hidden;
    padding-bottom: 30px;
  }
}
footer .inner nav {
  margin: 0 0 68px;
}
footer .inner nav > ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  footer .inner nav > ul {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  footer .inner nav > ul {
    width: auto;
  }
}
footer .inner nav > ul a {
  display: block;
  margin: 5px 0;
  text-decoration: none;
  color: #000;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  footer .inner nav > ul a {
    margin: 0;
    padding: 5px 10px;
    font-size: 3.2vw;
  }
}
footer .inner nav > ul a:hover {
  text-decoration: underline;
  color: #F17900;
}
footer .inner nav > ul > li.home {
  display: none;
}
@media screen and (max-width: 1023px) {
  footer .inner nav > ul > li.home {
    display: block;
  }
}
footer .inner nav > ul > li > a {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  footer .inner nav > ul > li > a {
    font-size: 3.6vw;
  }
}
footer .subMenu {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 75px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  footer .subMenu {
    flex-direction: column;
    align-items: center;
  }
}
footer .subMenu a {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 68px;
  color: #FFF;
  font-size: 2.8rem;
  font-weight: bold;
  text-decoration: none;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  footer .subMenu a {
    font-size: 5.6vw;
    width: 80vw;
    height: 15vw;
  }
}
footer .subMenu a::before {
  content: '';
  display: block;
  position: absolute;
  transition: transform 0.2s;
  pointer-events: none;
}
footer .subMenu a[data-name="Entry"] {
  background: #F17900;
  font-family: 'Poppins', sans-serif;
}
footer .subMenu a[data-name="Entry"]::before {
  background-image: url(../img/img_recruite-girl.webp);
  width: 92px;
  height: 137px;
  top: -20px;
  left: -20px;
}
footer .subMenu a[data-name="Entry"]:hover {
  background: rgba(241, 121, 0, 0.7);
}
footer .subMenu a[data-name="Entry"]:hover::before {
  transform: scale(-1, 1);
}
footer .subMenu a[data-name="コーポレートサイト"] {
  background: #4472C4;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  footer .subMenu a[data-name="コーポレートサイト"] {
    font-size: 4.4vw;
  }
}
footer .subMenu a[data-name="コーポレートサイト"]::before {
  background-image: url(../img/img_robot_2.webp);
  width: 50px;
  height: 124px;
  top: -28px;
  right: -20px;
}
footer .subMenu a[data-name="コーポレートサイト"]:hover {
  background: rgba(68, 114, 196, 0.7);
}
footer .subMenu a[data-name="コーポレートサイト"]:hover::before {
  transform: scale(-1, 1);
}
footer small {
  display: block;
  text-align: center;
  margin: 70px auto 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  footer small {
    font-size: 3.2vw;
  }
}
#pageTop,
#pageTop2 {
  width: 150px;
  padding: 35px 0 10px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  white-space: nowrap;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #pageTop,
  #pageTop2 {
    padding-bottom: 10px;
    font-size: 3.2vw;
  }
}
#pageTop:hover,
#pageTop2:hover {
  text-decoration: underline;
  color: #F17900;
}
#pageTop i,
#pageTop2 i {
  color: #F17900;
  font-size: 3rem;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
  color: #4472C4;
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:focus {
  outline: none;
}
a:hover,
a:active {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover img {
  opacity: 0.7;
  transition: all 0.3s ease;
}
a:hover img.noOpacity {
  opacity: 1;
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none;
  cursor: text;
  color: inherit;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
    cursor: pointer;
  }
}
a[target^="_blank"]::after {
  display: inline-block;
  margin: 0 3px;
  content: '\f35d';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
}
a[target^="_blank"]:has(img)::after,
a[target^="_blank"]:has(i)::after {
  content: none;
}
a[href$=".pdf"]::after {
  display: inline-block;
  margin-left: 3px;
  color: #E40000;
  content: '\f1c1';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-weight: 400;
}
a[href$=".pdf"]:has(img)::after {
  content: none;
}
/*+++++++++++++++++++++++++++++++++++++++++++ error */
.err {
  background-color: #FCC !important;
}
.error {
  color: #F00;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	汎用
+++++++++++++++++++++++++++++++++++++++++++ */
.clear {
  clear: both;
}
.texCenter {
  text-align: center!important;
}
.texLeft {
  text-align: left!important;
}
.texRight {
  text-align: right!important;
}
@media screen and (max-width: 767px) {
  .texCenter_sp {
    text-align: center!important;
  }
  .texLeft_sp {
    text-align: left!important;
  }
  .texRight_sp {
    text-align: right!important;
  }
}
.weightNormal {
  font-weight: 500!important;
}
.weightBold {
  font-weight: bold!important;
}
.borderNone {
  border: none!important;
}
.overflowHidden {
  overflow: hidden;
}
.lineHeight20 {
  line-height: 2;
}
.lineHeight19 {
  line-height: 1.9;
}
.lineHeight18 {
  line-height: 1.8;
}
.lineHeight17 {
  line-height: 1.7;
}
.lineHeight16 {
  line-height: 1.6;
}
.lineHeight15 {
  line-height: 1.5;
}
.lineHeight14 {
  line-height: 1.4;
}
.lineHeight13 {
  line-height: 1.3;
}
.lineHeight12 {
  line-height: 1.2;
}
.iBlock {
  display: inline-block;
}
.inline {
  display: inline;
}
.eng {
  font-family: 'Poppins', sans-serif;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	color
+++++++++++++++++++++++++++++++++++++++++++ */
.colorRed {
  color: #D90000;
}
/*+++++++++++++++++++++++++++++++++++++++++++
    font-size
+++++++++++++++++++++++++++++++++++++++++++*/
/* PC用（rem） */
.fs10 {
  font-size: 1rem !important;
}
.fs12 {
  font-size: 1.2rem !important;
}
.fs14 {
  font-size: 1.4rem !important;
}
.fs16 {
  font-size: 1.6rem !important;
}
.fs18 {
  font-size: 1.8rem !important;
}
.fs20 {
  font-size: 2rem !important;
}
.fs22 {
  font-size: 2.2rem !important;
}
.fs24 {
  font-size: 2.4rem !important;
}
.fs26 {
  font-size: 2.6rem !important;
}
.fs28 {
  font-size: 2.8rem !important;
}
.fs30 {
  font-size: 3rem !important;
}
.fs32 {
  font-size: 3.2rem !important;
}
.fs34 {
  font-size: 3.4rem !important;
}
.fs36 {
  font-size: 3.6rem !important;
}
.fs38 {
  font-size: 3.8rem !important;
}
.fs40 {
  font-size: 4rem !important;
}
.fs42 {
  font-size: 4.2rem !important;
}
.fs44 {
  font-size: 4.4rem !important;
}
.fs46 {
  font-size: 4.6rem !important;
}
.fs48 {
  font-size: 4.8rem !important;
}
/* SP用（MEDIA内で出力） */
@media screen and (max-width: 767px) {
  .fs10 {
    font-size: 2vw !important;
  }
  .fs12 {
    font-size: 2.4vw !important;
  }
  .fs14 {
    font-size: 2.8vw !important;
  }
  .fs16 {
    font-size: 3.2vw !important;
  }
  .fs18 {
    font-size: 3.6vw !important;
  }
  .fs20 {
    font-size: 4vw !important;
  }
  .fs22 {
    font-size: 4.4vw !important;
  }
  .fs24 {
    font-size: 4.8vw !important;
  }
  .fs26 {
    font-size: 5.2vw !important;
  }
  .fs28 {
    font-size: 5.6vw !important;
  }
  .fs30 {
    font-size: 6vw !important;
  }
  .fs32 {
    font-size: 6.4vw !important;
  }
  .fs34 {
    font-size: 6.8vw !important;
  }
  .fs36 {
    font-size: 7.2vw !important;
  }
  .fs38 {
    font-size: 7.6vw !important;
  }
  .fs40 {
    font-size: 8vw !important;
  }
  .fs42 {
    font-size: 8.4vw !important;
  }
  .fs44 {
    font-size: 8.8vw !important;
  }
  .fs46 {
    font-size: 9.2vw !important;
  }
  .fs48 {
    font-size: 9.6vw !important;
  }
  .fs10_sp {
    font-size: 2vw !important;
  }
  .fs12_sp {
    font-size: 2.4vw !important;
  }
  .fs14_sp {
    font-size: 2.8vw !important;
  }
  .fs16_sp {
    font-size: 3.2vw !important;
  }
  .fs18_sp {
    font-size: 3.6vw !important;
  }
  .fs20_sp {
    font-size: 4vw !important;
  }
  .fs22_sp {
    font-size: 4.4vw !important;
  }
  .fs24_sp {
    font-size: 4.8vw !important;
  }
  .fs26_sp {
    font-size: 5.2vw !important;
  }
  .fs28_sp {
    font-size: 5.6vw !important;
  }
  .fs30_sp {
    font-size: 6vw !important;
  }
  .fs32_sp {
    font-size: 6.4vw !important;
  }
  .fs34_sp {
    font-size: 6.8vw !important;
  }
  .fs36_sp {
    font-size: 7.2vw !important;
  }
  .fs38_sp {
    font-size: 7.6vw !important;
  }
  .fs40_sp {
    font-size: 8vw !important;
  }
  .fs42_sp {
    font-size: 8.4vw !important;
  }
  .fs44_sp {
    font-size: 8.8vw !important;
  }
  .fs46_sp {
    font-size: 9.2vw !important;
  }
  .fs48_sp {
    font-size: 9.6vw !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
    margin 0-100px（5px刻み）
+++++++++++++++++++++++++++++++++++++++++++*/
.mt0 {
  margin-top: 0px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mr0 {
  margin-right: 0px !important;
}
.ml0 {
  margin-left: 0px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.ml5 {
  margin-left: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.ml15 {
  margin-left: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mr35 {
  margin-right: 35px !important;
}
.ml35 {
  margin-left: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mr45 {
  margin-right: 45px !important;
}
.ml45 {
  margin-left: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.mt55 {
  margin-top: 55px !important;
}
.mb55 {
  margin-bottom: 55px !important;
}
.mr55 {
  margin-right: 55px !important;
}
.ml55 {
  margin-left: 55px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mr60 {
  margin-right: 60px !important;
}
.ml60 {
  margin-left: 60px !important;
}
.mt65 {
  margin-top: 65px !important;
}
.mb65 {
  margin-bottom: 65px !important;
}
.mr65 {
  margin-right: 65px !important;
}
.ml65 {
  margin-left: 65px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mr70 {
  margin-right: 70px !important;
}
.ml70 {
  margin-left: 70px !important;
}
.mt75 {
  margin-top: 75px !important;
}
.mb75 {
  margin-bottom: 75px !important;
}
.mr75 {
  margin-right: 75px !important;
}
.ml75 {
  margin-left: 75px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mr80 {
  margin-right: 80px !important;
}
.ml80 {
  margin-left: 80px !important;
}
.mt85 {
  margin-top: 85px !important;
}
.mb85 {
  margin-bottom: 85px !important;
}
.mr85 {
  margin-right: 85px !important;
}
.ml85 {
  margin-left: 85px !important;
}
.mt90 {
  margin-top: 90px !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mr90 {
  margin-right: 90px !important;
}
.ml90 {
  margin-left: 90px !important;
}
.mt95 {
  margin-top: 95px !important;
}
.mb95 {
  margin-bottom: 95px !important;
}
.mr95 {
  margin-right: 95px !important;
}
.ml95 {
  margin-left: 95px !important;
}
.mt100 {
  margin-top: 100px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.mr100 {
  margin-right: 100px !important;
}
.ml100 {
  margin-left: 100px !important;
}
@media screen and (max-width: 767px) {
  .mt0_sp {
    margin-top: 0px !important;
  }
  .mb0_sp {
    margin-bottom: 0px !important;
  }
  .mr0_sp {
    margin-right: 0px !important;
  }
  .ml0_sp {
    margin-left: 0px !important;
  }
  .mt5_sp {
    margin-top: 5px !important;
  }
  .mb5_sp {
    margin-bottom: 5px !important;
  }
  .mr5_sp {
    margin-right: 5px !important;
  }
  .ml5_sp {
    margin-left: 5px !important;
  }
  .mt10_sp {
    margin-top: 10px !important;
  }
  .mb10_sp {
    margin-bottom: 10px !important;
  }
  .mr10_sp {
    margin-right: 10px !important;
  }
  .ml10_sp {
    margin-left: 10px !important;
  }
  .mt15_sp {
    margin-top: 15px !important;
  }
  .mb15_sp {
    margin-bottom: 15px !important;
  }
  .mr15_sp {
    margin-right: 15px !important;
  }
  .ml15_sp {
    margin-left: 15px !important;
  }
  .mt20_sp {
    margin-top: 20px !important;
  }
  .mb20_sp {
    margin-bottom: 20px !important;
  }
  .mr20_sp {
    margin-right: 20px !important;
  }
  .ml20_sp {
    margin-left: 20px !important;
  }
  .mt25_sp {
    margin-top: 25px !important;
  }
  .mb25_sp {
    margin-bottom: 25px !important;
  }
  .mr25_sp {
    margin-right: 25px !important;
  }
  .ml25_sp {
    margin-left: 25px !important;
  }
  .mt30_sp {
    margin-top: 30px !important;
  }
  .mb30_sp {
    margin-bottom: 30px !important;
  }
  .mr30_sp {
    margin-right: 30px !important;
  }
  .ml30_sp {
    margin-left: 30px !important;
  }
  .mt35_sp {
    margin-top: 35px !important;
  }
  .mb35_sp {
    margin-bottom: 35px !important;
  }
  .mr35_sp {
    margin-right: 35px !important;
  }
  .ml35_sp {
    margin-left: 35px !important;
  }
  .mt40_sp {
    margin-top: 40px !important;
  }
  .mb40_sp {
    margin-bottom: 40px !important;
  }
  .mr40_sp {
    margin-right: 40px !important;
  }
  .ml40_sp {
    margin-left: 40px !important;
  }
  .mt45_sp {
    margin-top: 45px !important;
  }
  .mb45_sp {
    margin-bottom: 45px !important;
  }
  .mr45_sp {
    margin-right: 45px !important;
  }
  .ml45_sp {
    margin-left: 45px !important;
  }
  .mt50_sp {
    margin-top: 50px !important;
  }
  .mb50_sp {
    margin-bottom: 50px !important;
  }
  .mr50_sp {
    margin-right: 50px !important;
  }
  .ml50_sp {
    margin-left: 50px !important;
  }
  .mt55_sp {
    margin-top: 55px !important;
  }
  .mb55_sp {
    margin-bottom: 55px !important;
  }
  .mr55_sp {
    margin-right: 55px !important;
  }
  .ml55_sp {
    margin-left: 55px !important;
  }
  .mt60_sp {
    margin-top: 60px !important;
  }
  .mb60_sp {
    margin-bottom: 60px !important;
  }
  .mr60_sp {
    margin-right: 60px !important;
  }
  .ml60_sp {
    margin-left: 60px !important;
  }
  .mt65_sp {
    margin-top: 65px !important;
  }
  .mb65_sp {
    margin-bottom: 65px !important;
  }
  .mr65_sp {
    margin-right: 65px !important;
  }
  .ml65_sp {
    margin-left: 65px !important;
  }
  .mt70_sp {
    margin-top: 70px !important;
  }
  .mb70_sp {
    margin-bottom: 70px !important;
  }
  .mr70_sp {
    margin-right: 70px !important;
  }
  .ml70_sp {
    margin-left: 70px !important;
  }
  .mt75_sp {
    margin-top: 75px !important;
  }
  .mb75_sp {
    margin-bottom: 75px !important;
  }
  .mr75_sp {
    margin-right: 75px !important;
  }
  .ml75_sp {
    margin-left: 75px !important;
  }
  .mt80_sp {
    margin-top: 80px !important;
  }
  .mb80_sp {
    margin-bottom: 80px !important;
  }
  .mr80_sp {
    margin-right: 80px !important;
  }
  .ml80_sp {
    margin-left: 80px !important;
  }
  .mt85_sp {
    margin-top: 85px !important;
  }
  .mb85_sp {
    margin-bottom: 85px !important;
  }
  .mr85_sp {
    margin-right: 85px !important;
  }
  .ml85_sp {
    margin-left: 85px !important;
  }
  .mt90_sp {
    margin-top: 90px !important;
  }
  .mb90_sp {
    margin-bottom: 90px !important;
  }
  .mr90_sp {
    margin-right: 90px !important;
  }
  .ml90_sp {
    margin-left: 90px !important;
  }
  .mt95_sp {
    margin-top: 95px !important;
  }
  .mb95_sp {
    margin-bottom: 95px !important;
  }
  .mr95_sp {
    margin-right: 95px !important;
  }
  .ml95_sp {
    margin-left: 95px !important;
  }
  .mt100_sp {
    margin-top: 100px !important;
  }
  .mb100_sp {
    margin-bottom: 100px !important;
  }
  .mr100_sp {
    margin-right: 100px !important;
  }
  .ml100_sp {
    margin-left: 100px !important;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	TB用、SP用
+++++++++++++++++++++++++++++++++++++++++++ */
.tb_show,
.sp_show {
  display: none;
}
@media screen and (max-width: 1023px) {
  .tb_hide {
    display: none;
  }
  .tb_show {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp_hide {
    display: none;
  }
  .sp_show {
    display: block;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++ clearfix */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}
/*+++++++++++++++++++++++++++++++++++++++++++
	パーツ（色々なページで使うスタイル）
+++++++++++++++++++++++++++++++++++++++++++ */
.box {
  padding: 30px;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.1));
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .box {
    padding: 20px;
  }
}
.photoFrame {
  -webkit-box-shadow: 1px 1px 3px #999;
  box-shadow: 1px 1px 3px #999;
}
ul.iBlock {
  display: block;
}
ul.iBlock li {
  display: inline-block;
  margin: 0 15px 5px 0;
}
.btn a {
  background: #008F8F;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  position: relative;
  max-width: max-content;
  width: 100%;
  min-height: 60px;
  padding: 10px 30px;
  font-weight: bold;
}
.btn a .arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn a:hover {
  opacity: 0.7;
}
.btn.arrow a {
  justify-content: center;
  min-width: 313px;
  padding: 12px 50px 12px 22px;
  position: relative;
}
.btn.arrow a::after {
  content: '\f054';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
.btn2 a {
  background: #4472C4;
  color: #FFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  max-width: max-content;
  width: 100%;
  min-height: 45px;
  padding: 10px 30px;
  font-weight: bold;
  border-radius: 100px;
  position: relative;
}
.btn2 a .arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
}
.btn2 a:hover {
  opacity: 0.7;
}
.btn2 a[target^="_blank"] {
  min-width: 275px;
  justify-content: flex-start;
  padding: 12px 50px 12px 22px;
}
.btn2 a[target^="_blank"]::after {
  display: inline-block;
  content: '\f08e';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
.btn2 a[target^="_blank"]:has(img)::after,
.btn2 a[target^="_blank"]:has(i)::after {
  content: none;
}
.btn2.arrow a {
  justify-content: flex-start;
  min-width: 190px;
  padding: 12px 50px 12px 22px;
  position: relative;
}
.btn2.arrow a::after {
  content: '\f061';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
}
.columnBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox > * {
  display: block;
  width: 49%;
  max-width: none;
}
.columnBox::before,
.columnBox::after {
  content: '';
  order: 1;
  display: block;
  width: 49%;
  max-width: none;
}
.columnBox.col3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox.col3 > * {
  display: block;
  width: 32%;
  max-width: none;
}
.columnBox.col3::before,
.columnBox.col3::after {
  content: '';
  order: 1;
  display: block;
  width: 32%;
  max-width: none;
}
.columnBox.col4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
}
.columnBox.col4 > * {
  display: block;
  width: 24%;
  max-width: none;
}
.columnBox.col4::before,
.columnBox.col4::after {
  content: '';
  order: 1;
  display: block;
  width: 24%;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .columnBox.col1_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col1_sp > * {
    display: block;
    width: 100%;
    max-width: none;
  }
  .columnBox.col1_sp::before,
  .columnBox.col1_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 100%;
    max-width: none;
  }
  .columnBox.col2_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col2_sp > * {
    display: block;
    width: 49%;
    max-width: none;
  }
  .columnBox.col2_sp::before,
  .columnBox.col2_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 49%;
    max-width: none;
  }
  .columnBox.col3_sp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .columnBox.col3_sp > * {
    display: block;
    width: 32%;
    max-width: none;
  }
  .columnBox.col3_sp::before,
  .columnBox.col3_sp::after {
    content: '';
    order: 1;
    display: block;
    width: 32%;
    max-width: none;
  }
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 30px;
}
.flex.ai_fs {
  align-items: flex-start;
}
.flex.ai_c {
  align-items: center;
}
.flex.ai_fe {
  align-items: flex-end;
}
.flex.jc_fs {
  justify-content: flex-start;
}
.flex.jc_c {
  justify-content: center;
}
.flex .flexText {
  flex: 1;
}
.flex .flexImg {
  text-align: center;
}
.flex .flexRight {
  order: 1;
}
@media screen and (max-width: 767px) {
  .flex.sp_column {
    flex-direction: column;
  }
  .flex.sp_column .flexText {
    display: contents;
  }
  .flex.sp_column .flexText h2,
  .flex.sp_column .flexText h3,
  .flex.sp_column .flexText h4 {
    order: -2;
  }
  .flex.sp_column .flexImg {
    order: -1;
  }
  .flex.sp_block {
    display: block;
  }
}
.fadein {
  opacity: 0;
  transition: transform 1s, opacity 1s;
}
.fadein.fadeRight {
  transform: translate(100px, 0);
}
.fadein.fadeLeft {
  transform: translate(-100px, 0);
}
.fadein.fadeBottom {
  transform: translate(0, 100px);
}
.fadein.fadeScroll {
  opacity: 1;
  transform: translate(0, 0);
}
