@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1300px) {
  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 45%;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  width: 100%;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  background-color: #090d15;
  font-size: 1.6rem;
}

body.page-template-page-recruit {
  background-color: #fff;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

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

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

a {
  text-decoration: none;
  color: #000;
}

@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.5;
  }
}

#contents {
  overflow: hidden;
}

body.home #contents {
  overflow: visible;
}

.contents-box {
  padding: 0 20px;
}

.contents-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}


@media screen and (max-width: 1500px) {
  .contents-inner {
    max-width: 85vw;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }

  .contents-inner {
    max-width: 88vw;
  }
}

/*-----------------------------------
header
-------------------------------------*/
#globalHeader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  padding: 20px;
}

#globalHeader .header-inner {
  max-width: 1400px;
  padding: 0 3rem;
  border-radius: 10px;
  background-color: rgba(28, 47, 118, 0.3);
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 70px;
  position: relative;
  transition: background-color 0.4s ease;
}

#globalHeader.active .header-inner {
  background-color: rgba(28, 47, 118, 0.8);
}

#globalHeader .logo img {
  max-width: 15rem;
}

#globalHeader .logo {
  padding-right: 100px;
  padding: 0 2rem 0 0;
}

#globalHeader .global-navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 10rem;
}

#globalHeader .global-navi .page-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 20px;
}

#globalHeader .global-navi .page-link .has-sub {
  position: relative;
}

#globalHeader .global-navi .page-link .has-sub .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -230px;
  z-index: 1000;
  padding-top: 35px;
}

#globalHeader .global-navi .page-link .has-sub:hover .sub-menu {
  display: block;
}

#globalHeader .global-navi .page-link .has-sub .sub-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  background: #fff;
  border-radius: 7px;
  padding: 3rem;
}

#globalHeader .global-navi .page-link .has-sub .sub-menu li a {
  display: block;
  color: #0134df;
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 15px;
  border-bottom: 1px solid #e4e5e9;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
}

#globalHeader .global-navi .page-link .has-sub .sub-menu li a:hover {
  opacity: 1;
}

#globalHeader .global-navi .page-link .has-sub .sub-menu li a:hover .circle {
  transform: scale(1);
  border-radius: 6px;
}

#globalHeader .global-navi .page-link .has-sub .sub-menu li a:hover .arrow {
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

#globalHeader .global-navi .page-link a {
  font-size: 1.2rem;
  color: #ffffff;
}

#globalHeader .global-navi .other-btn {
  display: flex;
  justify-content: end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 10px;
}

#globalHeader .sp-menu {
  position: fixed;
  z-index: 110;
  top: 30px;
  right: 40px;
  width: 30px;
  height: 30px;
}

#globalHeader .sp-menu a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  top: 2px;
}

#globalHeader .sp-menu a.noactive span {
  animation-duration: 0s !important;
}

#globalHeader .sp-menu a.active span:nth-of-type(1) {
  animation-name: menuAnim1;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#globalHeader .sp-menu a.active span:nth-of-type(2) {
  animation-name: menuAnim3;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#globalHeader .sp-menu a span {
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #fff;
}

#globalHeader .sp-menu a.active span {
  width: 30px;
}

#globalHeader .sp-menu a span:nth-of-type(1) {
  top: 15px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim4;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#globalHeader .sp-menu a span:nth-of-type(2) {
  top: 26px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim6;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

@keyframes menuAnim1 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 18px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

@keyframes menuAnim3 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 18px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
}

@keyframes menuAnim4 {
  0% {
    top: 18px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  100% {
    top: 12px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes menuAnim6 {
  0% {
    top: 18px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }

  100% {
    top: 26px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@media screen and (max-width: 1100px) {
  #globalHeader .global-navi {
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  #globalHeader .header-inner {
    height: 60px;
  }

  #globalHeader .logo {
    padding: 0;
  }

  #globalHeader .logo img {
    max-width: 14rem;
  }

  #globalHeader .global-navi {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 120px 20px 60px;
    background-color: #090d15;
  }

  #globalHeader .global-navi .sp-logo {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    padding: 0 20px;
  }

  #globalHeader .global-navi .sp-logo a {
    width: 100%;
    padding: 0 3rem;
    border-radius: 10px;
    background-color: rgba(28, 47, 118, 0.3);
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    height: 60px;
    position: relative;
    z-index: 101;
  }

  #globalHeader .global-navi .sp-logo a img {
    max-width: 14rem;
  }

  #globalHeader .global-navi .page-link {
    display: block;
  }

  #globalHeader .global-navi .page-link a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333333;
    padding: 25px 10px;
    color: #fafafa;
    font-size: 1.3rem;
    font-weight: 300;
  }

  #globalHeader .global-navi .page-link .sp-sub {
    border-bottom: 1px solid #333333;
  }

  #globalHeader .global-navi .page-link .sp-sub .sp-head {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10px;
    color: #fafafa;
    font-size: 1.3rem;
    font-weight: 300;
  }

  #globalHeader .global-navi .page-link .sp-sub .sp-head::before {
    content: "";
    background-size: 100% !important;
    position: absolute;
    background: url(../images/common/sp_menu_plus_icon.png) no-repeat;
    top: 17px;
    right: 10px;
    width: 3.5rem;
    height: 3.5rem;
  }

  #globalHeader .global-navi .page-link .sp-sub.active .sp-head::before {
    background: url(../images/common/sp_menu_sub_icon.png) no-repeat;
  }

  #globalHeader .global-navi .page-link .sp-sub .sp-head a {
    display: block;
    width: auto;
    padding: 0;
    border-bottom: unset;
  }

  #globalHeader .global-navi .page-link .sp-sub ul li a {
    color: #666666;
    font-size: 1.1rem;
    border-bottom: unset;
    padding: 10px 10px;
    font-weight: 400;
  }

  #globalHeader .global-navi .page-link .sp-sub ul li:first-child a {
    padding-top: 0;
  }

  #globalHeader .global-navi .page-link .sp-sub ul li:last-child a {
    padding-bottom: 25px;
  }

  #globalHeader .global-navi .other-btn {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 4rem;
    gap: 20px;
  }

  #globalHeader .global-navi .other-btn a {
    width: 46%;
    height: 5rem;
  }
}

/*-----------------------------------
header recruit
-------------------------------------*/
#recruitHeader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  padding: 20px;
  background-color: #fff;
}

#recruitHeader .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  position: relative;
}

#recruitHeader .logo {
  padding: 0 1rem;
}

#recruitHeader .logo img {
  max-width: 20rem;
}

#recruitHeader .recruit-navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 3rem;
}

#recruitHeader .recruit-navi .top-link {
  justify-content: end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 3rem;
  padding-bottom: 10px;
}

#recruitHeader .recruit-navi .top-link li {
  position: relative;
}

#recruitHeader .recruit-navi .top-link li:first-child::before {
  content: "";
  position: absolute;
  right: -16px;
  top: 56%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #c3c3c3;
}

#recruitHeader .recruit-navi .top-link a {
  font-size: 1.3rem;
}

#recruitHeader .recruit-navi .page-link {
  display: flex;
  justify-content: end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 4rem;
}

#recruitHeader .recruit-navi .page-link a,
#recruitHeader .recruit-navi .page-link .link {
  font-weight: bold;
}

#recruitHeader .recruit-navi .page-link .link:hover {
  opacity: .5;
  cursor: pointer;
}

#recruitHeader .recruit-navi .other-btn .recruit-scroll-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  height: 80px;
  width: 32rem;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  color: #fff;
  font-size: 1.8rem;
  border-radius: 10px;
  font-family: "termina", sans-serif;
  padding: 0 4rem;
}

#recruitHeader .recruit-navi .other-btn .recruit-scroll-link:hover {
  opacity: .5;
  cursor: pointer;
}

#recruitHeader .sp-menu {
  position: fixed;
  z-index: 110;
  top: 15px;
  right: 30px;
  width: 30px;
  height: 30px;
}

#recruitHeader .sp-menu a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  top: 0px;
}

#recruitHeader .sp-menu a.noactive span {
  animation-duration: 0s !important;
}

#recruitHeader .sp-menu a.active span:nth-of-type(1) {
  animation-name: menuAnimRecruit1;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#recruitHeader .sp-menu a.active span:nth-of-type(2) {
  animation-name: menuAnimRecruit3;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#recruitHeader .sp-menu a span {
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #000000;
}

#recruitHeader .sp-menu a.active span {
  width: 30px;
}

#recruitHeader .sp-menu a span:nth-of-type(1) {
  top: 15px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnimRecruit4;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#recruitHeader .sp-menu a span:nth-of-type(2) {
  top: 26px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnimRecruit6;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

@keyframes menuAnimRecruit1 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 18px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

@keyframes menuAnimRecruit3 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 18px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
}

@keyframes menuAnimRecruit4 {
  0% {
    top: 18px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  100% {
    top: 12px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes menuAnimRecruit6 {
  0% {
    top: 18px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }

  100% {
    top: 26px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@media screen and (max-width: 768px) {
  #recruitHeader {
    height: 70px;
    padding: 18px 30px;
  }

  #recruitHeader .logo {
    padding: 0;
  }

  #recruitHeader .logo img {
    max-width: 14rem;
  }

  #recruitHeader .recruit-navi {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 100px 20px 60px;
    background-color: #fff;
  }

  #recruitHeader .recruit-navi .sp-logo {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    padding: 18px 30px;
  }

  #recruitHeader .recruit-navi .sp-logo a {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    position: relative;
    z-index: 101;
  }

  #recruitHeader .recruit-navi .sp-logo a img {
    max-width: 14rem;
  }

  #recruitHeader .recruit-navi .page-link {
    display: block;
  }

  #recruitHeader .recruit-navi .page-link a,
  #recruitHeader .recruit-navi .page-link .link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dddddd;
    padding: 20px 10px;
    font-size: 1.3rem;
  }

  #recruitHeader .recruit-navi .top-link {
    padding-bottom: 5rem;
    padding-top: 3rem;
    justify-content: start;
  }

  #recruitHeader .recruit-navi .top-link li:first-child::before {
    display: none;
  }

  #recruitHeader .recruit-navi .top-link a {
    color: #666666;
    font-size: 1.1rem;
  }

  #recruitHeader .recruit-navi .other-btn .recruit-scroll-link {
    justify-content: center;
    height: 5.5rem;
    width: 21rem;
    font-size: 1.5rem;
    padding: 0 1rem;
    margin: auto;
  }
}

/*---------------------------
footer
-----------------------------*/
#globalFooter {
  background-color: #090d15;
}

#globalFooter .footer-inner {
  max-width: 1280px;
  margin: auto;
  border-top: 1px solid #333333;
  padding: 100px 20px 90px;
}

#globalFooter .footer-btm {
  display: flex;
  justify-content: space-between;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 5rem;
}

#globalFooter .footer-btm .logo a {
  display: block;
  width: fit-content;
}

#globalFooter .footer-btm .logo img {
  width: 23rem;
}

#globalFooter .footer-btm .fotter-right {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

#globalFooter .footer-btm .global-navi {
  display: flex;
  justify-content: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 10rem;
}

#globalFooter .footer-btm .global-navi .page-link li {
  padding-bottom: 25px;
}

#globalFooter .footer-btm .global-navi .page-link li a {
  color: #fafafa;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 300;
}

#globalFooter .footer-btm .global-navi .page-link li.sub {
  padding-bottom: 15px;
}

#globalFooter .footer-btm .global-navi .page-link li.sub a {
  font-size: 1.3rem;
  color: #666666;
}

#globalFooter .copyright {
  font-size: 1.3rem;
  letter-spacing: 0.48px;
  margin: auto;
  padding-top: 60px;
  color: #666666;
  font-family: "termina", sans-serif;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  #globalFooter {
    padding: 0px 20px 30px;
  }

  #globalFooter .footer-inner {
    padding: 60px 0px 30px;
  }

  #globalFooter .footer-btm {
    display: block;
  }

  #globalFooter .footer-btm .logo {
    text-align: center;
    padding-bottom: 4rem;
  }

  #globalFooter .footer-btm .logo img {
    width: 20rem;
  }

  #globalFooter .footer-btm .logo a {
    width: auto;
  }

  #globalFooter .footer-btm .global-navi .page-link li {
    border-bottom: 1px solid #333333;
    margin-bottom: 25px;
  }

  #globalFooter .footer-btm .global-navi .page-link li.sub {
    border-bottom: unset;
    margin-bottom: 0px;
  }

  #globalFooter .footer-btm .global-navi .page-link .sp-sub {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  #globalFooter .footer-btm .global-navi .page-link .sp-sub .sp-head {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0px;
    color: #fafafa;
    font-size: 1.3rem;
    font-weight: 300;
  }

  #globalFooter .footer-btm .global-navi .page-link .sp-sub .sp-head::before {
    content: "";
    background-size: 100% !important;
    position: absolute;
    background: url(../images/common/sp_menu_plus_icon.png) no-repeat;
    top: 17px;
    right: 10px;
    width: 3.5rem;
    height: 3.5rem;
  }

  #globalFooter .footer-btm .global-navi .page-link .sp-sub.active .sp-head::before {
    background: url(../images/common/sp_menu_sub_icon.png) no-repeat;
  }

  #globalFooter .footer-btm .global-navi .page-link .sp-sub ul li:first-child {
    padding-top: 0;
  }

  #globalFooter .footer-btm .global-navi .page-link .sp-sub ul li:last-child {
    padding-bottom: 25px;
  }

  #globalFooter .footer-btm .fotter-right {
    display: block;
  }

  #globalFooter .footer-btm .global-navi {
    display: block;
  }
}

/*--------------------------
common
----------------------------*/
.common-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  width: 13rem;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  overflow: hidden;
  border-radius: 4rem;
  font-family: "Montserrat", sans-serif;
  padding: 0 1.5rem 0 2rem;
}

.common-btn.black {
  background: #080c12;
  border: 1px solid #9d9b9b;
  color: #fafafa;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  height: 7rem;
  width: 24rem;
  padding: 0 2rem 0 3rem;
}

.common-btn.white {
  background: #fff;
  border: 1px solid #999999;
  color: #000000;
  font-family: "termina", sans-serif;
  font-size: 1.6rem;
  height: 7rem;
  width: 24rem;
  padding: 0 2rem 0 3rem;
}

.common-btn.lightblue {
  /* background: #003ccc; */
  color: #8ea8d5;
  font-size: 1.2rem;
  font-family: "termina", sans-serif;
  border: 1px solid #456fd3;
  height: 4rem;
  width: 18rem;
  padding: 0 2rem 0 3rem;
  margin-top: 25px;
}

.common-btn.transparency {
  background: none;
  color: #d7dfec;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid #6f889b;
  height: 6rem;
  width: 22rem;
  padding: 0 2rem 0 3rem;
}

.common-btn.small-circle {
  height: 3.6rem;
  width: 3.6rem;
  padding: 0;
  justify-content: center;
}

.common-btn .circle {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  transition: transform 0.4s ease, border-radius 0.4s ease;
  transform: scale(0.27);
  transform-origin: center;
  flex-shrink: 0;
  overflow: hidden;
}

.common-btn.black .circle {
  background: #fafafa;
  width: 2rem;
  height: 2rem;
}

.common-btn.white .circle {
  background: #000000;
  width: 2rem;
  height: 2rem;
}

.common-btn.lightblue .circle {
  background: #8ea8d5;
  width: 1.5rem;
  height: 1.5rem;
}

.common-btn.transparency .circle {
  background: #d7dfec;
  width: 2rem;
  height: 2rem;
}

.common-btn .arrow {
  position: absolute;
  left: -120%;
  top: 55%;
  transform: translateY(-50%);
  color: #1c2f76;
  font-size: 10px;
  font-weight: bold;
  transition: left 0.4s ease 0.2s;
  white-space: nowrap;
  opacity: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}

.common-btn.black .arrow {
  color: #000;
}

.common-btn.white .arrow {
  color: #fff;
}

.common-btn:hover {
  opacity: 1;
}

.common-btn:hover .circle {
  transform: scale(1);
  border-radius: 6px;
}

.common-btn:hover .arrow {
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.common-head {
  font-size: 7rem;
  font-family: "termina", sans-serif;
  color: #fff;
  font-weight: 300;
  position: relative;
  line-height: 1;
}

.common-head.black {
  color: #000;
}

.common-head::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/head_icon.png) no-repeat;
  top: -25px;
  left: -20px;
  width: 27px;
  height: 40px;
}

.sub-common-head .head {
  font-size: 5.8rem;
  font-family: "termina", sans-serif;
  color: #f9fafb;
  font-weight: 300;
}

.sub-common-head .sub-head {
  font-size: 2rem;
  color: #0f79fd;
  font-weight: 400;
  padding: 1rem 0 6rem;
}

.scroll-text {
  background: linear-gradient(to left, #333 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.3s ease-out;
}

.c-submv {
  position: relative;
  padding: 25rem 20px 12rem;
  border-bottom: 1px solid #333333;
}

.c-submv.light {
  padding: 20rem 20px 6rem;
}

.c-submv.light::before {
  /* content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/light_bk.png) no-repeat;
  top: 0px;
  right: 0px;
  width: 1600px;
  height: 1143px; */
}

.c-submv::before {
  /* content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/sub_mv_bk.png) no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: 80px;
  width: 1937px;
  height: 363px;
  z-index: -1; */
}

.c-submv .title .en-head {
  font-size: 7rem;
  font-family: "termina", sans-serif;
  color: #fff;
  position: relative;
  line-height: 1;
  font-weight: 300;
}

.c-submv .title .en-head::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/common/head_icon.png) no-repeat;
  top: -25px;
  left: -20px;
  width: 27px;
  height: 40px;
}

