@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: #3D3D3D;
}
body {
  overflow-x: hidden;
}
img {
  width: 100%;
  height: auto;
}
a {
  color: #000;
  text-decoration: none;
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}
a:hover {
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  cursor: pointer;
}
html, h1, h2, h3, h4, h5, h6, p, span {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
}
p {
  font-size: 1.6rem;
  text-align: justify;
}
span {
  font-size: 1.4rem;
}
.red {
  color: #F30A0E;
}
.sp_br{
  display: none;
}
@media screen and (max-width: 500px) {
  .sp_br{
    display: block;
  }
}
/*----------------------------------------------------
   ◆HEADER
----------------------------------------------------*/
header {
  position: fixed;
  z-index: 50;
  display: block;
  width: 100%;
}
.header_main-container {
  height: 80px;
  background-color: #fff;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_main-logo {
  display: flex;
  align-items: center;
}
.header_logo {
  width: 70%;
  margin-right: 15px;
}
.header_logo-text {
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 2.9rem;
  color: #575757;
}
.header_menu-wrapper {
  display: flex;
  align-items: center;
}
.header_menu-list {
  display: flex;
  align-items: center;
}
.header_menu-item {
  margin-right: 30px;
}
.header_menu-top {
  display: none;
}
.header_menu-item a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #575757;
}
.header_menu-item a:hover {
  opacity: 0.7;
}
.header_recruit-wrapper {
  display: flex;
  align-items: center;
}
.header_recruit-new-btn, .header_recruit-mid-btn {
  display: inline-block;
  border-radius: 56px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
  color: #fff;
  padding: 10px 25px;
}
.header_recruit-new-btn {
  margin-right: 15px;
  background-color: #F4BA3B;
  border: 2px solid #F4BA3B;
}
.header_recruit-new-btn:hover {
  color: #F4BA3B;
  background-color: #fff;
}
.header_recruit-mid-btn {
  background-color: #8080D6;
  border: 2px solid #8080D6;
}
.header_recruit-mid-btn:hover {
  color: #8080D6;
  background-color: #fff;
}
.header_global-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 194px;
  height: 44px;
  background-color: #900F00;
  border: 2px solid #900F00;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
}
.header_global-btn:hover{
  color: #900F00;
  background-color: #fff;
}
.header_br {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.2s;
}
.hamburger-menu {
  width: 50px;
  height: 50px;
  position: relative;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  cursor: pointer;
  display: none;
  z-index: 100;
}
.hamburger-menu__bar {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #242424;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: .2s;
}
.hamburger-menu__bar:first-child {
  top: 16px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 26px;
}
.hamburger-menu__bar:last-child {
  top: 36px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 50%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.header_banner-global {
  display: none;
}
@media screen and (max-width: 1280px) {
  .header_menu-item {
    margin-right: 20px;
  }
  .header_menu-item a {
    font-size: 1.3rem;
  }
  .header_recruit-new-btn, .header_recruit-mid-btn {
    font-size: 1.45rem;
  }
}
@media screen and (max-width: 1380px) {
  .header_main-container {
    height: 60px;
  }
  .header_logo {
    width: 114px;
  }
  .header_logo-text {
    font-size: 2rem;
  }
  .header_menu-item {
    margin-right: 20px;
  }
  .header_menu-item a {
    font-size: 1.3rem;
  }
  .hamburger-menu {
    display: inline-block;
    z-index: 99;
  }
  .header_main-container {
    position: relative;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: clamp(320px, 80vw, 800px);
    height: 100vh;
    background: #fff;
    z-index: 10;
    margin: 0;
    padding: 60px 20px 20px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, .08);
  }
  .navigation .header_menu-list {
    display: block;
  }
  .navigation .header_menu-item {
    margin: 0 20px;
    border-bottom: 1px solid #5E83C2;
  }
  .navigation .header_menu-item a {
    display: block;
    padding: 26px 0 8px;
    color: #242424 !important;
    text-decoration: none;
  }
  .navigation .header_recruit-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 20px;
  }
  .header_menu-top {
    display: block;
  }
  .header_recruit-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
  }
  .header_banner-global {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .header_main-container {
    padding: 16px 20px;
  }
  .hamburger-menu {
    margin-right: -12px;
  }
  .navigation .header_recruit-wrapper {
    flex-direction: column;
  }
  .header_recruit-wrapper a {
    width: 80%;
    margin-bottom: 20px;
  }
  .header_recruit-new-btn {
    margin-right: 0;
  }
}
@media screen and (max-width: 632px) {
  .header_recruit-wrapper a {
    width: 100%;
  }
  .header_recruit-new-btn, .header_recruit-mid-btn {
    height: 56px;
  }
}
@media screen and (max-width: 500px) {
  .navigation {
    width: clamp(320px, 90vw, 800px);
  }
}
/*----------------------------------------------------
   ◆FOOTER
----------------------------------------------------*/
.common_global {
  width: 100%;
  max-width: 1120px;
  margin: 80px auto;
}
.common_global a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
footer {
  background-color: #575757!important;
}
.footer_container {
  max-width: 1140px;
  padding: 60px 20px 20px;
  margin: 0px auto;
}
.footer_recruit-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer_recruit-new-btn, .footer_recruit-mid-btn, .footer_recruit-global-btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 31%;
  padding: 28px;
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
}
.footer_recruit-global-btn:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.footer_recruit-new-btn h3, .footer_recruit-mid-btn h3, .footer_recruit-global-btn h3 {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
}
.footer_recruit-new-btn {
  background-color: #F4BA3B;
}
.footer_recruit-mid-btn {
  background-color: #8080D6;
}
.footer_recruit-new-btn:hover .footer_recruit-entry, .footer_recruit-mid-btn:hover .footer_recruit-entry {
  width: 160px;
  height: 80px;
  transition: all 0.3s ease;
}
.footer_recruit-global-btn {
  background-image: url("../../cmn_img/recruit/footer/footer_recruit-global-btn.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer_recruit-entry {
  position: absolute;
  z-index: -1;
  right: 0px;
  bottom: -5px;
  width: 120px;
  height: 60px;
  padding-top: 45px;
  border-radius: 50% / 100% 100% 0 0;
  background-color: #0ECAA7;
  transition: all 0.3s ease;
}
.footer_recruit-global-entry {
  background-color: unset !important;
}
.footer_recruit-txt {
  position: absolute;
  bottom: 0;
  right: 2px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: 0.05rem;
  text-align: left;
  color: #fff;
  padding: 0px 35px 0px 35px;
}
.footer_recruit-txt::after {
  content: "";
  background-image: url("../../cmn_img/recruit/icon_arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 12px;
  bottom: 0px;
  display: inline-block;
  width: 17px;
  height: 22px;
}
.footer_sns-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 52px;
}
.footer_sns-container a {
  width: 120px;
}
.footer_sns-container a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.footer_sns-container a img {
  width: fit-content;
}
.footer_menu-list {
  display: flex;
  justify-content: space-between;
}
.footer_menu-list a:hover {
  opacity: 0.7;
}
.footer_menu-first {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}
.footer_menu-second-item {
  margin-top: 26px;
}
.footer_menu-second-item a {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
}
.footer_logo {
  display: block;
  width: 273px;
  margin: 70px auto 50px;
}
.footer_copyright {
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
/*footer*/
@media screen and (max-width: 1270px) {
  .footer_menu-first {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1180px) {
  .footer_container {
    max-width: -webkit-fill-available;
    max-width: -moz-available;
    margin: 0px 20px;
  }
  .footer_recruit-new-btn, .footer_recruit-mid-btn, .footer_recruit-global-btn {
    height: 120px;
    padding: 31px 28px 28px;
  }
  .footer_recruit-new-btn h3, .footer_recruit-mid-btn h3, .footer_recruit-global-btn h3 {
    font-size: 3.2rem;
  }
  .footer_recruit-entry p {
    font-size: 2rem;
    margin-left: 20px;
  }
  .footer_recruit-entry p::after {
    right: 25px;
    bottom: 2px;
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 1000px) {
  .footer_menu-first {
    font-size: 1.4rem;
  }
  .footer_recruit-new-btn, .footer_recruit-mid-btn, .footer_recruit-global-btn {
    height: 80px;
    padding: 19px 0 28px;
    border-radius: 20px;
  }
  .footer_recruit-new-btn h3, .footer_recruit-mid-btn h3, .footer_recruit-global-btn h3 {
    font-size: 2.5rem;
  }
  .footer_recruit-txt{
    font-size: 1.2rem;
    padding: 0px 28px 0px 38px;
  }
  .footer_recruit-entry {
    width: 100px;
    height: 50px;
  }
  .footer_recruit-txt::after {
    right: 12px;
    bottom: -6px;
    width: 14px;
    height: 22px;
  }
  .footer_recruit-new-btn:hover .footer_recruit-entry, .footer_recruit-mid-btn:hover .footer_recruit-entry {
    width: 130px;
    height: 65px;
    transition: all 0.3s ease;
  }
  .footer_logo {
    width: 200px;
  }
}
@media screen and (max-width: 750px) {
  .footer_menu-first {
    font-size: 1.3rem;
  }
  .footer_recruit-new-btn h3, .footer_recruit-mid-btn h3, .footer_recruit-global-btn h3 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 680px) {
  .footer_recruit-new-btn, .footer_recruit-mid-btn, .footer_recruit-global-btn {
    width: 70%;
    height: 120px;
  }
  .footer_recruit-container {
    flex-direction: column;
    align-items: center;
  }

  .footer_recruit-new-btn h3, .footer_recruit-mid-btn h3, .footer_recruit-global-btn h3 {
    font-size: 3.2rem;
  }
  .footer_recruit-entry {
    right: 8px;
    bottom: -25px;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    padding-top: 45px;
  }
  .footer_recruit-txt {
    position: absolute;
    bottom: 20px;
    right: 12px;
  }
  .footer_recruit-new-btn:hover .footer_recruit-entry, .footer_recruit-mid-btn:hover .footer_recruit-entry {
    width: 160px;
    height: 160px;
    bottom: -45px;
    border-radius: 80px;
    transition: all 0.3s ease;
  }
  .footer_recruit-new-btn, .footer_recruit-mid-btn, .footer_recruit-global-btn {
    padding: 34px 28px 28px;
    margin-bottom: 20px;
  }
  .footer_recruit-new-btn h3, .footer_recruit-mid-btn h3, .footer_recruit-global-btn h3 {
    text-align: left;
  }
  .footer_recruit-txt {
    position: absolute;
    font-size: 1.7rem;
    bottom: 20px;
    right: 12px;
  }
  .footer_recruit-txt::after {
    right: 12px;
    bottom: 0px;
    width: 17px;
    height: 22px;
  }
  .footer_menu-list {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer_menu-item {
    margin-bottom: 14px;
  }
  .footer_menu-item:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .footer_container {
    margin: 0px 20px;
    padding: 80px 0 20px;
  }
  .footer_recruit-new-btn, .footer_recruit-mid-btn, .footer_recruit-global-btn {
    width: 100%;
    height: 74px;
    border-radius: 20px;
  }
  .footer_recruit-new-btn, .footer_recruit-mid-btn, .footer_recruit-global-btn {
    padding: 16px 28px 28px;
  }
  .footer_recruit-new-btn h3, .footer_recruit-mid-btn h3, .footer_recruit-global-btn h3 {
    font-size: 2.8rem;
  }
  .footer_logo {
    width: 165px;
  }
}
@media screen and (max-width: 400px) {
  .footer_recruit-new-btn h3, .footer_recruit-mid-btn h3, .footer_recruit-global-btn h3 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 365px) {
  .footer_recruit-new-btn, .footer_recruit-mid-btn, .footer_recruit-global-btn {
    padding: 19px 28px 28px;
  }
  .footer_recruit-new-btn h3, .footer_recruit-mid-btn h3, .footer_recruit-global-btn h3 {
    font-size: 2.3rem;
  }
}
/*----------------------------------------------------
   ◆COMMON
----------------------------------------------------*/
.common_container-1120 {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.common_container-920 {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 1160px) {
  .common_container-1120 {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0 20px;
  }
  .common_banner-global {
    display: block;
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0 20px;
  }
}
@media screen and (max-width: 960px) {
  .common_container-920 {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0 20px;
  }
}
@media screen and (max-width: 632px) {
  .common_banner-global {
    margin: 30px 20px 0;
  }
  .common_global {
    margin: 0 auto 30px;
  }
}
/*----------------------------------------------------
   ◆TOP MAIN VISUAL
----------------------------------------------------*/
.top_mv {
  width: 100%;
  background-color: #F2F2F2;
  overflow: hidden;
}
.top_mv-container {
  position: relative;
  width: 1900px;
  height: 1000px;
  margin: 0 auto;
  background-color: #F2F2F2;
}
.top_mv-deco-circle01 {
  position: absolute;
  top: 30px;
  left: 48px;
  width: 170px;
  height: 170px;
}
.top_mv-deco-circle01 div {
  width: 170px;
  height: 170px;
  background-color: #57CBB6;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  left: 276px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: none;
  z-index: 3;
}
.top_mv-deco-circle02 {
  position: absolute;
  top: 46px;
  left: 450px;
  width: 329px;
  height: 329px;
}
.top_mv-deco-circle02 div {
  width: 329px;
  height: 329px;
  background-color: #F4BA3B;
  border-radius: 50%;
  position: absolute;
  top: 46px;
  left: 682px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: none;
  z-index: 3;
}
.top_mv-deco-circle03 {
  position: absolute;
  bottom: -128px;
  left: 45px;
  width: 210px;
  height: 210px;
}
.top_mv-deco-circle03 div {
  width: 440px;
  height: 440px;
  background-color: #FF97D6;
  border-radius: 50%;
  position: absolute;
  bottom: -184px;
  left: 275px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: none;
  z-index: 3;
}
.top_mv-deco-circle01 div.animate {
  animation: rippleGrow 1s ease-out forwards;
}
.top_mv-deco-circle02 div.animate {
  animation: rippleGrow 1s ease-out forwards;
}
.top_mv-deco-circle03 div.animate {
  animation: rippleGrow 1s ease-out forwards;
}
@keyframes rippleGrow {
  0% {
    transform: translate(-50%, -50%) scale(0.58);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.top_mv-deco-line01, .top_mv-deco-line02, .top_mv-deco-line03, .top_mv-deco-line04, .top_mv-deco-line05, .top_mv-deco-line06, .top_mv-deco-line07, .top_mv-deco-line08, .top_mv-deco-line09 {
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  position: absolute;
  width: 100px;
  object-fit: contain;
}
.top_mv-deco-line01, .top_mv-deco-line03, .top_mv-deco-line05, .top_mv-deco-line07, .top_mv-deco-line09 {
  transform: rotate(45deg) translate(0, 200px);
}
.top_mv-deco-line02, .top_mv-deco-line04, .top_mv-deco-line06, .top_mv-deco-line08 {
  transform: rotate(45deg) translate(0, -200px);
}
.top_mv-deco-line01.show, .top_mv-deco-line02.show, .top_mv-deco-line03.show, .top_mv-deco-line04.show, .top_mv-deco-line05.show, .top_mv-deco-line06.show, .top_mv-deco-line07.show, .top_mv-deco-line08.show, .top_mv-deco-line09.show {
  transform: rotate(45deg) translate(0, 0);
  opacity: 1;
}
.top_mv-deco-line01 {
  left: 709px;
  width: 92px;
}
.top_mv-deco-line01.show {
  bottom: 90px;
  opacity: 1;
}
.top_mv-deco-line02 {
  left: 922px;
  width: 92px;
}
.top_mv-deco-line02.show {
  top: 269px;
  opacity: 1;
}
.top_mv-deco-line03 {
  left: 1100px;
  width: 92px;
}
.top_mv-deco-line03.show {
  bottom: -79px;
  opacity: 1;
}
.top_mv-deco-line04 {
  left: 1294px;
  width: 92px;
}
.top_mv-deco-line04.show {
  top: 219px;
  opacity: 1;
}
.top_mv-deco-line05 {
  left: 1235px;
  width: 92px;
}
.top_mv-deco-line05.show {
  bottom: -195px;
  opacity: 1;
}
.top_mv-deco-line06 {
  left: 1569px;
  width: 92px;
}
.top_mv-deco-line06.show {
  top: 458px;
  opacity: 1;
}
.top_mv-deco-line07 {
  left: 1238px;
  width: 92px;
}
.top_mv-deco-line07.show {
  bottom: -536px;
  opacity: 1;
}
.top_mv-deco-line08 {
  left: 1423px;
  width: 92px;
}
.top_mv-deco-line08.show {
  top: 688px;
  opacity: 1;
}
.top_mv-deco-line09 {
  left: 1717px;
  width: 92px;
}
.top_mv-deco-line09.show {
  bottom: -71px;
  opacity: 1;
}
.top_mv-copy {
  position: absolute;
  top: -26px;
  left: 242px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  width: 872px;
  height: 872px;
  opacity: 0;
  transition: opacity 0.8s ease-in;
}
.top_mv-copy.visible {
  opacity: 1;
}
.top_mv-heading {
  font-family: "Outfit", sans-serif;
  font-size: 7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-left: -16px;
  color: #3D3D3D;
}
.top_mv-head-text {
  display: flex;
  align-items: center;
  margin-top: 30px;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.3;
  color: #3D3D3D;
  margin-left: -20px;
}
.top_mv-head-text::before {
  content: "";
  display: inline-block;
  width: 65px;
  height: 2px;
  background-color: #000;
  margin-right: 10px;
}
.top_mv-heading-br {
  display: none;
}
.top_mv-head-text-br {
  display: none;
}
@media screen and (max-width: 1500px) {
  .top_mv-deco-circle01 div {
    left: 51px;
  }
  .top_mv-deco-circle02 div {
    left: 457px;
  }
  .top_mv-deco-circle03 div {
    left: 50px;
  }
  .top_mv-deco-line01 {
    left: 488px;
  }
  .top_mv-deco-line02 {
    left: 701px;
  }
  .top_mv-deco-line03 {
    left: 879px;
  }
  .top_mv-deco-line04 {
    left: 1073px;
  }
  .top_mv-deco-line05 {
    left: 1014px;
  }
  .top_mv-deco-line06 {
    left: 1368px;
  }
  .top_mv-deco-line07 {
    left: 1017px;
  }
  .top_mv-deco-line08 {
    left: 1202px;
  }
  .top_mv-deco-line09 {
    left: 1496px;
  }
  .top_mv-copy {
    left: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .top_mv-container {
    height: 800px;
  }
  .top_mv-deco-circle01 div {
    width: 136px;
    height: 136px;
    top: 44px;
  }
  .top_mv-deco-circle03 div {
    width: 352px;
    height: 352px;
  }
  .top_mv-deco-line01, .top_mv-deco-line02, .top_mv-deco-line03, .top_mv-deco-line04, .top_mv-deco-line05, .top_mv-deco-line06, .top_mv-deco-line07, .top_mv-deco-line08, .top_mv-deco-line09 {
    width: 65px;
  }
  .top_mv-deco-line02 {
    left: 630px;
  }
  .top_mv-deco-line03 {
    left: 752px;
  }
  .top_mv-deco-line03.show {
    bottom: -45px;
  }
  .top_mv-deco-line04 {
    left: 893px;
  }
  .top_mv-deco-line04.show {
    top: 234px;
  }
  .top_mv-deco-line05 {
    left: 779px;
  }
  .top_mv-copy {
    top: -20px;
    width: 700px;
    height: 700px;
    padding-bottom: 108px;
  }
  .top_mv-heading {
    font-size: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .top_mv-container {
      height: 566px;
  }
  .top_mv-deco-circle03 div {
    width: 235px;
    height: 235px;
    left: 6px;
    bottom: -26px;
  }
  .top_mv-deco-circle01 div {
    width: 88px;
    height: 88px;
    top: 20px;
    left: 6px;
  }
  .top_mv-deco-circle02 div {
    width: 170px;
    height: 170px;
    top: 30px;
    left: 38px;
  }
  .top_mv-deco-line01, .top_mv-deco-line02, .top_mv-deco-line03, .top_mv-deco-line04, .top_mv-deco-line05, .top_mv-deco-line06, .top_mv-deco-line07, .top_mv-deco-line08, .top_mv-deco-line09 {
    width: 52px;
  }
  .top_mv-deco-line01.show {
    bottom: 56px;
    left: 260px;
  }
  .top_mv-deco-line02.show {
    top: 154px;
    left: 365px;
  }
  .top_mv-deco-line03.show {
    bottom: -41px;
    left: 469px;
  }
  .top_mv-deco-line04.show {
    top: 132px;
    left: 567px;
  }
  .top_mv-deco-line05.show {
    bottom: -116px;
    left: 533px;
  }
  .top_mv-deco-line06.show {
    top: 251px;
    left: 723px;
  }
  .top_mv-deco-line07.show {
    bottom: -291px;
    left: 535px;
  }
  .top_mv-deco-line08.show {
    top: 311px;
    left: 705px;
  }
  .top_mv-copy {
    top: 29px;
    width: 450px;
    height: 450px;
    padding-bottom: 108px;
  }
  .top_mv-heading {
    font-size: 4.5rem;
    margin-left: 9px;
    margin-top: 90px;
  }
  .top_mv-head-text{
    font-size: 1.4rem;
    margin-left: 14px;
  }
  .top_mv-head-text::before {
    width: 37px;
  }
}
@media screen and (max-width: 500px) {
  .top_mv-container {
    height: 798px;
  }
  .top_mv-deco-circle01 div {
    left: 60px;
    top: 89px;
    width: 59px;
    height: 59px;
  }
  .top_mv-deco-circle02 div {
    left: -68px;
    right: 15px;
    top: 148px;
    width: 110px;
    height: 110px;
  }
  .top_mv-deco-circle03 div {
    top: -167px;
    left: -43px;
    width: 155px;
    height: 155px;
  }
  .top_mv-deco-line01.show {
    width: 44px;
    bottom: 38px;
    left: 70px;
  }
  .top_mv-deco-line02.show {
    width: 44px;
    top: 457px;
    left: 163px;
  }
  .top_mv-deco-line03.show {
    width: 44px;
    bottom: -44px;
    left: 248px;
  }
  .top_mv-deco-line04.show {
    width: 44px;
    top: 438px;
    left: 335px;
  }
  .top_mv-deco-line05.show {
    width: 44px;
    bottom: -104px;
    left: 309px;
  }
  .top_mv-deco-line06.show {
    width: 44px;
    top: 546px;
    left: 470px;
  }
  .top_mv-deco-line07.show {
    width: 44px;
    left: 311px;
    bottom: -257px;
  }
  .top_mv-deco-line08.show {
    display: block;
    width: 44px;
    top: 506px;
    left: 543px;
  }
  .top_mv-copy {
    width: 580px;
    height: 580px;
    left: -93px;
    top: 116px;
    padding-left: 85px;
    padding-bottom: 64px;
  }
  .top_mv-head-box {
    position: relative;
  }
  .top_mv-head-inner {
    position: absolute;
    left: 50%;
    transform: translateX(-56%);
    width: max-content;
    top: -66px;
    margin-left: 20px;
  }
  .top_mv-heading {
    font-size: clamp(1.5rem, 10vw, 5rem);
    margin-left: 0;
    margin-top: 0;
  }
  .top_mv-head-text {
    font-size: 2.3rem;
    margin-left: 0;
    margin: 20px 0 0;
  }
  .top_mv-head-text::before {
    margin-right: 2px;
    width: 39px;
    height: 1.5px;
  }
}
@media screen and (max-width: 420px) {
  .top_mv-head-inner {
    transform: translateX(-60%);
  }
}
@media screen and (max-width: 400px) {
  .top_mv-container {
    height: 650px;
  }
  .top_mv-copy {
    width: 450px;
    height: 450px;
    top: -75px;
    left: -3%;
    top: 112px;
    padding-left: 6%;
  }
  .top_mv-deco-circle01 div {
    left: 18px;
    top: 92px;
  }
  .top_mv-deco-circle02 div {
    left: -157px;
    right: 6px;
    top: 113px;
    width: 80px;
    height: 80px;
  }
  .top_mv-deco-circle03 div {
    top: -122px;
    left: -43px;
    width: 110px;
    height: 110px;
  }
  .top_mv-deco-line01.show {
    width: 34px;
    bottom: 64px;
    left: 68px;
  }
  .top_mv-deco-line02.show {
    width: 34px;
    top: 386px;
    left: 112px;
  }
  .top_mv-deco-line03.show {
    width: 34px;
    bottom: -26px;
    left: 187px;
  }
  .top_mv-deco-line04.show {
    width: 34px;
    top: 366px;
    left: 252px;
  }
  .top_mv-deco-line05.show {
    width: 34px;
    bottom: -85px;
    left: 222px;
  }
  .top_mv-deco-line06.show {
    width: 34px;
    top: 452px;
    left: 357px;
  }
  .top_mv-deco-line07.show {
    width: 34px;
    left: 254px;
    bottom: -189px;
  }
  .top_mv-deco-line08.show {
    width: 34px;
    top: 562px;
    left: 285px;
  }
  .top_mv-head-box {
    position: relative;
  }
  .top_mv-head-inner {
    transform: translateX(-63%);
  }
  .top_mv-heading {
    font-size: clamp(1.5rem, 10vw, 3.8rem)
  }
  .top_mv-head-text {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}
@media screen and (max-width: 350px) {
  .top_mv-copy {
    padding-left: 4%;
  }
}
/*----------------------------------------------------
   ◆TOP CONTENTS
----------------------------------------------------*/
.top_banner-container {
  max-width: 1140px;
  padding: 0px 20px;
  margin: 110px auto 180px;
}
.top_banner-btn:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.top_about-section {
  position: relative;
  padding-bottom: 290px;
}
.top_about-deco {
  position: absolute;
  z-index: -1;
  left: 200px;
  bottom: -140px;
  width: 184px;
  height: 184px;
  background-color: #00DEB5;
  opacity: 0.1;
  border-radius: 50%;
}
.top_business-section {
  position: relative;
  text-align: right;
  padding-bottom: 169px;
}
.top_business-deco-001 {
  position: absolute;
  z-index: -1;
  left: -220px;
  top: -100px;
  width: 350px;
  height: 350px;
  background-color: #FFC500;
  opacity: 0.1;
  border-radius: 50%;
}
.top_business-deco-002 {
  position: absolute;
  z-index: -1;
  right: -220px;
  top: 50px;
  width: 484px;
  height: 484px;
  background-color: #FE4B00;
  opacity: 0.1;
  border-radius: 50%;
}
.top_business-deco-001_sp, .top_business-deco-002_sp {
  display: none;
}
.top_ourwork-section {
  padding-bottom: 210px;
}
.top_section-container {
  position: relative;
  margin: 0px auto;
  padding: 0 20px;
}
.guide_data-btn:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.top_section-heading {
  font-family: "Albert Sans", sans-serif;
  font-weight: 800;
  font-size: 9.6rem;
  letter-spacing: 0.03rem;
  line-height: 1.3;
}
.top_about-section .top_section-heading {
  color: #0ECAA7;
}
.top_business-section .top_section-heading {
  color: #F4BA3B;
}
.top_ourwork-section .top_section-heading {
  color: #5E83C2;
}
.top_section-subheading {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.3;
  color: #3D3D3D;
}
.top_section-text {
  max-width: 353px;
  margin-top: 50px;
  font-weight: 500;
  letter-spacing: 0.03rem;
  line-height: 2.0;
  color: #3D3D3D;
}
.top_business-section .top_section-text {
  margin-left: auto;
}
.top_about-img-box, .top_business-img-box, .top_ourwork-img-box {
  position: absolute;
}
.top_about-img img, .top_business-img img, .top_ourwork-img img{
  border: 15px solid #fff;
  border-radius: 41px;
}
.top_about-img-box, .top_ourwork-img-box, .ourwork-img {
  width: 52%;
  top: 135px;
  right: 0px;
}
.top_about-img img {
  box-shadow: -46px 48px 0px -14px #0ECAA7;
}
.top_business-img-box {
  width: 53%;
  top: 172px;
  left: 40px;
}
.top_business-img img {
  box-shadow: 46px 48px 0 -14px #F4BA3B;
}
.top_ourwork-img img {
  box-shadow: -46px 48px 0px -14px #5E83C2;
}
.top_section-btn {
  position: relative;
  display: inline-block;
  text-align: left;
  width: 268px;
  padding: 19px 85px;
  margin-top: 50px;
  border-radius: 56px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
  color: #fff;
  background-color: #FA5D1B;
}
.top_section-btn::after {
  content: "";
  background-image: url("../../cmn_img/recruit/icon_arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 19px;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 10px;
}
.top_section-btn:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.top_section-btn_sp {
  display: none;
}
.top_section-long-deco {
  width: 100%;
  max-height: 497px;
  overflow: hidden;
}
.top_interview-section {
  padding: 100px 0px;
  background-image: url("../../cmn_img/recruit/top/interview_deco-img.png");
  background-position: top right;
  background-size: 100%;
  background-color: #F1F6FF;
  text-align: center;
}
.top_interview-container {
  max-width: 1130px;
  padding: 0;
  margin: 0 auto;
}
.top_interview-section .top_section-heading {
  color: #8080D6;
}
.top_interview-section .top_section-subheading {
  margin-bottom: 100px;
}
.top_interview-wrapper {
  display: flex;
  grid-column-gap: 10px;
  padding: 0 20px;
}
.top_interview-box {
  display: flex;
  flex-wrap: wrap;
  grid-row-gap: 14px;
  width: 50%;
  margin: 0 3px;
}
.top_interview-subbox {
  display: flex;
  grid-column-gap: 10px;
}
.top_interview-oneimg {
  width: 100%;
}
.top_interview-twoimg {
  width: 50%;
}
.top_interview-oneimg img, .top_interview-twoimg img {
  border-radius: 20px;
}
.top_guide-section {
  padding: 80px 0px;
}
@media screen and (max-width: 1050px) {
  .top_banner-container {
    margin: 90px auto 140px;
}
  .top_mv-deco004 {
    width: clamp(40%, 60%, 70%);
  }
  .top_section-heading{
    font-size: 7rem;
  }
  .top_about-img img, .top_business-img img, .top_ourwork-img img {
    border-radius: 35px;
  }
  .top_about-img img {
    box-shadow: -46px 48px 0px -19px #0ECAA7;
  }
  .top_business-img img {
    box-shadow: 46px 48px 0 -19px #F4BA3B;
  }
  .top_ourwork-img img {
    box-shadow: -46px 48px 0px -19px #5E83C2;
  }
  .top_about-section {
    left: 0;
    padding-bottom: 150px;
  }
  .top_business-img-box {
    top: 110px;
  }
  .top_business-section {
    padding-bottom: 100px;
  }
  .top_ourwork-section {
    padding-bottom: 150px;
  }
  .top_about-img-box, .top_business-img-box, .top_ourwork-img-box {
    width: 45%;
  }
  .top_ourwork-img-box {
    right: 60px;
  }
  .top_interview-wrapper {
    display: flex;
    grid-column-gap: 3px;
    padding: 0 20px;
  }
  .top_interview-box {
      margin: 0 7px;
  }
}
@media screen and (max-width: 945px) {
  .top_mv-head-wrapper {
    top: clamp(-0px, -8vw, -80px);
    width: clamp(580px, 40vw, 866px);
    height: clamp(580px, 50vw, 866px);
  }

  .top_section-subheading {
    font-size: 3rem;
  }
  .top_about-img img, .top_business-img img, .top_ourwork-img img {
    border: 12px solid #fff;
    border-radius: 28px;
  }
  .top_about-img-box{
    right: 20px
  }
  .top_about-img img {
    box-shadow: -35px 35px 0px -11px #0ECAA7;
  }
  .top_business-img-box{
    left: 20px;
  }
  .top_business-img img {
    box-shadow: 40px 38px 0 -13px #F4BA3B;
  }
  .top_ourwork-img-box {
    right: 20px;
  }
  .top_ourwork-img img {
    box-shadow: -35px 35px 0px -11px #5E83C2;
  }
}
@media screen and (max-width: 830px) {
  .top_section-text{
    max-width: 330px;
  }
}
@media screen and (max-width: 800px) {
  .top_banner-container{
    margin: 80px auto 120px;
  }
  .top_section-subheading {
    font-weight: 600;
    font-size: 1.8rem;
  }
  .top_about-section {
    padding-bottom: 60px;
  }
  .top_section-text {
    max-width: 280px;
    margin-top: 40px;
  }
  .top_section-heading {
    font-size: 5.2rem;
  }
  .top_about-img-box{
    top: 38px;
  }
  .top_business-section {
    padding-bottom: 60px;
  }
  .top_business-img-box {
    width: 45%;
    top: 80px;
    left: 20px;
  }
  .top_ourwork-img-box{
    top: 80px;
  }
  .top_section-btn {
    width: 210px;
    padding: 13px 70px;
    font-size: 2rem;
    margin-top: 30px;
  }
  .top_section-btn::after {
    bottom: 11px;
  }
  
}
@media screen and (max-width: 690px) {
  .top_banner-container {
    margin: 40px 0 80px;
  }
  .top_section-container {
    display: flex;
    flex-direction: column;
  }
  .top_about-img-box {
    position: unset;
    width: calc(100% - 20px);
    margin: 0 0 0 auto;
  }
  .top_business-img-box {
    position: unset;
    width: calc(100% - 20px);
    margin: 0 auto 0 0;
  }
  .top_ourwork-img-box {
    position: unset;
    width: calc(100% - 20px);
    margin-left: 20px;
  }
  .top_about-img img {
    box-shadow: -36px 37px 0px -11px #0ECAA7;
  }
  .top_business-img img {
    box-shadow: 37px 36px 0 -11px #F4BA3B;
  }
  .top_ourwork-img img {
    box-shadow: -36px 37px 0px -11px #5E83C2;
  }
  .top_section-text {
    max-width: unset;
    margin: 20px 0 40px;
  }
  .top_ourwork-section{
    padding-bottom: 60px;
  }
  .top_about-section .top_section-btn, .top_business-section .top_section-btn, .top_ourwork-section .top_section-btn {
    display: none;
  }
  .top_section-btn_sp {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    width: 100%;
    padding: 19px 0;
    margin-top: 70px;
    border-radius: 56px;
    font-family: "Albert Sans", sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    letter-spacing: 0.05rem;
    color: #fff;
    background-color: #FA5D1B;
  }
  .top_section-btn_sp::after {
    content: "";
    background-image: url("../../cmn_img/recruit/icon_arrow-right-white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-left: 10px;
  }
}
@media screen and (max-width: 632px) {
  .top_section-heading {
    font-size: 4.6rem;
  }
  .top_section-subheading {
    font-size: 1.8rem;
  }
  .top_interview-section {
    padding: 60px 0px;
  }
  .top_interview-section .top_section-subheading {
    margin-bottom: 60px;
  }
  .top_guide-section {
    padding: 30px 0;
  }
  .top_business-deco-001 {
    left: -37px;
    top: -390px;
    width: 150px;
    height: 150px;
  }
  .top_business-deco-002 {
    right: -43px;
    top: -317px;
    width: 200px;
    height: 200px;
  }
  .top_business-deco-001_sp {
    display: block;
    position: absolute;
    z-index: -1;
    left: -37px;
    top: -260px;
    width: 150px;
    height: 150px;
    background-color: #FFC500;
    opacity: 0.1;
    border-radius: 50%;
  }
  .top_business-deco-002_sp {
    display: block;
    position: absolute;
    z-index: -1;
    right: -43px;
    top: -185px;
    width: 200px;
    height: 200px;
    background-color: #FE4B00;
    opacity: 0.1;
    border-radius: 50%;
  }
  .top_about-section {
    margin-bottom: 100px;
    padding-bottom: 0;
  }
  .top_section-btn_sp {
    margin-top: 65px;
    padding: 20px 0;
  }
  .top_about-deco {
    display: none;
  }
  .top_interview-oneimg_margin01 {
    margin-bottom: 10px;
  }
  .top_interview-oneimg_margin02 {
    margin-top: 10px;
  }
  .top_interview-box{
    margin: 0 6px;
  }
  .top_interview-wrapper {
    padding: 0;
  }
}

@media screen and (max-width: 500px) {
  .top_about-img img, .top_business-img img, .top_ourwork-img img {
    border: 9px solid #fff;
    border-radius: 24px;
  }
  .top_about-img img {
    box-shadow: -30px 31px 0px -9px #0ECAA7;
  }
  .top_business-img img {
    box-shadow: 31px 32px 0 -11px #F4BA3B;
  }
  .top_ourwork-img img {
    box-shadow: -30px 31px 0px -9px #5E83C2;
  }
  .top_business-section{
    padding-bottom: 100px;
  }
  .top_interview-oneimg img, .top_interview-twoimg img{
    border-radius: 11px;
  }
}
/*----------------------------------------------------
   ◆ABOUT
----------------------------------------------------*/
.about_mv {
  width: 100%;
  height: 324px;
  background-image: url("../../cmn_img/recruit/about/about_mv.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  margin-top: 80px;
}
.about_mv-container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
}
.about_mv-container h1 {
  color: #57CBB6;
  font-family: "Albert Sans", sans-serif;
  font-size: 9.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 27px;
}
.about_mv-jpn {
  color: #3D3D3D;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}
.about_btn-list {
  display: flex;
  justify-content: center;
  margin: 68px 0 158px;
}
.about_btn-link {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 15px;
  padding: 0 15px 15px;
  position: relative;
}
.about_btn-link img {
  display: none;
}
.about_btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: solid 2px #0ECAA7;
  transition: width 0.3s ease;
}
.about_btn-link:hover::after {
  width: 100%;
}
#message,
#philosophy,
#bases,
#profile,
#associated{
  scroll-margin-top: 80px;
}
.about_message {
  margin: 64px auto 100px;
  padding: 0 24px;
}
.about_message-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #0ECAA7;
  letter-spacing: .06em;
}
.about_message-heading::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #0ECAA7;
}
.about_message-title {
  margin: 10px 0 28px;
  font-size: 3.8rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 60px;
}
.about_message-container {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.about_message-left-wrapper {
  width: 96%;
}
.about_message-left_br {
  display: block;
}
.about_message-left-wrapper h3 {
  margin: 0 0 24px;
  color: #0ECAA7;
  font-weight: 800;
  font-size: 2.8rem;
  text-align: justify;
  line-height: 1.6;
}
.about_message-left-wrapper p {
  line-height: 2.1;
  text-align: justify;
}
.about_message-right-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.about_message-img {
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}
.about_message-right-list{
  display: flex;
  justify-content: flex-end;
}
.about_message-right-list {
  margin-top: 24px;
  text-align: left;
}
.about_message-comapny {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.9;
  margin-bottom: 6px;
}
.about_message-eng-name {
  font-family: "Albert Sans", sans-serif;
  display: block;
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 1.4rem;
  color: #0ECAA7;
  margin-bottom: 6px;
}
.about_message-jpn-name {
  margin: 0;
  font-size: 3.5rem;
  line-height: 1.35;
  font-weight: 400;
}
.about_philosophy {
  position: relative;
  background-image: url(../../cmn_img/recruit/about/about_philosophy.png);
  background-size: contain;
  padding: 100px 0 28px;
}
.about_philosophy-container {
  max-width: 1200px;
  background-color: #fff;
  margin: 0 auto clamp(40px, 7vw, 72px);
  padding: 96px;
  border-radius: 24px;
}
.about_philosophy-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #0ECAA7;
  background: #fff;
  border-radius: 999px;
}
.about_philosophy-heading::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: #0ECAA7;
}
.about_philosophy-title {
  margin: 0 0 80px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
}
.about_philosophy-section {
  background: #fff;
  border-radius: 20px;
}
.about_philosophy-top-wrapper, .about_philosophy-bottom-wrapper {
  text-align: center;
}
.about_philosophy-top-wrapper {
  margin-bottom: 40px;
}
.about_philosophy-top-wrapper h3, .about_philosophy-bottom-wrapper h3 {
  margin: 0 0 10px;
  line-height: 1.7;
  font-size: 3rem;
}
.about_philosophy-top-wrapper span, .about_philosophy-bottom-wrapper span {
  display: inline-block;
  font-size: 2.4rem;
  color: #0ECAA7;
  font-weight: 700;
  letter-spacing: .02em;
}
.about_philosophy-section .about_philosophy-top-wrapper img {
  display: block;
  width: 60%;
  max-width: 675px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.about_philosophy-slogan {
  display: inline-block;
  font-size: 2.4rem;
  color: #3D3D3D !important;
  font-weight: 700;
  letter-spacing: .02em;
  margin-top: 18px;
}
.about_philosophy-section .about_philosophy-top-wrapper span {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
}
.about_philosophy-txt {
  margin-top: 64px;
  line-height: 2;
  text-align: center;
}
.about_bases {
  background-image: url(../../cmn_img/recruit/about/about_bases.png);
  background-repeat: no-repeat;
  background-position: center 140px;
  background-size: contain;
  background-position: top center;
  margin-top: -70px;
  overflow-y: hidden;
}
.about_bases-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.about_bases-top {
  display: flex;
  flex-direction: column;
  padding-top: 170px;
}
.about_bases-top-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0ECAA7;
}
.about_bases-top-heading::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #0ECAA7;
}
.about_bases-top-title {
  margin: 8px 0 24px;
  font-size: 32px;
  font-weight: 800;
}
.about_bases-info {
  background: #ffffff;
  border: 2px solid #0ECAA7;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 936px;
  margin: 850px auto 165px;
}
.about_bases-info-heading {
  display: block;
  background: #0ECAA7;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  padding: 10px 16px;
  width: 100%;
  margin: 0 auto 18px;
}
.about_bases-info-container {
  display: grid;
  grid-template-columns: 1fr;
}
.about_bases-info-section {
  display: flex;
  align-items: flex-start;
  column-gap: 20px;
  margin-bottom: 15px;
}
.about_bases-info-area {
  display: inline-block;
  font-size: 1.8rem;
  min-width: 233px;
  font-weight: 700;
  position: relative;
  padding-left: 28px;
}
.about_bases-info-cities {
  margin: 0;
  line-height: 1.9;
}
.about_bases-info-section:nth-child(1) .about_bases-info-area::before {
  background: #F28C2D;
}
.about_bases-info-section:nth-child(2) .about_bases-info-area::before {
  background: #F2B100;
}
.about_bases-info-section:nth-child(3) .about_bases-info-area::before {
  background: #FF8BBE;
}
.about_bases-info-section:nth-child(4) .about_bases-info-area::before {
  background: #6F86FF;
}
.about_bases-info-area::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 9px;
  position: absolute;
  left: 0;
  top: 6px;
}
.about_bases-history {
  width: 100%;
  display: block;
  margin-bottom: 72px;
}
.about_bases-history:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.about_profile {
  background-image: url('../../cmn_img/recruit/about/about_profile.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  padding: 60px 0 80px;
  width: 100%;
}
.about_profile__outer-container{
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  max-width: 1080px;
}
.about_left-container, .about_right-container {
  box-sizing: border-box;
}
.about_left-container {
  min-width: 176px;
}
.about_right-container {
  width: 100%;
  max-width: 700px;
}
.about_left-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0ECAA7;
}
.about_left-heading::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #0ECAA7;
}
.about_left-title {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 600;
}
.about_right-section {
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #3D3D3D;
}
.about_right-section:first-child{
  padding-top: 0;
}
.about_right-section > span {
  display: block;
  font-weight: 700;
  color: #0ECAA7;
  font-size: 1.8rem;
  min-width: 218px;
}
.about_right-section-txt01, .about_right-section-txt02 {
  margin: 0;
  line-height: 1.9;
  font-size: 1.6rem;
}
.about_right-wrapper {
  display: flex;
  justify-content: flex-start;
}
.about_right-section-txt02 {
  text-align: right;
}
.about_associated {
  background: #0ECAA7;
  padding: 100px 0;
}
.about_associated-top-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 24px;
}
.about_associated-top-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.about_associated-top-heading::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #ffffff;
}
.about_associated-title {
  margin: 0 0 60px;
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
}
.about_associated-logo-container {
  max-width: 1120px;
  margin: 0 auto;
}
.about_associated-logo-section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.about_associated-logo-section a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 240px;
  height: 160px;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  padding: 16px 12px;
}
.about_associated-logo-section a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.about_associated-logo-section a img {
  display: block;
  max-width: 80%;
  max-height: 70px;
  height: auto;
  object-fit: contain;
}
.about_associated-logo-section a span {
  display: block;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}
.about_banner {
  width: 100%;
  max-width: 1120px;
  margin: 80px auto;
}
.about_banner a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.about_philosophy-br{
  display: none;
}
@media screen and (max-width: 1800px) {
  .about_bases-info {
    margin: 800px auto 165px;
  }
}
@media screen and (max-width: 1750px) {
  .about_bases-info {
    margin: 750px auto 165px;
  }
}
@media screen and (max-width: 1700px) {
  .about_bases-info {
    margin: 700px auto 165px;
  }
}
@media screen and (max-width: 1600px) {
  .about_bases-info {
    margin: 650px auto 165px;
  }
}
@media screen and (max-width: 1500px) {
  .about_bases-info {
    margin: 600px auto 165px;
  }
}
@media screen and (max-width: 1400px) {
  .about_bases-info {
    margin: 550px auto 165px;
  }
}
@media screen and (max-width: 1380px) {
  .about_mv {
    margin-top: 60px;
  }
  .anchor {
    position: relative;
  }
  
  .anchor::before {
    content: "";
    display: block;
    height: 60px;
    margin-top: -60px;
  }
  #philosophy,
  #bases,
  #profile,
  #associated{
    scroll-margin-top: 60px;
  }
}
@media screen and (max-width: 1300px) {
  .about_bases-info {
    margin: 500px auto 165px; 
  }
}
@media screen and (max-width: 1200px) {
  .about_bases-info {
    margin: 450px auto 165px;
  }
}
@media screen and (max-width: 1160px) {
  .about_mv-container {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: auto 20px;
  }
  .about_btn-list {
    flex-wrap: wrap;
    margin: 68px 20px 158px;
  }
  .about_btn-link {
    display: flex;
    align-items: center;
    width: 260px;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .about_btn-link img {
    display: block;
    width: 24px;
  }
  .about_philosophy-container {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0 20px 72px;
  }
  .about_bases-info {
    margin: 400px auto 165px;
  }
  .about_associated {
    width: -webkit-fill-available;
    width: -moz-available;
    padding: 100px 20px;
  }
  .about_banner {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 80px 20px 160px;
  }
}
@media screen and (max-width: 1120px) {
  .about_profile__outer-container {
    width: -moz-available;
    width: -webkit-fill-available;
      margin: 0 20px;
  }
}
@media screen and (max-width: 1000px) {
  .about_message-left-wrapper {
    width: 100%;
  }
  .about_bases-info {
    margin: 340px auto 165px
  }
  .about_message-container{
    grid-template-columns: 1fr 380px;
  }
}
@media screen and (max-width: 930px) {
  .about_bases-top {
    padding-top: 100px;
  }
  .about_bases-info {
    margin: 350px auto 165px
  }
}
@media screen and (max-width: 850px) {
  .about_bases-info {
    margin: 300px auto 165px;
  }
}
@media screen and (max-width: 800px) {
  .about_message-container {
    display: flex;
    gap: 40px;
  }
  .about_message-right-wrapper {
    margin-bottom: 60px;
  }
  .about_message-left-wrapper h3 {
    font-size: 2rem;
  }
  .about_message-right-box{
    display: flex;
    justify-content: space-around;
  }
  .about_message-comapny {
    text-align: left;
    margin: 0 20px 0 0;
  }
  .about_message-eng-name {
    font-size: 1.1rem;
    margin-bottom: 0;
  }
  .about_message-left-wrapper h3 {
    font-size: 2rem;
  }
  .about_message-jpn-name {
    font-size: 2.5rem;
  }
  .about_philosophy-section .about_philosophy-top-wrapper img{
    width: 90%;
  }
  .about_bases {
    background-size: 118%;
  }
  .about_bases-info {
    margin: 360px auto 165px
  }
  .about_profile {
    flex-direction: column;
  }
  .about_left-title {
    margin-bottom: 0;
  }
  .about_right-container {
    width: -webkit-fill-available;
    width: -moz-available;
    padding-top: 0;
  }
  .about_right-section {
    display: flex;
    flex-direction: column;
    padding: 40px 0 20px;
  }
  .about_associated-logo-section {
    justify-content: center;
    flex-wrap: wrap;
  }
  .about_philosophy-br{
    display: block;
  }
}
@media screen and (max-width: 740px) {
  .about_bases-info {
    margin: 330px auto 165px;
  }
}
@media screen and (max-width: 700px) {
  .about_bases-info {
    margin: 290px auto 165px;
  }
}
@media screen and (max-width: 650px) {
  .about_message-container {
    flex-direction: column-reverse;
    gap: unset;
  }
  .about_message-title{
    margin-bottom: 40px;
  }
  .about_message-right-list{
    width: 100%;
    justify-content: space-between;
  }
  .about_message-right-box{
    width: 100%;
  }
  .about_message-right-box div{
    margin-left: auto;
  }
  .about_message-jpn-name {
    min-width: 145px;
  }
  .about_message-comapny {
    text-align: left;
    margin: 0 20px 0 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .about_btn-list{
    margin: 40px 20px 80px;
  }
  .about_philosophy{
    padding: 60px 0 28px;
  }
  .about_philosophy-section .about_philosophy-top-wrapper img{
    width: 60%;
  }
  .about_associated-logo-section a span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 632px) {
  .about_bases-info {
    margin: 180px auto 165px;
  }
  .about_btn-list {
    justify-content: space-between;
    margin: 40px 20px 80px;
  }
  .about_btn-link {
    width: 44%;
    font-size: 1.6rem;
  }
  .about_btn-link:nth-child(1), .about_btn-link:nth-child(3), .about_btn-link:nth-child(5) {
    margin-left: 0;
    padding-left: 0;
  }
  .about_btn-link:nth-child(2), .about_btn-link:nth-child(4), .about_btn-link:nth-child(6) {
    margin-right: 0;
    padding-right: 0;
  }
  .about_message {
    margin: 0 auto 100px;
  }
  .about_message-title, .about_message-left-wrapper h3, .about_bases-top-title, .about_left-title {
    font-size: 2.2rem;
  }
  .about_bases-top-title{
    margin-bottom: 40px;
  }
  .about_bases-info-area{
    margin-bottom: 5px;
  }
  .about_bases-info-section{
    margin-bottom: 20px;
  }
  .about_message-left_br {
    display: none;
  }
  .about_message-jpn-name {
    font-size: 3rem;
  }
  .about_philosophy {
    margin: 60px 0 0;
  }
  .about_philosophy-container {
    padding: 40px 20px;
  }
  .about_philosophy-title {
    margin: 0 0 40px;
  }
  .about_philosophy-container {
    margin: 0 20px 30px;
  }
  .about_philosophy-heading {
    font-size: 1.6rem;
  }
  .about_philosophy-heading::before {
    width: 18px;
    height: 18px;
  }
  .about_philosophy-top-wrapper h3, .about_philosophy-bottom-wrapper h3 {
    font-size: 1.6rem;
  }
  .about_philosophy-section .about_philosophy-top-wrapper span, 
  .about_philosophy-top-wrapper span,
  .about_philosophy-bottom-wrapper span{
    font-size: 1.5rem;
    font-weight: 500;
  }
  .about_philosophy-txt {
    font-size: 1.4rem;
    margin-top: 40px;
  }
  .about_bases {
    background-image: unset;
    margin-top: 0;
  }
  .about_bases-top {
    padding-top: 60px;
  }
  .about_bases-info-section {
    flex-direction: column;
  }
  .about_bases-info {
    margin: 0 auto 40px;
    padding: 20px 20px 0;
  }
  .about_bases-history{
    margin-bottom: 60px;
  }
  .about_right-section > span{
    margin-bottom: 10px;
  }
  .about_profile__outer-container {
    flex-direction: column;
  }
  .about_right-section:first-child{
    padding-top: 40px;
  }
  .about_associated-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  .about_associated-logo-section {
    justify-content: space-between;
  }
  .about_associated-logo-section a {
    width: 47%;
    height: 120px;
    padding: 0;
  }
  .about_associated-logo-section a span {
    font-size: 1.4rem;
    margin-top: -6px;
  }
  .about_associated-top-heading{
    font-size: 1.6rem;
  }
  .about_banner {
    margin: 30px 20px;
  }
}
@media screen and (max-width: 500px) {
  .about_mv {
    height: 140px;
    background-image: url("../../cmn_img/recruit/about/about_mv_sp.png");
    background-position: right;
    margin-top: 60px;
  }
  .about_mv-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about_mv-container h1 {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  .about_mv-jpn {
    font-size: 1.4rem;
  }
  .about_philosophy-section .about_philosophy-top-wrapper img {
    width: 90%;
  }
  .about_btn-link {
    width: 47%;
    font-size: 1.4rem;
    margin: 0 0 12px;
    padding: 0;
  }
  .about_bases-info {
    padding: 20px;
  }
  .about_bases-info-area {
    padding-left: 0;
  }
  .about_bases-info-area::before {
    display: none;
  }
  .about_left-container, .about_right-container {
    margin: 0;
  }
  .about_associated {
    padding: 60px 20px;
  }
  .about_associated-logo-section {
    gap: 20px;
  }
  .about_associated-logo-section a {
    width: 46%;
  }
}
@media screen and (max-width: 400px) {
  .about_btn-link {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 340px) {
  .about_btn-link {
    font-size: 1.1rem;
  }
  .about_associated-logo-section a {
    width: 45%;
  }
}
/*----------------------------------------------------
   ◆BUSINESS
----------------------------------------------------*/
.business_mv {
  width: 100%;
  height: 324px;
  background-image: url("../../cmn_img/recruit/business/business_mv.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  margin-top: 80px;
}
.business_mv-container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
}
.business_mv-container h1 {
  color: #F4BA3B;
  font-family: "Albert Sans", sans-serif;
  font-size: 9.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 27px;
}
.business_mv-jpn {
  color: #3D3D3D;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}
.business_onestop {
  padding: 120px 0 82px;
}
.business_onestop-eng {
  display: block;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #F4BA3B;
  margin-bottom: 10px;
}
.business_onestop-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.6;
  margin: 0 0 40px;
}
.business_onestop-txt {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 2;
}
.business_jobs {
  padding: 10px 0 60px;
}
.business_jobs-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.business_jobs-section h3 {
  font-size: 3rem;
  ;
  font-weight: 800;
  margin: 0 0 52px;
  position: relative;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
.business_jobs-section h3::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 44px;
  height: 10px;
  border-radius: 9999px;
  margin-right: 12px;
  margin-top: 24px;
}
.business_jobs-container:nth-child(1) .business_jobs-section h3::after {
  background: #8080D6;
}
.business_jobs-container:nth-child(2) .business_jobs-section h3::after {
  background: #F4BA3B;
}
.business_jobs-container:nth-child(3) .business_jobs-section h3::after {
  background: #0ECAA7;
}
.business_jobs-container:nth-child(4) .business_jobs-section h3::after {
  background: #FA5D1B;
}
.business_jobs-section p {
  font-size: 1.8rem;
  line-height: 2;
  margin: 0;
  max-width: 560px;
}
.business_jobs-img {
  width: 468px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  flex: 0 0 460px;
  display: block;
}
.business_other {
  padding: 40px;
  border: 2px solid #F4BA3B;
  border-radius: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  margin-bottom: 160px;
}
.business_other-container {
  width: fit-content;
}
.business_other-eng {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  letter-spacing: .08em;
  color: #F4BA3B;
}
.business_other-eng::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #F4BA3B;
  display: inline-block;
}
.business_other-title {
  margin: 10px 0 20px;
  font-size: 3rem;
  line-height: 1.6;
  text-align: left;
  font-weight: 700;
}
.business_other-container p {
  font-size: 1.8rem;
  ;
  margin-bottom: 40px;
}
.business_onestop-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 56px;
  border-radius: 30px;
  font-size: 2.2rem;
  background-color: #F4672C;
  color: #fff;
  font-weight: 600;
  margin: 0 0 0 auto;
}
.business_onestop-link img {
  width: 28px;
  margin-left: 8px;
}
.business_onestop-link:hover {
  opacity: 0.5;
  transition: 0.15s;
}
.business_other-img {
  width: 520px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-left: 60px;
}
@media screen and (max-width: 1380px) {
  .business_mv {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1160px) {
  .business_mv-container {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: auto 20px;
  }
  .business_jobs-section {
    margin-right: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .business_jobs-img {
    width: 430px;
  }
  .business_other-img{
    width: 430px;
  }
}
@media screen and (max-width: 900px) {
  .business_jobs-img {
    width: -webkit-fill-available;
    width: -moz-available;
    max-width: 300px;
  }
}
@media screen and (max-width: 840px) {
  .business_other {
    margin-bottom: 80px;
    padding: 20px;
  }
  .business_other-container {
    width: 100%;
    margin-right: 60px;
  }
  .business_other-img {
    width: 100%;
    max-width: unset;
    margin: 0 0 40px;
  }
  .business_onestop-link {
    margin: 0 auto;
  }
}
@media screen and (max-width: 700px) {
  .business_other picture{
    width: -webkit-fill-available;
    width: -moz-available;
  }
  .business_other-img{
    width: -webkit-fill-available;
    width: -moz-available;
    max-width: unset!important;
  }
  .business_other {
    flex-direction: column-reverse;
  }
  .business_other-container {
    margin-right: 0;
  }
}
@media screen and (max-width: 632px) {
  .business_jobs{
    padding: 0 
  }
  .business_jobs-container {
    flex-direction: column-reverse;
  }
  .business_jobs-img {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
  .business_jobs-section h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .business_jobs-section h3::after {
    width: 65px;
    height: 6px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .business_mv {
    height: 140px;
    background-image: url("../../cmn_img/recruit/business/business_mv_sp.png");
    background-position: right;
    margin-top: 60px;
  }
  .business_mv-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .business_mv-container h1 {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  .business_mv-jpn{
    font-size: 1.6rem;
  }
  .business_jobs-section h3,
  .business_other-title{
    font-size: 2.2rem;
  }
  .business_onestop {
    padding: 60px 0 62px;
  }
  .business_onestop-title {
    font-size: 2rem;
  }
  .business_jobs-section p{
    font-size: 1.6rem;
  }
  .business_other-img{
    max-height:180px;
  }
}
/*----------------------------------------------------
   ◆DATA
----------------------------------------------------*/
.data_mv {
  width: 100%;
  height: 324px;
  background-image: url("../../cmn_img/recruit/data/data_mv.png?250912-02");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  margin-top: 80px;
}
.data_mv-container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
}
.data_mv-container h1 {
  color: #5E83C2;
  font-family: "Albert Sans", sans-serif;
  font-size: 9.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 27px;
}
.data_mv-jpn {
  color: #3D3D3D;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}
* {
  box-sizing: border-box;
}
.data_heading {
  margin: 100px auto 40px;
  padding: 14px 24px;
  background: #5E83C2;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: .06em;
  border-radius: 28px;
}
.data_info {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 132px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.data_info-outer-section {
  display: flex;
  flex-direction: column;
  width: calc((100% - 10px) * 2 / 3);
  gap: 10px;
}
.data_info-section01, .data_info-section02, .data_info-section04 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #F2F5FA;
  border-radius: 24px;
  padding: 45px 20px;
}
.data_info-section03 {
  display: flex;
  grid-column: span 4;
  justify-content: space-between;
  align-items: center;
  background: #F2F5FA;
  width: 100%;
  border-radius: 24px;
  padding: 29px 24px;
}
.data_info-section01, .data_info-section04 {
  width: calc(50% - 5px);
}
.data_info-section02 {
  width: calc((100% - 20px) / 3);
}
.data_info-section03 {
  width: calc((100% - 10px) / 1);
}
.data_info-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.data_info h3 {
  margin: 0 0 35px;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  min-height: unset;
}
.data_info-heading02 {
  min-height: 90px;
}
.data_info-heading03 {
  margin-bottom: 4px !important;
}
.data_info-heading04 {
  margin-bottom: 0 !important;
}
.data_info-domestic {
  display: flex !important;
  align-items: baseline;
}
.data_employees {
  width: 260px;
  height: auto;
  display: block;
  margin: 0 auto 30px;
}
.data_info-section01 .data_employees, .data_info-section01 .data_info-wrapper {
  display: none;
}
.data_info-section01:first-child .data_employees, .data_info-section01:first-child .data_info-wrapper {
  display: block;
}
.data_info-wrapper, .data_info-wrapper02 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.data_info-wrapper02 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.data_info-wrapper03{
  display: flex;
  align-items: first baseline;
}
.data_info-wrapper03 .data_info-txt{
  margin-left: 5px;
}
.data_info-japan {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin: -72px 0 0 300px;
}
.data_info-number {
  font-family: "Albert Sans", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: #5E83C2;
  display: flex;
  align-items: baseline;
}
.data_info-txt {
  font-size: 2.4rem;
}
.data_info-txt02 {
  font-size: 1.5rem;
  margin-top: 20px;
}
.data_holiday, .data_calendar, .data_clock, .data_remote-work, .data_baby {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}
.data_info-gender {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0 0 auto;
}
.data_info-gender-container-left, .data_info-gender-container-right {
  width: 40%;
  text-align: center;
}
.data_info-gender-container-left strong, .data_info-gender-container-right strong {
  font-size: 1.8rem;
}
.data_info-gender-section {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 40px;
}
.data_info-gender-number {
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
  color: #5E83C2;
}
.data_info-gender-icon {
  font-size: 2.2rem;
  color: #5E83C2;
}
.data_info-gender-img {
  width: 160px;
  height: auto;
  display: block;
  margin: 8px auto 0;
}
.data_info-colon::before {
  content: ":";
  display: block;
  font-size: 48px;
  line-height: 1;
  color: #5E83C2;
  margin-top: 30px;
  padding: 0 4px;
}
.data_info-baby {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 4px;
}
.data_info-baby-container {
  text-align: center;
}
.data_info-baby-gender01 {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.data_info-number, .data_info-gender-number {
  font-variant-numeric: tabular-nums;
}
.data_info-section01, .data_info-section02 {
  min-height: 260px;
}
.data_info-colon::before {
  position: relative;
  top: -6px;
}
.data_info-ttl {
  font-size: 24px;
  margin: 0 0 16px;
  color: #333333;
}
.chart {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  margin-top: 50px;
}
.chart-roles {
  background: conic-gradient(#93ACE2 0deg 104.4deg, #5E83C2 104.4deg 345.6deg, #C1CFEF 345.6deg 360deg);
}
.chart-regions {
  background: conic-gradient(#5E83C2 0deg 80.6deg, #93ACE2 80.6deg 166.8deg, #C1CFEF 166.8deg 349.3deg, #DEE6F6 349.3deg 360deg);
}
.label {
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: center;
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.label02 {
  position: absolute;
  display: flex;
  align-items: flex-end;
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.label02 div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.label-tag {
  font-size: 16px;
  color: #FFFFFF;
  margin: 0 0 -16px;
}
.label-num {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  margin: 0;
}
.label-num .number {
  font-size: 7rem;
}
.data_icon {
  width: 34px;
}
.label-num .unit, .label-num .unit {
  font-size: 2.8rem;
  margin-bottom: 11px;
}
.label-mini {
  font-size: 1.4rem;
  margin: 0 0 4px;
  color: #5E83C2;
}
.label-num-mini .number {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 5px 5px 0;
  color: #5E83C2;
}
.role-sales {
  left: 75%;
  top: 33%;
}
.role-sales {
  left: 74%;
  top: 30%;
}
.role-creative {
  left: 29%;
  top: 64%;
}
.chart-roles .role-admin {
  left: 33%;
  top: -8%;
}
.chart-regions .role-admin {
  left: 31%;
  top: -8%;
}
.region-jpkr {
  left: 70%;
  top: 26%;
}
.region-jpkr .label-num {
  font-size: 5rem;
}
.region-china {
  left: 77%;
  top: 63%;
}
.region-china .label-num {
  font-size: 5rem;
}
.region-seasia {
  left: 27%;
  top: 64%;
}
.region-us-eu {
  left: 26%;
  top: -9%;
}
.region-us-eu .label-mini, .region-us-eu .label-num-mini {
  color: #5E83C2;
}
.data_employees {
  width: 100%;
  max-width: 187px;
}
.data_info-gender-img {
  width: 100%;
  max-width: 191px;
}
.data_holiday {
  width: 100%;
  max-width: 110px;
}
.data_calendar {
  width: 100%;
  max-width: 100px;
}
.data_clock {
  width: 100%;
  max-width: 120px;
}
.data_clock {
  width: 100%;
  max-width: 120px;
}
.data_remote-work {
  width: 140px;
  margin-bottom: 60px;
}
.data_remote-work_br01 {
  display: block;
}
.data_remote-work_br02 {
  display: none;
}
.data_baby {
  width: 100%;
  max-width: 110px;
}
.data_work {
  width: 100%;
  max-width: 95px;
  margin-bottom: 56px;
}
.data_info-note01 {
  font-size: 1.8rem;
  text-align: right;
  margin: 0 0 0 auto;
}
.data_info-note02 {
  font-size: 1.8rem;
  margin: 20px 0 0;
}
.data_world {
  width: 100%;
  max-width: 400px;
}
.data_info-world{
  display: flex;
  align-items: flex-end;
}
.data_info-world .data_info-txt{
  margin-bottom: 3px;
}
.data_japan {
  width: 100%;
  max-width: 395px;
}
.data_all-employees {
  width: 100%;
  max-width: 180px;
  margin-bottom: 20px;
}
.data_sales {
  width: 100%;
  max-width: 92px;
  margin: 0 22px 0 auto;
}
.data_translation {
  width: 100%;
  max-width: 102px;
  margin-bottom: 20px;
}
.data_ranking {
  width: 100%;
  max-width: 91px;
  margin-bottom: 20px;
}
.data_product {
  width: 100%;
  max-width: 111px;
  margin-bottom: 20px;
}
.data_voice {
  width: 100%;
  background-image: url("../../cmn_img/recruit/data/data_voice.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 80px 0 100px;
}
.data_voice > .data_voice-container {
  width: 1100px;
  margin: 0 auto 80px;
}
.data_voice > .data_voice-container:first-child {
  margin-bottom: 40px;
  text-align: center;
}
.data_voice-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 77px;
}
.data_voice-top span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  letter-spacing: .08em;
  color: #5E83C2;
}
.data_voice-top span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5E83C2;
  display: inline-block;
}
.data_voice-jpn {
  margin: 10px 0 0;
  font-size: 3rem;
  line-height: 1.6;
  text-align: left;
  font-weight: 700;
}
.data_voice-section {
  background: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 80px;
  padding: 32px 40px 36px;
}
.data_voice-section h4 {
  width: 423px;
  margin: 0 auto 28px;
  padding: 10px 28px;
  border-radius: 9999px;
  background: #5E83C2;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .04em;
}
.data_voice-gold {
  background: #F4BA3B !important;
}
.data_voice > .data_voice-container:nth-of-type(3) h4, .data_voice > .data_voice-container:nth-of-type(5) h4 {
  background: #F4BA3B;
  color: #FFFFFF;
}
.data_voice-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.data_voice-box {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 16px 6px;
}
.data_voice-box:last-child {
  border-bottom: none;
}
.data_voice-box img {
  width: 44px;
  height: auto;
  flex: 0 0 44px;
  object-fit: contain;
}
.data_voice-box:first-of-type {
  margin-bottom: -10px;
  padding-bottom: 0;
}
.data_voice-box:first-of-type img {
  width: 77px;
  object-fit: contain;
  margin-left: -22px;
  margin-bottom: 12px;
}
.data_voice-box:nth-of-type(2) img, .data_voice-box:nth-of-type(3) img {
  margin-right: 10px;
}
.data_voice-box p {
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 2px;
}
.data_voice-txt {
  border-bottom: solid 4px #5E83C2;
  font-weight: 600;
  margin: 30px 0 !important;
  padding: 10px 0 3px;
}
.color-blue {
  color: #5E83C2;
}
.color-yellow {
  color: #F4BA3B;
}
.bg-blue {
  background: #5E83C2;
}
.bg-yellow {
  background: #F4BA3B;
}
.data_info-sales {
  display: flex;
}
.data_info-work {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1380px) {
  .data_mv {
      margin-top: 60px;
  }
}
@media screen and (max-width: 1160px) {
  .data_mv-container {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: auto 20px;
  }
  .data_mv-section {
    margin-right: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .data_info-section01, .data_info-section02, .data_info-section03, .data_info-section04, .data_info-outer-section {
    width: calc(100%);
  }
}
@media screen and (max-width: 1000px) {
  .data_mv {
    background-position: right -150px center;
  }
}
@media screen and (max-width: 860px) {
  .data_mv {
    background-position: right -250px center;
  }
}
@media screen and (max-width: 740px) {
  .data_mv h1 {
    font-size: 7rem;
  }
  .data_mv-jpn {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  .data_info-section03 {
    display: flex;
    flex-direction: column;
  }
  .data_info-wrapper02, .data_info-work {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .data_info-wrapper03 {
    display: flex;
    align-items: baseline;
    margin-top: 50px;
  }
  .data_info-heading02 {
    min-height: unset;
  }
  .data_info-section02 img {
    width: 100%;
    max-width: 140px;
  }
  .data_employees {
    max-width: 100px;
    margin: 0 0 0 40px;
  }
  .data_info-gender-img {
    max-width: 150px;
  }
  .data_holiday, .data_clock, .data_calendar, .data_translation, .data_ranking, .data_product {
    margin: 0 0 0 40px;
  }
  .data_world {
    width: 90%;
    margin-bottom: 20px;
  }
  .data_info-japan {
    margin: -72px 0 0 auto;
  }
  .data_japan {
    width: 90%;
  }
  .data_remote-work_br01 {
    display: none;
  }
  .data_remote-work_br02 {
    display: block;
  }
  .data_info-sales {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 30px;
  }
  .data_sales {
    margin: 0 0 0 40px;
    max-width: 85px;
  }
  .data_info-list p {
    display: block;
    margin-bottom: 30px;
  }
  .data_voice-section h4 {
    width: -webkit-fill-available;
    width: -moz-available;
    margin-bottom: 0;
  }
  .data_voice-box:nth-of-type(2) img, .data_voice-box:nth-of-type(3) img {
    margin: 0 0 0 5px;
  }
}
@media screen and (max-width: 500px) {
  .data_mv {
    height: 140px;
    background-image: url("../../cmn_img/recruit/data/data_mv_sp.png");
    background-position: right;
    margin-top: 60px;
  }
  .data_mv-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .data_mv-container h1 {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  .data_mv-jpn {
    font-size: 1.6rem;
  }
  .data_info {
    margin: 0 auto 60px;
  }
  .data_info-section01, .data_info-section02 {
    min-height: unset;
  }
  .data_info-section01, .data_info-section02, .data_info-section04 {
    padding: 30px 20px;
  }
  .data_info-note01{
    font-size: 1.4rem;
  }
  .data_info-txt02{
    font-size: 1.4rem;
  }
  .data_info-wrapper03 {
    margin-top: 30px;
  }
  .data_info-wrapper02, .data_info-work {
    align-items: flex-end;
  }
  .data_heading {
    font-size: 2.2rem;
    margin: 60px 0 40px;
  }
  .data_info h3 {
    font-size: 2.4rem;
    margin: 0 auto 30px;
  }
  .data_info-txt {
    font-size: 1.8rem;
  }
  .data_voice-section {
    margin-bottom: 20px;
    padding: 20px;
  }
  .data_voice-box{
    align-items: center;
  }
  .data_voice-box:first-of-type img {
    width: 60px;
    object-fit: contain;
    margin: 16px 0 0 -10px;
  }
  .data_voice {
    margin: 50px 0 1px;
  }
  .data_voice-top {
    margin-bottom: 40px;
  }
  .data_info-domestic {
    display: flex !important;
    align-items: baseline;
  }
  .data_info-gender-number, .data_info-number {
    font-size: 8rem;
  }
  .data_info-gender {
    gap: 6px;
  }
  .data_info-gender-img {
    max-width: 130px;
  }
  .data_holiday {
    max-width: 100px !important;
  }
  .data_clock {
    max-width: 90px !important;
  }
  .data_calendar {
    max-width: 80px !important;
  }
  .data_remote-work {
    max-width: 100px !important;
    margin: 0 0 0 30px;
  }
  .data_baby {
    max-width: 70px !important;
  }
  .data_work {
    max-width: 60px !important;
    margin: 0 0 0 30px;
  }
  .data_info-baby {
    margin-top: 20px;
  }
  .chart {
    width: 360px;
    height: 360px;
  }
  .chart-roles .role-admin {
    left: 34%;
    top: -6%;
  }
  .label-num-mini .number{
    font-size: 3rem;
  }
  .chart-regions .role-admin {
    left: 32%;
    top: -6%;
  }
  .region-jpkr .label-num{
    font-size: 4rem;
  }
  .data_info-work .data_info-section02 img {
    max-width: 80px !important;
  }
  .data_info-world {
    display: flex;
    align-items: baseline;
  }
  .data_info-world:first-child {
    margin-right: 20px;
  }
  .data_info-japan {
    margin: -72px 35px 0 auto;
  }
  .data_all-employees {
    max-width: 110px !important;
  }
  .data_info-employees {
    margin-top: 20px;
  }
  .data_translation {
    max-width: 90px !important;
  }
  .data_ranking {
    max-width: 70px !important;
  }
  .data_product {
    max-width: 90px !important;
  }
  .data_info-sales .data_info-wrapper {
    display: flex;
  }
  .data_info-section02 img{
    margin-bottom: 0;
  }
  .data_info-code{
    margin-top: 30px;
  }
  .data_voice-section h4{
    font-size: 1.8rem;
    padding: 10px 15px;
  }
  .data_voice-txt{
    border-bottom: solid 2px #5E83C2;
  }
}
@media screen and (max-width: 410px) {
  .data_employees {
    margin: 0 0 0 20px;
  }
  .data_holiday, .data_clock, .data_calendar, .data_translation, .data_ranking, .data_product {
    margin: 0px 0 0 20px;
  }
  .data_info-gender-number, .data_info-number {
    font-size: 6.5rem;
  }
  .chart {
    width: 320px;
    height: 320px;
  }
  .label-num .number {
    font-size: 5rem;
  }
  .chart-roles .role-admin {
    left: 33%;
    top: -8%;
  }
  .chart-regions .role-admin {
    left: 30%;
    top: -7%;
  }
}
@media screen and (max-width: 390px) {
  .data_employees {
    max-width: 80px;
    margin: 0 0 0 40px;
  }
  .data_info-gender-img {
    max-width: 110px;
  }
  .data_holiday {
    max-width: 80px !important;
  }
  .data_calendar {
    max-width: 65px !important;
  }
  .data_clock {
    max-width: 68px !important;
  }
  .data_remote-work {
    max-width: 80px !important;
    margin: 0 0 0 20px;
  }
  .data_baby {
    max-width: 55px !important;
  }
  .data_work {
    max-width: 55px !important;
    margin: 0 0 0 20px;
  }
  .data_info-japan {
    margin: -72px 18px 0 auto;
  }
  .data_translation {
    max-width: 75px !important;
  }
  .data_ranking {
    max-width: 60px !important;
  }
  .data_ranking {
    max-width: 60px !important;
  }
  .chart {
    width: 290px;
    height: 290px;
  }
  .role-admin {
    left: 28%;
  }
  .data_product {
    max-width: 75px !important;
  }
}
@media screen and (max-width: 370px) {
  .data_info-number {
    font-size: 6rem;
  }
  .data_holiday, .data_clock, .data_calendar, .data_translation, .data_ranking, .data_product {
    margin: 0px 0 0 10px;
  }
  .chart {
    width: 270px;
    height: 270px;
  }
  .label-num .number {
    font-size: 4rem;
  }
  .label-num .unit, .label-num .unit {
    font-size: 2rem;
    margin-bottom: 9px;
    margin-left: 3px;
  }
}
.data_info-section01, .data_info-section02, .data_info-section03, .data_info-section04, .data_voice-container {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.data_info-section01.is-visible, .data_info-section02.is-visible, .data_info-section03.is-visible, .data_info-section04.is-visible, .data_voice-container.is-visible {
  opacity: 1;
  transform: none;
}
/*----------------------------------------------------
   ◆INTERVIEW 
----------------------------------------------------*/
.interview_mv {
  width: 100%;
  height: 324px;
  background-image: url("../../cmn_img/recruit/interview/interview_mv.png?250912-02");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  margin-top: 80px;
}
.interview_mv-container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
}
.interview_mv-container h1 {
  color: #8080D6;
  font-family: "Albert Sans", sans-serif;
  font-size: 9.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 27px;
}
.interview_mv-jpn {
  color: #3D3D3D;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}
.interview-listing {
  width: 100%;
  margin-top: 100px;
}
.interview-wrapper_global {
  width: 100%;
  max-width: 1120px;
  margin: 100px auto 0;
  padding: 0 20px;
}
.interview-listing_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}
.interview-listing_heading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  background-color: #900F00;
  border-radius: 24px;
  margin-bottom: 40px;
}
.interview-listing_heading img {
  width: 40px;
  margin-right: 20px;
}
.interview-listing_heading h2 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
}
.interview-listing_section {
  border-radius: 24px;
  overflow: hidden;
  background: #8080D6;
  margin-bottom: 80px;
}
.interview-listing_global {
  background-color: #3D3D3D !important;
}
.interview-listing_section:nth-child(2), .interview-listing_section:nth-child(5) {
  background: #F4672C;
}
.interview-listing_section img {
  display: block;
  width: 100%;
  height: auto;
}
.interview-listing_section p {
  margin: 0;
  padding: 20px 24px 16px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.9;
  color: #ffffff;
  min-height: 150px;
}
.interview-listing_section span {
  display: block;
  padding: 0 24px 8px;
  color: #ffffff;
  font-size: 1.8rem;
}
.interview-listing_section span:nth-of-type(2) {
  margin-bottom: 32px;
}
.interview-listing_section span strong {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 1380px) {
  .interview_mv {
      margin-top: 60px;
  }
}
@media screen and (max-width: 1160px) {
  .interview-listing {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 100px 20px 0;
  }
  .interview_mv-container {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: auto 20px;
  }
  .interview_mv-section {
    margin-right: 40px;
  }
}
@media screen and (max-width: 1160px) {
  .interview-listing_section p {
    min-height: 188px;
}
}
@media screen and (max-width: 1000px) {
  .interview_mv {
    background-position: right -250px center;
  }
}
@media screen and (max-width: 860px) {
  .interview_mv {
    background-position: right -350px center;
  }
  .interview-listing_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 740px) {
  .interview_mv-container h1 {
    font-size: 7rem;
  }
  .interview_mv-jpn {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 500px) {
  .interview_mv {
    height: 140px;
    background-image: url("../../cmn_img/recruit/interview/interview_mv_sp.png");
    background-position: right;
    margin-top: 60px;
  }
  .interview_mv-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .interview_mv-container h1 {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  .interview_mv-jpn {
    font-size: 1.6rem;
  }
  .interview-wrapper_global {
    background-color: #900F00;
    padding-bottom: 40px;
  }
  .interview-listing {
    margin: 60px 0 0;
  }
  .interview-wrapper_global .interview-listing_heading {
    padding-top: 40px;
  }
  .interview-wrapper_global .interview-listing_heading h2 {
    font-size: 2.2rem;
  }
  .interview-listing_container {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
  .interview-listing_section {
    border-radius: 20px;
    margin-bottom: 20px;
  }
  .interview-listing_heading .interview-listing_section p {
    font-size: 1.9rem;
    padding: 30px 30px 16px;
  }
  .interview-listing_section p{
    min-height: unset;
  }
  .interview-listing_section span {
    padding: 0 30px 8px;
  }
  .interview-listing_section span:nth-of-type(2) {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}
.interview_article h3 {
  margin: 110px auto;
  font-size: 4rem;
  line-height: 1.4;
  font-weight: 800;
  text-align: center;
  color: #8080D6;
}
.interview-article_br {
  display: none;
}
.interview-article_container01,
.interview-article_container01-type02,
.interview-article_container01-type03,
.interview-article_container02, .interview-article_container03, .interview-article_container04 {
  position: relative;
}
.interview-article_container02 img, .interview-article_container03 img, .interview-article_container04 img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
}
.interview-article_container02 img{
  margin-top: 50px;
}
.interview-article_container01,
.interview-article_container01-type02,
.interview-article_container01-type03 {
  padding-top: 8px;
  margin-bottom: 129px;
}
.interview-article_section01,
.interview-article_section01-type02 {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 500px;
  background: #8080D6;
  color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 16px 16px #F9F7FE;
}
.interview-article_sales {
  background-color: #F4672C !important;
}
.interview_article_sales-heading, .interview-article_sales_txt, .interview-article_sales .interview-article_job-title, .interview-article_sales02 > div span:last-child {
  color: #F4672C !important;
}
.interview-article_sales02 > div span:first-child {
  background: #F4672C !important;
}
.interview-article_sales_bg {
  background: #fef7f4 !important;
}
.interview-article_global {
  background-color: #5E83C2 !important;
}
.interview_article_global-heading, .interview-article_global_txt, .interview-article_global .interview-article_job-title, .interview-article_global02 > div span:last-child {
  color: #5E83C2 !important;
}
.interview-article_global02 > div span:first-child {
  background: #5E83C2 !important;
}
.interview-article_job{
  display: flex;
}
.interview-article_global_bg {
  background: #F1F6FF !important;
}
.interview-article_section01 h4,
.interview-article_section01-type02 h4 {
  margin: 0 0 16px;
  font-size: 2.3rem;
  font-weight: 700;
  color: #ffffff;
}
.interview-article_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.interview-article_year {
  display: block;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffffff;
}
.interview-article_job-title {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #8080D6;
  height: fit-content;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 18px;
  margin-left: 16px;
  padding: 6px 16px;
}
.interview-article-global-icon {
  width: 100% !important;
  max-width: 50px !important;
  object-fit: contain;
}
.interview-article_section01 p,
.interview-article_section01-type02 p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #ffffff;
}
.interview-article_container01 img {
  width: 100%;
  max-width: 65%;
  border-radius: 40px;
}
.interview-article_container01-type02 img {
  width: 100%;
  max-width: 65%;
  border-radius: 40px;
}
.interview-article_container01-type03 img {
  width: 100%;
  max-width: 65%;
  border-radius: 40px;
}
.interview-article_section02 > div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.interview-article_section02 > div span:first-child {
  display: inline-flex;
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 500;
  color: #ffffff;
  background: #8080D6;
  font-family: "Albert Sans", sans-serif;
}
.interview-article_container02 img {
  margin-top: 93px;
}
.interview-article_section02 > div span:last-child {
  font-size: 2.4rem;
  font-weight: 700;
  color: #8080D6;
}
.interview-article_section02 p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: #111111;
}
.interview-article_container02 {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 96px;
}
.interview-article_container02 .interview-article_bg {
  display: none;
}
.interview-article_container03 {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 123px;
  align-items: center;
  padding-bottom: 60px;
}
.interview-article_container03 .interview-article_bg {
  position: absolute;
  width: 1000px;
  left: -180px;
  top: -88px;
  height: 400px;
  background: #F3F1FA;
  border-radius: 24px;
  z-index: -1;
}
.interview-article_container04 {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 123px;
  align-items: center;
  margin-bottom: 300px;
  padding-top: 60px;
}
.interview-article_container04 .interview-article_bg {
  position: absolute;
  width: 840px;
  right: -100px;
  bottom: -200px;
  height: 450px;
  background: #F3F1FA;
  border-radius: 24px;
  z-index: -1;
}
.interview-article_schedule {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 50px;
  background-color: #F9F7FE;
  margin-bottom: 150px;
  padding: 64px 100px;
}
.interview-article_schedule-left-container {
  display: flex;
  flex-direction: column;
}
.interview-article_schedule-left-container h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  color: #8080D6;
}
.interview-article_schedule-left-container span {
  font-size: 3rem;
  font-weight: 600;
}
.interview-article_schedule-right-container {
  display: flex;
  flex-direction: column;
}
.interview-article_schedule-section {
  display: flex;
  align-items: center;
  border-bottom: dotted 1px #3D3D3D;
  margin-bottom: 20px;
  padding-bottom: 8px;
}
.interview-article_schedule-section img {
  width: 32px;
  margin-right: 12px;
}
.interview-article_schedule-time {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  width: 128px;
  color: #8080D6;
}
.interview-article_message {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #8080D6;
  gap: 80px;
  border-radius: 20px;
  margin-bottom: 120px;
  padding: 60px;
}
.interview-article_message-container h4, .interview-article_message-container p {
  color: #fff;
}
.interview-article_message-top {
  display: flex;
  margin-bottom: 20px;
}
.interview-article_message-top img {
  width: 40px;
  margin-right: 20px;
}
.interview-article_message-top h4 {
  font-size: 2.4rem;
  font-weight: 600;
}
.interview-article_message-container p {
  line-height: 2;
}
.interview-article-message-img {
  width: 378px ;
}
.interview-article_page-nation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 120px;
}
.interview-article_page-nation-left-container, .interview-article_page-nation-right-container {
  display: flex;
  align-items: center;
}
.interview-article-page-icon {
  width: 24px;
  margin: 0 28px;
}
.interview-article_page-nation-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.interview-article_page-nation-wrapper img {
  width: 96px;
  margin-bottom: 8px;
}
.interview-article_page-nation-wrapper span {
  font-size: 1.4rem;
  font-weight: 600;
}
.interview-article_page-nation-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 144px;
}
.interview-article_page-nation-center span {
  font-weight: 600;
  margin-top: 8px;
}
@media screen and (max-width: 1160px) {
  .interview-article_section01 {
    right: 20px;
  }
  .interview-article_section01-type02 {
    right: 20px;
  }
  .interview-article_schedule {
    padding: 64px 20px;
  }
}
@media screen and (max-width: 1100px) {
  .interview-article_container03 img{
    margin-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .interview-article_container02,
  .interview-article_container03,
  .interview-article_container04{
    gap: 90px;
  }
  .interview-article_container03 {
    grid-template-columns: 460px 1fr;
  }
  .interview-article_container04 {
    display: grid;
    grid-template-columns: 1fr 460px;
  }
  .interview-article_container03 img {
    margin-top: 80px;
  }
}
@media screen and (max-width: 980px) {
  .interview-article_container01{
    margin-bottom: 180px;
  }
  .interview-article_section01 {
    top: 100%;
  }
  .interview-article_section01-type02 {
    top: 100%;
  }
  .interview-article_container02, .interview-article_container03, .interview-article_container04 {
    display: flex;
    gap: 0;
  }
  .interview-article_section02 {
    width: 100%;
  }
  .interview-article_container03 .interview-article_bg {
    left: -400px;
    top: -140px;
  }
  .interview-article_container02 img, .interview-article_container03 img, .interview-article_container04 img {
    width: -webkit-fill-available;
    max-width: 400px;
  }
  .interview-article_container02 img{
    margin-left:  60px;
  }
  .interview-article_container03 img {
    margin-right: 60px;
  }
  .interview-article_container04 img{
    margin-left:  60px;
  }
  .interview-article_container04{
    padding-top: 0;
  }
  .interview-article_schedule {
    margin-bottom: 120px;
  }
  .interview-article_message {
    gap: 60px;
  }
  .interview-article_container01-type02{
    margin-bottom: 190px;
  }
}
@media screen and (max-width: 900px) {
  .interview-article_container01 {
    margin-bottom: 160px;
  }
}
@media screen and (max-width: 860px) {
  .interview-article_schedule {
    display: flex;
    flex-direction: column;
  }
  .interview_article h3 {
    margin: 60px auto;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 850px) {
  .interview-article-message-img{
    width: 300px;
  }
}
@media screen and (max-width: 800px) {
  .interview-article_section01{
    padding: 32px
  }
  .interview-article_section02{
    margin-top: 80px;
  }
  .interview-article_message {
    align-items: flex-start;
  }
  .interview-article_message {
    gap: 40px;
  }
  .interview-article_message-container{
    width: 100%;
  }
  .interview-article_message-top h4 {
    font-size: 2rem;
  }
  .interview-article-message-img {
    width: 240px;
  }
  .interview-article_section04{
    top: 120%
  }
  .interview-article_container04 .interview-article_bg{
    right: -300px;
    bottom: -100px;
    height: 350px;
  }
  .interview-article_container01 {
    margin-bottom: 120px;
  }
  .interview-article_container04 {
    margin-bottom: 220px;
  }
  .interview-article_container02 img, .interview-article_container03 img, .interview-article_container04 img {
    width: -webkit-fill-available;
    max-width: 350px;
  }
}
@media screen and (max-width: 760px) {
  .interview-article_page-nation-center {
    margin: 0 auto;
  }
}
@media screen and (max-width: 710px) {
  .interview-article_container02 img,
  .interview-article_container04 img {
    margin-left: 40px;
  }
  .interview-article_container03 img {
    margin-right: 40px;
  }
  .interview-article_section02 > div span:last-child{
    font-size: 2rem;
  }
}
@media screen and (max-width: 680px) {
  .interview-article_br {
    display: block;
  }
  .interview-article_section04{
    top: 400px;
  }
  .interview-article_section01 {
    top: 400px;
    max-width: unset;
    width: 85%;
    padding: 20px;
  }
  .interview-article_section01-type02 {
    top: 400px;
    max-width: unset;
    width: 85%;
    padding: 25px;
  }
  .interview-article_container01 {
    margin-bottom: 120px;
  }
  .interview-article_container01-type02 {
    margin-bottom: 120px;
  }
  .interview-article_container01-type03 {
    margin-bottom: 120px;
  }
  .interview-article_container01 img {
    width: 100%;
    max-width: 90%;
  }
  .interview-article_container01-type02 img {
    width: 100%;
    max-width: 90%;
  }
  .interview-article_container01-type03 img {
    width: 100%;
    max-width: 90%;
  }
  .interview-article_container02, .interview-article_container04 {
    flex-direction: column;
    padding-top: 0;
    margin-top: 0;
  }
  .interview-article_container02 {
    margin-top: 0;
  }
  .interview-article_container02 > img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 40px 0 0 !important;
    vertical-align: top !important; 
  }
  .interview-article_container02 .interview-article_bg {
    display: block;
    position: absolute;
    width: 100%;
    right: 440px;
    bottom: -200px;
    height: 300px;
    background: #F3F1FA;
    border-radius: 24px;
    z-index: -1;
  }
  .interview-article_container03 {
    flex-direction: column-reverse;
    padding-bottom: 0;
  }
  .interview-article_container03 .interview-article_bg {
    position: absolute;
    width: 60%;
    right: 5px;
    left: 350px;
    top: 745px;
    height: 400px;
    background: #F3F1FA;
    border-radius: 24px;
    z-index: -1;
  }
  .interview-article_container03 img {
    width: 90%;
    max-width: unset;
    margin: 40px auto 0 0;
  }
  .interview-article_container04 img {
    width: 100%;
    max-width: unset;
    margin: 40px 0 0 auto;
  }
  .interview-article_section02 {
    margin-top: 50px;
  }
  .interview-article_container04 .interview-article_bg {
    width: 90%;
    height: 400px;
    right: 0;
    left: -47px;
    bottom: 220px;
  }
  .interview-article_container04 {
    margin-bottom: 80px;
  }
  .interview-article_message {
    flex-direction: column;
    margin-bottom: 60px;
    padding: 40px 20px;
    gap: 40px;
  }
  .interview-article-message-img {
    width: 100%;
    max-width: unset !important;
  }
  .interview-article_schedule {
    gap: 40px;
    margin-bottom: 60px;
  }
  .interview-article_page-nation {
    margin: 0px 20px 90px;
  }
  .interview-article_page-nation-center {
    margin: 0 auto;
  }
  .interview-article_page-nation-wrapper {
    display: none;
  }
  .interview-article_schedule-time{
    width: auto;
    margin-right: 30px;
  }
  .interview-article_message-container{
    width: fit-content;
  }
}
@media screen and (max-width: 650px) {
  .interview-article_section01 {
    top: 650px;
  }
  .interview-article_section01-type02 {
    top: 650px;
  }
  .interview-article_container01-type02 {
    margin-bottom: 180px;
  }
  .interview-article_container01-type03 {
    margin-bottom: 180px;
  }
  .interview-article_schedule-left-container h4 {
    font-size: 1.6rem;
  }
  .interview-article_schedule-left-container span {
    font-size: 2.2rem;
  }
  .interview-article_year {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .interview-article_container01{
    margin-bottom: 200px;
  }
  .interview-article_container01-type-02{
    margin-bottom: 200px;
  }
  .interview-article_section01 {
    top: 600px;
  }
  .interview-article_section01-type02 {
    top: 600px;
  }
}
@media screen and (max-width: 540px) {
  .interview-article_container01{
    margin-bottom: 210px;
  }
  .interview-article_container01-type02{
    margin-bottom: 250px;
  }
  .interview-article_container01-type03{
    margin-bottom: 250px;
  }
}
@media screen and (max-width: 500px) {
  .interview-article_container01 {
    margin-bottom: 100px;
  }
  .interview-article_container01-type02 {
    margin-bottom: 110px;
  }
  .interview-article_container01-type03 {
    margin-bottom: 110px;
  }
  .interview-article_container01 img{
    border-radius: 20px;
  }
  .interview-article_container01-type02 img{
    border-radius: 20px;
  }
  .interview-article_container01-type03 img{
    border-radius: 20px;
  }
  .interview_article h3 {
    font-size: 2rem;
    margin: 40px auto;
  }
  .interview-article_section01{
    top: 450px;
  }
  .interview-article_section01-type02{
    top: 450px;
  }
  .interview-article_section01 h4,
  .interview-article_section01-type02 h4{
    font-size: 2.2rem;
  }
  .interview-article_year{
    font-size: 1.8rem;
  }
  .interview-article_job-title {
    font-size: 1.2rem;
    padding: 4px 12px;
  }
  .interview-article_section02 > div span:last-child{
    font-size: 2rem;
  }
  .interview-article_container02 .interview-article_bg {
    width: 80%;
    right: 123px;
    bottom: -200px;
    height: 300px;
  }
  .interview-article_container03 .interview-article_bg {
    position: absolute;
    width: 80%;
    left: 160px;
    top: 599px;
    height: 329px;
  }
  .interview-article_container04 .interview-article_bg {
    width: 80%;
    height: 240px;
    bottom: 269px;
  }
  .interview-article_message-top img {
    width: 30px;
    margin-right: 13px;
  }
  .interview-article_message-top h4 {
    font-size: 2rem;
  }
  .interview-article_message-container p{
    font-size: 1.4rem;
  }
  .interview-article_page-nation{
    margin-bottom: 60px;
  }
  .interview-article_type01-mv{
    top: 600px;
  }
  .interview-article_type01{
    -ms-overflow-style: 100px;
  }
  .interview-article_section01 {
    top: 450px;
  }
  .interview-article_section01-type02 {
    top: 450px;
  }
}
@media screen and (max-width: 470px) {
  .interview-article_container01 {
    margin-bottom: 150px;
  }
  .interview-article_container01-type02 {
    margin-bottom: 180px;
  }
  .interview-article_container01-type03 {
    margin-bottom: 180px;
  }
}
@media screen and (max-width: 440px) {
  .interview-article_container01 {
    margin-bottom: 180px;
  }
  .interview-article_container01-type02 {
    margin-bottom: 220px;
  }
  .interview-article_container01-type03 {
    margin-bottom: 220px;
  }
}
@media screen and (max-width: 410px) {
  .interview-article_container01 {
    margin-bottom: 200px;
  }
  .interview-article_container01-type02 {
    margin-bottom: 240px;
  }
  .interview-article_container01-type03 {
    margin-bottom: 240px;
  }
  .interview-article-global-icon {
    max-width: 40px !important;
  }
}
@media screen and (max-width: 375px) {
  .interview-article_container01 {
    margin-bottom: 240px;
  }
  .interview-article_container01-type02 {
    margin-bottom: 280px;
  }
  .interview-article_container01-type03 {
    margin-bottom: 280px;
  }
  .interview-article_year{
    font-size: 1.7rem;
  }
  .interview-article_job-title {
    font-size: 1.2rem;
    padding: 4px 9px;
  }
}
/*----------------------------------------------------
   ◆OUR WORK
----------------------------------------------------*/
.contents_mv-ourwork {
  width: 100%;
  height: 324px;
  background-image: url("../../cmn_img/recruit/ourwork/contents_mv-ourwork.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  margin-top: 80px;
}
.contents_mv-ourwork-wrapper {
  width: 100%;
  max-width: 1120px;
  margin: auto;
}
.contents_mv-ourwork-wrapper h1 {
  color: #5E83C2;
  font-family: "Albert Sans", sans-serif;
  font-size: 9.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 27px;
}
.contents_mv-ourwork-jpn {
  color: #3D3D3D;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}
.ourwork_btn-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 960px;
  margin: 100px auto 78px;
  padding: 36px 45px;
}
.ourwork_btn-list a {
  width: 47%;
  height: 102px;
  margin-bottom: 22px;
}
.ourwork_btn-list a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
#sales,
#creative,
#development,
#other{
  scroll-margin-top: 80px;
}
.ourwork_btn-list-sales {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background-color: #F4672C;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}
.ourwork_btn-list a img {
  position: absolute;
  top: 38px;
  right: 45px;
  width: 24px;
  height: auto;
}
.ourwork_btn-list-creative {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background-color: #8080D6;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}
.ourwork_btn-list-development {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background-color: #F4BA3B;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}
.ourwork_btn-list-other {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  background-color: #57CBB6;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}
.ourwork_job-types {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}
#other {
  margin-bottom: 100px;
}
.ourwork_job-types h2 {
  color: #3D3D3D;
  font-size: 3.6rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ourwork_job-types-heading-sales::after {
  content: "";
  display: block;
  border-bottom: solid 10px #F4672C;
  border-radius: 5px;
  width: 70px;
  margin: 32px 0 81px;
}
.ourwork_job-types-heading-creative::after {
  content: "";
  display: block;
  border-bottom: solid 10px #8080D6;
  border-radius: 5px;
  width: 70px;
  margin: 32px 0 81px;
}
.ourwork_job-types-heading-development::after {
  content: "";
  display: block;
  border-bottom: solid 10px #F4BA3B;
  border-radius: 5px;
  width: 70px;
  margin: 32px 0 81px;
}
.ourwork_job-types-heading-other::after {
  content: "";
  display: block;
  border-bottom: solid 10px #57CBB6;
  border-radius: 5px;
  width: 70px;
  margin: 32px 0 81px;
}
.ourwork_job-types-container {
  background-image: url("../../cmn_img/recruit/ourwork/ourwork-deco-img.png");
  background-position: top right;
  background-size: 100%;
  background-color: #F1F6FF;
  text-align: center;
  width: 100%;
}
.ourwork_job-types-section {
  width: 100%;
  max-width: 1120px;
  margin: 100px auto;
}
.ourwork_job-types-wrapper {
  display: flex;
  margin-bottom: 60px;
}
.ourwork_job-types_main {
  width: 560px;
  object-fit: cover;
  border-radius: 24px 0 0 24px;
}
.ourwork_job-types-list {
  width: -webkit-fill-available;
  width: -moz-available;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 0 15px 15px 0;
  padding: 80px 40px;
}
.ourwork_job-types-list h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 14px;
}
.ourwork_job-types-list p {
  font-size: 1.6rem;
  font-weight: 400;
  color: #3D3D3D;
  text-align: left;
  margin-bottom: 40px;
}
.ourwork_job-types-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ourwork_job-types-txt {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #F4672C;
  margin-bottom: 22px;
}
.ourwork_job-types-item {
  display: flex;
}
.ourwork_job-types-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 96px;
  margin-right: 20px;
}
.ourwork_job-types-link:hover{
  opacity: 0.5;
  transition: 0.3s;
}
.ourwork_job-types-link:last-child {
  margin-right: 0;
}
.ourwork_job-types-link img {
  margin-bottom: 6px;
}
.ourwork_job-types-link span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #3D3D3D;
}
.ourwork_job-types-button {
  position: relative;
  width: 394px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background-color: #F4672C;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 40px;
  margin: 40px auto 100px;
}
.ourwork_job-types-button:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.ourwork_job-types-button img {
  position: absolute;
  top: 17px;
  right: 60px;
  width: 30px;
  height: auto;
}
@media screen and (max-width: 1380px) {
  .contents_mv-ourwork {
      margin-top: 60px;
  }
}
@media screen and (max-width: 1140px) {
  .contents_mv-ourwork-wrapper {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: auto 20px;
  }
  .ourwork_job-types-section {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 100px 20px;
  }
}
@media screen and (max-width: 1000px) {
  .ourwork_job-types_main {
    width: 40%;
  }
}
@media screen and (max-width: 700px) {
  .ourwork_job-types_main {
    width: 30%;
  }
}
@media screen and (max-width: 650px) {
  .ourwork_btn-list{
   margin:100px auto 0; 
  }
  .ourwork_btn-list a img{
    right: 40px;
  }
  .ourwork_job-types{
    margin-top: 0;
  }
  .ourwork_anchor01 {
    position: relative;
    margin-top: -60px;
  }
  .ourwork_anchor01 {
    position: relative;
    margin-top: -60px;
    padding-top: 60px;
  }
  .ourwork_anchor01::before, .ourwork_anchor02::before {
    content: "";
    display: block;
    height: 120px;
    margin-top: -60px;
  }
  .ourwork_job-types-section {
    margin: 100px 0;
  }
  .ourwork_job-types-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
  }
  .ourwork_job-types_main {
    width: 100%;
    height: 232px;
    min-height: unset;
    border-radius: 24px 24px 0 0;
  }
  .ourwork_job-types-list {
    border-radius: 0 0 24px 24px;
    padding: 30px 20px;
  }
  .slider .slick-list {
    padding-left: 20px;
    padding-right: 20px;
  }
  .slider:has(.slick-slide:first-child.slick-current) .slick-list {
    padding-left: 40px;
    padding-right: 20px;
  }
  .slider:has(.slick-slide:last-child.slick-current) .slick-list {
    padding-left: 20px;
    padding-right: 40px;
  }
  .ourwork_job-types-button {
    margin-top: 100px;
  }
  .ourwork_job-types .slick-dots li button:before {
    font-size: 5rem;
  }
  .slick-dots{
    bottom: -60px;
  }
  .slick-dots li {
    margin: 0!important;
  }
}
@media screen and (max-width: 540px) {
  .ourwork_btn-list a img {
    right: 23px;
  }
}
@media screen and (max-width: 500px) {
  .contents_mv-ourwork {
    height: 140px;
    background-image: url("../../cmn_img/recruit/ourwork/contents_mv-ourwork_sp.png");
    background-position: right;
    margin-top: 60px;
  }
  .contents_mv-ourwork-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contents_mv-ourwork-wrapper h1 {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  .contents_mv-ourwork-jpn {
    font-size: 1.4rem;
  }
  .ourwork_btn-list {
    margin: 60px 0 0;
    padding: 0 20px
  }
  .ourwork_btn-list a {
    width: 48.5%;
    height: 68px;
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .ourwork_btn-list a img{
    width: 21px;
    top: 25px !important;
    right: 40px;
  }
  .ourwork_job-types h2{
    font-size: 2.2rem;
  }
  .ourwork_job-types-heading-sales::after {
    content: "";
    display: block;
    border-bottom: solid 8px #F4672C;
    border-radius: 5px;
    width: 50px;
    margin: 32px 0 81px;
  }
  .ourwork_job-types {
    margin: 20px 0 0;
  }
  .ourwork_job-types-heading-sales::after, .ourwork_job-types-heading-creative::after, .ourwork_job-types-heading-development::after, .ourwork_job-types-heading-other::after {
    margin: 20px 0 60px;
  }
  .ourwork_job-types-section {
    margin: 60px 0;
  }
  .ourwork_job-types-list p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .ourwork_job-types .slick-dots li button:before {
    font-size: 5rem;
  }
  .slick-dots li {
    margin: 0!important;
  }
  .ourwork_job-types .slick-dots {
    bottom: -40px;
  }
  .ourwork_job-types-button {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 65px;
    margin: 80px 40px 60px;
  }
  .ourwork_job-types-button img {
    position: absolute;
    top: 20px;
    right: 43px;
    width: 29px;
    height: auto;
  }
  .ourwork_job-types-link {
    width: 80px;
  }
  .ourwork_btn-list a{
    justify-content: flex-start;
    padding-left: 18%;
  }
  .ourwork_btn-list-other {
    justify-content: flex-start;
    padding-left: 16%!important;
  }
  
}
@media screen and (max-width: 450px) {
  .ourwork_btn-list a{
    padding-left: 16%
  }
  .ourwork_btn-list-other {
    padding-left: 14%!important;
  }
}
@media screen and (max-width: 420px) {
  .ourwork_job-types-button {
    font-size: 1.8rem;
  }
  .ourwork_btn-list a img{
    right: 31px;
  }
}
@media screen and (max-width: 400px) {
  .ourwork_job-types-link {
    width: 72px;
  }
  .ourwork_job-types-link span {
    font-size: 1.2rem;
  }
  .ourwork_job-types-button img {
    top: 19px;
    right: 27px;
  }
  .ourwork_btn-list a{
    justify-content: flex-start;
    padding-left: 56px;
  }
  .ourwork_btn-list-other {
    padding-left: 47px!important;
  }
}
@media screen and (max-width: 390px) {
  .ourwork_btn-list a,
  .ourwork_btn-list-other {
    padding-left: 58px;
  }
  .ourwork_btn-list a img{
    right: 27px;
  }
}
@media screen and (max-width: 375px) {
  .ourwork_btn-list a{
    padding-left: 54px;
  }
  .ourwork_btn-list-other {
    padding-left: 44px!important;
  }
  .ourwork_btn-list a img{
    right: 23px;
  }
}
@media screen and (max-width: 365px) {
  .ourwork_btn-list a{
    padding-left: 47px;
  }
  .ourwork_btn-list-other {
    padding-left: 39px!important;
  }
  .ourwork_job-types-link {
    width: 66px;
  }
  .ourwork_job-types-button img {
    top: 20px;
    right: 12px;
  }
}
/*----------------------------------------------------
   ◆FAQ
----------------------------------------------------*/
.faq_mv {
  width: 100%;
  height: 324px;
  background-image: url("../../cmn_img/recruit/faq/faq_mv.png?250912-02");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  margin-top: 80px;
}
.faq_mv-container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
}
.faq_mv-container h1 {
  color: #5E83C2;
  font-family: "Albert Sans", sans-serif;
  font-size: 9.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 27px;
}
.faq_mv-jpn {
  color: #3D3D3D;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
}
.faq_btn-list {
  display: flex;
  justify-content: center;
  margin: 68px 0 100px;
}
.faq_btn-list a {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 15px;
  padding: 0 15px 15px;
  position: relative;
}
.faq_btn-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: solid 2px #5E83C2;
  transition: width 0.3s ease;
}
.faq_btn-list a img {
  display: none;
}
.faq_btn-list a:hover::after {
  width: 100%;
}
#apply,
#after,
#system{
  scroll-margin-top: 80px;
}
.faq_container {
  display: flex;
  flex-direction: column;
}
.faq_container h2 {
  color: #3D3D3D;
  font-size: 3.8rem;
  text-align: center;
  margin-bottom: 60px;
}
.faq_container {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
.faq_container h2 {
  color: #3D3D3D;
  font-size: 3.8rem;
  text-align: center;
  margin-bottom: 60px;
}
.faq_section {
  position: relative;
  background-color: #F1F6FF;
  margin-bottom: 40px;
}
.faq_question-container {
  display: flex;
  align-items: center;
  padding: 16px 80px 16px 32px;
}
.faq_question {
  position: relative;
  cursor: pointer;
  line-height: 1.6;
  user-select: none;
  border-left: #5E83C2 solid 4px;
}
.faq_question-container p {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.faq_question::before, .faq_question::after {
  content: "";
  position: absolute;
  right: 48px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: #3D3D3D;
  transform: translateY(-50%);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.2, 0, 0, 1), opacity 0.25s ease;
}
.faq_question::after {
  transform: translateY(-50%) rotate(90deg) scaleX(1);
  opacity: 1;
}
.faq_section.is-open .faq_question::after {
  transform: translateY(-50%) rotate(180deg) scaleX(0);
  opacity: 0;
}
.faq_question:focus-visible {
  outline: 2px solid #5b9dd9;
  outline-offset: 2px;
}
.faq_question-container span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 48px;
  height: 25px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-left: 20px;
}
.faq_answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
  contain: layout paint;
  transition: grid-template-rows .25s ease, opacity .2s ease;
}
.faq_section.is-open .faq_answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq_answer-inner {
  min-height: 0;
  overflow: hidden;
}
.faq_answer-container {
  padding: 0 32px 20px 36px;
}
.faq_answer-container div {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}
.faq_answer-txt{
  display: block;
  font-size: 1.6rem;
}
.faq_answer-container p strong{
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 2px solid #3D3D3D;
  padding: 3px 0 1px;
}
.faq_answer-container div:last-child {
  margin-top: 20px;
}
.faq_answer-container span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 48px;
  height: 25px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-right: 10px;
}
.faq_question-graduate, .faq_answer-graduate {
  background-color: #F4BA3B;
}
.faq_question-career, .faq_answer-career {
  background-color: #8080D6;
}
@media (prefers-reduced-motion: reduce) {
  .faq_answer, .faq_question::before, .faq_question::after {
    transition: none;
  }
}
@supports not (grid-template-rows: 1fr) {
  .faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
  }
  .faq_section.is-open .faq_answer {
    max-height: 800px;
    opacity: 1;
  }
}
@media screen and (max-width: 1380px) {
  .faq_mv {
      margin-top: 60px;
  }
}
@media screen and (max-width: 1160px) {
  #apply,
  #after,
  #system{
    scroll-margin-top: 120px;
  }
  .faq_anchor {
    position: relative;
  }
  
  .faq_anchor::before {
    content: "";
    display: block;
    height: 120px;
    margin-top: -60px;
  }
}
@media screen and (max-width: 1160px) {
  .faq_mv-container {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: auto 20px;
  }
  .faq_mv-section {
    margin-right: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .faq_mv {
    background-position: right -150px center;
  }
}
@media screen and (max-width: 860px) {
  .faq_mv {
    background-position: right -250px center;
  }
}
@media screen and (max-width: 740px) {
  .faq_mv h1 {
    font-size: 7rem;
  }
  .faq_mv-jpn {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 680px) {
  .faq_btn-list {
    flex-direction: column;
  }
  .faq_btn-list a {
    display: flex;
    justify-content: space-between;
    padding: 0 0 30px;
  }
  .faq_btn-list a::after {
    border-bottom: unset;
  }
  .faq_btn-list a img {
    display: block;
    width: 16px;
    object-fit: contain;
  }
}
@media screen and (max-width: 632px) {
  .faq_btn-list a {
    max-width: unset;
  }
  .faq_question-container {
    padding: 10px 54px 10px 20px;
  }
  .faq_question-container p {
    font-size: 1.6rem;
  }
  .faq_question::before, .faq_question::after {
    right: 30px;
  }
}
@media screen and (max-width: 500px) {
  .faq_mv {
    height: 140px;
    background-image: url("../../cmn_img/recruit/faq/faq_mv_sp.png");
    background-position: right;
    margin-top: 80px;
  }
  .faq_mv-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .faq_mv-container h1 {
    font-size: 4rem;
    margin-bottom: 10px;
  }
  .faq_mv-jpn {
    font-size: 1.6rem;
  }
  .faq_container {
    margin-bottom: 20px;
  }
  .faq_container h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .faq_btn-list a {
    max-width: unset;
    margin: 0;
    font-size: 1.4rem;
  }
  .faq_btn-list {
    margin-bottom: 50px;
  }
  .faq_question-container span {
    margin-left: 30px;
  }
  .faq_answer-container{
    padding: 0 32px 20px 24px;
  }
}
/*----------------------------------------------------
   ◆RECRUIT_ITEM
----------------------------------------------------*/
.recruit-item-page {
  max-width: 1120px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 60px 10px 80px;
}
.recruit_top-wrapper{
  padding: 20px 10px 0!important;
}
.item_career_wrapper{
  margin: 0 auto 80px;
}
.global_contact .recruit-item-page{
  padding: 20px 10px 60px;
}
.global_contact .item-select-zone{
  margin: 0 auto;
  padding: 40px 20px 20px
}
.recruit-item-page .recruit-item-p01 {
  text-align: center;
  margin: 0 auto 10px;
}
.recruit-item-page .recruit-item-p02 {
  font-size: 16px;
  text-align: center;
  margin: 0 auto 60px;
  font-weight: bold;
}
.recruit-item-page .recruit-item-index-ul {
  text-align: center;
  font-size: 0;
}
.recruit-item-page .recruit-item-index-ul li {
  display: inline-block;
  width: 50%;
  text-align: center;
  box-sizing: border-box;
  padding: 0 2px;
  margin: 0 auto 10px;
}
.recruit-item-page .recruit-item-index-ul li a:hover {
  opacity: .8;
  transition: .3s;
}
.item-select-zone {
  margin: 0 auto 60px;
  box-sizing: border-box;
  border-radius: 20px;
  background: #F6F6F6;
  padding: 60px 20px;
}
.item-select-zone table {
  width: 100%;
  max-width: 910px;
  margin: 0 auto 10px;
  box-sizing: border-box;
}
.item-select-zone table th, .item-select-zone table td {
  box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
  vertical-align: top;
  text-align: left;
}
.item-select-zone table td input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin: -3px 8px 0 0;
  border-radius: 5px;
}
.label_checkbox {
  display: inline-block;
}
.item-select-zone table th {
  width: 160px;
}
.zone_att {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  margin: 5px 0 0;
}
.zone_label {
  display: inline-block;
  border-left: 3px solid #8080D6;
  padding: 3px 0 5px 15px;
  margin-bottom: 20px;
}
.zone_label_global {
  border-left: 3px solid #F4BA3B;
}
.zone_label_sub {
  display: inline-block;
  padding: 3px 0 5px 18px;
}
.zone_label_sub_global {
  line-height: 1.8;
  padding-top: 0;
}
.zone_career-select{
  margin-top: 6px;
}
.zone_career-wrapper01 .zone_att{
  padding-top: 3px;
}
.item-select-ul {
  box-sizing: border-box;
  margin-bottom: 20px !important;
}
.item-select-ul:last-child {
  margin-bottom: 0 !important;
}
.item-select-ul li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 15px;
}
.item-select-ul li label {
  font-size: 15px;
}
.item-select-num {
  font-size: 20px;
  border-bottom: 2px solid #000;
  margin: 0 auto 10px;
  line-height: 1.4 !important;
  font-weight: bold;
}
.item-select-num .num {
  font-size: 1.2em;
  color: #E70003;
}
.item-result-box {
  box-sizing: border-box;
  background-color: #F9F7FE;
  padding: 0;
  margin: 0 auto 40px;
}
.item-result-p01 {
  font-size: 22px;
  font-weight: bold;
  padding: 12px 0 12px 30px;
  border-left: 4px solid #8080D6;
  position: relative;
}
.item-result-p01 span {
  font-size: 20px;
}
.item-result-p01:before, .item-result-p01:after {
  content: "";
  position: absolute;
  background: #000;
  right: 36px;
  z-index: 1;
}
.item-result-p01:before {
  width: 14px;
  height: 2px;
  top: 50%;
  right: 30px;
}
.item-result-p01:after {
  width: 2px;
  height: 14px;
  top: calc(50% - 6px);
}
.item-result-p01.open:after {
  display: none;
}
.item-result-p01 .cate {
  display: inline-block;
  width: 100px;
  border-radius: 30px;
  background-color: #000;
  color: #fff;
  margin-right: 10px;
  margin-bottom: 4px;
  font-size: 12px;
  text-align: center;
}
.item-result-p01 .cate.cate-graduate {
  background-color: #5f65c7;
}
.item-result-p01 .cate.cate-career {
  background-color: #00a0aa;
}
.item-result-table {
  margin: 60px;
  box-sizing: border-box;
  border-top: 1px solid #716F70;
  background-color: #fff;
  color: #3D3D3D;
}
.item-result-table th, .item-result-table td {
  border-bottom: 1px solid #716F70;
  box-sizing: border-box;
  font-size: 16px;
  padding: 20px 30px;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
  width: 76%;
}
.item-result-table th {
  width: 24%;
  padding: 10px 20px 10px 40px;
  background-color: #F5F5F5;
  vertical-align: middle;
}
.item-result-btn {
  text-align: center;
  margin: 0 60px;
  padding-bottom: 60px;
}
.item-result-btn a:hover {
  opacity: .8;
  transition: .3s;
}
.btn-career_sch {
  text-align: center;
}
.btn-career_sch button {
  background: #8080D6 url(../../cmn_img/recruit/contact/arrow.svg) no-repeat top 50% right 70px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 17px;
  border-radius: 200px;
  width: 276px;
  padding-right: 40px;
  border: none;
}
.btn-career_sch button:hover {
  opacity: .5;
  transition: .3s;
}
@media screen and (max-width: 760px) {
  .item-select-zone {
    padding: 40px 15px 20px;
  }
  .item-select-zone table th, .item-select-zone table td {
    display: block;
    width: 100%;
    padding: 10px 0 0!important;
  }
  .zone_career-wrapper01{
    display: flex;
    align-items: center;
  }
  .global_contact .recruit-item-page{
    padding: 20px 10px 60px;
  }
  .zone_career-wrapper01 th {
    width: auto !important;
    min-width: 82px;
    margin-right: 30px;
  }
  .zone_career-wrapper01 .zone_att{
    padding-bottom: 8.5px;
  }
  .zone_career-wrapper02{
    display: block;
    margin-top: 30px;
  }
  .zone_label{
    margin-bottom: 0;
  }
  .zone_label_sub {
    padding-left: 0;
  }
  .item-select-ul{
    padding-left: 0;
  }
  .item-result-p01{
    padding: 12px 73px 12px 20px;
  }
}
@media screen and (max-width: 500px) {
  .contact-page{
    padding: 60px 20px 90px!important;
  }
  .recruit-item-page{
    padding: 20px 10px 40px;
  }
  .recruit-item-page .item-select-zone{
    padding: 20px;
  }
  .recruit-item-page .item-select-zone{
    margin: 0 auto 80px;
  }
  .global_contact .recruit-item-page{
    padding: 0 10px;
  }
  .item_career_wrapper{
    margin: 0 auto 60px;
  }
  .recruit_page_title{
    margin-top: 60px!important;
  }
  .zone_career-select{
    width: 264px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
/*----------------------------------------------------
   ◆CONTACT（統合済み）
----------------------------------------------------*/
.contact-page {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 100px 10px 180px;
}
.form-p01 {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 auto 60px;
}
.form-p01 a {
  color: #000;
}
.form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-table {
  width: 100%;
  margin: 0 auto 30px;
  background-color: #fff;
}
.contact-table th {
  width: 25%;
  min-width: 200px;
  text-align: left;
  font-size: 22px;
  font-weight: bold;
}
.contact-table th, .contact-table td {
  line-height: 1.5;
  padding: 20px;
  box-sizing: border-box;
}
.contact-table td{
  font-size: 16px;
}
.contact-table td p {
  display: flex;
  width: -webkit-fill-available;
  width: -moz-available;
  font-size: 16px;
}
.contact-table td p{
  padding-top: 1px;
}
.input-note {
  color: #000;
  font-size: 12px;
}
.err-p {
  font-size: 13px;
  font-weight: bold;
  color: #ED0003;
  margin: 10px auto 0;
}
.contact-table input[type="text"], .contact-table textarea, .contact-table select {
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  border: 1px solid #BCBCBC;
  border-radius: 8px;
}
.contact-table textarea {
  min-height: 200px;
}
.contact-table .width_M {
  width: 100%;
  max-width: 200px;
}
.contact-table input[type="radio"] {
  width: 24px;
  height: 24px;
}
.contact-table input[type="text"]:focus, .contact-table textarea:focus, .contact-table select:focus {
  background-color: #FFF4F4;
}
.ms-span, .ny-span {
  display: inline-block;
  margin: 5px 0 0 15px;
  font-weight: bold;
  background-color: #FA5D1B;
  color: #fff;
  font-size: 14px;
  padding: 2px 10px;
  vertical-align: top;
}
.ms-span:after {
  content: "必須";
}
.ny-span {
  background-color: #C9C9C9;
}
.ny-span:after {
  content: "任意";
}
.contact-p01 {
  font-size: 14px;
  margin: 0 auto 30px;
}
.contact-p02 {
  font-size: 16px;
  margin: 0 auto 30px;
}
.contact-p02 a {
  font-size: 1.2em;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-left: 5px;
}
.contact_check_wrapper{
  display: flex;
}
.contact_checkbox {
  width: 24px;
  height: 24px;
  margin-left: 0;
}
.contact_checkbox_link {
  color: #3D3D3D;
  text-decoration: underline;
}
.form-btn-wrapper {
  text-align: center;
  font-size: 0;
  max-width: 790px;
  margin: 60px auto 0;
}
.form-btn-wrapper .form-btn {
  display: inline-block;
  width: 45%;
  margin: 0 2.5% 20px;
  min-width: 280px;
  text-align: center;
}
.form-btn-wrapper .form-btn input {
  background: #F4672C url(../../cmn_img/recruit/contact/arrow.svg) no-repeat top 50% right 15%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: block;
  width: 100%;
  border: none;
  padding: 15px 0;
  max-width: 376px;
  margin: 0 auto;
  border-radius: 300px;
}
.form-btn-wrapper .form-btn input#clearForm, .form-btn-wrapper .form-btn input.form-btn_return {
  background: #575757;
}
.form-btn-wrapper .form-btn input:hover {
  opacity: .8;
}
.contact-page_topbtn {
  text-align: center;
  margin: 80px 0 0;
}
.contact-page_topbtn a {
  background: #F4672C url(../../cmn_img/recruit/contact/arrow.svg) no-repeat top 50% right 15%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: block;
  width: 100%;
  border: none;
  padding: 20px 0;
  max-width: 376px;
  margin: 0 auto;
  border-radius: 300px;
  text-decoration: none;
}
.input-p.ds {
  box-sizing: border-box;
  padding-left: 1em;
}
.input-p label {
  display: inline-block;
  margin-right: 10px;
}
.input-p label > * {
  display: inline-block;
  vertical-align: middle;
}
.input-p .nowrap {
  display: flex;
  align-items: center;
}
.input-p input{
  font-weight: 600;
}
.contact_txt{
  font-weight: 600;
}
.contact-thanks-text {
  color: #3D3D3D;
}
@media screen and (max-width: 1064px) {
  .contact-table th{
    font-size: 2rem; 
  }
  .ms-span, .ny-span {
    font-size: 1.2rem;
    margin: 5px 0 0 15px;
  }
}
@media screen and (max-width: 992px) {
  .contact-table th{
    width: 30%;
  }
  .contact-table th{
    font-size: 1.8rem; 
  }
}
@media screen and (max-width: 800px) {
  .contact-page {
    padding: 40px 20px 90px;
  }
  .form-p01 {
    font-size: 13px;
    margin: 0 auto 60px;
  }
  .contact-table th, .contact-table td {
    display: block;
    padding: 10px 5px;
    width: 100%;
    max-width: 100%;
    font-size: 16px;
  }
  .contact-table th {
    font-size: 1.4rem;
    border-bottom: none;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .ms-span, .ny-span {
    font-size: 1rem;
    margin: 0 0 0 10px;
    padding: 2px 5px;
  }
  .contact-table td {
    padding-bottom: 30px;
  }
  .contact-table td p {
    display: flex;
    padding-top: 1px;
  }
  .contact_txt{
    display: block!important;
  }
  .input-p label {
    margin: 0 10px 0 5px;
  }
  .form-btn-wrapper .form-btn {
    margin: 0 0 20px;
    width: 100%;
  }
  .form-btn-wrapper .form-btn input {
    background: #F4672C url(../../cmn_img/recruit/contact/arrow.svg) no-repeat top 50% right 10%;
    font-size: 20px;
    font-weight: bold;
    display: block;
    width: 100%;
    border: none;
    padding: 13px 0;
    max-width: none;
    margin: 0 auto;
    border-radius: 300px;
  }
  .contact-page_topbtn {
    text-align: center;
    margin: 40px 0 0;
  }
}
/*----------------------------------------------------
   ◆RECRUIT_TOP / CONTACT ヘッダー等
----------------------------------------------------*/
.sponly {
  display: none !important;
}
/* recruit head */
.zone_label, .zone_label_sub {
  font-size: 1.6rem;
}
.recruit_head {
  height: 324px;
  display: flex;
  align-items: center;
  margin-top: 60px;
}
.recruit_head_new {
  background: url(../../cmn_img/recruit/contact/contact_head.svg) no-repeat;
  background-size: cover;
}
.recruit_head_career {
  background: url(../../cmn_img/recruit/contact/career_head.svg) no-repeat;
  background-size: cover;
}
.recruit_head_inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.recruit_head h2 {
  font-size: 9.6rem;
  font-family: "Albert Sans", sans-serif;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 15px;
}
.recruit_head h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.recruit_page_title {
  text-align: center;
  margin: 40px 0 80px;
}
.recruit_page_title_career {
  margin-top: 160px;
}
.recruit_page_title_en {
  color: #F4BA3B;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Albert Sans", sans-serif;
  margin-bottom: 10px;
}
.recruit_page_title_en_career {
  color: #8080D6;
}
.recruit_page_title h3 {
  font-size: 3.8rem;
  font-weight: bold;
  color: #3D3D3D;
}
.recruit_page_title h3 span {
  font-size: 3rem;
}
.recruit_table {
  width: 100%;
  border-top: 1px solid #716F70;
  border-collapse: collapse;
}
.recruit_table th {
  width: 21%;
  background: #F5F5F5;
  padding: 17px 45px;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid #716F70;
  text-align: left;
  vertical-align: middle;
}
.recruit_table td {
  width: 79%;
  padding: 17px 45px;
  font-size: 1.6rem;
  line-height: 2;
  border-bottom: 1px solid #716F70;
}
/* career table */
.career_table {
  margin: 60px;
  box-sizing: border-box;
  border-top: 1px solid #716F70;
  background-color: #fff;
  color: #3D3D3D;
}
.career_table th, .career_table td {
  border-bottom: 1px solid #716F70;
  box-sizing: border-box;
  font-size: 16px;
  padding: 20px 30px;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
  width: 76%;
}
.career_table th {
  width: 24%;
  padding: 10px 20px 10px 40px;
  background-color: #F5F5F5;
  vertical-align: middle;
}
.career_table td {
  width: 75%;
  padding: 17px 20px;
  font-size: 1.4rem;
  background-color: #fff;
  border-bottom: 1px solid #716F70;
  line-height: 2;
}
.label_radio {
  font-size: 1.6rem;
}
.welfare_icon {
  font-size: 1.6rem;
  padding: 8px 0 8px 80px;
  margin: 10px 0;
}
.welfare_icon01 {
  background: url(../../cmn_img/recruit/contact/welfare_icon01.svg) no-repeat;
  background-size: 55px;
  background-position: center left;
}
.welfare_icon02 {
  background: url(../../cmn_img/recruit/contact/welfare_icon02.svg) no-repeat;
  background-size: 55px;
  background-position: center left;
}
.welfare_icon03 {
  background: url(../../cmn_img/recruit/contact/welfare_icon03.svg) no-repeat;
  background-size: 55px;
  background-position: center left;
}
.welfare_icon04 {
  background: url(../../cmn_img/recruit/contact/welfare_icon04.svg) no-repeat;
  background-size: 55px;
  background-position: center left;
}
.welfare_icon05 {
  background: url(../../cmn_img/recruit/contact/welfare_icon05.svg) no-repeat;
  background-size: 60px;
  background-position: center left;
}
.welfare_icon06 {
  background: url(../../cmn_img/recruit/contact/welfare_icon06.svg) no-repeat;
  background-size: 55px;
  background-position: center left;
}
.welfare_icon07 {
  background: url(../../cmn_img/recruit/contact/welfare_icon07.svg) no-repeat;
  background-size: 55px;
  background-position: center left;
}
.welfare_icon08 {
  background: url(../../cmn_img/recruit/contact/welfare_icon08.svg) no-repeat;
  background-size: 55px;
  background-position: center left;
}
.welfare_icon09 {
  background: url(../../cmn_img/recruit/contact/welfare_icon09.svg) no-repeat;
  background-size: 55px;
  background-position: center left;
}
.welfare_icon10 {
  background: url(../../cmn_img/recruit/contact/welfare_icon10.svg) no-repeat;
  background-size: 55px;
  background-position: center left;
}
.recruit_page_btn {
  margin: 80px 0 160px;
}
.recruit_page_btn img {
  width: 100%;
  height: auto;
}
.career_page_box {
  padding-bottom: 60px;
}
.recruit_page_link {
  width: 100%;
  height: 94px;
  background-color: #F4BA3B;
  margin: 80px 0 160px;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.career_page_link {
  width: -webkit-fill-available;
  width: -moz-available;
  height: 94px;
  background-color: #8080D6;
  margin: 80px 60px 0;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.recruit_page_link h3, .career_page_link h3 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
}
.recruit_page_entry {
  position: absolute;
  z-index: -1;
  right: -31px;
  bottom: -55px;
  width: 210px;
  height: 210px;
  padding-top: 45px;
  border-radius: 105px;
  background-color: #0ECAA7;
  transition: .3s;
}
.recruit_page_txt {
  position: absolute;
  bottom: 24px;
  right: 26px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: .05rem;
  text-align: left;
  color: #fff;
  padding: 0 36px 0 35px;
}
.recruit_page_txt::after {
  content: "";
  background-image: url(../../cmn_img/recruit/icon_arrow-right-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -20px;
  bottom: 1px;
  display: inline-block;
  width: 50px;
  height: 38px;
}
.recruit_page_link:hover .recruit_page_entry, .career_page_link:hover .recruit_page_entry {
  width: 250px;
  height: 250px;
  border-radius: 150px;
  bottom: -75px;
  transition: .3s;
}
.career_page_link_br {
  display: none;
}
.recruit_page_flow {
  background: #F1F6FF;
  border-radius: 20px;
  padding: 60px 60px 50px;
}
.recruit_page_flow_step {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}
.recruit_page_flow_step_box {
  width: 12.24%;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  position: relative;
}
.recruit_page_flow_step_text_box {
  position: absolute;
  width: 100%;
  bottom: -30px;
  left: 0;
  z-index: 1;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.recruit_page_flow_step_arrow {
  width: 5.312%;
  text-align: center;
}
.recruit_page_flow_step_arrow img {
  max-width: 32px;
  width: 100%;
  height: auto;
}
.recruit_page_flow_step_box img {
  width: 100%;
  height: auto;
}
.recruit_page_flow_step_text {
  display: flex;
  justify-content: space-between;
}
.recruit_page_flow_step_att {
  text-align: center;
  font-size: 1.4rem;
  margin: 40px 0 0;
}
/* contact head */
.contact_head {
  height: 178px;
  display: flex;
  align-items: center;
  margin-top: 80px;
}
.contact_head_new {
  background: url(../../cmn_img/recruit/contact/form_head.svg) no-repeat;
  background-size: cover;
}
.contact_head_career {
  background: url(../../cmn_img/recruit/contact/career_head.svg) no-repeat;
  background-size: cover;
}
.contact_head_global {
  background: url(../../cmn_img/recruit/contact/global_head.png) no-repeat;
  background-size: cover;
  background-position: right;
}
.contact_head h1 {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
/*----------------------------------------------------
   ◆RECRUIT_TOP / CONTACT：SP
----------------------------------------------------*/
@media screen and (max-width: 1380px) {
  .recruit_head,
  .contact_head{
    margin-top: 60px;
  }
}
@media screen and (max-width: 1170px) {
  .recruit_head_inner{
    margin: 0 40px;
  }
}
@media screen and (max-width: 1000px) {
  /* TOP pickup cards */
  .top-zone06-inr .pick-up-ul li {
    float: none !important;
    margin: 0 auto 10px !important;
    width: 100%;
    max-width: 600px;
  }
  .top-zone06-inr .pick-up-ul li a > i {
    width: 40px;
  }
  /* recruit header minor */
  .recruit-page .recruit-header-ul li {
    margin: 0 5px;
  }
  .recruit-page .recruit-header-ul li a {
    padding: 20px 6px;
    font-size: 14px;
  }
  .recruit-page .recruit-header-wrapper .recruit-header-mark {
    max-width: 140px;
    left: 10px;
  }
  .recruit-page .recruit-header-wrapper .recruit-header-entry-btn {
    max-width: 140px;
    right: 10px;
  }
}
@media screen and (max-width: 800px) {
  .pconly {
    display: none !important;
  }
  /* recruit head sp */
  .zone_label, .zone_label_sub {
    font-size: 1.6rem;
  }
  .recruit_head {
    height: 140px;
    display: flex;
    align-items: center;
  }
  .recruit_head_new {
    background: url(../../cmn_img/recruit/contact/contact_head_sp.svg) no-repeat;
    background-size: cover;
    margin-top: 60px;
  }
  .recruit_head_career {
    background: url(../../cmn_img/recruit/contact/career_head_sp.svg) no-repeat;
    background-size: cover;
    margin-top: 60px;
  }
  .recruit_head_inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 20px;
  }
  .recruit_head h2 {
    font-size: 4rem;
    font-family: "Albert Sans", sans-serif;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
  }
  .recruit_head h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  .recruit_page_title {
    text-align: center;
    margin: 20px 0 40px;
  }
  .recruit_page_title_career {
    margin-top: 100px;
  }
  .recruit_page_title_en {
    color: #F4BA3B;
    font-size: 2rem;
    font-weight: bold;
    font-family: "Albert Sans", sans-serif;
    margin-bottom: 10px;
  }
  .recruit_page_title_en_career {
    color: #8080D6;
  }
  .recruit_page_title h3 {
    font-size: 2.4rem;
    font-weight: bold;
    color: #3D3D3D;
  }
  .recruit_page_title h3 span {
    font-size: 2rem;
  }
  .recruit_table {
    width: 100%;
    border-top: 1px solid #716F70;
    border-collapse: collapse;
  }
  .recruit_table th {
    width: 25%;
    background: #F5F5F5;
    padding: 17px 20px;
    font-size: 1.4rem;
    font-weight: bold;
    border-bottom: 1px solid #716F70;
    text-align: left;
    line-height: 2;
    vertical-align: baseline;
  }
  .recruit_table td {
    width: 75%;
    padding: 17px 20px;
    font-size: 1.4rem;
    border-bottom: 1px solid #716F70;
    line-height: 2;
  }
  .career_table {
    width: auto;
    border-top: 1px solid #716F70;
    border-collapse: collapse;
    margin: 40px 20px;
  }
  .career_table th {
    width: 25%;
    background: #F5F5F5;
    padding: 17px 20px;
    font-size: 1.4rem;
    font-weight: bold;
    border-bottom: 1px solid #716F70;
    vertical-align: top;
    text-align: left;
    line-height: 2;
  }
  .career_table td {
    width: 75%;
    padding: 17px 20px;
    font-size: 1.4rem;
    background-color: #fff;
    border-bottom: 1px solid #716F70;
    line-height: 2;
  }
  .welfare_icon {
    font-size: 1.4rem;
    padding: 0 0 3px 47px;
    margin: 14px 0;
  }
  .welfare_icon01, .welfare_icon02, .welfare_icon03, .welfare_icon04, .welfare_icon05, .welfare_icon06, .welfare_icon07, .welfare_icon08, .welfare_icon09, .welfare_icon10 {
    background-size: 38px;
  }
  .recruit_page_btn {
    margin: 40px 0 80px;
  }
  .recruit_page_btn img {
    width: 100%;
    height: auto;
  }
  .career_page_box {
    padding-bottom: 40px;
  }
  .recruit_page_link {
    width: 100%;
    height: 80px;
    background-color: #F4BA3B;
    margin: 80px 0 120px;
    position: relative;
    z-index: 2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .career_page_link {
    width: -webkit-fill-available;
    width: -moz-available;
    height: 80px;
    background-color: #8080D6;
    margin: 40px 20px 0;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .career_page_link .recruit_page_txt::after {
    bottom: -6px;
    right: -5px;
  }
  .recruit_page_link h3, .career_page_link h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
  }
  .recruit_page_entry {
    position: absolute;
    z-index: -1;
    right: -60px;
    bottom: -60px;
    width: 210px;
    height: 210px;
    padding-top: 45px;
    border-radius: 105px;
    background-color: #0ECAA7;
    transition: .3s;
  }
  .recruit_page_txt {
    position: absolute;
    bottom: 25px;
    right: 26px;
    font-size: 0;
  }
  .recruit_page_txt::after {
    content: "";
    background-image: url(../../cmn_img/recruit/icon_arrow-right-white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -20px;
    bottom: -6px;
    display: inline-block;
    width: 50px;
    height: 38px;
  }
  .recruit_page_link:hover .recruit_page_entry {
    width: 250px;
    height: 250px;
    border-radius: 150px;
    bottom: -80px;
    transition: .3s;
  }
  .careerpage_link:hover .recruit_page_entry {
    width: 250px;
    height: 250px;
    border-radius: 150px;
    bottom: -80px;
    transition: .3s;
  }
  .career_page_link_br {
    display: none;
  }
  .recruit_page_flow {
    background: #F1F6FF;
    border-radius: 20px;
    padding: 30px;
  }
  .recruit_page_flow_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    text-align: center;
  }
  .recruit_page_flow_step_box {
    width: 120px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    position: relative;
    margin: 0 auto;
  }
  .recruit_page_flow_step_text_box {
    position: relative;
    bottom: 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .recruit_page_flow_step_arrow {
    width: 32px;
    height: 32px;
    text-align: center;
    margin: 15px 0;
  }
  .recruit_page_flow_step_arrow img {
    width: 100%;
    height: auto;
    transform: rotate(90deg);
  }
  .recruit_page_flow_step_box img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
  .recruit_page_flow_step_text {
    display: flex;
    justify-content: space-between;
  }
  .recruit_page_flow_step_att {
    text-align: left;
    font-size: 1.6rem;
    font-weight: bold;
    margin: 40px 0 0;
    line-height: 2;
  }
  /* contact head sp */
  .contact_head {
    height: 100px;
    display: flex;
    align-items: center;
    margin-top: 60px;
  }
  .contact_head_new {
    background: url(../../cmn_img/recruit/contact/form_head_sp.svg) no-repeat;
    background-size: cover;
  }
  .contact_head_career {
    background: url(../../cmn_img/recruit/contact/career_head_sp.svg) no-repeat;
    background-size: cover;
  }
  .contact_head_global {
    background: url(../../cmn_img/recruit/contact/global_head_sp.png) no-repeat;
    background-size: cover;
  }
  .contact_head h1 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
  .btn-career_sch button {
    background: #8080D6 url(../../cmn_img/recruit/contact/arrow.svg) no-repeat top 50% right 30px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding: 12px;
    border-radius: 200px;
    width: 100%;
    margin: 40px 0 20px;
    padding-right: 0;
    border: none;
  }
}
@media screen and (max-width: 600px) {
  .recruit_page_link h3, .career_page_link h3 {
    font-size: 2rem;
    text-align: center;
  }
  .recruit_page_entry {
    bottom: -64px;
    right: -100px;
  }
  .recruit_page_txt::after {
    right: 10%;
    bottom: 0px;
    width: 40px;
    height: 30px;
  }
  .career_page_link .recruit_page_txt::after {
    right: 10px;
    bottom: 0px;
    width: 40px;
    height: 30px;
  }
}
@media screen and (max-width: 470px) {
  .career_page_link .recruit_page_txt::after {
    right: -20px;
  }
}
@media screen and (max-width: 420px) {
  .recruit_page_txt::after{
    right: -3%;
  }
}
@media screen and (max-width: 400px) {
  .career_table th {
    width: 27%;
    padding: 17px 10px;
    font-size: 1.3rem;
  }
  .career_table td{
    font-size: 1.3rem;
  }
  .recruit_page_txt::after{
    right: -8%;
  }
}
@media screen and (max-width: 390px) {
  .career_page_link .recruit_page_txt::after {
    right: -20px;
  }
  .career_page_link_br {
    display: block;
  }
}
@media screen and (max-width: 360px) {
  .recruit_page_link h3, .career_page_link h3 {
    font-size: 1.6rem;
  }
}
/*----------------------------------------------------
   ◆GLOBAL
----------------------------------------------------*/
.global {
  background-color: #900F00;
}
.main {
  width: 100%;
  height: 917px;
  overflow: hidden;
  margin-top: 80px;
}
.gallery {
  position: relative;
}
.gallery .swiper {
  transform: rotate(-16deg);
  margin-inline: auto;
  overflow: inherit !important;
  padding: 16px 0;
}
.gallery .swiper-wrapper {
  display: flex;
  transition-timing-function: linear;
}
.gallery .swiper-slide {
  width: 25%;
  flex-shrink: 0;
}
.gallery img {
  height: auto;
  width: auto;
  max-width: 100%;
  display: block;
  padding: 0 10px;
}
.global_mv-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(145, 15, 0, 0.7);
  z-index: 2;
  margin: auto;
  padding: 27px 80px 42px;
}
.global_mv-copy h1 {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 4rem;
  text-align: center;
  width: max-content;
  margin-bottom: 25px;
}
.global_mv-copy h1 strong rt {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: -7px;
}
.global_mv-copy h1 strong {
  font-size: 5.2rem;
}
.global_mv-copy h2 {
  font-family: "Noto Serif JP", serif;
  color: #FFD342;
  font-weight: 600;
  font-size: 3rem;
}
.global_mv-copy_br {
  display: none;
}
.global_message {
  background-image: url(../../cmn_img/recruit/global/global_message-world.png);
  background-size: 60%;
  background-position: top 120px right -200px;
  background-repeat: no-repeat;
  background-color: #900F00;
  padding-top: 120px;
}
.global_message p {
  font-family: "Source Sans 3", sans-serif;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}
.global_message-container01, .global_message-container02 {
  width: 100%;
  max-width: 1046px;
  margin: 0 auto 70px;
}
.global_message-container02 {
  display: flex;
  align-items: flex-end;
}
.global_message-txt01 {
  font-size: 3rem;
}
.global_message-txt02 {
  font-size: 4.6rem;
}
.global_message-bold {
  font-size: 5.4rem;
}
.global_message-copy {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin-top: -70px;
  margin: -70px auto 138px;
}
.global_message-banner {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 100px auto 138px;
}
.global_message-banner:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.global_pro {
  background-image: url(../../cmn_img/recruit/global/global_pro.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 175px 0 0;
}
.global_pro h3, .global_pro p {
  color: #fff;
  font-weight: 600;
}
.global_pro-top {
  position: relative;
  text-align: justify;
  margin-bottom: 85px;
}
.global_pro-top h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 7.2rem;
  text-align: center;
}
.global_pro-bold_br {
  display: none;
}
.global_pro-bold_pc-br {
  display: block;
}
.global_pro-copy {
  position: absolute;
  top: -56px;
  left: -81px;
  width: 180px;
}
.global_pro-bold {
  font-size: 3.4rem;
  margin-bottom: 35px;
}
.global_pro-txt {
  font-size: 2rem;
  text-align: center;
  line-height: 2;
  margin-bottom: 120px;
}
.global_pro-txt_br {
  display: block;
}
.global_pro-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 942px;
  margin-bottom: 182px;
}
.global_pro-section {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid #fff 1px;
  width: 460px;
  height: 102px;
  border-radius: 18px;
  margin-bottom: 22px;
}
.global_pro-section p {
  font-size: 2.2rem;
}
.global_network {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 192px 0;
}
.global_network h3, .global_network span, .global_network p {
  color: #fff;
}
.global_network-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-image: url(../../cmn_img/recruit/global/global_network-bg.png);
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
.global_network-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 7.2rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.global_network-txt {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 80px;
}
.global_network-world {
  width: 80%;
  margin: 0 auto 64px;
}
.global_network-info {
  display: flex;
  flex-direction: column;
  width: 936px;
  border: solid #fff 2px;
  border-radius: 20px;
  margin-bottom: 180px;
  padding: 40px;
}
.global_network-info-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 40px;
}
.global_network-info-heading span {
  font-size: 2.4rem;
  font-weight: 600;
  color: #900F00;
}
.global_network-info-container {
  display: flex;
  flex-direction: column;
}
.global_network-info-section {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.global_network-info-section:last-child {
  margin-bottom: 0;
}
.global_network-info-section span {
  font-size: 2rem;
  font-weight: 600;
  min-width: 260px;
}
.global_network-info-section span::before {
  content: '●';
  color: #fff;
  font-size: 2.4rem;
  margin-right: 8px;
}
.global_network-slider {
  overflow: hidden;
  width: 100%;
}
.global_network-slider-container {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: gn-scroll var(--duration, 30s) linear infinite;
}
.global_network-slider-section {
  display: flex;
  align-items: center;
  gap: 24px;
}
.global_network-slider img {
  display: block;
  height: 280px;
  width: auto;
  pointer-events: none;
}
@keyframes gn-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--set-width)));
  }
}
@media (prefers-reduced-motion: reduce) {
  .global_network-slider-container {
    animation: none;
  }
}
.global_personal {
  background-image: url(../../cmn_img/recruit/global/global_personal.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 175px 0 120px;
}
.global_personal h3, .global_personal h4, .global_personal p, .global_personal span {
  color: #fff;
  font-weight: 600;
}
.global_personal-top {
  position: relative;
  margin-bottom: 85px;
}
.global_personal-top h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 7.2rem;
  text-align: center;
}
.global_personal-copy {
  position: absolute;
  top: -56px;
  left: -81px;
  width: 180px;
}
.global_personal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.global_persona-heading {
  display: flex;
  align-items: flex-end;
  margin-bottom: 32px;
}
.global_persona-heading span {
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  margin: 0 10px 4px 0;
}
.global_persona-heading h4 {
  font-size: 4.8rem;
}
.global_personal-bold {
  text-align: center;
  line-height: 2;
  font-weight: 300 !important;
  max-width: 906px;
  margin-bottom: 64px;
}
.global_interview {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #900F00;
  padding: 87px 0 100px;
}
.global_interview h3, .global_interview h4, .global_interview p, .global_interview span {
  color: #fff;
}
.global_interview h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 7.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.global_interview-txt {
  font-size: 2rem;
  margin-bottom: 40px;
}
.global_interview-border {
  width: 80px;
  border-bottom: 6px solid #F4BA3B;
  margin-bottom: 86px;
}
.global_interview-container {
  display: flex;
  justify-content: space-between;
  width: -webkit-fill-available;
  width: -moz-available;
  max-width: 1140px;
  margin-bottom: 130px;
}
.global_interview-section {
  display: flex;
  flex-direction: column;
  width: 30%;
}
.global_interview-wrapper {
  background-color: #3D3D3D;
  margin-top: -2px;
  padding: 31px;
}
.global_interview-wrapper h4, .global_interview-wrapper span {
  font-weight: 600;
}
.global_interview-wrapper h4 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.global_interview-wrapper span {
  font-size: 1.8rem;
}
.global_interview-wrapper p {
  font-size: 1.6rem;
}
.global_interview-more {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.global_interview-more span {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 40px;
}
.global_interview-more a {
  width: 100%;
  max-width: 1120px;
}
.global_interview-more a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
@media screen and (max-width: 1380px) {
  .main {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1340px) {
  .global_message-copy {
    display: block;
    width: 90%;
    margin: -70px auto 0;
  }
}
@media screen and (max-width: 1340px) {
  .main {
    height: 800px;
  }
}
@media screen and (max-width: 1200px) {
  .main {
    height: 700px;
  }
}
@media screen and (max-width: 1180px) {
  .global_message-banner {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 138px 20px 138px;
  }
  .global_network {
    padding: 100px 0 192px;
  }
  .global_interview-container {
    margin-bottom: 130px;
    margin: 0 20px 130px;
  }
  .global_interview-more a {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0 20px;
  }
}
@media screen and (max-width: 1080px) {
  .main {
    height: 900px;
  }
  .global_message {
    margin-top: -80px;
    padding-top: 0;
  }
  .global_message-container01, .global_message-container02 {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0 20px 70px;
  }
  .global_personal-bold {
    margin: 0 20px 64px;
  }
  .global_pro {
    padding: 175px 20px 0;
  }
  .global_pro-section {
    width: 48%;
  }
}
@media screen and (max-width: 1072px) {
  .main {
    height: 900px;
  }
}
@media screen and (max-width: 1000px) {
  .gallery .swiper {
    padding: 14px 0;
  }
  .gallery .swiper-slide {
    width: 32%;
  }
  .gallery img {
    padding: 0 7px;
  }
  .main {
    width: 100%;
    height: 1000px;
    overflow: hidden;
  }
}
@media screen and (max-width: 950px) {
  .main {
    height: 950px;
  }
}
@media screen and (max-width: 900px) {
  .global_network-info {
    width: -webkit-fill-available;
    width: -moz-available;
    margin: 0 20px 180px;
  }
}
@media screen and (max-width: 860px) {
  .main {
    height: 900px;
  }
}
@media screen and (max-width: 840px) {
  .global_mv-copy {
    width: 90%;
    padding: 27px 20px 40px;
  }
}
@media screen and (max-width: 820px) {
  .global_message {
    margin-top: -160px;
  }
  .global_message-container02 {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media screen and (max-width: 780px) {
  .main {
    height: 880px;
  }
}
@media screen and (max-width: 740px) {
  .main {
    height: 850px;
  }
  .global_mv-copy h1 {
    margin-bottom: 5px;
  }
  .global_mv-copy_br {
    display: block;
  }
  .global_mv-copy h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 700px) {
  .main {
    height: 820px;
  }
  .global_pro-top {
    margin-bottom: 50px;
  }
  .global_pro-top h3 {
    font-size: 4.5rem;
  }
  .global_pro-copy {
    top: -45px;
    left: -45px;
    width: 112px;
  }
  .global_pro-bold {
    font-size: 2.2rem;
    text-align: center;
  }
  .global_pro-txt {
    font-size: 1.6rem;
    font-weight: 500 !important;
    text-align: left;
    margin-bottom: 60px;
  }
  .global_pro-container {
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }
  .global_pro-section {
    width: 100%;
    height: 54px;
    border-radius: 10px;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .global_network-top {
    width: -webkit-fill-available;
    width: -moz-available;
    background-image: url(../../cmn_img/recruit/global/global_network-bg_sp.png);
    background-position: top 5px center;
    background-size: 101%;
    margin: 0;
  }
  .global_network-txt{
    margin: 0 20px 80px;
  }
  .global_network-heading {
    font-size: 4.8rem;
    margin: 16px 0 50px;
  }
  .global_network-world {
    display: none;
  }
  .global_interview-container {
    flex-direction: column;
    align-items: center;
  }
  .global_interview-section {
    width: 60%;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
  }
}
@media screen and (max-width: 650px) {
  .main {
    height: 750px;
  }
}
@media screen and (max-width: 632px) {
  .global_message {
background-size: 120%;
    margin-top: -220px;
    background-position: top 120px right -200px;
  }
  .global_message-container01, .global_message-container02 {
    margin: 0 20px 40px;
  }
  .global_message-txt01 {
    font-size: 1.6rem;
  }
  .global_message-bold {
    font-size: 3rem;
  }
  .global_message-txt02 {
    font-size: 2rem;
  }
  .global_message-copy {
    display: block;
    width: 80%;
    margin: 0px auto 0;
  }
  .global_message-banner {
    margin: 80px 20px 40px;
  }
}
@media screen and (max-width: 500px) {
  .main {
    height: 780px;
  }
  .gallery .swiper{
    padding: 11px 0;
  }
  .gallery .swiper-slide {
    width: 52%;
    flex-shrink: 0;
  }
  .global_mv-copy {
    padding: 30px 20px 20px;
  }
  .global_mv-copy h1 {
    font-size: 3.2rem;
  }
  .global_mv-copy h1 strong {
    font-size: 3.8rem;
  }
  .global_mv-copy h1 strong rt {
    margin-bottom: -9px;
  }
  .global_message {
    padding-top: 130px;
  }
  .global_message-copy {
    display: block;
    width: 90%;
    margin: 0px auto 0;
    margin-top: 0px;
    margin-top: -30px;
  }
  .global_pro {
    padding: 100px 20px 0;
  }
  .global_pro-copy {
    top: -28px;
    left: -32px;
    width: 90px;
  }
  .global_pro-txt {
    margin-bottom: 40px;
  }
  .global_pro-txt_br {
    display: none;
  }
  .global_pro-top h3 {
    font-size: 3.6rem;
  }
  .global_pro-bold_br {
    display: block;
  }
  .global_pro-bold_pc-br {
    display: none;
  }
  .global_pro-section p {
    font-size: 1.8rem;
  }
  .global_network {
    padding: 40px 0 80px;
  }
  .global_network-heading {
    font-size: 3.6rem;
    margin-bottom: 35px;
  }
  .global_network-txt {
    margin-bottom: 40px;
  }
  .global_network-info {
    margin: 0 20px 60px;
    padding: 20px;
  }
  .global_network-info-heading {
    margin-bottom: 20px;
  }
  .global_network-info-heading span {
    font-size: 1.8rem;
    padding: 3px 0;
  }
  .global_network-info-section span {
    margin-bottom: 10px;
  }
  .global_network-info-section {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .global_network-info-section span::before {
    display: none;
  }
  .global_network-slider img{
    height: 168px;
  }
  .global_personal {
    padding: 100px 0 30px
  }
  .global_personal-top {
    margin-bottom: 50px;
  }
  .global_personal-top h3 {
    font-size: 3.6rem;
    margin-left: 20px;
  }
  .global_persona-heading span {
    font-size: 1.6rem;
    margin: 0 10px 2px 0;
  }
  .global_persona-heading {
    margin-bottom: 20px;
  }
  .global_persona-heading h4 {
    font-size: 2.6rem;
  }
  .global_personal-bold {
    text-align: left;
    margin-bottom: 50px;
  }
  .global_interview-container {
    margin: 0 20px 90px;
  }
  .global_interview {
    padding: 50px 0 40px;
  }
  .global_interview h3 {
    font-size: 5rem;
    margin-bottom: 0;
  }
  .global_interview-txt {
    font-size: 1.6rem;
  }
  .global_interview-border {
    margin-bottom: 40px;
  }
  .global_interview-section {
    width: 100%;
  }
  .global_interview-wrapper {
    padding: 30px;
  }
  .global_interview-more span {
    font-size: 1.4rem;
    margin: 0 20px 20px;
  }
}
@media screen and (max-width: 470px) {
  .main {
    height: 750px;
  }
}
@media screen and (max-width: 450px) {
  .main {
    height: 700px;
  }
}
@media screen and (max-width: 420px) {
  .main {
    height: 670px;
  }
}
@media screen and (max-width: 400px) {
  .main {
    height: 650px;
  }
}
@media screen and (max-width: 390px) {
  .main {
    height: 620px;
  }
}
@media screen and (max-width: 370px) {
  .main {
    height: 625px;
  }
}
/*----------------------------------------------------
   ◆404
----------------------------------------------------*/
.error {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 180px 0 100px;
  color: #3D3D3D;
}
.error_heading {
  font-family: "Roboto", sans-serif;
  font-size: 6rem;
  font-weight: 600;
  margin-bottom: 40px;
}
.error_txt {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 80px;
}
.error_btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 376px;
  height: 62px;
  border-radius: 31px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
  color: #fff;
  background-color: #FA5D1B;
}
.error_btn::after {
  content: "";
  background-image: url(../../cmn_img/recruit/icon_arrow-right-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 98px;
  bottom: 19px;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 10px;
}
.error_btn:hover {
  opacity: 0.5;
  transition: 0.3s;
}
@media screen and (max-width: 500px) {
  .error_heading {
    font-size: 3.2rem;
  }
  .error_btn {
    width: -webkit-fill-available;
    width: -moz-available;
  }
  .error_btn::after {
    right: 80px;
  }
}
@media screen and (max-width: 450px) {
  .error_btn::after {
    right: 75px;
  }
}
@media screen and (max-width: 500px) {
  .error_btn::after {
    right: 60px;
  }
}
/*404*/