.c-submv .title .head {
  font-size: 1.3rem;
  color: #67799d;
  font-weight: 400;
  padding-top: 20px;
}

@media screen and (max-width: 1600px) {
  .c-submv::before {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .c-submv {
    padding: 13rem 20px 5rem;
  }

  .c-submv.light {
    padding: 13rem 20px 5rem;
  }

  .c-submv .title .en-head {
    font-size: 4.5rem;
  }

  body.page-template-page-sustainability .c-submv .title .en-head,
  body.page-template-page-poricy .c-submv .title .en-head {
    font-size: 3.5rem;
  }

  .c-submv .title .en-head::before {
    top: -20px;
    left: -13px;
    width: 20px;
    height: 25px;
  }

  .common-head {
    font-size: 4.5rem;
  }

  .common-head::before {
    top: -20px;
    left: -13px;
    width: 20px;
    height: 25px;
  }

  .sub-common-head .head {
    font-size: 3.5rem;
  }

  .sub-common-head .sub-head {
    font-size: 1.2rem;
    padding: 0rem 0 4rem;
  }
}

.page-anchor-nav {
  position: fixed;
  width: 24rem;
  top: 15rem;
  right: calc((100vw - 1240px) / 2);
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  padding: 3rem 2rem;
  border-radius: 6px;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-anchor-nav li {
  cursor: pointer;
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.page-anchor-nav li:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1400px) {
  .page-anchor-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media screen and (max-width: 1280px) {
  .page-anchor-nav {
    right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .sp-page-anchor-nav {
    visibility: visible;
    position: fixed;
    width: 100vw;
    right: 0;
    top: auto;
    bottom: 20px;
    background: #003ccc;
    border-radius: 0;
    z-index: 10;
    border: 1px solid #456fd3;
    height: 51px;
    width: 50px;
    margin-left: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
  }

  .sp-page-anchor-nav.is-hidden {
    opacity: 0 !important;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .sp-page-anchor-nav ul {
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    height: 50px;
  }

  .sp-page-anchor-nav ul::-webkit-scrollbar {
    display: none;
  }

  .sp-page-anchor-nav li {
    flex: 0 0 auto;
    padding: 0.2rem 2rem;
    line-height: 1.1;
    font-size: 1.4rem;
    border-right: 1px solid #456fd3;
    margin-bottom: 0;
    color: #fafafa;
    position: relative;
    font-weight: 300;
  }

  .sp-page-anchor-nav .close-btn {
    border-right: unset;
    position: sticky;
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }

  .sp-page-anchor-nav .close-btn.active {
    background-color: #456fd3;
    width: 40px;
  }

  .sp-page-anchor-nav li:last-child {
    border-right: unset;
  }

  .sp-page-anchor-nav li:hover {
    opacity: 1;
  }

  .sp-page-anchor-nav li:not(.close-btn).active {
    padding-left: 3rem;
  }

  .sp-page-anchor-nav li:not(.close-btn).active::before {
    content: "";
    background-size: 100% !important;
    position: absolute;
    background: url(../images/common/arrow_sp_nav.png) no-repeat;
    top: 5px;
    left: 12px;
    width: 8.5px;
    height: 8.5px;
  }
}

.head-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 6rem;
}

.head-area .sub-head {
  padding-top: 20px;
  width: 100%;
}

.c-commoncompany {
  background-color: #fff;
  padding: 12rem 20px 12rem;
}

.c-commoncompany .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.c-commoncompany .content a .img-area {
  position: relative;
  height: 18rem;
  overflow: hidden;
  border-radius: 10px;
}

.c-commoncompany .content a .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-commoncompany .content a .img-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.c-commoncompany .content a .img-area span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 1.8rem;
}

.c-commoncompany .content a .detail {
  font-size: 1.3rem;
  padding-top: 20px;
  margin: auto;
  width: 90%;
}

.c-commonlink {
  background-color: #090d15;
  padding: 14rem 20px 0;
}

.c-commonlink .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.c-commonlink .content a {
  border: 1px solid #555555;
  border-radius: 10px;
  background-color: #020509;
  padding: 6rem 4rem;
}

.c-commonlink .content .title {
  font-size: 4.5rem;
  font-family: "termina", sans-serif;
  color: #fafafa;
  font-weight: 300;
}

.c-commonlink .content .detail {
  color: #fafafa;
  font-weight: 300;
  font-size: 1.3rem;
  padding-top: 2rem;
  line-height: 2;
}

.c-commonlink .content .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  border-radius: 30px;
  margin: 4rem 0 0 auto;
}

.c-commonbottom {
  background-color: #090d15;
  padding-bottom: 10rem;
  text-align: center;
}

.c-commonbottom img {
  width: 100%;
  height: 100vh;
  padding-left: 20%;
  object-fit: contain;
}

.bkmovie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

@media screen and (max-width: 1000px) {
  .c-commonlink .content .title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .head-area {
    padding-bottom: 4rem;
  }

  .c-commoncompany {
    padding: 8rem 20px 8rem;
  }

  .c-commoncompany .content {
    display: block;
  }

  .c-commoncompany .content a {
    text-align: center;
    margin-bottom: 4rem;
    display: block;
  }

  .c-commoncompany .content a .detail {
    text-align: left;
  }

  .c-commoncompany .content a:last-child {
    margin-bottom: 0;
  }

  .c-commoncompany .content a .img-area {
    height: 15rem;
  }

  .c-commoncompany .content a .img-area span {
    font-size: 16px;
  }

  .c-commonbottom {
    padding-bottom: 60px;
  }

  .c-commonbottom img {
    height: auto;
    padding-left: 0%;
  }

  .c-commonlink {
    padding: 8rem 20px 0;
  }

  .c-commonlink .content {
    display: block;
  }

  .c-commonlink .content a {
    display: block;
    margin-bottom: 20px;
    padding: 4rem 2.5rem;
  }

  .c-commonlink .content a .title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .c-commonlink .content a .detail {
    color: #fafafa;
    font-weight: 300;
    font-size: 1.3rem;
    padding-top: 4rem;
  }

  .c-commonlink .content a:last-child {
    margin-bottom: 0;
  }

  .c-commonlink .content a .title-area .title {
    font-size: 2.7rem;
  }

  .c-commonlink .content .btn {
    margin: 0
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 8rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 0 6px 10px;
  margin: 0 5px;
  color: #fff;
  text-decoration: none;
  font-family: "termina", sans-serif;
  font-weight: 300;
}

.wp-pagenavi .extend {
  padding: 0;
  margin: 0 -5px;
}

.wp-pagenavi span,
.wp-pagenavi a.page {
  margin-top: 10px;
}

.wp-pagenavi span:not(.extend) {}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  border-radius: 30px;
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  width: 11px;
  height: 10px;
  background-image: url(../images/common/shape_white.png);
  background-size: 100% 100%;
  transition: right 0.3s ease-in-out;
}

.wp-pagenavi .previouspostslink::before {
  transform: translateY(-50%) scaleX(-1);
}

.wp-pagenavi .previouspostslink {
  margin-right: 10px;
}

.wp-pagenavi .nextpostslink {
  margin-left: 10px;
}

.breadcrumb-area {
  background-color: #090d15;
}

.breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  font-size: 1.3rem;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: auto;
  padding: 0px 20px 4rem;
}

.breadcrumb * {
  font-stretch: normal;
  font-style: normal;
  text-align: justify;
  position: relative;
}

.breadcrumb *:not(:first-child) {
  margin-left: 40px;
}

* .breadcrumb *:not(:first-child)::before {
  position: absolute;
  content: "";
  top: 48%;
  left: -27px;
  width: 15px;
  height: 1px;
  background-color: #333333;
  pointer-events: none;
}

.breadcrumb span[property="itemListElement"]:first-of-type [property="name"] {
  font-family: "termina", sans-serif;
}

.breadcrumb span {
  color: #fafafa;
}

.breadcrumb a>span {
  color: #fafafa;
}

/* .breadcrumb a:hover>span {
  color: #006dcc;
} */

@media screen and (max-width: 768px) {
  .wp-pagenavi {
    margin-top: 4rem;
  }

  .breadcrumb {
    row-gap: 10px;
    font-size: 1.1rem;
    padding: 0px 20px 3rem;
  }
}

/*--------------------------
HOME
----------------------------*/
body.home .c-mv {
  position: relative;
  overflow: hidden;
}

body.home .c-mv .msg-area {
  position: absolute;
  bottom: 10%;
  left: 12%;
  color: #fff;
}

body.home .c-mv .msg-area .title-area h1 {
  padding: 0px 0 30px;
  /* font-size: 9.5vw; */
  font-size: 15rem;
  font-family: "termina", sans-serif;
  letter-spacing: 1px;
  font-weight: 300;
  line-height: 1;
}

body.home .c-mv .msg-area .title-area h1 span {
  background: linear-gradient(to top, #141548, #3c63f3, #3980f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 100;
}

body.home .c-mv .msg-area .title-area h1 .bottom {
  font-size: 3.5vw;
  font-size: 6.6rem;
}

body.home .c-mv .msg-area .title-area .sub-title {
  font-size: 1.5vw;
  font-size: 2.2rem;
  font-weight: 300;
  color: #edf5ff;
}

body.home .c-mv .msg-area .topic-area {
  padding: 1rem 1.5rem 1.5rem 2.5rem;
  background-color: rgba(32, 55, 131, 0.3);
  border-radius: 10px;
  max-width: 400px;
  margin-top: 13rem;
}

body.home .c-mv .msg-area .topic-area .head {
  font-family: "termina", sans-serif;
  color: #2f43f8;
}

body.home .c-mv .msg-area .topic-area .content .date {
  color: #7282bb;
  font-size: 1.2rem;
  padding: 7px 0 5px;
}

body.home .c-mv .msg-area .topic-area .content .detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

body.home .c-mv .msg-area .topic-area .content .detail .title {
  color: #ffffff;
  font-size: 1.3rem;
  width: 65%;
  font-weight: 300;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.home .c-mv .msg-area .topic-area .content .detail .btn-area {
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}

body.home .c-mv .msg-area .topic-area .content .detail .btn-area a {
  background-color: #090518;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

body.home .c-mv .bk-area img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

body.home .c-maincontent {
  position: relative;
  width: 100%;
}

body.home .c-maincontent::before {
  content: "";
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-image: url(../images/top/white_frame1.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  pointer-events: none;
  z-index: 20;
}

@media screen and (max-width: 1400px) {
  body.home .c-maincontent::before {
    background-size: 100% 101%;
  }
}

@media screen and (max-width: 900px) {
  body.home .c-maincontent::before {
    background-size: 100% 102%;
  }
}

@media screen and (max-width: 768px) {
  body.home .c-maincontent::before {
    background-size: 100% 100%;
    background-image: url(../images/top/white_frame2.svg);
  }
}

body.home .c-maincontent .contents-inner {
  max-width: 1280px;
  overflow: visible;
  margin-top: -100vh;
  /* border-radius: 30px; */
}

body.home .c-maincontent .contents-inner .item {
  display: flex;
  align-items: flex-start;
  padding: 15rem 20px 4rem;
  min-height: 100vh;
  gap: 2rem;
}

body.home .c-maincontent .contents-inner .item:nth-child(2) {
  padding: 80px 20px 40px;
}

body.home .c-maincontent .contents-inner .head {
  flex: 1;
  font-size: 7rem;
  font-family: "termina", sans-serif;
  color: #fff;
  position: sticky;
  top: 150px;
  z-index: 10;
  font-weight: 300;
  height: calc(100vh - 150px);
}

body.home .c-maincontent .contents-inner .content {
  flex: 1.4;
}

body.home .c-maincontent .contents-inner .content .our-group {
  font-size: 1.5rem;
  font-family: "termina", sans-serif;
  color: #555555;
  border-bottom: 1px solid #555555;
  padding-bottom: 13px;
  margin-bottom: 30px;
}

body.home .c-maincontent .contents-inner .content .title {
  font-size: 3.4rem;
  color: #fafafa;
  padding-bottom: 40px;
  line-height: 1.7;
}

body.home .c-maincontent .contents-inner .content .detail {
  color: #fafafa;
  line-height: 2.5;
  padding-bottom: 50px;
  font-weight: 300;
}

body.home .c-maincontent .contents-inner .content .img-area img {
  width: 100%;
}

body.home .c-maincontent .contents-inner .content .btn-area {
  text-align: right;
}

body.home .c-maincontent .contents-inner .item:last-child .btn-area {
  margin-bottom: 6rem;
}

.c-commoncase {
  background-color: #fff;
  padding: 12rem 20px 0;
}

.c-commoncase .content .case-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.c-commoncase .content .case-list .case-item .case-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.c-commoncase .content .case-list .case-item .case-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-commoncase .content .case-list .case-item .case-category span {
  border: 1px solid #999999;
  border-radius: 5px;
  padding: 7px 15px;
  display: inline-block;
}

.c-commoncase .content .case-list .case-item .case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 10px 0 15px;
}

.c-commoncase .content .case-list .case-item .case-tags span {
  color: #0134df;
  font-size: 1.3rem;
  font-weight: 500;
}

body.home .c-commoncompany {
  padding: 12rem 20px 0;
}

body.home .c-toptopics {
  background-color: #fff;
  padding: 12rem 20px 18rem;
}

body.home .c-toptopics .content {
  display: flex;
  justify-content: end;
}

body.home .c-toptopics .content ul {
  max-width: 820px;
}

body.home .c-toptopics .content ul li {
  border-bottom: 1px solid #999999;
}

body.home .c-toptopics .content ul li a {
  display: flex;
  gap: 4rem;
  padding: 3rem 0 3rem;
  align-items: center;
}

body.home .c-toptopics .content ul li a .date-category {
  display: flex;
  align-items: center;
  gap: 20px;
}

body.home .c-toptopics .content ul li a .date {
  font-size: 1.3rem;
  font-family: "termina", sans-serif;
  font-weight: 500;
  width: 10rem;
}

body.home .c-toptopics .content ul li a .cat {
  border: 1px solid #999999;
  border-radius: 5px;
  font-size: 1.4rem;
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.home .c-toptopics .content ul li a .title {
  font-weight: 300;
}

body.home .c-toprecruit {
  background-color: #090d15;
  padding: 16rem 0px 18rem;
}

body.home .c-toprecruit .contents-inner {
  max-width: 100%;
}

body.home .c-toprecruit .head-area {
  max-width: 1240px;
  margin: auto;
}

body.home .c-toprecruit .content {
  margin-left: calc(50vw - 620px);
  position: relative;
}

body.home .c-toprecruit .content::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/top/top_recruit_bk.png) no-repeat;
  top: 155px;
  left: 60px;
  width: 721px;
  height: 720px;
}

body.home .c-toprecruit .content .left {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  z-index: 1;
}

body.home .c-toprecruit .content .left .detail {
  color: #fafafa;
  line-height: 2;
  font-weight: 300;
  padding-bottom: 6rem;
}

body.home .c-toprecruit .content .right {
  width: 65%;
  margin-left: auto;
  z-index: 1;
  position: relative;
}

body.home .c-toprecruit .content .right img {
  width: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

body.home .c-topcontact {
  background-color: #090d15;
  position: relative;
  z-index: 1;
}

body.home .c-topcontact .content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

body.home .c-topcontact .content a {
  border: 1px solid #555555;
  border-radius: 10px;
  background-color: #020509;
  padding: 5rem;
}

body.home .c-topcontact .content a .title-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

body.home .c-topcontact .content a .title-area .title {
  font-size: 4.5rem;
  font-family: "termina", sans-serif;
  color: #fafafa;
  font-weight: 300;
}

body.home .c-topcontact .content a .title-area .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 3rem;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  border-radius: 30px;
}

body.home .c-topcontact .content a .detail {
  color: #fafafa;
  font-weight: 300;
  font-size: 1.3rem;
  padding-top: 6rem;
}

@media screen and (max-width: 1500px) {
  body.home .c-maincontent .contents-inner {
    max-width: 85vw;
  }

  body.home .c-toprecruit .head-area {
    max-width: 85vw;
  }

  body.home .c-toprecruit .content {
    margin-left: calc(50vw - 40vw);
  }
}

@media screen and (max-width: 1300px) {
  body.home .c-toprecruit .content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 768px) {
  body.home .c-mv .bk-area img {
    height: 100svh;
  }

  body.home .c-mv .msg-area {
    bottom: 40px;
    left: 20px;
    right: 20px;
  }

  body.home .c-mv .msg-area .title-area h1 {
    font-size: 7.8rem;
    padding: 0px 0 15px;
  }

  body.home .c-mv .msg-area .title-area h1 .bottom {
    font-size: 3.6rem;
  }

  body.home .c-mv .msg-area .title-area .sub-title {
    font-size: 1.3rem;
  }

  body.home .c-mv .msg-area .topic-area {
    padding: 2rem 2rem 1.5rem 2rem;
    margin-top: 3rem;
    max-width: unset;
    width: 100%;
  }

  body.home .c-mv .msg-area .topic-area .content .detail {
    gap: 10px;
  }

  body.home .c-maincontent .contents-inner {
    max-width: unset;
    padding: 0 20px;
  }

  body.home .c-maincontent .contents-inner .item {
    display: block;
    min-height: auto;
  }

  body.home .c-maincontent .contents-inner .item:nth-child(2) {
    padding: 0px 20px 40px;
  }

  body.home .c-maincontent .contents-inner .item:nth-child(3) {
    padding: 40px 20px 40px;
  }

  body.home .c-maincontent .contents-inner .head {
    position: relative;
    height: auto;
    top: 0;
    padding-bottom: 5rem;
    font-size: 4.5rem;
  }

  body.home .c-maincontent .contents-inner .content .title {
    font-size: 2.1rem;
  }

  body.home .c-maincontent .contents-inner .content .btn-area {
    text-align: center;
  }

  body.home .c-maincontent .contents-inner .content .img-area {
    padding-bottom: 4rem;
  }

  .c-commoncase {
    padding: 6rem 20px 0;
  }

  .c-commoncase .content .case-list {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .c-commoncase .content .case-list .case-item .case-category span {
    padding: 3px 15px;
  }

  .c-commoncase .content .case-list .case-item .case-tags {
    gap: 1rem;
    padding: 10px 0 10px;
  }

  body.home .c-commoncompany {
    padding: 8rem 20px 0;
  }

  body.home .c-toptopics {
    padding: 10rem 20px 10rem;
  }

  body.home .c-toptopics .content {
    justify-content: start;
  }

  body.home .c-toptopics .content ul {
    width: 100%;
  }

  body.home .c-toptopics .content ul li a {
    display: block;
  }

  body.home .c-toptopics .content ul li:first-child a {
    padding-top: 0;
  }

  body.home .c-toptopics .content ul li a .title {
    padding-top: 2rem;
  }

  body.home .c-toptopics .content ul li a .cat {
    height: 25px;
  }

  body.home .c-toprecruit {
    padding: 10rem 0px 10rem;
  }

  body.home .c-toprecruit .head-area {
    max-width: 88vw;
  }

  body.home .c-toprecruit .content .left {
    position: relative;
    width: 100%;
    order: 2;
    padding-right: 20px;
  }

  body.home .c-toprecruit .content .left .btn-area {
    text-align: center;
  }

  body.home .c-toprecruit .content {
    flex-wrap: wrap;
  }

  body.home .c-toprecruit .content .right {
    width: 100%;
    order: 1;
    padding-bottom: 3rem;
  }

  body.home .c-toprecruit .content {
    margin-left: calc(50vw - 45vw);
  }

  body.home .c-topcontact .content {
    display: block;
  }

  body.home .c-topcontact .content a {
    display: block;
    margin-bottom: 20px;
    padding: 4rem 2.5rem;
  }

  body.home .c-topcontact .content a:last-child {
    margin-bottom: 0;
  }

  body.home .c-topcontact .content a .title-area .title {
    font-size: 2.7rem;
  }

  body.home .c-topcontact .content a .detail {
    padding-top: 4rem;
  }

  body.home .c-toprecruit .content::before {
    top: 435px;
    left: 0px;
    width: 100%;
    height: 720px;
  }
}

/*--------------------------
COMPANY
----------------------------*/
.company .inner {
  max-width: 960px;
  margin: 0;
}

.company .info-list li {
  display: grid;
  grid-template-columns: 2.5fr 7.5fr;
  color: #fafafa;
  font-weight: 300;
  padding: 3rem 0;
  border-top: 1px solid #2e2d3a;
}

.company .info-list li .title {
  font-size: 1.8rem;
}

.company .c-overview {
  padding: 10rem 20px 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.company .c-access {
  padding: 10rem 20px 5rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.company .c-access .map iframe {
  width: 100%;
  height: 450px;
  margin-bottom: 4rem;
  filter: grayscale(100%);
}

.company .c-access .info-list li {
  border-top: none;
  border-bottom: 1px solid #2e2d3a;
}

.company .c-history {
  padding: 10rem 20px 5rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.company .c-history .history-list {
  position: relative;
  color: #d7dfec;
}

.company .c-history .history-list::before {
  content: "";
  position: absolute;
  top: 38px;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #407cf7;
  transform: translateX(-50%);
  z-index: 0;
}

.company .c-history .history-list::after {
  content: "";
  position: absolute;
  top: var(--after-top);
  height: var(--after-height);
  width: 4px;
  background: #4fceca;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.company .c-history .year-block {
  position: relative;
  width: 45%;
  padding: 2rem 3rem;
  box-sizing: border-box;
  border: 1px solid #8b8dbd;
  background-color: rgba(47, 54, 115, 0.3);
  border-radius: 5px;
}

.company .c-history .year-block.left {
  left: 0;
}

.company .c-history .year-block.right {
  left: 55%;
}

.company .c-history .year-block .year {
  font-size: 4.4rem;
  font-family: "termina", sans-serif;
  color: #4096ec;
  font-weight: 300;
  margin-bottom: 3rem;
}

.company .c-history .year-block .month-item {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1rem;
}

.company .c-history .year-block .month {
  font-size: 2rem;
  font-family: "termina", sans-serif;
  font-weight: 300;
  text-align: right;
  min-width: 4.5rem;
}

.company .c-history .year-block .detail {
  line-height: 1.8;
}

.company .c-history .marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.company .c-history .marker .dot {
  width: 15px;
  height: 15px;
  background: #49bfd5;
  border-radius: 50%;
  margin: 36px auto -8px;
  position: relative;
  z-index: 2;
}

.company .c-history .marker .dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background-color: rgba(47, 54, 115, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.company .c-history .marker .line {
  height: 1px;
  background-image: repeating-linear-gradient(to right,
      #8b8dbd,
      #8b8dbd 1px,
      transparent 1px,
      transparent 3px);
  background-repeat: repeat-x;
}

.company .c-group {
  padding: 10rem 20px 20rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.company .c-group .main-img img {
  width: 100%;
  padding-bottom: 10rem;
}

.company .c-group .group-list.first-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.company .c-group .group-list.rest-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.company .c-group .group-list .group-item {
  padding: 2rem 2rem 4rem;
  background-color: rgba(47, 54, 115, 0.3);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
}

.company .c-group .group-list .group-item .logo {
  background-color: #d7dfec;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.company .c-group .group-list.rest-rows .group-item .logo {
  height: 95px;
}

.company .c-group .group-list .group-item .logo img {}

.company .c-group .group-list .group-item .name-outer {
  padding: 3rem 2rem 0rem;
}

.company .c-group .group-list .group-item .name {
  color: #d7dfec;
  font-size: 2.4rem;
  line-height: 1.2;
  padding: 3rem 2rem 2rem;
}

.company .c-group .group-list.rest-rows .group-item .name {
  font-size: 2rem;
}

.company .c-group .group-list .group-item .detail {
  color: #9eb1cf;
  padding: 0rem 2rem 4rem;
  flex-grow: 1;
}

.company .c-group .group-list .group-item .link {
  text-align: right;
}

.c-messegelink {
  background-color: #fff;
  padding: 12rem 20px 0;
}

.c-messegelink .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.c-messegelink .content a {
  border-radius: 10px;
  background-color: #e1e8f2;
  padding: 4rem;
}

.c-messegelink .content .title {
  font-size: 3rem;
  font-family: "termina", sans-serif;
  font-weight: 300;
}

.c-messegelink .content .sub-title {
  font-size: 1.8rem;
  font-weight: 300;
}

.c-messegelink .content .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  border-radius: 30px;
  margin: 2rem 0 0 auto;
}

@media screen and (max-width: 768px) {
  .company .c-overview {
    padding: 5rem 20px 0;
  }

  .company .info-list li .title {
    font-size: 1.4rem;
  }

  .company .info-list li .detail {
    font-size: 1.3rem;
  }

  .company .info-list li {
    grid-template-columns: 3.5fr 6.5fr;
  }

  .company .c-access {
    padding: 4rem 20px 0rem;
  }

  .company .c-access .map iframe {
    height: 350px;
    margin-bottom: 2rem;
  }

  .company .c-history {
    padding: 4rem 20px 0rem;
  }

  .company .c-history .history-list::before {
    left: 10px;
    width: 2px;
  }

  .company .c-history .marker {
    left: 10px;
  }

  .company .c-history .marker .dot::before {
    width: 30px;
    height: 30px;
  }

  .company .c-history .marker .dot {
    width: 9px;
    height: 9px;
  }

  .company .c-history .year-block {
    width: calc(100% - 50px);
    margin-bottom: 20px;
    padding: 2rem 2rem;
    left: 50px !important;
  }

  .company .c-history .year-block:last-child {
    margin-bottom: 0;
  }

  .company .c-history .history-list::after {
    width: 2px;
    left: 10px;
  }

  .company .c-history .marker .line {
    width: 40px !important;
    margin-left: 43px !important;
    margin-right: 0 !important;
    margin-top: 3px !important;
  }

  .company .c-history .year-block .year {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .company .c-history .year-block .month-item {
    display: block;
  }

  .company .c-history .year-block .month {
    text-align: left;
    font-size: 1.5rem;
    padding-bottom: 0.8rem;
  }

  .company .c-history .year-block .detail {
    font-size: 1.3rem;
  }

  .company .c-group {
    padding: 6rem 20px 8rem;
  }

  .company .c-group .main-img img {
    padding-bottom: 4rem;
  }

  .company .c-group .group-list.first-row {
    display: block;
  }

  .company .c-group .group-list .group-item {
    margin-bottom: 20px;
    padding: 2rem 2rem 3rem;
  }

  .company .c-group .group-list .group-item .logo {
    height: 95px;
    padding: 0 20px;
  }

  .company .c-group .group-list .group-item .name {
    font-size: 1.7rem;
    padding: 3rem 0rem 2rem;
  }

  .company .c-group .group-list .group-item .detail {
    font-size: 1.3rem;
    padding: 0rem 0rem 2rem;
    line-height: 2;
  }

  .company .c-group .group-list .group-item .link {
    text-align: center;
  }

  .company .c-group .group-list.rest-rows {
    display: block;
  }

  .company .c-group .group-list.rest-rows .group-item .name {
    height: auto !important;
  }

  .c-messegelink {
    padding: 8rem 20px 0;
  }

  .c-messegelink .content {
    display: block;
  }

  .c-messegelink .content a {
    display: block;
    margin-bottom: 20px;
    padding: 2rem;
  }

  .c-messegelink .content a:last-child {
    margin-bottom: 0;
  }

  .c-messegelink .content .title {
    font-size: 2rem;
  }

  .c-messegelink .content .sub-title {
    font-size: 1.5rem;
  }
}

/*--------------------------
MESSAGE
----------------------------*/
.message .inner {
  max-width: 1000px;
  margin: auto;
}

.message .c-message {
  padding: 12rem 20px 14rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.message .c-message .msg-area {
  color: #fff;
  padding: 8rem 8rem;
  background-color: rgba(8, 40, 120, 0.9);
  border-radius: 10px;
  font-weight: 300;
  text-align: center;
  line-height: 2;
}

.message .c-message .msg-area .head-msg {
  font-size: 2.2rem;
  font-weight: 500;
  padding-bottom: 3rem;
  line-height: 1.7;
}

.message .c-message .msg-area .name-area {
  width: 100%;
  font-size: 2.4rem;
  font-weight: 400;
  padding-top: 3rem;
  border-top: 1px solid #22427e;
  margin-top: 4rem;
}

.message .c-message .officer-btn {
  width: 100%;
  height: 28rem;
  position: relative;
  display: inline-block;
  padding: 5rem 6rem;
  margin-top: 10rem;
  background-size: 100% 100% !important;
  background: url(../images/company/message_officer_btn.png) no-repeat;
}

.message .c-message .officer-btn .btn-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 3.4rem;
  color: #fafafa;
  font-weight: 300;
}

.message .c-message .officer-btn .btn-head .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .message .c-message {
    padding: 5rem 20px 8rem;
  }

  .message .c-message .msg-area {
    padding: 4rem 2rem;
    font-size: 1.3rem;
  }

  .message .c-message .msg-area .head-msg {
    font-size: 1.5rem;
    line-height: 2;
  }

  .message .c-message .msg-area .name-area {
    font-size: 1.5rem;
  }

  .message .c-message .officer-btn {
    height: 17rem;
    margin-top: 6rem;
    padding: 4rem 2rem;
  }

  .message .c-message .officer-btn .btn-head {
    font-size: 1.9rem;
  }
}

/*--------------------------
OFFICER
----------------------------*/
.officer .inner {
  max-width: 1000px;
  margin: auto;
}

.officer .c-officer {
  padding: 12rem 20px 14rem;
  color: #fafafa;
  background-color: rgba(0, 0, 0, 0.6);
}

.officer .c-officer .position-name {
  font-size: 5.2rem;
  padding-bottom: 4rem;
}

.officer .c-officer .member-item {}

.officer .c-officer .member-item {
  cursor: pointer;
}

.officer .c-officer .member-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.officer .c-officer .member-item:hover .img img {
  transform: scale(1.05);
}

.officer .c-officer .first-position.second {
  padding-top: 12rem;
}

.officer .c-officer .first-position-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.officer .c-officer .first-position-content .img {
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.officer .c-officer .first-position-content .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.officer .c-officer .first-position-content .name-area {
  text-align: center;
}

.officer .c-officer .first-position-content .name {
  font-size: 3rem;
  padding: 0 3rem 2rem;
  border-bottom: 1px solid #22427e;
  font-weight: 300;
}

.officer .c-officer .first-position-content .en-name {
  font-size: 1.8rem;
  padding-top: 2rem;
  font-family: "termina", sans-serif;
  font-weight: 200;
}

.officer .c-officer .sub-position {
  padding-top: 12rem;
}

.officer .c-officer .sub-position .position-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}

.officer .c-officer .sub-position .position-group .img {
  height: 230px;
  overflow: hidden;
  border-radius: 10px;
}

.officer .c-officer .sub-position .position-group .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.officer .c-officer .sub-position .position-group .name {
  font-size: 1.8rem;
  border-bottom: 1px solid #22427e;
  font-weight: 300;
  text-align: center;
  padding-bottom: 1rem;
  padding-top: 2rem;
  width: 100%;
}

.officer .c-officer .sub-position .position-group .en-name {
  font-size: 1.4rem;
  padding-top: 1rem;
  font-family: "termina", sans-serif;
  font-weight: 200;
  text-align: center;
}

.officer .c-officer .message-btn {
  width: 100%;
  height: 28rem;
  position: relative;
  display: inline-block;
  padding: 5rem 6rem;
  margin-top: 16rem;
  background-size: 100% 100% !important;
  background: url(../images/company/officer_message_btn.png) no-repeat;
}

.officer .c-officer .message-btn .btn-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 3.4rem;
  color: #fafafa;
  font-weight: 300;
}

.officer .c-officer .message-btn .btn-head .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .officer .c-officer {
    padding: 5rem 20px 8rem;
  }

  .officer .c-officer .position-name {
    font-size: 2.5rem;
    padding-bottom: 3rem;
  }

  .officer .c-officer .first-position-content {
    display: block;
  }

  .officer .c-officer .first-position-content .name-area {
    padding: 0 2rem;
  }

  .officer .c-officer .first-position-content .name {
    font-size: 1.7rem;
    padding: 2rem 0rem 1rem;
  }

  .officer .c-officer .first-position-content .en-name {
    font-size: 1.3rem;
    padding-top: 1rem;
  }

  .officer .c-officer .first-position.second {
    padding-top: 8rem;
  }

  .officer .c-officer .sub-position {
    padding-top: 8rem;
  }

  .officer .c-officer .sub-position .position-group {
    display: block;
  }

  .officer .c-officer .sub-position .position-group li {
    margin-bottom: 4rem;
  }

  .officer .c-officer .message-btn {
    height: 17rem;
    margin-top: 6rem;
    padding: 4rem 2rem;
  }

  .officer .c-officer .message-btn .btn-head {
    font-size: 1.9rem;
  }
}

/*--------------------------
ABOUT
----------------------------*/
.about .inner {
  max-width: 960px;
  margin: 0;
}

.about .c-aboutmain {
  padding: 10rem 20px 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.about .c-aboutmain h2 {
  font-size: 5.2rem;
  color: #fafafa;
  font-weight: 400;
}

.about .c-aboutmain .detail {
  color: #fafafa;
  font-weight: 300;
  padding: 4rem 0 6rem;
  line-height: 2;
}

.about .c-aboutmain .img-area img {
  width: 100%;
}

.about .c-ourstrength {
  padding: 10rem 20px 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.about .c-ourstrength .text-area {
  display: grid;
  grid-template-columns: 5.5fr 4.5fr;
  gap: 20px;
  color: #fafafa;
  padding-bottom: 7rem;
}

.about .c-ourstrength .text-area .title {
  font-size: 3.2rem;
}

.about .c-ourstrength .text-area .detail {
  font-weight: 300;
  line-height: 2;
  word-break: break-all;
}

.about.sustainability .head-area {
  color: #fafafa;
  font-size: 4rem;
}

.about .c-ourstrength .btn-area {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
  font-size: 1.4rem;
  color: #fafafa;
  margin-top: -4rem;
}

.about .c-oursupport {
  padding: 10rem 20px 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.about .c-oursupport .detail {
  display: flex;
  justify-content: end;
}

.about .c-oursupport .detail span {
  max-width: 450px;
  line-height: 2;
  color: #fafafa;
  font-weight: 300;
  padding-bottom: 7rem;
}

.about.sustainability .c-oursupport .text-area {
  display: grid;
  grid-template-columns: 5.5fr 4.5fr;
  gap: 20px;
  color: #fafafa;
  padding-bottom: 7rem;
}

.about.sustainability .c-oursupport .text-area .title {
  font-size: 3.2rem;
}

.about.sustainability .c-oursupport .text-area .detail {
  font-weight: 300;
  line-height: 2;
}

.about .c-mvvb {
  padding: 10rem 20px 16rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.about .c-mvvb .top-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about .c-mvvb .item {
  color: #d7dfec;
  padding: 5rem;
  background-color: rgba(8, 40, 120, 0.9);
  border-radius: 10px;
}

.about .c-mvvb .item .title {
  font-size: 3.4rem;
  font-family: "termina", sans-serif;
  color: #fafafa;
  font-weight: 300;
}

.about .c-mvvb .top-content .item .detail {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2;
  padding-top: 3rem;
}

.about.sustainability .c-mvvb .detail {
  display: flex;
  justify-content: end;
}

.about.sustainability .c-mvvb .detail span {
  max-width: 450px;
  line-height: 2;
  color: #fafafa;
  font-weight: 300;
  padding-bottom: 7rem;
}

.about .c-mvvb .item.value {
  margin-top: 20px;
}

.about.sustainability .c-mvvb .item.value {
  padding: 2rem 5rem;
}

.about .c-mvvb .item.value ul {
  margin-top: 4rem;
}

.about.sustainability .c-mvvb .item.value ul {
  margin-top: 0rem;
}

.about .c-mvvb .item.value ul li {
  display: grid;
  grid-template-columns: 2fr 8fr;
  gap: 20px;
  border-top: 1px solid #22427e;
  padding: 4rem 0;
}

.about.sustainability .c-mvvb .item.value ul li {
  display: block;
}

.about.sustainability .c-mvvb .item.value ul li:first-child {
  border-top: unset;
}

.about .c-mvvb .item.value ul li .en-head {
  font-size: 1.1rem;
  font-family: "termina", sans-serif;
  color: #0f79fd;
  font-weight: 300;
  padding-top: 1.6rem;
}

.about .c-mvvb .item.value ul li .head {
  font-size: 2.8rem;
  color: #fafafa;
  font-weight: 300;
}

.about .c-mvvb .item.value ul li .detail {
  font-size: 1.5rem;
  color: #d7dfec;
  font-weight: 300;
  line-height: 2;
  padding-top: 1rem;
}

.about.sustainability .c-mvvb .item.value ul li .detail {
  display: block;
  padding-top: 2rem;
}

.about .c-mvvb .item.benefit {
  margin-top: 20px;
}

.about .c-mvvb .item.benefit ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 6rem;
}

.about .c-mvvb .item.benefit ul li {
  background-color: rgba(13, 93, 310, 0.5);
  padding: 5rem;
  border-radius: 5px;
}

.about .c-mvvb .item.benefit ul li .num-head {
  font-size: 1.1rem;
  font-family: "termina", sans-serif;
  color: #fafafa;
  font-weight: 400;
}

.about .c-mvvb .item.benefit ul li .en-head {
  font-size: 1.2rem;
  font-family: "termina", sans-serif;
  color: #0f79fd;
  font-weight: 400;
  padding: 1rem 0 1rem;
}

.about .c-mvvb .item.benefit ul li .head {
  font-size: 2.4rem;
  font-family: "termina", sans-serif;
  color: #fafafa;
  font-weight: 300;
}

.about .c-mvvb .item.benefit ul li .detail {
  font-size: 1.5rem;
  color: #d7dfec;
  font-weight: 300;
  line-height: 2;
  padding-top: 3rem;
}

.about .c-philosophy {
  background-color: #fff;
  padding: 12rem 20px 0;
}

.about .c-philosophy .sub-common-head .head {
  color: #000000;
}

.about .c-philosophy .title {
  font-size: 5rem;
  color: #000000;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 6rem;
}

.about .c-philosophy .content {
  display: flex;
  justify-content: end;
}

.about .c-philosophy .content ul {
  max-width: 640px;
  width: 100%;
}

.about .c-philosophy .content ul li {
  border-bottom: 1px solid #999999;
}

.about .c-philosophy .content ul .toggle-head {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  font-weight: 500;
  font-size: 3.2rem;
  padding: 3rem 30px 3rem 0;
}

.about .c-philosophy .content ul .toggle-head::after,
.about .c-philosophy .content ul .toggle-head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background: #000;
  transition: 0.2s;
}

.about .c-philosophy .content ul .toggle-head::after {
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
}

.about .c-philosophy .content ul .toggle-head::before {
  width: 2px;
  height: 16px;
  transform: translateY(-50%);
  right: 17px;
}

.about .c-philosophy .content ul li.active .toggle-head::before {
  transform: translateY(-50%) scaleY(0);
}

.about .c-philosophy .content ul .toggle-content {
  display: none;
  padding-bottom: 3rem;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .about .c-aboutmain {
    padding: 5rem 20px 0;
  }

  .about .c-aboutmain h2 {
    font-size: 2.6rem;
  }

  .about .c-aboutmain .detail {
    padding: 2rem 0 4rem;
  }

  .about .c-ourstrength {
    padding: 4rem 20px 0;
  }

  .about .c-ourstrength .text-area {
    display: block;
    padding-bottom: 5rem;
  }

  .about .c-ourstrength .text-area .title {
    font-size: 2.1rem;
    padding-bottom: 2rem;
  }

  .about .c-ourstrength .btn-area {
    display: block;
    text-align: center;
  }

  .about .c-ourstrength .btn-area .text {
    max-width: 90%;
    margin: auto;
    padding-bottom: 2rem;
    padding-top: 6rem;
  }

  .about .c-oursupport {
    padding: 8rem 20px 0;
  }

  .about .c-oursupport .detail span {
    padding-bottom: 5rem;
  }

  .about .c-mvvb {
    padding: 6rem 20px 6rem;
  }

  .about .c-mvvb .top-content {
    display: block;
  }

  .about .c-mvvb .item {
    margin-bottom: 20px;
    padding: 3rem;
  }

  .about .c-mvvb .item .title {
    font-size: 2.1rem;
  }

  .about .c-mvvb .item.value ul li {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 0;
    align-items: center;
  }

  .about .c-mvvb .item.value ul li .en-head {
    padding-top: 0;
    gap: 10px 20px;
    min-width: 9rem;
  }

  .about .c-mvvb .item.value ul li .head {
    font-size: 1.7rem;
  }

  .about .c-mvvb .top-content .item .detail {
    font-size: 1.3rem;
    padding-top: 2rem;
  }

  .about .c-mvvb .item.value ul li .detail {
    padding-top: 0;
  }

  .about .c-mvvb .item.benefit ul {
    display: block;
    margin-top: 3rem;
  }

  .about .c-mvvb .item.benefit ul li {
    padding: 3rem 2rem;
    margin-bottom: 20px;
  }

  .about .c-mvvb .item.benefit ul li .head {
    font-size: 1.6rem;
  }

  .about .c-mvvb .item.benefit ul li .en-head,
  .about .c-mvvb .item.benefit ul li .num-head {
    font-size: 1rem;
  }

  .about .c-mvvb .item.benefit ul li .detail {
    font-size: 1.3rem;
    padding-top: 1rem;
  }

  .about .c-philosophy {
    padding: 6rem 20px 0;
  }

  .about .c-philosophy .title {
    font-size: 2.5rem;
    padding-bottom: 2rem;
  }

  .about .c-philosophy .content ul .toggle-head {
    font-size: 1.9rem;
    padding: 2rem 30px 2rem 0;
  }

  .about.sustainability .head-area {
    font-size: 2.6rem;
  }

  .about.sustainability .c-oursupport .text-area {
    display: block;
    padding-bottom: 5rem;
  }

  .about.sustainability .c-oursupport .text-area .title {
    font-size: 2.1rem;
    padding-bottom: 2rem;
  }

  .about.sustainability .c-mvvb .detail span {
    padding-bottom: 2rem;
    max-width: 100%;
  }

  .about.sustainability .c-mvvb .item.value {
    padding: 3rem;
  }

  .about.sustainability .c-mvvb .item.value ul li .detail {
    font-size: 1.3rem;
  }
}

/*--------------------------
BUSINESS
----------------------------*/
.business .main-detail {
  color: #fafafa;
  font-weight: 300;
  padding: 0rem 0 6rem;
  line-height: 2;
}

.business .c-aiconsulting {
  padding: 5rem 20px 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.business .c-aiconsulting .ai-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.business .c-aiconsulting .ai-list li {
  color: #fafafa;
  padding: 3rem;
  background-color: rgba(8, 40, 120, 0.9);
  border-radius: 10px;
  min-height: 290px;
}

.business .c-aiconsulting .ai-list li .num {
  color: #0f79fd;
  font-size: 1.4rem;
  font-family: "termina", sans-serif;
}

.business .c-aiconsulting .ai-list li .list-content {
  padding: 1rem 4rem;
}

.business .c-aiconsulting .ai-list li .list-content .list-title {
  font-size: 2.6rem;
  font-weight: 300;
  padding-bottom: 2rem;
}

.business .c-aiconsulting .ai-list li .list-content .list-detail {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2;
}

.business .c-feature {
  padding: 10rem 20px 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.business .c-feature ul li {
  color: #fafafa;
  padding: 4rem 5rem;
  background-color: rgba(8, 40, 120, 0.9);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 4rem;
  margin-bottom: 20px;
}

.business .c-feature ul li:last-child {
  margin-bottom: 0;
}

.business .c-feature ul li .title {
  font-size: 2.6rem;
  font-weight: 300;
  padding-bottom: 2rem;
}

.business .c-feature ul li .detail {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2;
}

.business .c-menu {
  padding: 10rem 20px 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.business .c-menu table {
  color: #fafafa;
}

.business .c-menu table tr th, .business .c-menu table tr td {
  border: 1px solid #22427e;
  padding: 3rem 4rem;
}

.business .c-menu table tr th {
  width: 35%;
  background-color: #003ccc;
  color: #fff;
  font-weight: normal;
  font-size: 2rem;
  font-weight: 300;
  padding: 2rem 4rem;
}

.business .c-menu table tr th:last-child {
  width: 65%;
}

.business .c-menu table tr td {
  background-color: rgba(8, 40, 120, 0.9);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2;
}

.business .c-member {
  padding: 10rem 20px 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.business .c-member .member-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.business .c-member .member-list .member-item {
  cursor: pointer;
}

.business .c-member .member-list .img {
  height: 230px;
  overflow: hidden;
  border-radius: 10px;
}

.business .c-member .member-list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.business .c-member .member-list .member-item:hover .img img {
  transform: scale(1.05);
}

.business .c-member .member-list .name-area {
  padding: 0 2rem;
}

.business .c-member .member-list .name {
  font-size: 1.8rem;
  border-bottom: 1px solid #22427e;
  font-weight: 300;
  text-align: center;
  padding-bottom: 1rem;
  padding-top: 2rem;
  width: 100%;
  color: #fafafa;
}

.business .c-member .member-list .en-name {
  font-size: 1.4rem;
  padding-top: 1rem;
  font-family: "termina", sans-serif;
  font-weight: 200;
  text-align: center;
  color: #fafafa;
}

.business .c-member .btn-area {
  text-align: right;
  padding: 6rem 0 0;
}

.business .c-member .btn-area #businessviewmore {
  cursor: pointer;
  font-family: "termina", sans-serif;
}

.business .c-holdingsmanagement {
  padding: 10rem 20px 14rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.business .c-holdingsmanagement .group-btn {
  width: 100%;
  height: 28rem;
  position: relative;
  display: inline-block;
  padding: 5rem 6rem;
  background-size: 100% 100% !important;
  background: url(../images/business/business_group_btn.png) no-repeat;
}

.business .c-holdingsmanagement .group-btn .btn-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 3.4rem;
  color: #fafafa;
  font-weight: 300;
}

.business .c-holdingsmanagement .group-btn .btn-head .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  border-radius: 30px;
}

.business .c-holdingsmanagement .group-btn .detail {
  position: absolute;
  color: #fafafa;
  font-weight: 300;
  bottom: 6rem;
}

.fancybox__backdrop {
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.2)) !important;
}

.fancybox__container .member-dialog {
  background-color: #080c12;
  color: #fafafa;
  max-width: 1000px;
  padding: 8rem;
}

.fancybox__container .member-dialog .top-area {
  display: grid;
  grid-template-columns: 5.5fr 4.5fr;
  gap: 4rem;
  align-items: center;
}

.fancybox__container .member-dialog .top-area {
  padding-bottom: 5rem;
  border-bottom: 1px solid #22427e;
  margin-bottom: 4rem;
}

.fancybox__container .member-dialog .top-area .img {
  height: 330px;
  overflow: hidden;
  border-radius: 10px;
}

.fancybox__container .member-dialog .top-area .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fancybox__container .member-dialog .top-area .position {
  font-size: 2rem;
  font-weight: 300;
  padding-bottom: 3rem;
  color: #fafafa;
}

.fancybox__container .member-dialog .top-area .name {
  font-size: 3rem;
  font-weight: 300;
  padding-bottom: 2rem;
  color: #fafafa;
}

.fancybox__container .member-dialog .top-area .en-name {
  font-family: "termina", sans-serif;
  font-weight: 200;
  color: #fafafa;
}

.fancybox__container .member-dialog .history {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2;
}

.fancybox__content>.carousel__button.is-close {
  top: 4rem !important;
  right: 4rem !important;
}

.fancybox__content>.carousel__button.is-close svg {
  width: 4rem;
  height: 4rem;
  stroke-width: 1px;
}

.businesscase .inner {
  max-width: 960px;
  margin: 0;
}

.businesscase .case-list {
  grid-template-columns: 1fr 1fr 1fr !important;
}

.businesscase .btn-area {
  text-align: right;
  padding: 6rem 0 0;
}

.businesscase .inner .case-item:last-child {
  display: none;
}

@media screen and (max-width: 768px) {
  .business .c-aiconsulting .ai-list {
    display: block;
  }

  .business .c-aiconsulting .ai-list li {
    margin-bottom: 20px;
    min-height: auto;
  }

  .business .c-aiconsulting .ai-list li:last-child {
    margin-bottom: 0px;
  }

  .business .c-aiconsulting .ai-list li .list-content {
    padding: 1rem 0rem 0;
  }

  .business .c-aiconsulting .ai-list li .num {
    font-size: 1rem;
  }

  .business .c-aiconsulting .ai-list li .list-content .list-title {
    font-size: 1.7rem;
    padding-bottom: 1rem;
  }

  .business .c-aiconsulting .ai-list li .list-content .list-detail {
    font-size: 1.3rem;
  }

  .business .c-feature {
    padding: 6rem 20px 0;
  }

  .business .c-feature ul li {
    padding: 3rem;
    gap: 8%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .business .c-feature ul li img {
    width: 30%;
  }

  .business .c-feature ul li .text-area {
    width: 62%;
  }

  .business .c-feature ul li .title {
    font-size: 1.7rem;
    padding-bottom: 0;
  }

  .business .c-feature ul li .detail {
    font-size: 1.3rem;
    padding-top: 2rem;
  }

  .business .c-menu {
    padding: 6rem 20px 0;
  }

  .business .c-menu table tr th {
    padding: 1rem 0;
    font-size: 1.5rem;
    width: 46%;
  }

  .business .c-menu table tr th:last-child {
    width: 54%;
  }

  .business .c-menu table tr td {
    padding: 1rem;
    font-size: 1.3rem;
  }

  .business .c-member .member-list {
    display: block;
  }

  .business .c-member .member-list .member-item {
    margin-bottom: 4rem;
  }

  .business .c-member .member-list .name-area {
    padding: 0 2rem;
  }

  .business .c-member .member-list .name {
    font-size: 1.7rem;
    padding: 2rem 0rem 1rem;
  }

  .business .c-member .member-list .en-name {
    font-size: 1.3rem;
    padding-top: 1rem;
  }

  .business .c-member .btn-area {
    text-align: center;
    padding: 2rem 0 0;
  }

  .business .c-holdingsmanagement {
    padding: 6rem 20px 8rem;
  }

  .business .c-holdingsmanagement .group-btn {
    height: 17rem;
    padding: 4rem 2rem;
  }

  .business .c-holdingsmanagement .group-btn .btn-head {
    font-size: 1.9rem;
  }

  .business .c-holdingsmanagement .group-btn .detail {
    bottom: 2rem;
    font-size: 1.1rem;
    width: 70%;
  }

  .businesscase .inner .case-item:last-child {
    display: block;
  }

  .businesscase .case-list {
    grid-template-columns: 1fr 1fr !important;
  }

  .fancybox__container .member-dialog .top-area .img img {
    border-radius: 10px;
  }

  .businesscase .btn-area {
    text-align: center;
    padding: 2rem 0 0;
  }

  .fancybox__container .member-dialog {
    padding: 5rem 2rem 3rem;
    height: 100%;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .fancybox__container .member-dialog::-webkit-scrollbar {
    display: none;
  }

  .fancybox__content>.carousel__button.is-close {
    position: fixed !important;
    top: 2.5rem !important;
    right: 2.5rem !important;
  }

  .fancybox__content>.carousel__button.is-close svg {
    width: 2rem;
    height: 2rem;
  }

  .fancybox__container .member-dialog .top-area {
    display: block;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }

  .fancybox__container .member-dialog .top-area .img {
    height: auto;
  }

  .fancybox__container .member-dialog .top-area .text-area {
    text-align: center;
  }

  .fancybox__container .member-dialog .top-area .position {
    font-size: 1.6rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }

  .fancybox__container .member-dialog .top-area .name {
    font-size: 1.7rem;
    padding-bottom: 1rem;
  }

  .fancybox__slide {
    padding: 20px !important;
  }
}

/*--------------------------
TOPIC
----------------------------*/
.topic .c-topic .contents-inner {
  max-width: 1000px;
  margin: auto;
}

.topic.ir .c-topic .contents-inner {
  max-width: 1240px;
}

.topic.ir .contents-inner .inner {
  max-width: 1000px;
  margin: auto;
}

.topic .c-topic {
  padding: 12rem 20px 14rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.topic .c-topic .category-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 6rem;
}

.topic .c-topic .category-filter a {
  color: #fff;
  width: 15rem;
  height: 5rem;
  background-color: rgba(8, 40, 120, 0.9);
  border-radius: 7px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topic .c-topic .category-filter a:hover {
  opacity: 1;
  background-color: #003ccc;
}

.topic .c-topic .category-filter a.active {
  background-color: #003ccc;
}

.topic .c-topic .year-filter {
  width: 260px;
  height: 50px;
  position: relative;
  margin: auto;
  margin-bottom: 8rem;
}

.topic .c-topic .year-filter::before,
.topic .c-topic .year-filter::after {
  position: absolute;
  content: '';
  pointer-events: none;
}

.topic .c-topic .year-filter::before {
  display: inline-block;
  right: 0;
  width: 60px;
  height: 50px;
  border-radius: 0 7px 7px 0;
  background-color: #003ccc;
  background-image: url(../images/common/select_white_arrow.png);
  background-size: 11px 10px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.topic .c-topic .year-filter select {
  width: 100%;
  height: 50px;
  padding: 11px;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  background-color: #003ccc;
  color: #fff;
  text-align: center;
}

.topic .c-topic .topiclist .topicitem:first-child a {
  border-top: 1px solid #2e2d3a;
}

.topic .c-topic .topiclist .topicitem a {
  position: relative;
  display: flex;
  gap: 25px;
  padding: 4rem 13rem 4rem 3rem;
  color: #fff;
  border-bottom: 1px solid #2e2d3a;
}

.topic .c-topic .topiclist .topicitem a:hover {
  background-color: rgba(8, 40, 120, 0.9);
  opacity: 1;
}

.topic .c-topic .topiclist .topicitem a .category {
  min-width: 12rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #fff;
  font-weight: 300;
}

.topic .c-topic .topiclist .topicitem a .date {
  font-family: "termina", sans-serif;
  font-weight: 300;
  padding-top: 2px;
}

.topic .c-topic .topiclist .topicitem a .title {
  line-height: 1.7;
}

.topic .c-topic .topiclist .topicitem a .btn {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 3rem;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  border-radius: 30px;
}

.topic .c-topic .topiclist .topicitem a .icon {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1500px) {
  .topic .c-topic .contents-inner {
    max-width: 85vw;
  }

  .topic.ir .c-topic .contents-inner {
    max-width: 85vw;
  }
}

@media screen and (max-width: 768px) {
  .topic .c-topic {
    padding: 5rem 20px 8rem;
  }

  .topic .c-topic .category-filter {
    justify-content: start;
    padding-bottom: 4rem;
  }

  .topic .c-topic .category-filter a {
    width: 8rem;
    height: 3rem;
    font-size: 1.2rem;
  }

  .topic .c-topic .year-filter {
    width: 230px;
    margin-bottom: 4rem;
  }

  .topic .c-topic .topiclist {
    padding-top: 2rem;
  }

  .topic .c-topic .topiclist .topicitem a {
    padding: 2rem 4rem 2rem 0rem;
    gap: 20px;
    flex-wrap: wrap;
  }

  .topic .c-topic .topiclist .topicitem a .category {
    min-width: 8rem;
    height: 3rem;
    font-size: 1.2rem;
  }

  .topic .c-topic .topiclist .topicitem a .title {
    width: 100%;
    font-size: 1.2rem;
  }

  .topic .c-topic .topiclist .topicitem a .icon {
    width: 2.5rem;
    right: 0;
  }

  .topic .c-topic .topiclist .topicitem a .btn {
    right: 0rem;
    width: 4rem;
    height: 2rem;
  }
}

/*--------------------------
TOPIC SINGLE
----------------------------*/
.c-submv.topic-single-mv {
  padding: 230px 20px 40px;
  color: #fff;
}

.c-submv.topic-single-mv .contents-inner {
  max-width: 1000px;
}

.c-submv.topic-single-mv .date-category {
  display: flex;
  gap: 20px;
  align-items: center;
}

.c-submv.topic-single-mv .date-category .category {
  text-align: center;
  padding: 0rem 3rem;
  border-radius: 5px;
  border: 1px solid #fff;
  font-weight: 300;
}

.c-submv.topic-single-mv .date-category .date {
  font-family: "termina", sans-serif;
  font-weight: 300;
}

.c-submv.topic-single-mv .title {
  font-size: 2.8rem;
  font-weight: 400;
  padding-top: 3rem;
}

.topic-single .c-single {
  padding: 7rem 20px 16rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.topic-single .c-single .contents-inner {
  max-width: 1000px;
}

.topic-single .c-single .back-btn {
  font-size: 1.6rem;
  font-family: "termina", sans-serif;
  font-weight: 300;
  cursor: pointer;
  width: 24rem;
  height: 7rem;
  padding: 0 2rem 0 4rem;
  margin-top: 2rem;
}

.topic-single .c-single .btn-area {
  text-align: center;
}

.topic-single .c-single .back-btn .circle {
  width: 2rem;
  height: 2rem;
}

@media screen and (max-width: 1500px) {
  .c-submv.topic-single-mv .contents-inner {
    max-width: 85vw;
  }

  .topic-single .c-single .contents-inner {
    max-width: 85vw;
  }
}

@media screen and (max-width: 768px) {
  .c-submv.topic-single-mv {
    padding: 13rem 20px 4rem;
  }

  .c-submv.topic-single-mv .contents-inner {
    max-width: unset;
  }

  .topic-single .c-single .contents-inner {
    max-width: unset;
  }

  .c-submv.topic-single-mv .date-category .category {
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
  }

  .c-submv.topic-single-mv .date-category .date {
    font-size: 1.3rem;
  }

  .c-submv.topic-single-mv .title {
    font-size: 1.8rem;
    padding-top: 2rem;
  }

  .topic-single .c-single {
    padding: 5rem 20px 8rem;
  }

  .topic-single .c-single .back-btn {
    font-size: 1.4rem;
    cursor: pointer;
    width: 21rem;
    height: 6.5rem;
  }
}

/*--------------------------
POLICY
----------------------------*/
.policy .c-policy {
  padding: 12rem 20px 14rem;
  color: #f9fafb;
  font-weight: 300;
  line-height: 2;
}

.policy .c-policy .contents-inner {
  max-width: 1000px;
  margin: auto;
}

.policy .c-policy .contents-inner .text1 {
  font-size: 1.8rem;
}

.policy .c-policy .contents-inner .text2 {
  font-size: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 8rem;
}

.policy .c-policy .contents-inner .text2 span {
  background: linear-gradient(to top, #141548, #3c63f3, #3980f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 2.4rem;
  font-family: "termina", sans-serif;
}

.policy .c-policy .contents-inner .text3 {
  display: flex;
  gap: 20px;
  padding-top: 2rem;
}

.policy .c-policy .contents-inner .text3 span {
  font-family: "termina", sans-serif;
}

.policy .c-policy .contents-inner .text4 {
  padding-top: 2rem;
  padding-left: 6.2rem;
}

.policy .c-policy .contents-inner .btm-text {
  padding-top: 4rem;
  margin-top: 9rem;
  border-top: 1px solid #22427e;
  text-align: right;
  font-size: 2rem;
}

@media screen and (max-width: 1500px) {
  .policy .c-policy .contents-inner {
    max-width: 85vw;
  }
}


@media screen and (max-width: 768px) {
  .policy .c-policy {
    padding: 5rem 20px 8rem;
  }

  .policy .c-policy .contents-inner {
    max-width: unset;
  }

  .policy .c-policy .contents-inner .text1 {
    font-size: 1.4rem;
  }

  .policy .c-policy .contents-inner .text2 {
    font-size: 1.9rem;
    padding-top: 4rem;
    line-height: 1.5;
    align-items: start;
    gap: 1rem;
  }

  .policy .c-policy .contents-inner .text2 span {
    font-size: 2rem;
  }

  .policy .c-policy .contents-inner .text3 {
    gap: 1rem;
    font-size: 1.3rem;
  }

  .policy .c-policy .contents-inner .text4 {
    padding-top: 2rem;
    padding-left: 4.4rem;
    font-size: 1.3rem;
  }

  .policy .c-policy .contents-inner .btm-text {
    padding-top: 3rem;
    margin-top: 5rem;
    font-size: 1.6rem;
  }
}

/*--------------------------
DOCUMENT
----------------------------*/
.c-document .contents-inner {
  max-width: 1000px;
  margin: auto;
  color: #ffffff;
  text-align: center;
}

.document .c-document {
  padding: 12rem 20px 14rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.document .c-document .head {
  font-size: 3rem;
  padding-bottom: 6rem;
}

.document .c-document .detail {
  font-size: 2rem;
  font-weight: 300;
  padding: 5rem 0 6rem;
}

.document .c-document .documentlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.document .c-document .documentlist .documentitem {
  margin-bottom: 5rem;
}

.document .c-document .documentlist .documentitem a {
  color: #ffffff;
  margin-bottom: 3rem;
}

.document .c-document .documentlist .documentitem a .img {
  background-color: #fafafa;
  /* height: 36rem; */
  padding: 6.5rem 7.5rem;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.document .c-document .documentlist .documentitem a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.document .c-document .documentlist .documentitem a .title {
  font-size: 2rem;
  padding: 3rem 0;
  font-weight: 300;
}

@media screen and (max-width: 1200px) {
  .c-document .contents-inner {
    max-width: 85vw;
  }
}

@media screen and (max-width: 768px) {
  .document .c-document {
    padding: 5rem 20px 8rem;
  }

  .c-document .contents-inner {
    max-width: unset;
  }

  .document .c-document .head {
    font-size: 1.8rem;
    padding-bottom: 4rem;
  }

  .document .c-document .detail {
    font-size: 1.3rem;
    font-weight: 300;
    padding: 3rem 4rem;
  }

  .document .c-document .documentlist {
    display: block;
  }

  .document .c-document .documentlist .documentitem {
    margin-bottom: 4rem;
  }

  .document .c-document .documentlist .documentitem a .img {
    padding: 3.5rem 4.5rem;
  }

  .document .c-document .documentlist .documentitem a .title {
    font-size: 1.4rem;
    padding: 2rem;
    text-align: left;
  }
}

/*--------------------------
CASE
----------------------------*/
.case .c-case {
  padding: 12rem 20px 14rem;
  background-color: rgba(0, 0, 0, 0.6);
}

.case .contents-inner {
  max-width: 1000px;
  margin: auto;
}

.case .c-case .filter-area {
  color: #fff;
  padding: 7rem 8rem;
  background-color: rgba(8, 40, 120, 0.9);
  border-radius: 10px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 7rem;
}

.case .c-case .filter-area .filter-title {
  font-size: 2.4rem;
  font-weight: 400;
}

.case .c-case .filter-area .category-filter-area {
  display: flex;
  align-items: center;
  gap: 7rem;
  border-bottom: 1px solid #22427e;
  padding: 4rem 2rem;
}

.case .c-case .filter-area .tag-filter-area {
  display: flex;
  align-items: center;
  gap: 7rem;
  padding: 4rem 2rem;
}

.case .c-case .filter-area .filter-head {
  font-size: 2rem;
  min-width: 10rem;
}

.case .c-case .filter-area .filter-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.case .c-case .filter-area .filter-content a {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 1rem 2rem;
  text-align: center;
}

.case .c-case .filter-area .filter-content a.active {
  opacity: 1;
  background-color: #fff;
  color: #000;
}

@media screen and (min-width: 767px) {

  .case .c-case .filter-area .filter-content a:hover {
    opacity: 1;
    background-color: #fff;
    color: #000;
  }
}

.case .c-case .filter-area .filter-btn {
  font-size: 1.8rem;
  cursor: pointer;
  width: 24rem;
  height: 7rem;
  padding: 0 2rem 0 4rem;
  margin-top: 2rem;
}

.case .c-case .filter-area .filter-btn .circle {
  width: 2rem;
  height: 2rem;
}

.case .c-case ul li {
  background-color: #fff;
  border-radius: 10px;
  padding: 3rem;
  margin-bottom: 4rem;
}

.case .c-case ul li .toggle-head {
  cursor: pointer;
  position: relative;
  display: flex;
  gap: 4%;
}

.case .c-case ul li .toggle-head .thumb {
  width: 33%;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
}

.case .c-case ul li .toggle-head .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case .c-case ul li .toggle-head .case-taxonomies {
  width: 63%;
  position: relative;
}

.case .c-case ul li .toggle-head .plus {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}

.case .c-case ul li .toggle-head .plus span {
  display: block;
  position: relative;
  height: 60px;
  width: 60px;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  border-radius: 50%;
}

.case .c-case ul li .toggle-head .plus span::after,
.case .c-case ul li .toggle-head .plus span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  background: #fff;
  transition: 0.2s;
}

.case .c-case ul li .toggle-head .plus span::after {
  width: 20px;
  height: 2px;
  transform: translateY(-50%);
}

.case .c-case ul li .toggle-head .plus span::before {
  width: 2px;
  height: 20px;
  transform: translateY(-50%);
  right: 28px;
}

.case .c-case ul li.active .toggle-head .plus span::before {
  transform: translateY(-50%) scaleY(0);
}

.case .c-case ul li .toggle-head .case-category span {
  border: 1px solid #999999;
  border-radius: 5px;
  padding: 3px 15px;
  display: inline-block;
}

.case .c-case ul li .toggle-head .case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 15px 0 20px;
}

.case .c-case ul li .toggle-head .case-tags span {
  color: #0134df;
  font-size: 1.3rem;
  font-weight: 500;
}

.case .c-case ul li .toggle-head .title {
  font-size: 2rem;
  line-height: 2;
}


.case .c-case ul li .toggle-content {
  display: none;
  padding: 3rem 3rem 0;
  font-weight: 400;
  line-height: 2;
}

.case .c-case ul li .toggle-content .case-content-item {
  display: grid;
  grid-template-columns: 1.5fr 8.5fr;
  gap: 4%;
  padding-bottom: 2rem;
}

.case .c-case ul li .toggle-content .case-content-item .head {
  font-weight: 500;
}

.case .c-case ul li .toggle-content .case-content-item .detail {
  font-weight: 300;
}

.case .c-case #case-viewmore-btn {
  cursor: pointer;
  margin-top: 2rem;
}

@media screen and (max-width: 1500px) {
  .case .contents-inner {
    max-width: 85vw;
  }
}

@media screen and (max-width: 768px) {
  .case .c-case {
    padding: 5rem 20px 8rem;
  }

  .case .contents-inner {
    max-width: none;
  }

  .case .c-case .filter-area {
    padding: 3rem 0rem;
    margin-bottom: 5rem;
  }

  .case .c-case .filter-area .filter-title {
    font-size: 1.5rem;
  }

  .case .c-case .filter-area .category-filter-area {
    display: block;
    padding: 2rem 2rem;
  }

  .case .c-case .filter-area .filter-head {
    font-size: 1.4rem;
    padding-bottom: 2rem;
    text-align: left;
  }

  .case .c-case .filter-area .filter-content {
    gap: 1.5rem;
  }

  .case .c-case .filter-area .filter-content a {
    font-size: 1.2rem;
    padding: .5rem 2rem;
  }

  .case .c-case .filter-area .tag-filter-area {
    display: block;
    padding: 2rem 2rem;
  }

  .case .c-case ul li {
    margin-bottom: 2rem;
    padding: 2rem 2rem 2rem;
  }

  .case .c-case ul li .toggle-head {
    align-items: center;
    flex-wrap: wrap;
    gap: 7%;
  }

  .case .c-case ul li .toggle-head .thumb {
    width: 50%;
  }

  .case .c-case ul li .toggle-head .case-taxonomies {
    width: 43%;
  }

  .case .c-case ul li .toggle-head .case-category span {
    font-size: 1.2rem;
    padding: .5rem 1.5rem;
  }

  .case .c-case ul li .toggle-head .case-tags {
    gap: 5px;
    padding: 10px 0 0px;
  }

  .case .c-case ul li .toggle-head .title {
    font-size: 1.4rem;
    padding: 1rem 1rem 5rem;
  }

  .case .c-case ul li .toggle-head .plus span {
    width: 45px;
    height: 45px;
  }

  .case .c-case ul li .toggle-head .plus span::after,
  .case .c-case ul li .toggle-head .plus span::before {
    right: 14px;
  }

  .case .c-case ul li .toggle-head .plus span::before {
    width: 2px;
    height: 15px;
    transform: translateY(-50%);
    right: 21px;
  }

  .case .c-case ul li .toggle-head .plus span::after {
    width: 15px;
    height: 2px;
  }

  .case .c-case ul li .toggle-content {
    padding: 2rem 1rem 0;
  }

  .case .c-case ul li .toggle-content .case-content-item {
    display: block;
  }

  .case .c-case ul li .toggle-content .case-content-item .detail {
    font-size: 1.2rem;
  }

  .case .c-case .filter-area .filter-btn {
    font-size: 1.4rem;
    cursor: pointer;
    width: 21rem;
    height: 6.5rem;
  }
}

/*--------------------------
CONTACT
----------------------------*/
.contact .c-contact {
  padding: 8rem 20px 12rem;
  color: #ffffff;
  font-weight: 300;
  background-color: rgba(0, 0, 0, 0.6);
}

.contact .c-contact .head-msg {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
}

.contact .c-contact .head-msg span {
  font-family: "termina", sans-serif;
}

.contact .c-contact .detail {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
  padding: 4rem 0;
}

.contact .c-contact .content {
  padding: 6rem 9rem 6rem 18rem;
  background-color: rgba(8, 40, 120, 0.9);
  border-radius: 10px;
}

.contact .c-contact .btn-area {
  text-align: center;
}

.contact .c-contact .back-btn {
  font-size: 1.6rem;
  font-family: "termina", sans-serif;
  font-weight: 300;
  cursor: pointer;
  width: 24rem;
  height: 7rem;
  padding: 0 2rem 0 4rem;
  margin-top: 2rem;
}

.contact .c-contact .back-btn .circle {
  width: 2rem;
  height: 2rem;
}

.smf-item__label__text {
  position: relative;
}

.smf-item:has([data-validations~="required"]) .smf-item__label__text::before {
  position: absolute;
  top: 50%;
  left: -90px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 70px;
  height: 25px;
  border-radius: 20px;
  content: "必須";
  color: #fff;
  background: #0134df;
  line-height: 0.7;
}

.smf-item:has([data-validations~="required"]):last-child .smf-item__label__text::before {
  display: none;
}

.smf-item:not(:has([data-validations~="required"])) .smf-item__label__text::before {
  position: absolute;
  top: 50%;
  left: -90px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 70px;
  height: 25px;
  border-radius: 20px;
  content: "任意";
  color: #fff;
  border: 1px solid #fff;
  line-height: 0.7;
}

.smf-form .smf-radio-button-control {
  gap: 20px !important;
}

.smf-form .smf-radio-button-control__control {
  background-color: unset !important;
  border: 1px solid #fff !important;
}

.smf-form .smf-radio-button-control__control:checked {
  background-color: #0134df !important;
  border-color: #fff !important;
}

.smf-form .smf-radio-button-control__control:checked:before {
  background-color: #0134df !important;
}

.smf-form .smf-text-control__control {
  width: 100%;
  padding: 15px 25px !important;
  border-radius: 8px !important;
  border: unset !important;
}

.smf-form .smf-textarea-control__control {
  padding: 15px 25px !important;
  border-radius: 8px !important;
  border: unset !important;
}

.smf-checkboxes-control {
  padding: 20px 0;
}

.smf-form .smf-checkbox-control__control:checked {
  background-color: #0134df !important;
  border-color: #0134df !important;
}

.smf-button-control__control {
  position: relative !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc) !important;
  color: #fff !important;
  text-decoration: none;
  overflow: hidden;
  border-radius: 4rem !important;
  border: unset !important;
  font-size: 1.6rem;
  font-family: "termina", sans-serif;
  font-weight: 300;
  cursor: pointer;
  width: 24rem;
  height: 7rem;
  padding: 0 2rem 0 4rem !important;
  margin-top: 2rem;
}

.smf-button-control__control:hover {
  opacity: .5;
}

.smf-button-control__control::before {
  content: '';
  position: absolute;
  right: 3rem;
  top: 3.2rem;
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .contact .c-contact {
    padding: 5rem 20px 8rem;
  }

  .contact .c-contact .head-msg {
    font-size: 1.8rem;
  }

  .contact .c-contact .detail {
    font-size: 1.3rem;
    padding: 3rem 0rem;
  }

  .contact .c-contact .content {
    padding: 3rem 2rem;
  }

  .smf-item__label__text {
    padding-left: 6rem;
  }

  .smf-item:has([data-validations~="required"]) .smf-item__label__text::before {
    left: 0;
    font-size: 1.2rem;
    width: 50px;
    height: 20px;
  }

  .smf-item:not(:has([data-validations~="required"])) .smf-item__label__text::before {
    left: 0;
    font-size: 1.2rem;
    width: 50px;
    height: 20px;
  }

  .smf-checkboxes-control {
    padding: 0;
    text-align: center;
  }

  .smf-button-control__control {
    width: 21rem;
    height: 6.5rem;
    font-size: 1.4rem;
    margin-top: 1rem;
  }

  .smf-form .smf-text-control__control {
    padding: 13px 15px !important;
    border-radius: 6px !important;
  }

  .smf-form .smf-textarea-control__control {
    padding: 13px 15px !important;
    border-radius: 6px !important;
  }

  .contact .c-contact .back-btn {
    width: 21rem;
    height: 6.5rem;
    font-size: 1.4rem;
  }
}

/*--------------------------
RECRUIT
----------------------------*/
.c-recruitmv {
  height: 100vh;
  width: 100%;
  position: relative;
}

.c-recruitmv::before {
  content: "";
  position: absolute;
  background: url(../images/recruit/recruit_mv_bk.png) no-repeat;
  background-size: 100% !important;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1600px;
  height: 1039px;
  z-index: -1;
}

@media screen and (max-width: 1599px) {
  .c-recruitmv::before {
    height: 106%;
  }
}

.c-recruitmv .contents-inner {
  padding-top: 120px;
}

.c-recruitmv .title-area {
  position: absolute;
  top: 140px;
  left: 10%;
  opacity: 0;
  transform: translateY(5%);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}

.c-recruitmv .title-area.active {
  opacity: 1;
  transform: translateY(0);
}

.c-recruitmv .title-area h1 {
  font-family: "dnp-shuei-mincho-pr6", sans-serif;
  line-height: 1.13;
}

.c-recruitmv .title-area h1 .font1 {
  font-size: 9rem;
  font-size: 9vh;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.c-recruitmv .title-area h1 .font2 {
  font-size: 8.8rem;
  font-size: 8.8vh;
}

.c-recruitmv .title-area h1 .font3 {
  font-size: 16.4rem;
  font-size: 16.4vh;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.c-recruitmv .title-area h1 .font4 {
  font-size: 7.6rem;
  font-size: 7.6vh;
}

.c-recruitmv .title-area .en-title {
  font-size: 2.2rem;
  font-size: 2.2vh;
  font-family: "termina", sans-serif;
  position: relative;
}

.c-recruitmv .title-area .en-title::before {
  content: "";
  position: absolute;
  background: url(../images/recruit/recruit_mv_entitle_bk.png) no-repeat;
  background-size: 100%;
  width: 56.7rem;
  height: 5.1rem;
  bottom: -2.6rem;
  left: -4rem;
  z-index: -1;
}

.c-recruitmv .slider-area.js-slider {
  overflow: hidden;
  width: 100%;
  position: absolute;
  bottom: 4vh;
  left: 0;
}

.c-recruitmv .slider-area .slider-track.js-slider-track {
  display: flex;
  width: max-content;
  gap: 10px;
}

.c-recruitmv .slider-area .slide {
  flex: 0 0 auto;
  width: 70rem;
  width: 70vh;
  max-height: 41rem;
  border-radius: 20px;
  overflow: hidden;
}

.c-recruitmv .slider-area .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-recruitmv .entry-btn {
  width: 18rem;
  height: 18rem;
  position: absolute;
  right: 5rem;
  bottom: 5px;
  z-index: 11;
}

.c-recruitmv .entry-btn #recruitentrybtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
  background-color: #2946fa;
  border-radius: 50%;
}

.c-recruitmv .entry-btn #recruitentrybtn:hover {
  cursor: pointer;
  opacity: .5;
}

.c-recruitmv .entry-btn #recruitentrybtn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -7.9rem;
  margin-top: -7.9rem;
  width: 15.8rem;
  height: 15.8rem;
  background: url(../images/recruit/recruit_entry_circle.png) no-repeat;
  background-size: 100% 100%;
  /* animation: applyBtn 10s linear infinite; */
}

.c-recruitmv .entry-btn #recruitentrybtn img {
  width: 1.9rem;
  height: 1.9rem;
}

@keyframes applyBtn {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.c-recruitmv .entry-btn #recruitentrybtn span {
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

.recruit .c-recruitmain {
  padding: 7rem 20px 16rem;
}

.recruit .c-recruitmain .contents-inner {
  position: relative;
}

.recruit .c-recruitmain .contents-inner::before {
  content: '';
  position: absolute;
  top: 3rem;
  right: 4rem;
  width: 40.8rem;
  height: 42.4rem;
  background: url(../images/recruit/recruit_main_bk.png) no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}

.recruit .c-recruitmain h2 {
  font-size: 4.2rem;
  padding-bottom: 6rem;
}

.recruit .c-recruitmain .detail {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2;
}

.recruit .c-aboutus {
  padding: 10rem 0px 15rem;
  background-color: #f8f8f8;
  border-radius: 60px;
  position: relative;
}

.recruit .c-aboutus::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1600px;
  height: 1322px;
  height: 100%;
  background: url(../images/recruit/recruit_aboutus_bk.png) no-repeat;
  background-size: 100% 100%;
  border-radius: 60px;
}

.recruit-common-head .sub-head {
  font-size: 2rem;
  font-family: "termina", sans-serif;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.recruit-common-head .head {
  font-size: 5.2rem;
}

.recruit .c-aboutus .text-area {
  width: 55%;
  position: relative;
  z-index: 1;
}

.recruit .c-aboutus .title {
  font-size: 2.8rem;
  font-weight: 500;
  padding: 3rem 0px 3rem;
}

.recruit .c-aboutus .detail {
  font-weight: 300;
  line-height: 2;
}

.recruit .c-aboutus .btn-area {
  padding-top: 9rem;
}

.recruit .c-aboutus .btn-area .view-more {
  background: #080c12;
  border: 1px solid #9d9b9b;
  color: #ffffff;
  font-family: "termina", sans-serif;
  font-size: 1.8rem;
  height: 7rem;
  width: 28rem;
  padding: 0 2rem 0 3rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 4rem;
}

.recruit .c-aboutus .btn-area .view-more::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/recruit/recruit_entry_arrow_more.png) no-repeat;
  top: 2.8rem;
  right: 2.8rem;
  width: 1.6rem;
  height: 1.6rem;
}

.recruit .c-aboutus .img-area {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 48%;
  max-width: 800px;
}

.recruit .c-aboutus .img-area img {
  width: 100%;
}

.c-recruitmember {
  padding: 12rem 20px 14rem;
}

.c-recruitmember .detail {
  padding: 3rem 0px 5rem;
  font-weight: 300;
}

.c-recruitmember #member-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.c-recruitmember #member-list li {
  list-style: none;
  margin-bottom: 2rem;
}

.c-recruitmember #member-list li a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.c-recruitmember #member-list li a .thumb {
  overflow: hidden;
  border-radius: 12px;
}

.c-recruitmember #member-list li a .thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.c-recruitmember #member-list li a:hover .thumb img {
  transform: scale(1.05);
}

.c-recruitmember #member-list li a .title {
  font-weight: 400;
  padding-top: 1.5rem;
}

.c-recruitmember #member-list li a .title span {
  font-size: 3.2rem;
  font-family: "termina", sans-serif;
  padding-right: 7px;
}

.c-recruitmember #member-list li a .head {
  font-size: 1.4rem;
  font-weight: 300;
}

.c-recruitmember #viewmore-btn {
  width: 100%;
  background-color: #f1f1f1;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-family: "termina", sans-serif;
  position: relative;
  height: 90px;
  margin-top: 6rem;
}

.c-recruitmember #viewmore-btn::before {
  content: '';
  position: absolute;
  top: 24px;
  right: 30px;
  width: 4rem;
  height: 4rem;
  background: url(../images/recruit/viewmore_plus.png) no-repeat;
  background-size: 100% 100%;
}

.c-recruitmember #viewmore-btn:hover {
  cursor: pointer;
  opacity: .5;
}

.recruit .c-recruitaideal {
  padding: 10rem 0px 15rem;
  background-color: #171b22;
  border-radius: 60px;
  position: relative;
}

.recruit .c-recruitaideal::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1600px;
  width: 100%;
  height: 1472px;
  height: 100%;
  background: url(../images/recruit/recruit_ideal_bk.png) no-repeat;
  background-size: 100% 100%;
  border-radius: 60px;
}

.recruit .c-recruitaideal .contents-inner {
  z-index: 1;
  position: relative;
}

.recruit .c-recruitaideal .recruit-common-head .head {
  color: #fff;
  padding-bottom: 6rem;
}

.recruit .c-recruitaideal .ideal-list li {
  background-color: #fff;
  border-radius: 20px;
  padding: 3rem 4rem 6rem;
  position: relative;
  margin-bottom: 20px;
}

.recruit .c-recruitaideal .ideal-list li .num {
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 2.2rem;
  font-family: "termina", sans-serif;
}

.recruit .c-recruitaideal .ideal-list li .list-content {
  display: grid;
  grid-template-columns: 3.2fr 6.8fr;
  align-items: center;
  gap: 20px;
  padding: 1rem 0rem 0rem 5rem;
}

.recruit .c-recruitaideal .ideal-list li .list-content .list-title {
  font-size: 3rem;
}

.recruit .c-recruitaideal .ideal-list li .list-content .list-detail span {
  font-weight: 300;
  position: relative;
  display: block;
  padding-left: 25px;
  line-height: 1.5;
  padding-bottom: 10px;
}

.recruit .c-recruitaideal .ideal-list li .list-content .list-detail span::before {
  content: '― ';
  display: inline-block;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: normal;
  position: absolute;
  left: 0;
  top: 0;
}

.recruit .c-entry {
  padding: 12rem 20px 14rem;
  position: relative;
}

.recruit .c-entry::before {
  position: absolute;
  content: '';
  background: #f8f8f8;
  width: 50%;
  height: calc(100% + 60px);
  left: 0px;
  bottom: 0;
  z-index: -1;
}

.recruit .c-entry .main-detail {
  font-weight: 300;
  padding: 3rem 0 5rem;
}

.recruit .c-entry .content {
  display: grid;
  grid-template-columns: 2.5fr 7.5fr;
  gap: 20px;
  position: relative;
}

.recruit .c-entry .content .title-area {
  /* position: sticky;
  top: 150px; */
  position: relative;
  top: auto;
  width: auto;
  z-index: 1;
  grid-column: 1 / 2;
}

.recruit .c-entry .content .entry-tab {
  padding: 2rem 0rem 2rem 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #dddddd;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recruit .c-entry .content .entry-tab.active {
  position: relative;
  border-bottom: unset;
}

.recruit .c-entry .content .entry-tab.active-prev {
  border-bottom: unset;
}

.recruit .c-entry .content .entry-tab.active::before {
  position: absolute;
  content: '';
  background: #fff;
  right: -21px;
  bottom: 0;
  width: calc(100% + 25px);
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
  height: 100%;
  border-top: 1px #dddddd solid;
  border-left: 1px #dddddd solid;
  border-bottom: 1px #dddddd solid;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  z-index: -1;
}

.recruit .c-entry .content .entry-tab .tabarrow {
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
  margin-left: 5px;
  border: 1px #bcbcbc solid;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  position: relative;
}

.recruit .c-entry .content .entry-tab .tabarrow:after {
  position: absolute;
  content: '';
  background: #000;
  width: 5px;
  height: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  transition: opacity 0.2s, transform 0.3s;
}

.recruit .c-entry .content .entry-tab .tabarrow:before {
  position: absolute;
  content: '';
  background: url(../images/recruit/recruit_entry_arrow_small.png) center center no-repeat #003ccc;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 1;
}

.recruit .c-entry .content .entry-tab.active .tabarrow:before {
  transform: translate(-50%, -50%) scale(1);
}

@media screen and (max-width: 1300px) {
  .c-recruitmv .title-area h1 .font1 {
    font-size: 9rem;
  }

  .c-recruitmv .title-area h1 .font2 {
    font-size: 8.8rem;
  }

  .c-recruitmv .title-area h1 .font3 {
    font-size: 16.4rem;
  }

  .c-recruitmv .title-area h1 .font4 {
    font-size: 7.6rem;
  }

  .c-recruitmv .slider-area .slide {
    width: 70rem;
  }

  .c-recruitmv .title-area .en-title {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 767px) {
  .recruit .c-entry .content .entry-tab:hover .tabarrow:before {
    transform: translate(-50%, -50%) scale(1);
  }
}

.recruit .c-entry .content .content-area {
  border-radius: 20px;
  border: 1px solid #dddddd;
  border-top-left-radius: unset;
  background-color: #fff;
  padding: 4rem;
}

.recruit .c-entry .content .item-name {
  font-size: 3.2rem;
  padding-top: 6rem;
}

.recruit .c-entry .content .recruit-block:first-child .item-name {
  padding-top: 0;
}

.recruit .c-entry .content .content-block {
  border-bottom: 1px solid #dddddd;
  padding: 4rem 1rem;
}

.recruit .c-entry .content .content-block .head1 {
  color: #363ef5;
  padding-bottom: 3rem;
}

.recruit .c-entry .content .content-block .head2 {
  font-size: 2.2rem;
  padding: 0 3rem 0 5rem;
  position: relative;
}

.recruit .c-entry .content .content-block .head2::before {
  content: '';
  position: absolute;
  left: 3rem;
  top: 1.2rem;
  display: block;
  width: 10px;
  height: 10px;
  background: #003ccc;
}

.recruit .c-entry .content .content-block .detail {
  font-weight: 300;
  padding: 1rem 3rem 0;
  line-height: 1.7;
}

.recruit .c-entry .content .entry-detail {
  padding-bottom: 3rem;
  border-bottom: 1px solid #dddddd;
}

.recruit .c-entry .content .entry-detail .head {
  font-size: 3.2rem;
  padding: 6rem 0 2rem;
}

.recruit .c-entry .content .entry-detail .detail-content {
  padding-left: 1rem;
}


.recruit .c-entry .content .entry-detail .detail-content>* {
  word-break: break-all;
  white-space: pre-wrap;
}

.recruit .c-entry .content .entry-btn {
  padding: 3rem 0;
  /* border-bottom: 1px solid #dddddd; */
}

.recruit .c-entry .content .entry-btn a {
  max-width: 640px;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  color: #fefefe;
  border-radius: 10px;
  position: relative;
  margin: auto;
  font-weight: 300;
}

.recruit .c-entry .content .entry-btn a::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/recruit/recruit_entry_arrow.png) no-repeat;
  top: 49px;
  right: 38px;
  width: 23px;
  height: 22px;
}

.recruit .partition-area img {
  width: 100%;
}

.recruit .recruitfaq-outer {
  background-color: #090d15;
}

.recruit .c-recruitfaq {
  padding: 12rem 20px 14rem;
  background-color: #f0f0f0;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  position: relative;
  overflow: hidden;
}

.recruit .c-recruitfaq::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 678px;
  height: 618px;
  background: url(../images/recruit/recruit_faq_bk.png) no-repeat;
  background-size: 100% 100%;
}

.recruit .c-recruitfaq .contents-inner {
  display: grid;
  grid-template-columns: 4.2fr 5.8fr;
  gap: 2rem;
  z-index: 1;
  position: relative;
}

.recruit .c-recruitfaq .content ul li {
  border-bottom: 1px solid #dddddd;
}

.recruit .c-recruitfaq .content ul .toggle-head {
  cursor: pointer;
  font-weight: 500;
  font-size: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}

.recruit .c-recruitfaq .content ul .toggle-head .title-area {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.recruit .c-recruitfaq .content ul .toggle-head .q-label {
  font-size: 4.8rem;
  font-family: "termina", sans-serif;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 300;
}

.recruit .c-recruitfaq .content ul .toggle-head .plus {}

.recruit .c-recruitfaq .content ul .toggle-head .plus span {
  position: relative;
  width: 6rem;
  height: 6rem;
  border: 1px solid #000;
  border-radius: 50%;
  display: block;
}

.recruit .c-recruitfaq .content ul .toggle-head .plus span::after,
.recruit .c-recruitfaq .content ul .toggle-head .plus span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.3rem;
  background: #000;
  transition: 0.2s;
}

.recruit .c-recruitfaq .content ul .toggle-head .plus span::after {
  width: 1rem;
  height: 2px;
  transform: translateY(-50%);
}

.recruit .c-recruitfaq .content ul .toggle-head .plus span::before {
  width: 2px;
  height: 1rem;
  transform: translateY(-50%);
  right: 2.7rem;
}

.recruit .c-recruitfaq .content ul li.active .toggle-head .plus span::before {
  transform: translateY(-50%) scaleY(0);
}

.recruit .c-recruitfaq .content ul .toggle-content {
  display: none;
  padding-bottom: 3rem;
  font-weight: 400;
  line-height: 2;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1300px) {
  .c-recruitmv .title-area {
    top: 20%;
    left: 5%;
  }

  .c-recruitmv .slider-area.js-slider {
    bottom: 10rem;
  }

  .c-recruitmv .entry-btn {
    bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .recruit-common-head .sub-head {
    font-size: 1.2rem;
  }

  .recruit-common-head .head {
    font-size: 3.5rem;
  }

  .c-recruitmv {
    height: auto;
    padding-bottom: 4rem;
  }

  .c-recruitmv::before {
    background: url(../images/recruit/recruit_mv_bk_sp.png) no-repeat;
    width: 750px;
    height: 1110px;
    top: -257px;
    width: 100%;
    top: 45px;
    height: -webkit-fill-available;
  }

  .c-recruitmv .contents-inner {
    padding-top: 100px;
  }

  .c-recruitmv .slider-area .slide {
    width: 40rem;
    max-height: 20rem;
  }

  .c-recruitmv .title-area {
    position: relative;
    top: 0;
    left: 0px;
  }

  .c-recruitmv .title-area h1 .font1 {
    font-size: 4.1rem;
    font-size: 3.5rem;
  }

  .c-recruitmv .title-area h1 .font2 {
    font-size: 3.9rem;
    font-size: 3rem;
  }

  .c-recruitmv .title-area h1 .font3 {
    font-size: 7.3rem;
    font-size: 5.3rem;
  }

  .c-recruitmv .title-area h1 .font4 {
    font-size: 3.4rem;
    font-size: 3rem;
  }

  .c-recruitmv .title-area .en-title {
    font-size: 1.2rem;
    padding-top: 1rem;
  }

  .c-recruitmv .title-area .en-title::before {
    width: 28.7rem;
    height: 3.1rem;
    bottom: -2.3rem;
    left: 0rem;
  }

  .c-recruitmv .slider-area.js-slider {
    position: relative;
    bottom: auto;
    margin-top: 10rem;
    left: -25px;
    width: 100vw;
  }

  .c-recruitmv .entry-btn {
    width: 9rem;
    height: 9rem;
    bottom: 1rem;
    right: 1.5rem;
  }

  .c-recruitmv .entry-btn #recruitentrybtn {
    gap: .5rem;
  }

  .c-recruitmv .entry-btn #recruitentrybtn::before {
    margin-left: -3.9rem;
    margin-top: -3.9rem;
    width: 7.8rem;
    height: 7.8rem;
  }

  .c-recruitmv .entry-btn #recruitentrybtn span {
    font-size: 1.1rem;
  }

  .c-recruitmv .entry-btn #recruitentrybtn img {
    width: 1rem;
    height: 1rem;
  }

  .recruit .c-recruitmain {
    padding: 2rem 20px 42rem;
  }

  .recruit .c-recruitmain h2 {
    font-size: 2.3rem;
    padding-bottom: 2rem;
  }

  .recruit .c-recruitmain .detail {
    font-size: 1.3rem;
  }

  .recruit .c-recruitmain .contents-inner::before {
    display: none;
  }

  .recruit .c-aboutus {
    padding: 10rem 0px 5rem;
  }

  .recruit .c-aboutus .text-area {
    width: 100%;
  }

  .recruit .c-aboutus .title {
    font-size: 2rem;
    font-weight: 500;
    padding: 2rem 0px 2rem;
  }

  .recruit .c-aboutus .detail {
    font-size: 1.3rem;
  }

  .recruit .c-aboutus .btn-area {
    padding-top: 4rem;
  }

  .recruit .c-aboutus .btn-area .view-more {
    font-size: 1.4rem;
    height: 6.5rem;
    width: 22rem;
    margin: auto;
  }

  .recruit .c-aboutus .btn-area .view-more::before {
    top: 2.5rem;
    right: 1.8rem;
    width: 1.2rem;
    height: 1.2rem;
  }

  .recruit .c-aboutus .img-area {
    position: absolute;
    bottom: auto;
    right: auto;
    top: -41rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 508px;
    max-width: 375px;
  }

  .recruit .c-aboutus::before {
    background: url(../images/recruit/recruit_aboutus_bk_sp.png) no-repeat;
    width: 100%;
    height: 100%;
    background-size: 100% !important;
  }

  .c-recruitmember {
    padding: 5rem 20px 6rem;
  }

  .c-recruitmember .detail {
    padding: 2rem 0px 4rem;
  }

  .c-recruitmember #member-list {
    grid-template-columns: 1fr 1fr;
  }

  .c-recruitmember #member-list li {
    margin-bottom: 0;
  }

  .c-recruitmember #member-list li a .title {
    padding-top: 1rem;
    font-size: 1rem;
  }

  .c-recruitmember #member-list li a .title span {
    font-size: 2rem;
  }

  .c-recruitmember #member-list li a .head {
    font-size: 1.2rem;
  }

  .c-recruitmember #viewmore-btn {
    font-size: 1.4rem;
    height: 4.9rem;
    margin-top: 4rem;
  }

  .c-recruitmember #viewmore-btn::before {
    top: 15px;
    right: 20px;
    width: 2rem;
    height: 2rem;
  }

  .recruit .c-recruitaideal {
    padding: 6rem 0px 6rem;
    border-radius: 30px;
  }

  .recruit .c-recruitaideal::before {
    background: url(../images/recruit/recruit_ideal_bk_sp.png) no-repeat;
    border-radius: 30px;
    background-size: 100% 100% !important;
  }

  .recruit .c-recruitaideal .recruit-common-head .head {
    padding-bottom: 4rem;
  }

  .recruit .c-recruitaideal .ideal-list li {
    border-radius: 10px;
    padding: 3rem 2rem 3rem;
  }

  .recruit .c-recruitaideal .ideal-list li .num {
    font-size: 1rem;
  }

  .recruit .c-recruitaideal .ideal-list li .list-content {
    display: block;
    padding: 0;
  }

  .recruit .c-recruitaideal .ideal-list li .list-content .list-title {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 1rem 0 2rem;
  }

  .recruit .c-recruitaideal .ideal-list li .list-content .list-detail span {
    font-size: 1.3rem;
  }

  .recruit .c-entry {
    padding: 8rem 20px 6rem;
  }

  .recruit .c-entry::before {
    display: none;
  }

  .recruit .c-entry .main-detail {
    padding: 2rem 0 3rem;
  }

  .recruit .c-recruitfaq {
    padding: 8rem 20px 10rem;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .recruit .c-recruitfaq::before {
    top: -4rem;
    width: 25rem;
    height: 25rem;
  }

  .recruit .c-recruitfaq .content {
    padding-top: 4rem;
  }

  .recruit .c-recruitfaq .contents-inner {
    display: block;
  }

  .recruit .c-recruitfaq .content ul .toggle-head .title-area {
    gap: 1.5rem;
    align-items: start;
  }

  .recruit .c-recruitfaq .content ul .toggle-head .q-label {
    font-size: 2.4rem;
    line-height: 1;
  }

  .recruit .c-recruitfaq .content ul .toggle-head .title {
    font-size: 1.3rem;
  }

  .recruit .c-recruitfaq .content ul .toggle-head .plus span {
    width: 3rem;
    height: 3rem;
  }

  .recruit .c-recruitfaq .content ul .toggle-head .plus span::before {
    right: 1.3rem;
  }

  .recruit .c-recruitfaq .content ul .toggle-head .plus span::after {
    right: 0.9rem;
  }

  .recruit .c-recruitfaq .content ul .toggle-content {
    font-size: 1.2rem;
  }

  .recruit .c-entry .content {
    display: block;
  }

  .recruit .c-entry .content .entry-tab {
    font-size: 1.7rem;
    background-color: #f8f8f8;
    padding: 2rem;
  }

  .recruit .c-entry .content .entry-group .entry-content {
    display: none;
    padding: 2rem;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
  }

  .recruit .c-entry .content .entry-group:first-child .entry-content {
    display: block;
  }

  .recruit .c-entry .content .entry-group.active .tabarrow:before {
    transform: translate(-50%, -50%) scale(1) rotate(90deg);
  }

  .recruit .c-entry .content .item-name {
    font-size: 1.6rem;
    padding-top: 3rem;
  }

  .recruit .c-entry .content .content-block {
    padding: 2rem 0;
  }

  .recruit .c-entry .content .content-block .head2 {
    font-size: 1.5rem;
    padding: 0 0rem 0 2rem;
    line-height: 1.3;
  }

  .recruit .c-entry .content .content-block .head2::before {
    left: 0rem;
    top: .6rem;
  }

  .recruit .c-entry .content .content-block .detail {
    padding: 1rem 0rem 0;
    font-size: 1.2rem;
  }

  .recruit .c-entry .content .content-block .head1 {
    padding-bottom: 2rem;
    font-size: 1.2rem;
  }

  .recruit .c-entry .content .entry-detail .head {
    font-size: 1.8rem;
    padding: 3rem 0 0rem;
  }

  .recruit .c-entry .content .entry-detail .detail-content {
    padding-left: 0;
  }

  .recruit .c-entry .content .entry-detail {
    padding-bottom: 1rem;
  }

  .recruit .c-entry .content .entry-btn a {
    max-width: 285px;
    height: 60px;
    font-size: 1.4rem;
  }

  .recruit .c-entry .content .entry-btn a::before {
    top: 25px;
    right: 30px;
    width: 12px;
    height: 12px;
  }

  .recruit .c-entry .content .close-btn {
    padding: 3rem 0 1rem;
    border-top: 1px solid #dddddd;
  }

  .recruit .c-entry .content .toggle-close {
    max-width: 285px;
    width: 100%;
    background-color: #f1f1f1;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "termina", sans-serif;
    position: relative;
    font-size: 1.4rem;
    height: 4.9rem;
    margin-top: 4rem;
    margin: auto;
  }

  .recruit .c-entry .content .toggle-close::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 20px;
    width: 2rem;
    height: 2rem;
    background: url(../images/recruit/toggle_close_sp.png) no-repeat;
    background-size: 100% 100%;
  }
}

/*--------------------------
RECRUIT MEMBER
----------------------------*/
body.single-member {
  background-color: #fff;
  color: #000;
}

.c-recruitmembermv {
  margin-top: 120px;
  position: relative;
}

.c-recruitmembermv::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/recruit/member_mv_bk.png) no-repeat;
  right: 0px;
  top: -50px;
  width: 257px;
  height: 280px;
  z-index: -1;
}

.breadcrumb.recruit {
  justify-content: end;
}

.breadcrumb.recruit span {
  color: #000;
}

.breadcrumb.recruit span[property="itemListElement"]:first-of-type [property="name"]::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 7px;
  display: block;
  width: 5px;
  height: 5px;
  background: #4330f0;
  border-radius: 50%;
}

.breadcrumb.recruit *:not(:first-child)::before {
  background-color: #dddddd;
  width: 30px;
  left: -39px;
}

.breadcrumb.recruit *:not(:first-child) {
  margin-left: 50px;
}

.c-recruitmembermv .mv-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.c-recruitmembermv .mv-content .text-area {
  padding-top: 2rem;
}

.c-recruitmembermv .mv-content .top-area {
  display: flex;
  gap: 10px;
  align-items: center;
}

.c-recruitmembermv .mv-content .top-area .en-head {
  font-size: 1.4rem;
  font-family: "termina", sans-serif;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.c-recruitmembermv .mv-content .top-area .head {
  font-size: 1.8rem;
  font-weight: bold;
}

.c-recruitmembermv .mv-content .text-area h1 {
  font-size: 3.6rem;
  line-height: 1.4;
  padding: 2rem 5rem 3rem 0;
  border-bottom: 1px solid #333333;
}

.c-recruitmembermv .mv-content .text-area .name-join {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-top: 3rem;
}

.c-recruitmembermv .mv-content .text-area .name-join .name {
  font-weight: 400;
}

.c-recruitmembermv .mv-content .text-area .name-join .name span {
  font-size: 3.2rem;
  font-family: "termina", sans-serif;
  padding-right: 7px;
}

.c-recruitmembermv .mv-content .text-area .name-join .join {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0rem 1.5rem;
  border-radius: 25px;
  border: 1px solid #000;
  font-size: 1.4rem;
  line-height: 2;
  font-family: "termina", sans-serif;
}

.c-recruitmembermv .mv-content .text-area .position {
  font-size: 1.3rem;
  padding-top: 1rem;
  font-weight: bold;
}

.c-recruitmembermv .mv-content .img-area {
  position: relative;
}

.c-recruitmembermv .mv-content .img-area::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/recruit/member_mv_img_bk.png) no-repeat;
  left: -95px;
  bottom: -40px;
  width: 179px;
  height: 195px;
  z-index: 1;
}

.c-recruitmembermv .mv-content .img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-membercontent {
  padding: 10rem 20px 0rem;
}

.c-membercontent .contents-inner {
  position: relative;
}

.c-membercontent .inner {
  max-width: 960px;
  margin: 0;
}

.anchor-nav-placeholder {
  height: 0;
}

.c-membercontent .page-anchor-nav {
  position: absolute;
  top: 0;
  right: 0;
}

.c-membercontent .page-anchor-nav.recruit.fixed {
  position: fixed;
  top: 120px;
  right: calc((100vw - 1240px) / 2 - 7px);
}

.c-membercontent .page-anchor-nav.recruit.fixed.bottom {
  position: absolute;
  top: auto;
  bottom: 70px;
  right: 0;
}

.c-membercontent .editor-styles-wrapper {
  color: #000;
}

.member-single .c-recruitmember {
  padding: 4rem 20px 12rem;
}

.c-recruitmemberentry {
  padding: 0rem 20px 6rem;
}

.c-recruitmemberentry .contents-inner-outer {
  position: relative;
  max-width: 1500px;
  margin: auto;
  background: url(../images/recruit/recruitmemberentry_bk.png) no-repeat;
  background-size: 100% 100% !important;
}

.c-recruitmemberentry .contents-inner .content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 500px;
}

.c-recruitmemberentry .contents-inner .content .top-text {
  font-size: 3.2rem;
}

.c-recruitmemberentry .contents-inner .content .entry-btn {
  max-width: 470px;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  color: #fefefe;
  border-radius: 60px;
  position: relative;
  margin: 3rem auto;
  font-weight: 400;
}

.c-recruitmemberentry .contents-inner .content .entry-btn:hover {
  opacity: .5;
  cursor: pointer;
}

.c-recruitmemberentry .contents-inner .content .entry-btn::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/recruit/recruit_entry_arrow.png) no-repeat;
  top: 52px;
  right: 50px;
  width: 18px;
  height: 18px;
}

.c-recruitmemberentry .contents-inner .content .bottom-text {
  font-size: 2rem;
}

.c-recruitmemberentry .contents-inner .content .bottom-text a {
  text-decoration: underline;
  color: #1f4bfc;
}

@media screen and (max-width: 768px) {
  .c-recruitmemberentry {
    padding: 0;
  }

  .c-recruitmemberentry .contents-inner-outer {
    background: url(../images/recruit/recruitmemberentry_bk_sp.png) no-repeat;
    background-size: 100% 100% !important;
  }

  .c-recruitmemberentry .contents-inner .content {
    top: -27px;
    position: relative;
  }

  .c-recruitmemberentry .contents-inner .content .top-text {
    font-size: 2.1rem;
    font-weight: 500;
  }

  .c-recruitmemberentry .contents-inner .content .entry-btn {
    margin: 2rem auto;
    max-width: 235px;
    width: 100%;
    height: 60px;
    font-size: 1.4rem;
  }

  .c-recruitmemberentry .contents-inner .content .entry-btn::before {
    top: 25px;
    right: 20px;
    width: 12px;
    height: 12px;
  }

  .c-recruitmemberentry .contents-inner .content .bottom-text {
    font-size: 1.2rem;
    text-align: center;
  }

  .member-single .c-recruitmember {
    padding: 4rem 20px 2rem;
  }

  .c-recruitmembermv .mv-content {
    display: block;
  }

  .c-recruitmembermv {
    margin-top: 80px;
  }

  .c-recruitmembermv::before {
    display: none;
  }

  .c-recruitmembermv .mv-content .top-area .en-head {
    font-size: 1.2rem;
  }

  .c-recruitmembermv .mv-content .top-area .head {
    font-size: 1.2rem;
  }

  .c-recruitmembermv .mv-content .text-area h1 {
    font-size: 2.2rem;
    padding: 2rem 0rem 2rem;
  }

  .c-recruitmembermv .mv-content .text-area .name-join {
    padding-top: 2rem;
  }

  .c-recruitmembermv .mv-content .text-area .name-join .name {
    font-size: 1.5rem;
  }

  .c-recruitmembermv .mv-content .text-area .name-join .name span {
    font-size: 3rem;
  }

  .c-recruitmembermv .mv-content .text-area .position {
    font-size: 1.4rem;
    padding-bottom: 2rem;
  }

  .c-recruitmembermv .mv-content .img-area::before {
    left: -20px;
    bottom: -52px;
    width: 100px;
    height: 110px;
  }

  .c-recruitmembermv .mv-content .img-area::after {
    content: "";
    background-size: 100% !important;
    position: absolute;
    background: url(../images/recruit/member_mv_bk.png) no-repeat;
    right: -20px;
    top: -100px;
    width: 98px;
    height: 130px;
    z-index: -1;
  }
}

/*--------------------------
RECRUIT COMPANY
----------------------------*/
body.page-template-page-recruit-company {
  background-color: #fff;
  color: #000;
}

.c-recruitcomanymv {
  width: 100%;
  position: relative;
}

.c-recruitcomanymv::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/recruit/recruit_company_mv_bk.png) no-repeat;
  left: 0;
  top: 0px;
  width: 100%;
  height: -webkit-fill-available;
  background-position: center;
  z-index: -1;
}

.c-recruitcomanymv .contents-inner {
  padding-top: 120px;
  padding-bottom: 15rem;
}

.c-recruitcomanymv .en-title {
  font-size: 6.2rem;
  font-family: "termina", sans-serif;
  background: linear-gradient(to right, #4330f0, #353ff6, #1f4bfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 300;
  line-height: 1.2;
}

.recruitcompany .inner {
  max-width: 960px;
  margin: 0;
}

.c-recruitcomanymv h1 {
  font-size: 2.2rem;
  font-weight: 500;
  padding-bottom: 4rem;
}

.c-recruitcomanymv .img-area img {
  width: 100%;
}

.c-recruitcompanymain {
  max-width: 1080px;
  margin: auto;
}

.c-recruitcompanymain .contents-inner {
  position: relative;
}

.c-recruitcompanymain .contents-inner::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/recruit/recruit_company_main_bk1.png) no-repeat;
  left: -100px;
  bottom: -90px;
  width: 84px;
  height: 130px;
  z-index: -1;
}

.c-recruitcompanymain .contents-inner::after {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/recruit/recruit_company_main_bk2.png) no-repeat;
  right: -20rem;
  top: -12.5rem;
  width: 40.8rem;
  height: 48.1rem;
  z-index: -1;
}

.c-recruitcompanymain h2 {
  font-size: 3.8rem;
  font-weight: 400;
}

.c-recruitcompanymain h2 span {
  font-size: 4.2rem;
  font-family: "termina", sans-serif;
  font-weight: 300;
  padding-right: 10px;
}

.c-recruitcompanymain .detail {
  line-height: 2;
  font-weight: 300;
  font-size: 1.8rem;
  padding-top: 4rem;
}

.recruitcompany .c-careerpath .contents-inner {
  position: relative;
}

.recruitcompany .page-anchor-nav {
  position: absolute;
  top: 0;
  right: 0;
}

.recruitcompany .page-anchor-nav.recruitcompany.fixed {
  position: fixed;
  top: 120px;
  right: calc((100vw - 1240px) / 2 - 7px);
}

.recruitcompany .page-anchor-nav.recruitcompany.fixed.bottom {
  position: absolute;
  /* top: auto;
  bottom: 70px;
  right: 0; */
  top: 0;
  right: 0;
}

.c-careerpath {
  padding: 14rem 20px 10rem;
}

.c-careerpath .detail {
  line-height: 2;
  font-weight: 300;
  padding: 2rem 0 5rem;
}

.c-system {
  padding: 12rem 0px 12rem;
  background-color: #171b22;
  border-radius: 60px;
  position: relative;
}

.c-system::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1600px;
  width: 100%;
  height: 1472px;
  height: 100%;
  background: url(../images/recruit/recruit_ideal_bk.png) no-repeat;
  background-size: 100% 100%;
  border-radius: 60px;
}

.c-system .contents-inner {
  z-index: 1;
  position: relative;
}

.c-system .recruit-common-head .head {
  color: #fff;
  padding-bottom: 6rem;
}

.c-system .system-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.c-system .system-list li {
  background-color: #fff;
  border-radius: 10px;
  padding: 3rem 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.c-system .system-list li .title {
  font-size: 2.2rem;
  font-weight: 500;
  padding: 2rem 0;
  text-align: center;
}

.c-system .system-list li .detail {
  font-weight: 300;
}

.c-data {
  padding: 12rem 20px 0rem;
  position: relative;
}

.c-data .detail {
  padding: 4rem 0 1rem;
  font-weight: 300;
}

.c-data-content {
  padding: 5rem 0px;
  background-color: #f8f8f8;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
  position: relative;
  margin-left: 20px;
  margin-bottom: 8rem;
}

.c-data-content::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1600px;
  height: 1322px;
  height: 100%;
  background: url(../images/recruit/recruit_aboutus_bk.png) no-repeat;
  background-size: 100% 100%;
  border-radius: 60px;
}

.c-data-content .data-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.c-data-content .data-list li {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem 3rem;
  position: relative;
}

.c-data-content .data-list li .title {
  font-size: 2.2rem;
  font-weight: 500;
  padding-bottom: 2rem;
}

.c-data-content .data-list li .content1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.c-data-content .data-list li .content2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
}

.c-data-content .data-list li .content3 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.c-data-content .data-list li .content2-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7rem;
}

.c-data-content .data-list li .data1 {
  font-weight: 300;
}

.c-data-content .data-list li .data {
  font-size: 2.2rem;
  font-weight: 400;
  white-space: nowrap;
}

.c-data-content .data-list li .data2 {
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.c-data-content .data-list li .data2 .label {
  font-size: 2.2rem;
}

.c-data-content .data-list li .data span {
  font-size: 7.2rem;
  font-family: "termina", sans-serif;
  line-height: 1;
}

.c-data-content .data-list li .data2 span {
  font-size: 5.2rem;
  line-height: 1;
}

.c-data-content .data-list li .data-img1 {
  padding-top: 2rem;
}

.c-workspace {
  padding: 4rem 20px 8rem;
  position: relative;
}

.p-booklet__swiper-slide.swiper-slide {
  width: 100%;
}

.p-booklet__swiper-slide.swiper-slide img {
  width: 100%;
  border-radius: 3rem;
}

.p-booklet__swiper {
  margin-top: 4rem;
}

.p-booklet-preview__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 4rem;
}

.p-booklet-preview__prev.swiper-button-prev {
  position: static;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  width: 4rem;
  height: 4rem;
  margin-left: 1rem
}

@media screen and (min-width: 750px) {
  .p-booklet-preview__prev.swiper-button-prev {
    width: 5rem;
    height: 5rem;
    margin-left: 2rem;
  }
}

.p-booklet-preview__prev.swiper-button-prev img {
  rotate: 180deg;
}

.p-booklet-preview__next.swiper-button-next {
  position: static;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0;
  width: 4rem;
  height: 4rem;
  margin-left: 1.5rem
}

@media screen and (min-width: 750px) {
  .p-booklet-preview__next.swiper-button-next {
    width: 5rem;
    height: 5rem;
    margin-left: 3rem;
  }
}

.p-booklet-preview__start {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
}

@media screen and (min-width: 750px) {
  .p-booklet-preview__start {
    width: 3rem;
    height: 3rem;
  }
}

.p-booklet-preview__start img {
  rotate: 180deg;
}

.p-booklet-preview__end {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  margin-left: 1rem
}

@media screen and (min-width: 750px) {
  .p-booklet-preview__end {
    width: 3rem;
    height: 3rem;
    margin-left: 2rem;
  }
}

.p-booklet-preview__progressBar {
  width: 13.25rem;
  height: 1px;
  background-color: #2f43f8;
  position: relative;
  margin-left: 1.5rem;
}

@media screen and (min-width: 750px) {
  .p-booklet-preview__progressBar {
    width: 20rem;
    height: 1px;
    margin-left: 3rem;
  }
}

.p-booklet-preview__progressBar span {
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #2f43f8;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}

@media screen and (min-width: 750px) {
  .p-booklet-preview__progressBar span {
    width: 2rem;
    height: 2rem;
  }
}

.p-booklet-preview__pagination {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  margin-left: 2.4rem;
}

@media screen and (min-width: 750px) {
  .p-booklet-preview__pagination {
    letter-spacing: 0.1em;
    font-size: 1rem;
    margin-left: 2.5rem;
  }
}

.c-workspace .btn-area {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding-top: 5rem;
}

.c-workspace .btn-area a {
  max-width: 280px;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: #080c12;
  color: #fff;
  border-radius: 40px;
  position: relative;
  font-weight: 400;
}

.c-workspace .btn-area a::before {
  content: "";
  background-size: 100% !important;
  position: absolute;
  background: url(../images/recruit/recruit_entry_arrow.png) no-repeat;
  top: 28px;
  right: 25px;
  width: 15px;
  height: 15px;
}

@media screen and (max-width: 1300px) {

  .c-data-content .data-list li:nth-of-type(1) img,
  .c-data-content .data-list li:nth-of-type(2) img {
    width: 70%;
    margin: auto;
    display: block;
  }
}

@media screen and (max-width: 1000px) {

  .c-data-content .data-list li:nth-of-type(3) img,
  .c-data-content .data-list li:nth-of-type(4) img,
  .c-data-content .data-list li:nth-of-type(5) img,
  .c-data-content .data-list li:nth-of-type(6) img {
    width: 100px;
    margin: auto;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .c-recruitcomanymv .contents-inner {
    max-width: unset;
    padding-top: 100px;
    padding-bottom: 8rem;
  }

  .c-recruitcomanymv .en-title {
    font-size: 4.5rem;
  }

  .c-recruitcomanymv h1 {
    font-size: 1.2rem;
    padding-bottom: 3rem;
  }

  .c-recruitcomanymv .img-area {
    width: 100vw;
    left: -20px;
    position: relative;
  }

  .c-recruitcomanymv::before {
    background: url(../images/recruit/recruit_company_mv_bk_sp.png) no-repeat;
    width: 100%;
    top: 68px;
    height: -webkit-fill-available;
  }

  .c-recruitcompanymain .contents-inner::before {
    display: none;
  }

  .c-recruitcompanymain .contents-inner::after {
    background: url(../images/recruit/recruit_company_main_bk2_sp.png) no-repeat;
    right: -2rem;
    top: auto;
    bottom: -25rem;
    width: 96vw;
    height: 34.8rem;
  }

  .c-recruitcompanymain h2 {
    font-size: 2.9rem;
    font-weight: 300;
  }

  .c-recruitcompanymain h2 span {
    font-size: 3.2rem;
  }

  .c-recruitcompanymain .detail {
    font-size: 1.4rem;
    padding-top: 2rem;
  }

  .c-careerpath {
    padding: 10rem 20px 6rem;
  }

  .c-careerpath .detail {
    padding: 1rem 0 2rem;
    font-size: 1.3rem;
  }

  .c-system {
    padding: 6rem 0px 6rem;
    border-radius: 30px;
  }

  .c-system::before {
    background: url(../images/recruit/recruit_ideal_bk_sp.png) no-repeat;
    border-radius: 30px;
    background-size: 100% 100% !important;
  }

  .c-system .recruit-common-head .head {
    padding-bottom: 3rem;
  }

  .c-system .system-list {
    display: block;
  }

  .c-system .system-list li {
    margin-bottom: 20px;
    padding: 2rem 2rem;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: row;
  }

  .c-system .system-list li .img-area {
    width: 23%;
    padding-top: 1rem;
  }

  .c-system .system-list li .title-detail {
    width: 65%;
  }

  .c-system .system-list li .title {
    font-size: 1.6rem;
    padding: 0 0 1rem;
    text-align: left;
  }

  .c-system .system-list li .detail {
    font-size: 1.3rem;
  }

  .c-data {
    padding: 6rem 20px 0rem;
  }

  .c-data .detail {
    padding: 2rem 0 1rem;
    font-size: 1.2rem;
  }

  .c-data-content {
    padding: 3rem 2rem;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    margin-left: 0px;
    margin-bottom: 4rem;
  }

  .c-data-content::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: 100% !important;
    background: url(../images/recruit/recruit_aboutus_bk_sp.png) no-repeat;
    border-radius: 30px;
  }

  .c-data-content .data-list {
    display: block;
  }

  .c-data-content .data-list li {
    margin-bottom: 20px;
  }

  .c-data-content .data-list li .title {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }

  .c-data-content .data-list li .data {
    font-size: 1.6rem;
  }

  .c-data-content .data-list li .data2 {
    font-size: 1.6rem;
  }

  .c-data-content .data-list li .data2 .label {
    font-size: 1.6rem;
  }

  .c-data-content .data-list li .data span {
    font-size: 4.5rem;
  }

  .c-data-content .data-list li .data2 span {
    font-size: 4.5rem;
  }

  .c-data-content .data-list li:nth-of-type(1) img, .c-data-content .data-list li:nth-of-type(2) img {
    width: 100%;
  }

  .c-data-content .data-list li:nth-of-type(5) img,
  .c-data-content .data-list li:nth-of-type(6) img {
    max-width: 70px;
  }

  .c-workspace {
    padding: 2rem 20px 0rem;
  }

  .c-workspace .btn-area {
    display: block;
  }

  .c-workspace .btn-area a {
    max-width: 220px;
    width: 100%;
    height: 65px;
    font-size: 1.4rem;
    margin: 0 auto 20px;
  }

  .c-workspace .btn-area a::before {
    top: 27px;
    right: 25px;
    width: 13px;
    height: 13px;
  }
}

/*--------------------------
TEMPLETE
----------------------------*/
.templete .c-templete {
  /* padding: 12rem 20px 12rem; */
  color: #fff;
}

/* width: 800px !important;
max-width: 800px !important; */

@media screen and (max-width: 768px) {}