@charset "UTF-8";
/* ------------------------------------

colors setting

------------------------------------ */
/* ------------------------------------

colors setting の変数ではなく
下記の左側の変数をcssで指定する

×：$black
◯：$dark-text

------------------------------------ */
/*  text-color
*----------------------------------- */
/*  background-color
*----------------------------------- */
/*  border-color
*----------------------------------- */
/*  system-color
*----------------------------------- */
/*  cv
*----------------------------------- */
/*  footer
*----------------------------------- */
/*  menu
*----------------------------------- */
/*  new icon
*----------------------------------- */
/*  horizontal
*----------------------------------- */
/*  slick-color
*----------------------------------- */
.en {
  font-family: "din-condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.en02 {
  font-family: "din-condensed", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.yakuhan {
  font-family: "YakuHanJP", "ryo-gothic-plusn", sans-serif;
}

/* mobile */
@media print, screen and (max-width: 760px) {
  .pc {
    display: none !important;
  }

  .sp-mini {
    display: none !important;
  }
}
@media screen and (max-width: 320px) {
  .sp-mini {
    display: inherit !important;
  }
}
@media print, screen and (min-width: 761px) {
  .sp {
    display: none !important;
  }

  .sp-mini {
    display: none !important;
  }
}
/* ------------------------------------

Clear Fix

------------------------------------ */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* ------------------------------------

line-clamp

------------------------------------ */
.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media print, screen and (max-width: 760px) {
  .line-clamp {
    -webkit-line-clamp: 3;
  }
}

.line-clamp-three {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media print, screen and (max-width: 760px) {
  .line-clamp-three {
    -webkit-line-clamp: 3;
  }
}

/* ------------------------------------

中面 common (TOP以外)

------------------------------------ */
/*  anchor_link
*----------------------------------- */
.p-anchor_link {
  padding-top: 80px;
  margin-top: -80px;
}
@media screen and (max-width: 760px) {
  .p-anchor_link {
    padding-top: 20%;
    margin-top: -20%;
  }
}

/*  pan
*----------------------------------- */
.pan {
  padding: 20px 40px;
}
@media print, screen and (max-width: 760px) {
  .pan {
    display: none;
  }
}
.pan li {
  display: inline;
  font-size: 12px;
  list-style: none;
}
.pan li:after {
  content: "|";
  margin: 0 5px;
}
.pan li:last-child:after {
  content: none;
}

/*  list-page__main
*----------------------------------- */
.list-page__main {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 761px) {
  .list-page__main {
    max-width: calc(1200px + 8%);
    padding: 0 4%;
  }
}
@media print, screen and (max-width: 760px) {
  .list-page__main {
    width: 90%;
  }
}

.page-form {
  background: #101010;
}

@media print, screen and (max-width: 760px) {
  .page-form .list-page__main .brick-form__row {
    padding-left: 0;
    padding-right: 0;
  }
}

@media print, screen and (max-width: 760px) {
  .page-form .list-page__main .l-form-container__flow {
    margin-left: 0;
    margin-right: 0;
  }
}

@media print, screen and (max-width: 760px) {
  .page-number .list-page__main {
    width: auto;
    margin-bottom: 18%;
  }
}

/*  index
*----------------------------------- */
.page-index .list-page .list-page__main .l-page-index {
  width: 1200px;
  margin: 0 auto;
}
@media print, screen and (max-width: 760px) {
  .page-index .list-page .list-page__main .l-page-index {
    width: 100%;
  }
}
.page-index .list-page .list-page__main .l-page-index__container {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}
@media print, screen and (max-width: 760px) {
  .page-index .list-page .list-page__main .l-page-index__container {
    gap: 4vw;
  }
}
.page-index .list-page .list-page__main .l-page-index .p-item {
  width: 48.6%;
}
@media print, screen and (max-width: 760px) {
  .page-index .list-page .list-page__main .l-page-index .p-item {
    width: 100%;
  }
}
.page-index .list-page .list-page__main .l-page-index .p-item a {
  width: 100%;
  height: 100%;
  min-height: 250px;
  padding: 50px;
  outline: solid 2px #101010;
  outline-offset: -7px;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media print, screen and (max-width: 760px) {
  .page-index .list-page .list-page__main .l-page-index .p-item a {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 8vw;
  }
}
.page-index .list-page .list-page__main .l-page-index .p-item a:hover {
  opacity: 0.8;
  outline: solid 2px #D60347;
}
.page-index .list-page .list-page__main .l-page-index .p-item__catch {
  font-size: 50px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 8px;
  color: #909090;
}
@media print, screen and (max-width: 760px) {
  .page-index .list-page .list-page__main .l-page-index .p-item__catch {
    font-size: 10vw;
    margin-bottom: 2vw;
  }
}
.page-index .list-page .list-page__main .l-page-index .p-item__title {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media print, screen and (max-width: 760px) {
  .page-index .list-page .list-page__main .l-page-index .p-item__title {
    font-size: 4.2vw;
    margin-bottom: 5vw;
    line-height: 1;
  }
}
.page-index .list-page .list-page__main .l-page-index .p-item:nth-child(2n) {
  margin-right: 0;
}
.page-index .list-page .list-page__main .l-page-index .p-item:last-child {
  margin-right: 0;
}
.page-index .list-page .list-page__main .l-page-index .p-item .c-button {
  margin-left: 0;
}
.page-index .list-page .list-page__main .l-page-index .p-item .c-button span {
  padding-left: 0;
}

/*  l-cmn-member
*----------------------------------- */
.l-cmn-member {
  background: #ebf3fa;
  padding: 75px 0 80px;
}
@media print, screen and (max-width: 760px) {
  .l-cmn-member {
    padding: 13% 5%;
  }
}

.l-cmn-member .l-member__header {
  text-align: center;
  margin-bottom: 25px;
}
@media print, screen and (max-width: 760px) {
  .l-cmn-member .l-member__header {
    margin-bottom: 3%;
  }
}
.l-cmn-member .l-member__header__title {
  font-family: "din-condensed", sans-serif;
  font-size: 66px;
  font-weight: 500;
  line-height: 1;
  color: #0B4BAE;
}
@media print, screen and (max-width: 760px) {
  .l-cmn-member .l-member__header__title {
    font-size: 16vw;
  }
}
.l-cmn-member .l-member__header__subtitle {
  font-size: 17px;
  font-weight: 500;
}
@media print, screen and (max-width: 760px) {
  .l-cmn-member .l-member__header__subtitle {
    font-size: 4vw;
    margin-top: -2%;
  }
}
.l-cmn-member .l-member__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 1200px;
  margin: 0 auto 50px;
}
@media print, screen and (max-width: 760px) {
  .l-cmn-member .l-member__list {
    width: 100%;
    margin: 0 auto 10%;
    padding-bottom: 12%;
  }
}
.l-cmn-member .l-member__list .p-item {
  width: 380px;
  margin-right: 30px;
}
@media print, screen and (max-width: 760px) {
  .l-cmn-member .l-member__list .p-item {
    width: 100%;
    margin-right: 0;
  }
}
.l-cmn-member .l-member__list .p-item:nth-child(3n) {
  margin-right: 0;
}
.l-cmn-member .l-member__list .p-item__photo {
  width: 100%;
  height: 0;
  padding-bottom: 56.2%;
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.l-cmn-member .l-member__list .p-item__photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-cmn-member .l-member__list .p-item__inner {
  margin-top: 15px;
}
@media print, screen and (max-width: 760px) {
  .l-cmn-member .l-member__list .p-item__inner {
    margin-top: 3%;
  }
}
.l-cmn-member .l-member__list .p-item__post-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
  max-height: 60px;
}
@media print, screen and (max-width: 760px) {
  .l-cmn-member .l-member__list .p-item__post-title {
    font-size: 4.2vw;
    margin-bottom: 4%;
    max-height: 13vw;
  }
}
.l-cmn-member .l-member__list .p-item__post-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 8px;
  max-height: 40px;
}
@media print, screen and (max-width: 760px) {
  .l-cmn-member .l-member__list .p-item__post-name {
    font-size: 3.8vw;
    margin-bottom: 2%;
    max-height: 8vw;
  }
}
.l-cmn-member .l-member__list .p-item__post-company {
  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
  max-height: 50px;
}
@media print, screen and (max-width: 760px) {
  .l-cmn-member .l-member__list .p-item__post-company {
    font-size: 3vw;
    line-height: 1.4;
    max-height: 9vw;
  }
}

@keyframes l-banners-skull-bounce {
  0% {
    transform: translate3d(-50%, 0, 0) rotate(-11deg);
  }
  12% {
    transform: translate3d(-50%, 0, 0) rotate(-8deg);
  }
  28% {
    transform: translate3d(-50%, 0, 0) rotate(-4deg);
  }
  44% {
    transform: translate3d(-50%, 0, 0) rotate(-1deg);
  }
  58% {
    transform: translate3d(-50%, 0, 0) rotate(2deg);
  }
  72% {
    transform: translate3d(-50%, 0, 0) rotate(-2deg);
  }
  84% {
    transform: translate3d(-50%, 0, 0) rotate(1deg);
  }
  94% {
    transform: translate3d(-50%, 0, 0) rotate(-0.5deg);
  }
  100% {
    transform: translate3d(-50%, 0, 0) rotate(0deg);
  }
}
.skull {
  position: relative;
  width: 100%;
  height: 43.5897435897vw;
  overflow: hidden;
}
@media print, screen and (min-width: 761px) {
  .skull {
    height: 301px;
    margin-top: 36px;
  }
}
.skull::before {
  position: absolute;
  bottom: -87.6923076923vw;
  left: 50%;
  transform: translateX(-50%);
  width: 117.9487179487vw;
  height: 115.641025641vw;
  border-radius: 50%;
  background-color: #647202;
  content: "";
}
@media print, screen and (min-width: 761px) {
  .skull::before {
    width: 712px;
    height: 694px;
    bottom: -533px;
  }
}
.skull img {
  position: absolute;
  bottom: -48.4615384615vw;
  left: calc(50% - 10.7692307692vw);
  width: 90.3846153846vw;
  height: 86.5384615385vw;
  transform: translate3d(-50%, 0, 0) rotate(-11deg);
  transform-origin: 50% 80%;
  backface-visibility: hidden;
  transition: opacity 0.4s ease-out;
}
@media print, screen and (min-width: 761px) {
  .skull img {
    width: 559px;
    height: 509px;
    bottom: -279px;
    left: calc(50% - 62px);
  }
}
.skull.is-inview img {
  opacity: 1;
  animation: l-banners-skull-bounce 2s linear both;
}

.cmn-recommend {
  margin: 0 auto;
  max-width: 1200px;
  padding: 56px 60px 10px;
  background-color: #BDC2C3;
  position: relative;
}
@media (min-width: 768px) {
  .cmn-recommend {
    min-height: 566px;
  }
}
@media (max-width: 767px) {
  .cmn-recommend {
    margin: 0 5.1282051282vw;
    padding: 5.1282051282vw 0 0;
  }
}
.page-women .cmn-recommend {
  margin-bottom: 130px;
}
@media (max-width: 767px) {
  .page-women .cmn-recommend {
    margin-bottom: 20.5128205128vw;
  }
}
.page-career .cmn-recommend {
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .page-career .cmn-recommend {
    margin-bottom: 23.0769230769vw;
  }
}
@media (max-width: 767px) {
  .cmn-recommend__txt {
    overflow: hidden;
  }
}
.cmn-recommend__ttl {
  position: relative;
  white-space: nowrap;
  font-size: 4rem;
  margin: -0.5em 0 0.4em;
}
@media (min-width: 768px) {
  .cmn-recommend__ttl {
    width: 10em;
  }
}
@media (max-width: 767px) {
  .cmn-recommend__ttl {
    margin: 0 0 0.6em;
    overflow-x: clip;
    text-align: center;
    font-size: 24px;
    font-size: 6.1538461538vw;
  }
}
.cmn-recommend__ttl span {
  font-weight: bold;
  display: block;
  line-height: 1;
}
.cmn-recommend__ttl span:nth-of-type(1) {
  font-size: 12rem;
  font-weight: 300;
  font-family: "din-condensed", sans-serif;
  color: #fff;
}
@media (max-width: 767px) {
  .cmn-recommend__ttl span:nth-of-type(1) {
    margin-left: -0.2em;
    font-size: 62px;
    font-size: 15.8974358974vw;
  }
}
.cmn-recommend__ttl span:nth-of-type(2) {
  width: fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 21px;
  bottom: 0;
  margin: auto;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cmn-recommend__ttl span:nth-of-type(2) {
    left: 0;
    right: 0;
  }
}
.page-women .cmn-recommend__ttl b {
  color: #f85c7a;
}
.page-career .cmn-recommend__ttl b {
  color: #D60347;
}
.cmn-recommend__list {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .cmn-recommend__list {
    padding: 0 0 20px 36px;
  }
}
@media (max-width: 767px) {
  .cmn-recommend__list {
    padding: 0 0 0 5.1282051282vw;
  }
}
.cmn-recommend__list li {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  padding-left: 33px;
}
@media (max-width: 767px) {
  .cmn-recommend__list li {
    padding-left: 7.6923076923vw;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.cmn-recommend__list li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 22px;
  height: 21px;
  display: block;
  content: "";
}
.page-women .cmn-recommend__list li::before {
  background: url("../women/images/icon_check.svg") center/contain no-repeat;
}
.page-career .cmn-recommend__list li::before {
  background: url("../career/images/icon_check.svg") center/contain no-repeat;
}
@media (max-width: 767px) {
  .cmn-recommend__list li::before {
    top: 0.26em;
    width: 5.1282051282vw;
    height: 4.8717948718vw;
  }
}
.page-women .cmn-recommend__list li span {
  color: #f85c7a;
}
.page-career .cmn-recommend__list li span {
  color: #D60347;
}
.cmn-recommend__list li + li {
  margin-top: 0.8em;
}
@media (max-width: 767px) {
  .cmn-recommend__list li + li {
    margin-top: 0.7em;
  }
}
@media (min-width: 768px) {
  .cmn-recommend__img {
    position: absolute;
    left: 50%;
    bottom: 0;
    max-width: 538px;
  }
  .page-career .cmn-recommend__img {
    bottom: -12px;
  }
}
@media (max-width: 767px) {
  .cmn-recommend__img {
    margin: 8.9743589744vw 5.1282051282vw 0;
  }
  .page-career .cmn-recommend__img {
    margin: 1.2820512821vw 0 0 3.3333333333vw;
  }
}
.cmn-recommend__img img {
  height: auto;
}

.cmn-reason {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cmn-reason {
    margin: 0 5.1282051282vw;
  }
}
.cmn-reason__ttl {
  margin: 0 auto 80px;
  height: fit-content;
  width: fit-content;
  min-width: 424px;
  height: 79px;
  border: 3px solid #CAE10E;
  box-sizing: border-box;
  color: #CAE10E;
  font-size: 2.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1;
}
@media (max-width: 767px) {
  .cmn-reason__ttl {
    min-width: 78.4615384615vw;
    height: 17.4358974359vw;
    font-size: 20px;
    font-size: 5.1282051282vw;
    border: 0.7692307692vw solid #CAE10E;
  }
}
.page-women .cmn-reason__ttl {
  color: #f85c7a;
  border-color: #f85c7a;
}
.page-career .cmn-reason__ttl {
  color: #D60347;
  border-color: #D60347;
}
.cmn-reason__ttl::before, .cmn-reason__ttl::after {
  position: absolute;
  right: 0;
  bottom: -17px;
  left: 0;
  display: block;
  margin: auto;
  content: "";
  width: 22px;
  height: 17px;
  background-color: #CAE10E;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media (max-width: 767px) {
  .cmn-reason__ttl::before, .cmn-reason__ttl::after {
    width: 5.641025641vw;
    height: 4.358974359vw;
    bottom: -4.358974359vw;
  }
}
.page-women .cmn-reason__ttl::before {
  background-color: #f85c7a;
}
.page-career .cmn-reason__ttl::before {
  background-color: #D60347;
}
.cmn-reason__ttl::after {
  bottom: -12px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .cmn-reason__ttl::after {
    bottom: -3.0769230769vw;
  }
}

.cmn-reason-col {
  margin-bottom: 150px;
  display: flex;
  flex-flow: column;
  row-gap: 82px;
}
@media (max-width: 767px) {
  .cmn-reason-col {
    margin-bottom: 25.641025641vw;
    row-gap: 15.3846153846vw;
  }
}
.cmn-reason-col__item {
  display: flex;
  column-gap: min(5vw, 72px);
}
.page-women .cmn-reason-col__item {
  align-items: center;
}
@media (min-width: 768px) {
  .cmn-reason-col__item:nth-of-type(even) {
    flex-flow: row-reverse;
  }
}
@media (max-width: 767px) {
  .cmn-reason-col__item {
    row-gap: 3.5897435897vw;
    flex-flow: column;
  }
}
.cmn-reason-col__item.wide {
  flex-flow: column-reverse;
}
@media (min-width: 768px) {
  .cmn-reason-col__item.wide {
    row-gap: min(5vw, 60px);
  }
}
.cmn-reason-col__item.wide .cmn-reason-col__img {
  border: 1px solid #707070;
  width: 100%;
  background: #fff;
  padding: 39px 104px 47px;
}
@media (max-width: 767px) {
  .cmn-reason-col__item.wide .cmn-reason-col__img {
    font-weight: 400;
    padding: 3vw 3vw 5vw;
  }
}
.cmn-reason-col__item.wide .cmn-reason-col__img p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 3vw;
}
@media (max-width: 767px) {
  .cmn-reason-col__item.wide .cmn-reason-col__img p {
    font-size: 15px;
    font-size: 3.8461538462vw;
    line-height: 1.7333333333;
  }
}
@media (max-width: 767px) {
  .cmn-reason-col__item.wide .cmn-reason-col__img__inner {
    overflow-y: hidden;
  }
  .cmn-reason-col__item.wide .cmn-reason-col__img__inner img {
    width: 764px;
  }
}
.cmn-reason-col__item.wide .cmn-reason-col__img__text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cmn-reason-col__item.wide .cmn-reason-col__img__text {
    text-align: left;
    font-size: 15px;
    font-size: 3.8461538462vw;
    line-height: 1.7333333333;
  }
}
@media (min-width: 768px) {
  .cmn-reason-col__img {
    width: 50%;
  }
}
.cmn-reason-col__img img {
  height: auto;
}
@media (min-width: 768px) {
  .cmn-reason-col__txt {
    flex: 1;
  }
}
.cmn-reason-col__txt p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
}
@media (max-width: 767px) {
  .cmn-reason-col__txt p {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.cmn-reason-col__ttl {
  margin-bottom: 0.8em;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  column-gap: 9px;
  color: #CAE10E;
}
@media (max-width: 767px) {
  .cmn-reason-col__ttl {
    margin-bottom: 0.6em;
    column-gap: 2.3076923077vw;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.cmn-reason-col__ttl span {
  font-size: 4.5rem;
  font-family: "din-condensed", sans-serif;
  font-weight: 300;
}
@media (max-width: 767px) {
  .cmn-reason-col__ttl span {
    font-size: 45px;
    font-size: 11.5384615385vw;
  }
}
.page-women .cmn-reason-col__ttl {
  color: #f85c7a;
}
.page-career .cmn-reason-col__ttl {
  color: #D60347;
}
.cmn-reason-col__catch {
  margin-bottom: 0.3em;
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
}
@media (max-width: 767px) {
  .cmn-reason-col__catch {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.cmn-reason-col__subttl {
  margin-bottom: 1em;
  font-size: 3.6rem;
  line-height: 1.5277777778;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cmn-reason-col__subttl {
    margin-bottom: 0.6em;
    font-size: 28px;
    font-size: 7.1794871795vw;
  }
}
.cmn-reason-col__subttl span {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(202, 225, 14, 0.11) 0%);
  padding: 0 0.2em 0.1em 0;
}
.page-women .cmn-reason-col__subttl span {
  background: linear-gradient(transparent 60%, rgba(248, 92, 122, 0.11) 0%);
}
.page-career .cmn-reason-col__subttl span {
  background: linear-gradient(transparent 60%, rgba(214, 3, 71, 0.08) 0%);
}

@media (max-width: 767px) {
  .cmn-voice {
    margin: 0 5.1282051282vw;
  }
}
.cmn-voice__ttl {
  margin-bottom: 2.5em;
  text-align: center;
  line-height: 1;
  font-size: 2.1rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cmn-voice__ttl {
    margin-bottom: 1.8em;
    font-size: 21px;
    font-size: 5.3846153846vw;
  }
}
.cmn-voice__ttl span {
  margin-bottom: 0.18em;
  display: block;
  font-size: 8.9rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  font-family: "din-condensed", sans-serif;
}
@media (max-width: 767px) {
  .cmn-voice__ttl span {
    margin-bottom: 0.3em;
    font-size: 53px;
    font-size: 13.5897435897vw;
  }
}
.page-women .cmn-voice__ttl span {
  color: #f85c7a;
}
.page-career .cmn-voice__ttl span {
  color: #D60347;
}

.cmn-voice-list {
  margin: 0 auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.78vw, 40px);
}
@media (max-width: 767px) {
  .cmn-voice-list {
    gap: 15.3846153846vw;
    grid-template-columns: 1fr;
  }
}
.cmn-voice-list__img {
  margin-bottom: 24px;
}
.cmn-voice-list__img img {
  height: auto;
}
.cmn-voice-list__data {
  margin-bottom: 24px;
  text-align: center;
}
.cmn-voice-list__data span {
  margin-bottom: 0.3em;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 767px) {
  .cmn-voice-list__data span {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.cmn-voice-list__data p {
  font-size: 1.9rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .cmn-voice-list__data p {
    font-size: 19px;
    font-size: 4.8717948718vw;
  }
}
.cmn-voice-list__txt {
  position: relative;
}
@media (max-width: 767px) {
  .cmn-voice-list__txt {
    padding-bottom: 12.8205128205vw;
  }
  .cmn-voice-list__txt::before, .cmn-voice-list__txt::after {
    position: absolute;
    display: block;
    text-align: center;
    font-size: 16px;
    font-size: 4.1025641026vw;
    font-weight: bold;
  }
  .cmn-voice-list__txt::before {
    content: "";
    bottom: 2.3076923077vw;
    left: calc(50% - 3.5em);
    width: 1.7948717949vw;
    height: 1.7948717949vw;
    border-top: 0.5128205128vw solid;
    border-right: 0.5128205128vw solid;
    border-color: #101010;
    transform-origin: top;
    transform: rotate(45deg);
    border-radius: 0.2564102564vw;
  }
  .cmn-voice-list__txt::after {
    content: "続きを読む";
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .cmn-voice-list__txt.active::before {
    left: calc(50% - 2.5em);
  }
  .cmn-voice-list__txt.active::after {
    content: "閉じる";
  }
}
.cmn-voice-list__txt p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
}
@media (max-width: 767px) {
  .cmn-voice-list__txt p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    max-height: 10em;
    overflow: hidden;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.cmn-voice-list__txt.active p {
  -webkit-line-clamp: inherit;
  overflow: visible;
  max-height: fit-content;
}

.page-message .list-page {
  background-color: #101010;
}
.page-message .list-page__header__subtitle {
  color: #CAE10E;
}

.message__container {
  padding: 0 5.1282051282vw;
}
@media (min-width: 768px) {
  .message__container {
    padding: 0 20px;
  }
}

.message__ttl {
  font-size: 28px;
  font-size: 7.1794871795vw;
  font-weight: 700;
  line-height: 1.39;
}
@media (min-width: 768px) {
  .message__ttl {
    font-size: 36px;
  }
}

.message__txt {
  font-size: 15px;
  font-size: 3.8461538462vw;
  font-weight: 500;
  line-height: 2.26;
  text-align: left;
}
@media (min-width: 768px) {
  .message__txt {
    font-size: 15px;
  }
}

.message__img img {
  width: 100%;
  height: auto;
}

.message-mv {
  max-width: 1200px;
  margin: 0 auto 4.8717948718vw;
  position: relative;
  color: #fff;
}
@media (min-width: 768px) {
  .message-mv {
    padding-top: 37px;
    margin: 0 auto 27px;
  }
}
.message-mv__ttl {
  color: #CAE10E;
  font-family: "a-otf-ryumin-pr6n", serif;
  letter-spacing: -0.05em;
  text-align: center;
  font-weight: 500;
  font-size: 35px;
  font-size: 8.9743589744vw;
  line-height: 1.22;
  margin-bottom: 3.3333333333vw;
}
@media (min-width: 768px) {
  .message-mv__ttl {
    font-size: 67px;
    margin-bottom: 25px;
  }
}
.message-mv__txt {
  text-align: center;
  font-size: 15px;
  font-size: 3.8461538462vw;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .message-mv__txt {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 13.5px;
    justify-content: center;
  }
  .message-mv__txt strong {
    display: flex;
    align-items: center;
    gap: 13.5px;
  }
}
.message-mv__name {
  display: block;
  font-size: 24px;
  font-size: 6.1538461538vw;
  margin-bottom: 0.7692307692vw;
}
@media (min-width: 768px) {
  .message-mv__name {
    font-size: 24px;
    margin-bottom: 0;
  }
}
.message-mv__name-en {
  display: block;
  font-size: 14px;
  font-size: 3.5897435897vw;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: 400;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .message-mv__name-en {
    font-size: 14px;
  }
}

.message-section1 {
  position: relative;
  color: #fff;
  padding-bottom: 17.4358974359vw;
}
@media (min-width: 768px) {
  .message-section1 {
    padding-bottom: 0;
    background: url(../message/images/img_01_pc.png) no-repeat center center/cover;
    height: 676px;
  }
}
@media (min-width: 768px) {
  .message-section1__inner {
    display: flex;
  }
}
@media (min-width: 768px) {
  .message-section1 .message__container {
    max-width: 1176px;
    height: 100%;
    margin: 0 auto;
    position: relative;
    box-sizing: content-box;
  }
}
@media (min-width: 768px) {
  .message-section1 .message__img {
    display: none;
  }
}
.message-section1 .message__ph {
  display: none;
}
@media (min-width: 768px) {
  .message-section1 .message__ph {
    display: block;
    position: absolute;
    bottom: 0;
    left: -12px;
    width: 886.5px;
  }
}
.message-section1 .message__ttl {
  margin-bottom: 1.0256410256vw;
  max-width: 612px;
}
@media (min-width: 768px) {
  .message-section1 .message__ttl {
    margin-bottom: 23px;
  }
}
.message-section1 .message__txt {
  max-width: 600px;
}
@media (min-width: 768px) {
  .message-section1 .message__txt {
    font-size: 16px;
    line-height: 2.125;
  }
}
@media (min-width: 768px) {
  .message-section1__body {
    padding-top: 94px;
    padding-bottom: 50px;
    margin-left: 50%;
    position: relative;
    z-index: 10;
  }
}

.message-section2 {
  padding-top: 10.7692307692vw;
  color: #fff;
  padding-bottom: 18.2051282051vw;
  background-color: #647202;
}
@media (min-width: 768px) {
  .message-section2 {
    padding-top: 79px;
    padding-bottom: 0;
  }
}
.message-section2 .message__img {
  margin-bottom: 4.1025641026vw;
}
@media (min-width: 768px) {
  .message-section2 .message__img {
    position: absolute;
    bottom: 0;
    right: -73px;
    width: 711px;
    margin-bottom: 0;
  }
}
.message-section2 .message__ttl {
  margin-bottom: 1.0256410256vw;
}
@media (min-width: 768px) {
  .message-section2 .message__ttl {
    margin-bottom: 19px;
  }
}
@media (min-width: 768px) {
  .message-section2 .message__container {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .message-section2__inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 142px;
    box-sizing: content-box;
  }
}
@media (min-width: 768px) {
  .message-section2__body {
    position: relative;
    z-index: 10;
    max-width: 700px;
  }
}

.message-section3 {
  color: #fff;
  padding-top: 10vw;
  padding-bottom: 30vw;
}
@media (min-width: 768px) {
  .message-section3 {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.message-section3 .message__img {
  margin-bottom: 2.5641025641vw;
}
@media (min-width: 768px) {
  .message-section3 .message__img {
    display: flex;
    align-items: flex-end;
    position: relative;
    left: -82px;
    margin-bottom: 0;
    margin-left: -38px;
  }
}
.message-section3 .message__ttl {
  margin-bottom: 1.0256410256vw;
}
@media (min-width: 768px) {
  .message-section3 .message__ttl {
    margin-bottom: 19px;
  }
}
@media (min-width: 768px) {
  .message-section3 .message__container {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .message-section3__col {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .message-section3__body {
    padding-top: 86px;
    max-width: 600px;
    padding-right: 20px;
    box-sizing: content-box;
    padding-bottom: 20px;
  }
}

.message-challenge {
  padding-top: 13.3333333333vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .message-challenge {
    padding-top: 39px;
  }
}
.message-challenge .message__container {
  padding: 0 3.8461538462vw;
  margin-bottom: 16.4102564103vw;
}
@media (min-width: 768px) {
  .message-challenge .message__container {
    max-width: 1200px;
    padding: 0;
    margin: 0 auto 10px;
  }
}
.message-challenge .message__ttl {
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .message-challenge .message__ttl {
    position: absolute;
    top: 119px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.message-challenge .message__img {
  margin-bottom: 8.9743589744vw;
  padding: 0 1.2820512821vw;
}
@media (min-width: 768px) {
  .message-challenge .message__img {
    position: relative;
    z-index: 10;
    padding: 0;
    margin-top: -126px;
    margin-bottom: 38px;
  }
}
.message-challenge__head {
  margin-bottom: 1.5384615385vw;
}
@media (min-width: 768px) {
  .message-challenge__head {
    position: relative;
    margin-bottom: 0;
  }
}
.message-challenge__en {
  font-family: "din-condensed", sans-serif;
  font-weight: 600;
  color: #F1F8B1;
  line-height: 1;
  font-size: 21.589744vw;
  text-align: center;
}
@media (min-width: 768px) {
  .message-challenge__en {
    font-size: 288px;
    text-align: center;
  }
}
.message-challenge .message__txt {
  text-align: center;
  line-height: 2.13;
}
@media (min-width: 768px) {
  .message-challenge .message__txt {
    line-height: 2.26;
  }
}
.message-challenge__lead {
  font-size: 21px;
  font-size: 5.3846153846vw;
  line-height: 1.47;
  font-weight: 700;
  text-align: center;
  margin-top: 5.8974358974vw;
}
@media (min-width: 768px) {
  .message-challenge__lead {
    font-size: 26px;
    margin-top: 37px;
    margin-bottom: 5px;
  }
}
.message-challenge__txt {
  font-size: 23px;
  font-size: 5.8974358974vw;
  font-weight: 700;
  text-align: center;
  color: #CAE10E;
}
@media (min-width: 768px) {
  .message-challenge__txt {
    font-size: 36px;
  }
}

.message-staff {
  margin-bottom: 150px;
  background: url("../message/images/staff.jpg") center bottom no-repeat;
  background-size: 1719px auto;
}
@media (min-width: 768px) {
  .message-staff {
    min-height: 794px;
  }
}
@media (max-width: 767px) {
  .message-staff {
    margin-bottom: 22.8205128205vw;
    background: url("../message/images/sp/staff.jpg") center bottom/contain no-repeat;
    padding: 0 5.1282051282vw 49.7435897436vw;
  }
}
@media (min-width: 768px) {
  .message-staff__wrap {
    max-width: 640px;
    margin-left: calc(50% - 290px);
  }
}
.message-staff__ttl {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3333333333;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .message-staff__ttl {
    font-size: 26px;
    font-size: 6.6666666667vw;
    line-height: 1.5384615385;
  }
}
.message-staff p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.125;
}
@media (max-width: 767px) {
  .message-staff p {
    font-size: 16px;
    font-size: 4.1025641026vw;
    line-height: 1.75;
  }
}
.message-staff p:not(:last-child) {
  margin-bottom: 2em;
}

.message-end {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .message-end {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .message-end {
    margin-bottom: 10.2564102564vw;
    margin: 0 5.1282051282vw;
  }
}
.message-end__img {
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .message-end__img {
    margin-bottom: 10.2564102564vw;
  }
}
.message-end__img img {
  height: auto;
}
@media (min-width: 768px) {
  .message-end__img img {
    max-width: 1310px;
  }
}
@media (min-width: 768px) {
  .message-end__txt {
    max-width: 1080px;
    box-sizing: border-box;
    margin: 0 auto;
  }
}
.message-end__txt p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.0666666667;
}
@media (min-width: 768px) {
  .message-end__txt p {
    padding-right: 45%;
  }
}
@media (max-width: 767px) {
  .message-end__txt p {
    font-size: 16px;
    font-size: 4.1025641026vw;
    line-height: 1.75;
  }
}
.message-end__ttl {
  margin: -2em 0 0.8em;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5333333333;
}
@media (max-width: 767px) {
  .message-end__ttl {
    margin: 0 0 0.8em;
    font-size: 26px;
    font-size: 6.6666666667vw;
    line-height: 1.5384615385;
  }
}

.page-vision .list-page {
  background: #101010 url(../vision/images/img_01_sp.png) no-repeat center 38.2051282051vw/auto 187.1794871795vw;
}
@media (min-width: 768px) {
  .page-vision .list-page {
    background: #101010 url(../vision/images/img_01_pc.png) no-repeat center 206px/auto 646px;
  }
}
.page-vision .list-page__header__subtitle {
  color: #CAE10E;
}
.page-vision .list-page__header__container {
  gap: 2.3076923077vw;
}
@media (min-width: 768px) {
  .page-vision .list-page__header__container {
    gap: 7px;
  }
}

.vision__container {
  padding: 0 5.1282051282vw;
}
@media (min-width: 768px) {
  .vision__container {
    padding: 0 20px;
    max-width: 1200px;
    box-sizing: content-box;
    margin: 0 auto;
  }
}

.vision__head {
  position: relative;
}

.vision__ttl-en {
  font-family: "din-condensed", sans-serif;
  font-size: 100px;
  line-height: 0.9;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  .vision__ttl-en {
    font-size: 160px;
  }
}

.vision__txt {
  font-size: 16px;
  font-size: 4.1025641026vw;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media (min-width: 768px) {
  .vision__txt {
    font-size: 17px;
  }
}

.vision__bg-txt {
  text-align: center;
}
.vision__bg-txt span {
  font-size: 25px;
  font-size: 6.4102564103vw;
  font-weight: 700;
  background: #CAE10E;
  color: #222;
  padding: 1.7948717949vw 3.3333333333vw;
  line-height: 1.9;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (min-width: 768px) {
  .vision__bg-txt span {
    font-size: 33px;
    line-height: 1.8;
    padding: 8px 13px;
  }
}

.vision__ttl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
  width: 100%;
  text-align: center;
  font-size: 21px;
  font-size: 5.3846153846vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  .vision__ttl {
    font-size: 28px;
  }
}

.vision-mv {
  padding-top: 4.358974359vw;
  padding-bottom: 35.1282051282vw;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .vision-mv {
    padding-bottom: 143px;
    padding-top: 37px;
  }
}
.vision-mv__head {
  position: relative;
}
.vision-mv__en {
  font-family: "din-condensed", sans-serif;
  font-size: 100px;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 500;
  line-height: 0.9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  .vision-mv__en {
    font-size: 160px;
  }
}
.vision-mv__ttl {
  position: absolute;
  top: 15.641025641vw;
  width: 100%;
  text-align: center;
  font-size: 21px;
  font-size: 5.3846153846vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  .vision-mv__ttl {
    font-size: 28px;
    top: 43px;
  }
}
.vision-mv__lead {
  font-size: 55px;
  font-size: 14.1025641026vw;
  line-height: 1.18;
  color: #CAE10E;
  font-family: "a-otf-ryumin-pr6n", serif;
  white-space: nowrap;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .vision-mv__lead {
    font-size: 85px;
  }
}
.vision-mv__lead-en {
  color: #647202;
  font-family: "din-condensed", sans-serif;
  font-size: 21px;
  font-size: 5.3846153846vw;
  margin-bottom: 4.6153846154vw;
}
@media (min-width: 768px) {
  .vision-mv__lead-en {
    font-size: 31px;
    margin-bottom: 30px;
  }
}
.vision-mv__txt {
  font-size: 700;
  font-size: 20px;
  font-size: 5.1282051282vw;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .vision-mv__txt {
    font-size: 27px;
  }
}

.vision-guidelines {
  padding-top: 18.7179487179vw;
  padding-bottom: 20.5128205128vw;
  background-color: #647202;
  color: #fff;
}
@media (min-width: 768px) {
  .vision-guidelines {
    padding-top: 87px;
    padding-bottom: 76px;
  }
}
.vision-guidelines .vision__ttl-en {
  color: rgba(255, 255, 255, 0.15);
}
.vision-guidelines .vision__head {
  margin-bottom: 3.0769230769vw;
}
@media (min-width: 768px) {
  .vision-guidelines .vision__head {
    margin-bottom: 0;
  }
}
.vision-guidelines__list {
  margin-top: 13.5897435897vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .vision-guidelines__list {
    max-width: 1100px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: stretch;
    gap: 20px 0;
  }
}
@media (min-width: 768px) {
  .vision-guidelines__list dt {
    padding-left: 84px;
    border-bottom: 1px solid #fff;
    padding-bottom: 22px;
  }
  .vision-guidelines__list dt:nth-last-child(2) {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.vision-guidelines__list-dt-inner {
  background-color: #7B8627;
  border-radius: 3.0769230769vw;
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-size: 6.1538461538vw;
  font-weight: 700;
  align-items: center;
  padding: 5.3846153846vw 7.1794871795vw 2.8205128205vw;
  line-height: 1;
  gap: 1.7948717949vw;
  margin-bottom: 3.8461538462vw;
}
@media (min-width: 768px) {
  .vision-guidelines__list-dt-inner {
    font-size: 24px;
    padding: 20px 24px 12px;
    border-radius: 12px;
    margin-bottom: 0;
    gap: 8px;
  }
}
.vision-guidelines__list-dt-inner span {
  font-family: "din-condensed", sans-serif;
  font-size: 15px;
  font-size: 3.8461538462vw;
}
@media (min-width: 768px) {
  .vision-guidelines__list-dt-inner span {
    font-size: 15px;
  }
}
.vision-guidelines__list dd {
  width: 100%;
  text-align: center;
  font-size: 17px;
  font-size: 4.358974359vw;
  font-weight: 700;
  line-height: 1.88;
  padding-bottom: 8.4615384615vw;
  margin-bottom: 7.9487179487vw;
  border-bottom: 1px solid #EAEAEA;
}
@media (min-width: 768px) {
  .vision-guidelines__list dd {
    padding-left: 39px;
    font-size: 17px;
    padding-bottom: 20px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    text-align: left;
    padding-right: 20px;
  }
}
.vision-guidelines__list dd:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.vision-management {
  background-color: #fff;
  padding-top: 16.9230769231vw;
  padding-bottom: 13.5897435897vw;
}
@media (min-width: 768px) {
  .vision-management {
    padding-top: 94px;
    padding-bottom: 78px;
  }
}
.vision-management .vision__ttl-en {
  color: rgba(34, 34, 34, 0.15);
}
.vision-management .vision__head {
  margin-bottom: 3.0769230769vw;
}
@media (min-width: 768px) {
  .vision-management .vision__head {
    margin-bottom: 4px;
  }
}
.vision-management .vision__bg-txt {
  margin-bottom: 5.3846153846vw;
}
.vision-management .vision__bg-txt span {
  color: #647202;
}
@media (min-width: 768px) {
  .vision-management .vision__bg-txt {
    margin-bottom: 6px;
  }
  .vision-management .vision__bg-txt span {
    font-size: 44px;
  }
}

.vision-vision {
  background-color: #1249DF;
  color: #fff;
  padding-top: 18.4615384615vw;
  padding-bottom: 18.2051282051vw;
}
@media (min-width: 768px) {
  .vision-vision {
    padding-top: 130px;
    padding-bottom: 100px;
  }
}
.vision-vision .vision__ttl-en {
  color: rgba(255, 255, 255, 0.15);
}
.vision-vision .vision__head {
  margin-bottom: 3.0769230769vw;
}
@media (min-width: 768px) {
  .vision-vision .vision__head {
    margin-bottom: 7px;
  }
}
.vision-vision .vision__bg-txt {
  margin-bottom: 5.3846153846vw;
}
.vision-vision__ttl {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 41px;
  font-size: 10.5128205128vw;
  line-height: 1.17;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 2.5641025641vw;
}
@media (min-width: 768px) {
  .vision-vision__ttl {
    font-size: 68px;
    margin-bottom: 20px;
  }
}
.vision-vision__txt {
  font-size: 17px;
  font-size: 4.358974359vw;
  font-weight: 700;
  line-height: 1.88;
  text-align: center;
}
@media (min-width: 768px) {
  .vision-vision__txt {
    font-size: 23px;
  }
}
@media (min-width: 768px) {
  .vision-vision__list {
    max-width: 1100px;
    margin: 41px auto 0;
  }
}
.vision-vision__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5641025641vw;
  border-bottom: 1px solid #fff;
  padding-bottom: 11.7948717949vw;
  padding-top: 10.5128205128vw;
}
@media (min-width: 768px) {
  .vision-vision__list li {
    flex-direction: row;
    padding-top: 0;
    padding-left: 46px;
    gap: 0 27px;
    padding-bottom: 37px;
    margin-bottom: 20px;
  }
}
.vision-vision__list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.vision-vision__list-num {
  font-family: "din-condensed", sans-serif;
  font-size: 85px;
  font-size: 21.7948717949vw;
  line-height: 1;
  color: rgba(255, 255, 255, 0.29);
}
@media (min-width: 768px) {
  .vision-vision__list-num {
    font-size: 109px;
  }
}
.vision-vision__list-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .vision-vision__list-body {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 26px;
    padding-top: 17px;
  }
}
.vision-vision__list-ttl {
  font-size: 23px;
  font-size: 5.8974358974vw;
  font-weight: 700;
  background-color: #fff;
  color: #1249DF;
  padding: 0 3.8461538462vw;
  margin-bottom: 1.5384615385vw;
}
@media (min-width: 768px) {
  .vision-vision__list-ttl {
    font-size: 28px;
    padding: 0 10px;
    margin-bottom: 0;
  }
}
.vision-vision__list-ttl-en {
  font-family: "din-condensed", sans-serif;
  font-size: 23px;
  font-size: 5.8974358974vw;
  margin-bottom: 3.3333333333vw;
}
@media (min-width: 768px) {
  .vision-vision__list-ttl-en {
    font-size: 28px;
    margin-bottom: 0;
  }
}
.vision-vision__list-txt {
  font-size: 17px;
  font-size: 4.358974359vw;
  line-height: 1.82;
}
@media (min-width: 768px) {
  .vision-vision__list-txt {
    font-size: 17px;
  }
}

.vision-partner {
  background-color: #101010;
  color: #fff;
  padding-top: 18.4615384615vw;
}
@media (min-width: 768px) {
  .vision-partner {
    padding-top: 118px;
  }
}
.vision-partner .vision__ttl-en {
  color: rgba(255, 255, 255, 0.15);
}
.vision-partner .vision__head {
  margin-bottom: 3.0769230769vw;
}
@media (min-width: 768px) {
  .vision-partner .vision__head {
    margin-bottom: 10px;
  }
}
.vision-partner .vision__bg-txt {
  margin-bottom: 5.3846153846vw;
}
.vision-partner__ttl {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 41px;
  font-size: 10.5128205128vw;
  line-height: 1.17;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 2.5641025641vw;
  color: #1249DF;
}
@media (min-width: 768px) {
  .vision-partner__ttl {
    font-size: 68px;
    margin-bottom: 16px;
  }
}
.vision-partner__txt {
  font-size: 17px;
  font-size: 4.358974359vw;
  font-weight: 700;
  line-height: 1.88;
  text-align: center;
}
@media (min-width: 768px) {
  .vision-partner__txt {
    font-size: 23px;
  }
}
.vision-partner__list {
  margin-bottom: 26.4102564103vw;
}
@media (min-width: 768px) {
  .vision-partner__list {
    max-width: 1100px;
    margin: 57px auto 135px;
  }
}
.vision-partner__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5641025641vw;
  border-bottom: 1px solid #fff;
  padding-bottom: 11.7948717949vw;
  padding-top: 10.5128205128vw;
}
@media (min-width: 768px) {
  .vision-partner__list li {
    margin-bottom: 20px;
    flex-direction: row;
    padding-top: 0;
    padding-left: 46px;
    gap: 0 27px;
    padding-bottom: 37px;
  }
}
.vision-partner__list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.vision-partner__list-num {
  font-family: "din-condensed", sans-serif;
  font-size: 85px;
  font-size: 21.7948717949vw;
  line-height: 1;
  color: rgba(255, 255, 255, 0.29);
}
@media (min-width: 768px) {
  .vision-partner__list-num {
    font-size: 109px;
  }
}
.vision-partner__list-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .vision-partner__list-body {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 26px;
    padding-top: 17px;
  }
}
.vision-partner__list-ttl {
  font-size: 23px;
  font-size: 5.8974358974vw;
  font-weight: 700;
  background-color: #1249DF;
  color: #fff;
  padding: 0 3.8461538462vw;
  margin-bottom: 1.5384615385vw;
}
@media (min-width: 768px) {
  .vision-partner__list-ttl {
    font-size: 28px;
    padding: 0 10px;
    margin-bottom: 0;
  }
}
.vision-partner__list-ttl-en {
  font-family: "din-condensed", sans-serif;
  font-size: 23px;
  font-size: 5.8974358974vw;
  margin-bottom: 3.3333333333vw;
}
@media (min-width: 768px) {
  .vision-partner__list-ttl-en {
    font-size: 28px;
    margin-bottom: 0;
  }
}
.vision-partner__list-txt {
  font-size: 17px;
  font-size: 4.358974359vw;
  line-height: 1.82;
}
@media (min-width: 768px) {
  .vision-partner__list-txt {
    font-size: 17px;
  }
}

.personality__container {
  padding: 0 5.1282051282vw;
}
@media (min-width: 768px) {
  .personality__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: content-box;
  }
}

.personality-mv {
  background-color: #101010;
  color: #fff;
  padding-bottom: 16.6666666667vw;
}
@media (min-width: 768px) {
  .personality-mv {
    padding-bottom: 40px;
  }
}
.personality-mv__ttl img {
  width: 100%;
  height: auto;
}
.personality-mv__txt {
  font-size: 20px;
  font-size: 5.1282051282vw;
  line-height: 1.65;
  margin-bottom: 0.5128205128vw;
}
@media (min-width: 768px) {
  .personality-mv__txt {
    font-size: 24px;
    margin-bottom: 4px;
  }
}
.personality-mv__lead {
  font-size: 20px;
  font-size: 5.1282051282vw;
  line-height: 1.52;
  color: #CAE10E;
}
@media (min-width: 768px) {
  .personality-mv__lead {
    font-size: 24px;
  }
}
.personality-mv__body {
  margin-top: -6.4102564103vw;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .personality-mv__body {
    margin-top: -112px;
  }
}

.personality-top {
  background-color: #101010;
  padding-bottom: 20.2564102564vw;
  color: #fff;
}
@media (min-width: 768px) {
  .personality-top {
    padding-top: 62px;
    padding-bottom: 82px;
  }
}
.personality-top__inner {
  position: relative;
  background-color: #414141;
  display: flex;
  flex-direction: column-reverse;
  padding: 13.0769230769vw 3.8461538462vw 0;
}
@media (min-width: 768px) {
  .personality-top__inner {
    padding: 53px 20px 59px 46px;
    flex-direction: row;
    gap: 39px;
  }
}
.personality-top__ttl {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-feature-settings: "palt";
  font-size: 52px;
  font-size: 13.3333333333vw;
  line-height: 1.19;
  color: #CAE10E;
  text-align: center;
  margin-bottom: 5.1282051282vw;
  font-weight: 500;
}
@media (min-width: 768px) {
  .personality-top__ttl {
    font-size: 60px;
    text-align: left;
    margin-bottom: 23px;
  }
}
.personality-top__txt {
  font-size: 16px;
  font-size: 4.1025641026vw;
  line-height: 2.12;
}
@media (min-width: 768px) {
  .personality-top__txt {
    font-size: 16px;
    margin-bottom: 22px;
  }
}
.personality-top__img {
  width: 82.5641025641vw;
  margin-top: -1.5384615385vw;
}
@media (min-width: 768px) {
  .personality-top__img {
    position: absolute;
    bottom: 0;
    width: 37.5%;
    flex-shrink: 0;
  }
}
.personality-top__img img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .personality-top__body {
    margin-left: 40.75%;
  }
}
.personality-top__btn {
  background-color: #CAE10E;
  width: 83.3333333333vw;
  position: absolute;
  bottom: 8.4615384615vw;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 2.0512820513vw 0;
  display: block;
}
@media (min-width: 768px) {
  .personality-top__btn {
    position: relative;
    bottom: inherit;
    left: inherit;
    transform: translate(0);
    width: 394px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.personality-top__btn span {
  display: flex;
  justify-content: center;
  font-size: 15px;
  font-size: 3.8461538462vw;
  font-weight: 700;
  color: #222;
  align-items: center;
  gap: 0.5128205128vw;
}
@media (min-width: 768px) {
  .personality-top__btn span {
    font-size: 15px;
  }
}
.personality-top__btn span::after {
  content: "";
  background: url(../personality/images/icon_arrow.svg) no-repeat left top/100% auto;
  width: 6.8179487179vw;
  height: 1.4564102564vw;
  position: relative;
  top: -0.5128205128vw;
}
@media (min-width: 768px) {
  .personality-top__btn span::after {
    width: 26.59px;
    height: 5.68px;
    top: -1px;
  }
}

.loop-txt {
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  width: 100%;
  max-width: 100dvw;
  min-height: 100px;
  padding: 0.06em 0;
  line-height: 1;
}
@media (min-width: 768px) {
  .loop-txt {
    min-height: 230px;
  }
}
.loop-txt span {
  flex: 0 0 auto;
  font-family: "din-condensed", sans-serif;
  display: inline-block;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
  font-size: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 768px) {
  .loop-txt span {
    font-size: 230px;
  }
}
.loop-txt span:nth-child(odd) {
  animation: loop_txt_scroll01 80s -40s linear infinite;
}
.loop-txt span:nth-child(even) {
  animation: loop_txt_scroll02 80s linear infinite;
}

@keyframes loop_txt_scroll01 {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes loop_txt_scroll02 {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-200%, 0, 0);
  }
}
.personality-introduction {
  background-color: #101010;
  color: #fff;
}
.personality-introduction__head {
  position: relative;
}
@media (min-width: 768px) {
  .personality-introduction__head {
    margin-bottom: 12px;
  }
}
.personality-introduction__head-ttl {
  position: absolute;
  top: 2.5641025641vw;
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-size: 7.1794871795vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  .personality-introduction__head-ttl {
    font-size: 53px;
    top: 65px;
  }
}

.pi-slider-wrapper {
  position: relative;
}

.pi-slider__item {
  position: relative;
}
@media (min-width: 768px) {
  .pi-slider__item {
    height: 908px;
  }
}
@media print, screen and (min-width: 1400px) {
  .pi-slider__item {
    height: 63.0556vw;
  }
}
.pi-slider__item img {
  height: auto;
}
.pi-slider__item.item1 .pi-slider__head {
  width: 88.9743589744vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item1 .pi-slider__head {
    width: 775px;
  }
}
.pi-slider__item.item1 .pi-slider__rating-img {
  width: 66.6666666667vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item1 .pi-slider__rating-img {
    width: 419px;
  }
}
.pi-slider__item.item2 .pi-slider__head {
  width: 98.2051282051vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item2 .pi-slider__head {
    width: 775px;
  }
}
.pi-slider__item.item2 .pi-slider__rating-img {
  width: 56.4102564103vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item2 .pi-slider__rating-img {
    width: 313px;
  }
}
.pi-slider__item.item3 .pi-slider__head {
  width: 90vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item3 .pi-slider__head {
    width: 789px;
  }
}
.pi-slider__item.item3 .pi-slider__rating-img {
  width: 48.5897435897vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item3 .pi-slider__rating-img {
    width: 273px;
  }
}
.pi-slider__item.item4 .pi-slider__head {
  width: 88.9743589744vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item4 .pi-slider__head {
    width: 775px;
  }
}
.pi-slider__item.item4 .pi-slider__rating-img {
  width: 56.4102564103vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item4 .pi-slider__rating-img {
    width: 313px;
  }
}
.pi-slider__item.item5 .pi-slider__head {
  width: 98.2051282051vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item5 .pi-slider__head {
    width: 775px;
  }
}
.pi-slider__item.item5 .pi-slider__rating-img {
  width: 34.7435897436vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item5 .pi-slider__rating-img {
    width: 194px;
  }
}
.pi-slider__item.item6 .pi-slider__head {
  width: 90vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item6 .pi-slider__head {
    width: 775px;
  }
}
.pi-slider__item.item6 .pi-slider__rating-img {
  width: 40.8974358974vw;
}
@media (min-width: 768px) {
  .pi-slider__item.item6 .pi-slider__rating-img {
    width: 235px;
  }
}
@media (min-width: 768px) {
  .pi-slider__img {
    height: 100%;
  }
  .pi-slider__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.pi-slider__body {
  position: absolute;
  top: 2.5641025641vw;
  left: 0;
}
@media (min-width: 768px) {
  .pi-slider__body {
    top: 31px;
    width: 100%;
  }
}
.pi-slider__head {
  margin-bottom: 0.7692307692vw;
}
@media (min-width: 768px) {
  .pi-slider__head {
    margin-bottom: 0;
  }
}
.pi-slider__txt {
  font-size: 15px;
  font-size: 3.8461538462vw;
  font-weight: 500;
  line-height: 2.26;
  padding: 0 5.1282051282vw;
}
@media (min-width: 768px) {
  .pi-slider__txt {
    font-size: 15px;
    padding: 0;
    max-width: 1200px;
    margin: -2px auto 0;
    width: 83.33%;
    padding-left: 30px;
  }
  .pi-slider__txt span {
    display: block;
    width: 464px;
  }
}
.pi-slider__rating {
  padding-left: 5.3846153846vw;
  display: flex;
  align-items: center;
  margin-bottom: 3.0769230769vw;
}
@media (min-width: 768px) {
  .pi-slider__rating {
    margin: -17px auto 0;
    max-width: 1200px;
    width: 83.33%;
    padding-left: 30px;
  }
}
.pi-slider__rating-ttl {
  width: 27.1794871795vw;
  height: 12.5641025641vw;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 3.5897435897vw;
  font-weight: 700;
  background-color: #222;
  padding-left: 4.1025641026vw;
}
@media (min-width: 768px) {
  .pi-slider__rating-ttl {
    font-size: 20px;
    width: 160px;
    height: 66px;
    padding-left: 22px;
  }
}
.pi-slider__rating-img {
  margin-left: -3.0769230769vw;
}
@media (min-width: 768px) {
  .pi-slider__rating-img {
    margin-left: -29px;
  }
}

.pi-slider-nav {
  position: absolute;
  bottom: 27px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5.3846153846vw;
}
@media (min-width: 768px) {
  .pi-slider-nav {
    display: none;
  }
}
.pi-slider-nav__item {
  position: relative;
  width: 23.5897435897vw;
  height: 16.1538461538vw;
  background-color: #343434;
}
.pi-slider-nav__item::before {
  width: 12px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background-color: #D0D0D0;
  pointer-events: none;
}
.pi-slider-nav .slider-prev::before {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.pi-slider-nav .slider-next::before {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.pi-slider-thumb-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .pi-slider-thumb-wrapper {
    position: absolute;
    display: block;
    max-width: 1292px;
    margin: 0 auto;
    width: 89.72%;
    bottom: 31px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .pi-slider-thumb {
    left: 70px;
    z-index: 2;
    display: block;
  }
  .pi-slider-thumb .slick-list {
    width: 556px;
    height: 313px;
    overflow: hidden;
    padding-left: 12px !important;
  }
  .pi-slider-thumb .slick-track {
    display: flex;
    gap: 12px;
    align-items: center;
  }
}
.pi-slider-thumb .slick-slide {
  float: none;
}
.pi-slider-thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.pi-slider-thumb__item {
  width: 165px !important;
  margin: 0;
  transition: 300ms;
}
.pi-slider-thumb__item.slick-current {
  width: 203px !important;
}

.slider-thumb-prev {
  display: none;
}
@media (min-width: 768px) {
  .slider-thumb-prev {
    position: absolute;
    top: 81px;
    left: 0;
    width: 46px;
    height: 163px;
    background-color: #65646C;
    z-index: 10;
  }
  .slider-thumb-prev::before {
    width: 18px;
    height: 33px;
    position: absolute;
    top: 50%;
    left: calc(50% - 3px);
    transform: translate(-50%, -50%);
    content: "";
    background-color: #D0D0D0;
    pointer-events: none;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
  }
}

.slider-thumb-next {
  display: none;
}
@media (min-width: 768px) {
  .slider-thumb-next {
    position: absolute;
    top: 81px;
    width: 46px;
    height: 163px;
    left: 651px;
    background-color: #65646C;
    z-index: 10;
  }
  .slider-thumb-next::before {
    width: 18px;
    height: 33px;
    position: absolute;
    top: 50%;
    left: calc(50% + 3px);
    transform: translate(-50%, -50%);
    content: "";
    background-color: #D0D0D0;
    pointer-events: none;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
}

.personality-check {
  background-color: #101010;
}
@media (min-width: 768px) {
  .personality-check {
    padding-top: 185px;
  }
}
.personality-check__sub {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2820512821vw;
}
@media (min-width: 768px) {
  .personality-check__sub {
    margin-bottom: 10px;
  }
}
.personality-check__sub span {
  position: relative;
  font-size: 19px;
  font-size: 4.8717948718vw;
  font-weight: 700;
  padding: 0 5.641025641vw;
  display: block;
}
@media (min-width: 768px) {
  .personality-check__sub span {
    font-size: 27px;
    padding: 0 45px;
  }
}
.personality-check__sub span::before {
  position: absolute;
  bottom: 1.0256410256vw;
  left: 0;
  background-color: #CAE10E;
  width: 0.7692307692vw;
  height: 7.6923076923vw;
  transform: rotate(-43deg);
  content: "";
}
@media (min-width: 768px) {
  .personality-check__sub span::before {
    bottom: 4px;
    width: 4px;
    height: 43px;
  }
}
.personality-check__sub span::after {
  position: absolute;
  bottom: 1.0256410256vw;
  right: 0;
  background-color: #CAE10E;
  width: 0.7692307692vw;
  height: 7.6923076923vw;
  transform: rotate(43deg);
  content: "";
}
@media (min-width: 768px) {
  .personality-check__sub span::after {
    bottom: 4px;
    width: 4px;
    height: 43px;
  }
}
.personality-check__ttl {
  font-size: 37px;
  font-size: 9.4871794872vw;
  font-weight: 700;
  line-height: 1.21;
  text-align: center;
  margin-bottom: 3.0769230769vw;
}
@media (min-width: 768px) {
  .personality-check__ttl {
    font-size: 58px;
    margin-bottom: 18px;
  }
}
.personality-check__container {
  position: relative;
  background-color: #CAE10E;
  padding: 6.4102564103vw 5.1282051282vw;
  margin-bottom: 37.6923076923vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .personality-check__container {
    max-width: 1084px;
    margin: 0 auto 85px;
    padding: 15px 18px;
  }
}
.personality-check__inner {
  position: relative;
  padding-top: 16.9230769231vw;
  padding-bottom: 72.5641025641vw;
  background-color: #fff;
}
@media (min-width: 768px) {
  .personality-check__inner {
    padding-top: 61px;
    padding-bottom: 32px;
  }
}
.personality-check__txt {
  text-align: center;
  margin-bottom: 2.3076923077vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2820512821vw;
}
@media (min-width: 768px) {
  .personality-check__txt {
    margin-bottom: 38px;
    gap: 11px;
  }
}
.personality-check__txt span {
  font-size: 17px;
  font-size: 4.358974359vw;
  font-weight: 700;
  background: #CAE10E;
  color: #222;
  padding: 5px 5px;
  line-height: 1;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (min-width: 768px) {
  .personality-check__txt span {
    font-size: 25px;
    padding: 8px 13px;
  }
}
.personality-check__txt span:nth-child(1) {
  font-feature-settings: "palt";
  padding: 5px 5px 6px;
}
@media (min-width: 768px) {
  .personality-check__txt span:nth-child(1) {
    padding: 9px 15px 8px;
  }
}
.personality-check__txt span:nth-child(2) {
  padding: 5px 7px 6px;
}
@media (min-width: 768px) {
  .personality-check__txt span:nth-child(2) {
    padding: 9px 17px 9px;
  }
}
.personality-check__list {
  padding: 0 4.8717948718vw;
  margin-bottom: 13.0769230769vw;
}
@media (min-width: 768px) {
  .personality-check__list {
    margin-bottom: 55px;
  }
}
.personality-check__list li {
  position: relative;
  padding-top: 7.6923076923vw;
  padding-bottom: 4.8717948718vw;
}
@media (min-width: 768px) {
  .personality-check__list li {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 13px;
    padding-right: 50px;
  }
}
.personality-check__list li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(to right, #b7d800 0 3px, transparent 3px 9px);
}
.personality-check__list li:last-child {
  padding-bottom: 0;
}
.personality-check__list li:last-child::after {
  display: none;
}
.personality-check__list .en {
  font-family: "din-condensed", sans-serif;
  font-weight: 600;
  font-size: 29px;
  font-size: 7.4358974359vw;
  text-transform: lowercase;
  padding-left: 10vw;
}
@media (min-width: 768px) {
  .personality-check__list .en {
    font-size: 29px;
    line-height: 1.1;
    padding-left: 37px;
  }
}
.personality-check__list input {
  display: none;
}
.personality-check__list input:checked + label::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 8.2051282051vw;
  height: 7.1794871795vw;
  background: url(../personality/images/icon_check.svg) no-repeat left top/cover;
  content: "";
}
@media (min-width: 768px) {
  .personality-check__list input:checked + label::after {
    top: -1px;
    width: 32px;
    height: 28px;
  }
}
.personality-check__list label {
  position: relative;
  gap: 3.3333333333vw;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .personality-check__list label {
    display: grid;
    grid-template-columns: 139px 1fr;
    gap: 0;
  }
}
.personality-check__list label::before {
  position: absolute;
  top: 1.2820512821vw;
  left: 0;
  width: 6.1538461538vw;
  height: 6.1538461538vw;
  border: 1px solid #707070;
  content: "";
}
@media (min-width: 768px) {
  .personality-check__list label::before {
    top: 4px;
    width: 24px;
    height: 24px;
  }
}
.personality-check__list-txt {
  width: 100%;
  font-size: 16px;
  font-size: 4.1025641026vw;
  line-height: 1.875;
  font-weight: 700;
}
@media (min-width: 768px) {
  .personality-check__list-txt {
    font-size: 20px;
    width: auto;
    line-height: 1.5;
  }
}
.personality-check__bottom-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4.358974359vw;
}
@media (min-width: 768px) {
  .personality-check__bottom-ttl {
    margin-bottom: 18px;
  }
}
.personality-check__bottom-ttl span {
  background-color: #D60347;
  color: #fff;
  font-family: "din-condensed", sans-serif;
  font-size: 36px;
  font-size: 9.2307692308vw;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  padding: 2px 4.358974359vw 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .personality-check__bottom-ttl span {
    position: relative;
    font-size: 41px;
    padding: 1px 15px 0;
  }
}
.personality-check__bottom-txt {
  font-size: 23px;
  font-size: 5.8974358974vw;
  font-weight: 700;
  line-height: 1.52;
  color: #D60347;
  font-feature-settings: "palt";
  text-align: center;
}
@media (min-width: 768px) {
  .personality-check__bottom-txt {
    font-size: 38px;
    line-height: 1.5;
    position: relative;
    left: 40px;
  }
}
.personality-check__img1 {
  position: absolute;
  bottom: -1.7948717949vw;
  left: calc(50% - 3.8461538462vw);
  transform: translateX(-50%);
  width: 78.7179487179vw;
}
@media (min-width: 768px) {
  .personality-check__img1 {
    width: 322px;
    bottom: 0;
    left: -9px;
    transform: translateX(0);
  }
}
.personality-check__img2 {
  display: none;
}
@media (min-width: 768px) {
  .personality-check__img2 {
    width: 322px;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.glitch {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: 600px;
}

@keyframes noise-anim {
  0% {
    clip: rect(38px, 9999px, 55px, 0);
    transform: translate(2px, 2px);
  }
  2.7777777778% {
    clip: rect(26px, 9999px, 52px, 0);
    transform: translate(2px, 3px);
  }
  5.5555555556% {
    clip: rect(7px, 9999px, 15px, 0);
    transform: translate(1px, 0px);
  }
  8.3333333333% {
    clip: rect(27px, 9999px, 6px, 0);
    transform: translate(0px, 2px);
  }
  11.1111111111% {
    clip: rect(54px, 9999px, 52px, 0);
    transform: translate(-4px, 3px);
  }
  13.8888888889% {
    clip: rect(43px, 9999px, 21px, 0);
    transform: translate(0px, -1px);
  }
  16.6666666667% {
    clip: rect(26px, 9999px, 8px, 0);
    transform: translate(3px, 2px);
  }
  19.4444444444% {
    clip: rect(43px, 9999px, 26px, 0);
    transform: translate(-3px, 1px);
  }
  22.2222222222% {
    clip: rect(41px, 9999px, 58px, 0);
    transform: translate(-4px, -2px);
  }
  25% {
    clip: rect(63px, 9999px, 42px, 0);
    transform: translate(4px, -3px);
  }
  27.7777777778% {
    clip: rect(59px, 9999px, 57px, 0);
    transform: translate(-3px, 1px);
  }
  30.5555555556% {
    clip: rect(11px, 9999px, 25px, 0);
    transform: translate(1px, 0px);
  }
  33.3333333333% {
    clip: rect(43px, 9999px, 1px, 0);
    transform: translate(0px, -1px);
  }
  36.1111111111% {
    clip: rect(55px, 9999px, 12px, 0);
    transform: translate(-4px, 3px);
  }
  38.8888888889% {
    clip: rect(43px, 9999px, 3px, 0);
    transform: translate(1px, 2px);
  }
  41.6666666667% {
    clip: rect(14px, 9999px, 11px, 0);
    transform: translate(0px, -3px);
  }
  44.4444444444% {
    clip: rect(1px, 9999px, 60px, 0);
    transform: translate(-3px, -1px);
  }
  47.2222222222% {
    clip: rect(2px, 9999px, 22px, 0);
    transform: translate(-2px, -2px);
  }
  50% {
    clip: rect(15px, 9999px, 22px, 0);
    transform: translate(1px, -3px);
  }
  52.7777777778% {
    clip: rect(19px, 9999px, 32px, 0);
    transform: translate(-2px, -3px);
  }
  55.5555555556% {
    clip: rect(15px, 9999px, 17px, 0);
    transform: translate(0px, -3px);
  }
  58.3333333333% {
    clip: rect(57px, 9999px, 59px, 0);
    transform: translate(2px, -2px);
  }
  61.1111111111% {
    clip: rect(38px, 9999px, 10px, 0);
    transform: translate(0px, 1px);
  }
  63.8888888889% {
    clip: rect(16px, 9999px, 43px, 0);
    transform: translate(2px, 1px);
  }
  66.6666666667% {
    clip: rect(31px, 9999px, 43px, 0);
    transform: translate(-1px, -3px);
  }
  69.4444444444% {
    clip: rect(64px, 9999px, 46px, 0);
    transform: translate(-2px, 2px);
  }
  72.2222222222% {
    clip: rect(28px, 9999px, 49px, 0);
    transform: translate(1px, 1px);
  }
  75% {
    clip: rect(7px, 9999px, 54px, 0);
    transform: translate(0px, 1px);
  }
  77.7777777778% {
    clip: rect(22px, 9999px, 24px, 0);
    transform: translate(4px, 3px);
  }
  80.5555555556% {
    clip: rect(39px, 9999px, 56px, 0);
    transform: translate(-4px, -2px);
  }
  83.3333333333% {
    clip: rect(26px, 9999px, 69px, 0);
    transform: translate(0px, -2px);
  }
  86.1111111111% {
    clip: rect(17px, 9999px, 17px, 0);
    transform: translate(1px, 1px);
  }
  88.8888888889% {
    clip: rect(32px, 9999px, 62px, 0);
    transform: translate(2px, 2px);
  }
  91.6666666667% {
    clip: rect(30px, 9999px, 67px, 0);
    transform: translate(0px, -1px);
  }
  94.4444444444% {
    clip: rect(61px, 9999px, 63px, 0);
    transform: translate(4px, 2px);
  }
  97.2222222222% {
    clip: rect(60px, 9999px, 30px, 0);
    transform: translate(2px, 0px);
  }
  100% {
    clip: rect(44px, 9999px, 11px, 0);
    transform: translate(4px, -1px);
  }
}
.glitch:after {
  content: attr(data-text);
  position: absolute;
  left: 3px;
  text-shadow: -2px 0 0 red;
  top: 0;
  color: black;
  background: #414141;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim 3.6s steps(36, jump-end) infinite;
}

@keyframes noise-anim-2 {
  0% {
    clip: rect(21px, 9999px, 38px, 0);
    transform: translate(-3px, -2px);
  }
  2.7777777778% {
    clip: rect(4px, 9999px, 1px, 0);
    transform: translate(-4px, -2px);
  }
  5.5555555556% {
    clip: rect(55px, 9999px, 12px, 0);
    transform: translate(-2px, 1px);
  }
  8.3333333333% {
    clip: rect(16px, 9999px, 11px, 0);
    transform: translate(-3px, -1px);
  }
  11.1111111111% {
    clip: rect(55px, 9999px, 24px, 0);
    transform: translate(-2px, -3px);
  }
  13.8888888889% {
    clip: rect(41px, 9999px, 26px, 0);
    transform: translate(1px, -2px);
  }
  16.6666666667% {
    clip: rect(26px, 9999px, 37px, 0);
    transform: translate(2px, 2px);
  }
  19.4444444444% {
    clip: rect(5px, 9999px, 27px, 0);
    transform: translate(-2px, -1px);
  }
  22.2222222222% {
    clip: rect(20px, 9999px, 19px, 0);
    transform: translate(-4px, -3px);
  }
  25% {
    clip: rect(18px, 9999px, 26px, 0);
    transform: translate(2px, 0px);
  }
  27.7777777778% {
    clip: rect(6px, 9999px, 10px, 0);
    transform: translate(-1px, -3px);
  }
  30.5555555556% {
    clip: rect(61px, 9999px, 61px, 0);
    transform: translate(-2px, -1px);
  }
  33.3333333333% {
    clip: rect(64px, 9999px, 8px, 0);
    transform: translate(-1px, -3px);
  }
  36.1111111111% {
    clip: rect(60px, 9999px, 8px, 0);
    transform: translate(2px, 0px);
  }
  38.8888888889% {
    clip: rect(59px, 9999px, 70px, 0);
    transform: translate(-4px, 0px);
  }
  41.6666666667% {
    clip: rect(67px, 9999px, 14px, 0);
    transform: translate(3px, 1px);
  }
  44.4444444444% {
    clip: rect(58px, 9999px, 31px, 0);
    transform: translate(4px, 2px);
  }
  47.2222222222% {
    clip: rect(20px, 9999px, 36px, 0);
    transform: translate(1px, 0px);
  }
  50% {
    clip: rect(6px, 9999px, 45px, 0);
    transform: translate(-4px, -1px);
  }
  52.7777777778% {
    clip: rect(5px, 9999px, 58px, 0);
    transform: translate(3px, -3px);
  }
  55.5555555556% {
    clip: rect(59px, 9999px, 59px, 0);
    transform: translate(2px, -1px);
  }
  58.3333333333% {
    clip: rect(15px, 9999px, 52px, 0);
    transform: translate(-4px, 0px);
  }
  61.1111111111% {
    clip: rect(1px, 9999px, 69px, 0);
    transform: translate(4px, -2px);
  }
  63.8888888889% {
    clip: rect(58px, 9999px, 68px, 0);
    transform: translate(-2px, -1px);
  }
  66.6666666667% {
    clip: rect(5px, 9999px, 50px, 0);
    transform: translate(-4px, 2px);
  }
  69.4444444444% {
    clip: rect(10px, 9999px, 48px, 0);
    transform: translate(1px, -1px);
  }
  72.2222222222% {
    clip: rect(47px, 9999px, 54px, 0);
    transform: translate(-2px, -2px);
  }
  75% {
    clip: rect(71px, 9999px, 17px, 0);
    transform: translate(1px, 1px);
  }
  77.7777777778% {
    clip: rect(23px, 9999px, 15px, 0);
    transform: translate(4px, -3px);
  }
  80.5555555556% {
    clip: rect(62px, 9999px, 2px, 0);
    transform: translate(-4px, -3px);
  }
  83.3333333333% {
    clip: rect(49px, 9999px, 36px, 0);
    transform: translate(-4px, -1px);
  }
  86.1111111111% {
    clip: rect(64px, 9999px, 26px, 0);
    transform: translate(-3px, 2px);
  }
  88.8888888889% {
    clip: rect(20px, 9999px, 69px, 0);
    transform: translate(3px, 1px);
  }
  91.6666666667% {
    clip: rect(3px, 9999px, 24px, 0);
    transform: translate(-2px, -2px);
  }
  94.4444444444% {
    clip: rect(69px, 9999px, 31px, 0);
    transform: translate(-4px, 2px);
  }
  97.2222222222% {
    clip: rect(10px, 9999px, 16px, 0);
    transform: translate(-3px, 2px);
  }
  100% {
    clip: rect(54px, 9999px, 20px, 0);
    transform: translate(-2px, 3px);
  }
}
.glitch:before {
  content: attr(data-text);
  position: absolute;
  left: -3px;
  text-shadow: 2px 0 0 blue;
  top: 0;
  color: black;
  background: #414141;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 5.4s steps(36, jump-end) infinite;
}

.page-top .p-header {
  text-align: center;
  max-width: 90%;
  margin: 0 auto 20px;
}
.page-top .p-header__title {
  font-size: 50px;
  line-height: 1;
}
.page-top .p-header__subtitle {
  font-size: 13px;
  margin-top: 4px;
}
.page-top .p-header__text {
  font-size: 15px;
  margin-top: 10px;
}

.page-women .l-header .l-cv_button a {
  color: #222;
  text-shadow: none;
}
.page-women .l-header .p-item__title {
  color: #222;
}
.page-women .l-header .header-entry {
  text-shadow: none;
}
.page-women .l-toggle span {
  background: #222;
}

.women-mv {
  position: relative;
}
.women-mv img {
  height: auto;
}
.women-mv__ttl {
  position: absolute;
  top: 22.3076923077vw;
  left: 0;
  width: 100%;
  font-size: 37px;
  font-size: 9.4871794872vw;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
@media (min-width: 768px) {
  .women-mv__ttl {
    font-size: 53px;
    line-height: 1.47;
    top: 102px;
  }
}
.women-mv__ttl span {
  color: #D60347;
}
.women-mv__en {
  position: absolute;
  bottom: 0.7692307692vw;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 49px;
  font-size: 12.5641025641vw;
  font-family: "din-condensed", sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .women-mv__en {
    bottom: 9px;
    font-size: min(12.99vw, 187px);
  }
}

.women-reason {
  padding-top: 3.8461538462vw;
}
@media (min-width: 768px) {
  .women-reason {
    padding-top: 25px;
  }
}
.women-reason__container {
  padding: 0 5.1282051282vw;
}
@media (min-width: 768px) {
  .women-reason__container {
    padding: 0;
    margin: 0 auto;
    box-sizing: content-box;
  }
}
.women-reason__ttl {
  font-size: 16px;
  font-size: 4.1025641026vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.625;
  margin-bottom: 12.5641025641vw;
}
@media (max-width: 767px) {
  .women-reason__ttl {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
  }
}
@media (min-width: 768px) {
  .women-reason__ttl {
    font-size: 27px;
    margin-bottom: 92px;
  }
}
.women-reason__item {
  position: relative;
  margin-bottom: 87.9487179487vw;
}
@media (min-width: 768px) {
  .women-reason__item {
    margin-bottom: 45px;
  }
}
.women-reason__item img {
  height: auto;
}
.women-reason__item-body {
  position: absolute;
  top: 50.2564102564vw;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .women-reason__item-body {
    top: min(6.46vw, 93px);
    left: calc(50% + min(22.64vw, 326px));
  }
}
.women-reason__item-ttl {
  writing-mode: vertical-rl;
  color: #D60347;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 45px;
  font-size: 11.5384615385vw;
  line-height: 1.2;
  font-weight: 500;
  text-orientation: upright;
  font-weight: 700;
}
@media (min-width: 768px) {
  .women-reason__item-ttl {
    line-height: 1.3;
    font-size: min(5.14vw, 74px);
  }
}
.women-reason__item-ttl span {
  letter-spacing: -0.08em;
}

.women-reason-col {
  display: flex;
  flex-direction: column;
  gap: 17.1794871795vw 0;
  margin-bottom: 27.1794871795vw;
}
@media (min-width: 768px) {
  .women-reason-col {
    gap: 98px 0;
    margin-bottom: 126px;
  }
}
.women-reason-col__item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .women-reason-col__item {
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.women-reason-col__body {
  display: contents;
}
@media (min-width: 768px) {
  .women-reason-col__body {
    display: flex;
    flex-direction: column;
    width: 50%;
  }
}
.women-reason-col__en {
  order: -1;
  font-family: "din-condensed", sans-serif;
  color: rgba(214, 3, 71, 0.11);
  font-size: 103px;
  font-size: 26.4102564103vw;
  font-weight: 600;
  line-height: 0.9;
  text-align: center;
}
@media (min-width: 768px) {
  .women-reason-col__en {
    font-size: 160px;
    order: inherit;
    text-align: left;
    line-height: 0.8;
    margin-bottom: 5px;
  }
}
.women-reason-col__ttl {
  font-size: 26px;
  font-size: 6.6666666667vw;
  font-weight: 700;
  color: #D60347;
  line-height: 1.38;
  text-align: center;
  margin-bottom: 2.0512820513vw;
}
@media (min-width: 768px) {
  .women-reason-col__ttl {
    font-size: 36px;
    text-align: left;
    margin-bottom: 25px;
  }
}
@media (min-width: 768px) {
  .women-reason-col__ttl.ttl3 {
    white-space: nowrap;
  }
}
.women-reason-col__txt {
  font-size: 16px;
  font-size: 4.1025641026vw;
  font-weight: 500;
  line-height: 2.125;
}
@media (min-width: 768px) {
  .women-reason-col__txt {
    font-size: 16px;
  }
}
.women-reason-col__img {
  margin-bottom: 4.1025641026vw;
}
@media (min-width: 768px) {
  .women-reason-col__img {
    position: relative;
    margin-bottom: 0;
    width: calc(50% + max((100vw - 1200px) / 2, 0px));
    margin-left: min((100vw - 1200px) / -2, 0px);
    box-sizing: border-box;
  }
}
.women-reason-col__img img {
  height: auto;
}
@media (min-width: 768px) {
  .women-reason-col__img img {
    position: absolute;
    right: 34px;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(100% - 34px);
    height: 100%;
    object-fit: cover;
    max-height: 451px;
  }
}
@media (min-width: 768px) {
  .women-reason-col__item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .women-reason-col__item:nth-child(even) .women-reason-col__img {
    margin-right: min((100vw - 1200px) / -2, 0px);
    margin-left: 0;
  }
  .women-reason-col__item:nth-child(even) .women-reason-col__img img {
    right: 0;
    left: 34px;
  }
}

.women-entry {
  background: url("../women/images/entry.jpg") center top/cover no-repeat;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px 98px;
  height: 692px;
  box-sizing: border-box;
  margin: 170px auto 0;
}
@media (min-width: 768px) {
  .women-entry {
    max-width: 1440px;
  }
}
@media (max-width: 767px) {
  .women-entry {
    margin: 20.5128205128vw auto 0;
    background: url("../women/images/sp/entry.jpg") center top/cover no-repeat;
    padding: 0 5.1282051282vw 9.7435897436vw;
    height: 121.2820512821vw;
  }
}
.women-entry > p {
  margin-bottom: 0.8em;
  font-size: 3.5rem;
  font-weight: bold;
  color: #f85c7a;
}
@media (max-width: 767px) {
  .women-entry > p {
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.women-entry__btn {
  display: flex;
  gap: 26px;
  justify-content: center;
}
@media (max-width: 767px) {
  .women-entry__btn {
    gap: 3.0769230769vw;
    flex-flow: column;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .women-entry__btn li {
    min-width: 383px;
  }
}
.women-entry__btn a {
  width: 100%;
  min-height: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.91);
  font-size: 1.9rem;
  font-weight: bold;
  position: relative;
}
@media (max-width: 767px) {
  .women-entry__btn a {
    font-size: 19px;
    font-size: 4.8717948718vw;
    min-height: 22.0512820513vw;
  }
}
.women-entry__btn a::before, .women-entry__btn a::after {
  position: absolute;
  top: 0;
  right: 22px;
  bottom: 0;
  display: block;
  margin: auto;
  content: "";
}
@media (max-width: 767px) {
  .women-entry__btn a::before, .women-entry__btn a::after {
    right: 5.641025641vw;
  }
}
.women-entry__btn a::before {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: #f85c7a;
}
@media (max-width: 767px) {
  .women-entry__btn a::before {
    width: 5.3846153846vw;
    height: 5.3846153846vw;
  }
}
.women-entry__btn a::after {
  right: 29px;
  width: 5px;
  height: 6px;
  background-color: #fff;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media (max-width: 767px) {
  .women-entry__btn a::after {
    right: 7.4358974359vw;
    width: 1.2820512821vw;
    height: 1.5384615385vw;
  }
}

.workstyle-mv {
  position: relative;
}
.workstyle-mv__img img {
  height: auto;
}
.workstyle-mv__body {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -9.7435897436vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .workstyle-mv__body {
    bottom: -72px;
  }
}
.workstyle-mv__title {
  color: #fff;
  font-size: 15px;
  font-size: 3.8461538462vw;
  font-weight: 700;
  margin-bottom: 0.7692307692vw;
}
@media (min-width: 768px) {
  .workstyle-mv__title {
    font-size: 25px;
    margin-bottom: 0;
  }
}
.workstyle-mv__subtitle {
  font-size: 74px;
  font-size: 18.9743589744vw;
  font-family: "din-condensed", sans-serif;
  color: #CAE10E;
  line-height: 1;
}
@media (min-width: 768px) {
  .workstyle-mv__subtitle {
    font-size: 187px;
    line-height: 0.9;
  }
}

.workstyle-lead {
  background-color: #101010;
  color: #fff;
  padding-top: 10.2564102564vw;
  padding-bottom: 20vw;
}
@media (min-width: 768px) {
  .workstyle-lead {
    padding-top: 77px;
    padding-bottom: 85px;
  }
}
.workstyle-lead__ttl {
  text-align: center;
  margin-bottom: 6.9230769231vw;
}
@media (min-width: 768px) {
  .workstyle-lead__ttl {
    margin-bottom: 26px;
  }
}
.workstyle-lead__ttl span {
  font-size: 23px;
  font-size: 5.8974358974vw;
  font-weight: 700;
  background: #CAE10E;
  color: #222;
  padding: 1.7948717949vw 0 1.7948717949vw 2.5641025641vw;
  line-height: 1.9;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (min-width: 768px) {
  .workstyle-lead__ttl span {
    font-size: 37px;
    line-height: 1.8;
    padding: 13px 13px;
  }
}
.workstyle-lead__txt {
  font-size: 16px;
  font-size: 4.1025641026vw;
  font-weight: 700;
  text-align: center;
  line-height: 2.18;
  margin-bottom: 5.8974358974vw;
}
@media (min-width: 768px) {
  .workstyle-lead__txt {
    font-size: 20px;
    line-height: 2.25;
    margin-bottom: 25px;
  }
}
.workstyle-lead__txt span {
  color: #CAE10E;
}
.workstyle-lead__sub {
  color: #CAE10E;
  font-size: 18px;
  font-size: 4.6153846154vw;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 768px) {
  .workstyle-lead__sub {
    font-size: 25px;
  }
}

.workstyle-recommend {
  background: #72001E;
  padding: 8vw 5.1282051282vw 0;
  color: #fff;
}
@media (min-width: 768px) {
  .workstyle-recommend {
    padding: 0 20px 0;
  }
}
.workstyle-recommend__inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  flex: 1 200px;
  position: relative;
}
@media (min-width: 768px) {
  .workstyle-recommend__inner {
    padding: 54px 0 54px;
  }
}
@media (max-width: 767px) {
  .workstyle-recommend__inner {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .workstyle-recommend__img {
    position: absolute;
    bottom: 0;
    max-width: 359px;
    width: 29.92%;
    left: 26px;
  }
}
@media (max-width: 767px) {
  .workstyle-recommend__img {
    width: 66.43vw;
  }
}
@media (min-width: 768px) {
  .workstyle-recommend__container {
    margin-left: -31px;
    width: 100%;
    padding-left: calc(29.92% + 26px);
  }
}
.workstyle-recommend__container span {
  color: #FFFF03;
}
.workstyle-recommend__ttl {
  font-size: 29px;
  font-size: 7.4358974359vw;
  font-weight: 700;
  text-align: center;
  padding-bottom: 6.1538461538vw;
  border-bottom: 2px solid rgb(255, 255, 255);
  margin-bottom: 6.1538461538vw;
}
@media (min-width: 768px) {
  .workstyle-recommend__ttl {
    font-size: 37px;
    padding-bottom: 26px;
    max-width: 803px;
    margin: 0 0 42px 0;
  }
}
@media (min-width: 768px) {
  .workstyle-recommend__list-wrapper {
    display: flex;
    justify-content: center;
    gap: 0 65px;
    max-width: 803px;
  }
}
.workstyle-recommend__list {
  position: relative;
  z-index: 2;
  padding-left: 4.1025641026vw;
  margin-bottom: 4.8717948718vw;
}
@media (min-width: 768px) {
  .workstyle-recommend__list {
    margin-bottom: 20px;
    padding: 0;
  }
}
.workstyle-recommend__list li {
  font-size: 17px;
  font-size: 4.358974359vw;
  line-height: 1.41;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-left: 9.2307692308vw;
  text-align: left;
}
@media (min-width: 768px) {
  .workstyle-recommend__list li {
    font-size: 24px;
    padding-left: 51px;
  }
}
.workstyle-recommend__list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 33.67px;
  height: 32.51px;
  display: block;
  content: "";
  background: url("../career/images/icon_check.svg") center/contain no-repeat;
}
@media (max-width: 767px) {
  .workstyle-recommend__list li::before {
    top: 0.26em;
    width: 5.8974358974vw;
    height: 5.641025641vw;
  }
}
.workstyle-recommend__list li + li {
  margin-top: 5.1282051282vw;
}
@media (min-width: 768px) {
  .workstyle-recommend__list li + li {
    margin-top: 27px;
  }
}

.workstyle-career {
  padding-top: 27.1794871795vw;
  background-color: #101010;
}
@media (min-width: 768px) {
  .workstyle-career {
    padding-top: 146px;
  }
}
.workstyle-career__inner {
  position: relative;
  background-color: #fff;
  padding: 11.0256410256vw 0 11.5384615385vw 5.1282051282vw;
}
@media (min-width: 768px) {
  .workstyle-career__inner {
    padding: 127px 20px 85px;
  }
}
.workstyle-career__ttl {
  position: absolute;
  top: -4.8717948718vw;
  left: 50%;
  transform: translate(-50%);
  background-color: #CAE10E;
  font-size: 23px;
  font-size: 5.8974358974vw;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 4.8717948718vw;
}
@media (min-width: 768px) {
  .workstyle-career__ttl {
    font-size: 40px;
    top: -32px;
    padding: 0 24px;
  }
}

.ws-table-wrapper {
  max-width: 1287.22px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .ws-table-wrapper {
    position: relative;
    display: flex;
    overflow-x: auto;
    max-width: inherit;
    padding-right: 5.1282051282vw;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .ws-table__career {
    width: 1000px;
  }
}

.ws-table {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 16px;
}
@media (max-width: 767px) {
  .ws-table {
    flex: 0 0 auto;
    grid-template-columns: repeat(5, 215px);
  }
}
.ws-table__icon {
  display: none;
}
@media (max-width: 767px) {
  .ws-table__icon {
    display: block;
    position: absolute;
    width: 40.2564102564vw;
    height: 40.2564102564vw;
    top: calc(50% + 17px);
    transform: translateY(-50%);
    left: 24.8717948718vw;
    transition: opacity 0.3s;
  }
}
.ws-table__label-area, .ws-table__item {
  display: grid;
  grid-template-rows: 141px 41px 41px 41px 41px 59px;
  text-align: center;
}
.ws-table__circle {
  background: #647202;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-table__circle span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 122px;
  height: 122px;
  color: #647202;
  background-color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}
.ws-table__label {
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
}
.ws-table__label.is-green {
  background: #7A8626;
}
.ws-table__label.is-white {
  background: #fff;
  color: #647202;
}
.ws-table__label.is-dark-green {
  background: #647202;
}
.ws-table__label.is-light-green {
  background: #A4AD6A;
}
.ws-table__label.is-total {
  padding-bottom: 10px;
}
.ws-table__label.is-total span {
  width: 181px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  background: #A4AD6A;
  font-size: 18px;
  line-height: 1.11;
  font-weight: 700;
}
.ws-table__label.is-total-white {
  padding-bottom: 10px;
  background-color: #647202;
}
.ws-table__label.is-total-white span {
  margin-top: auto;
  width: 181px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 25px;
  background: #fff;
  color: #647202;
  font-weight: 700;
}
.ws-table__head {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.ws-table__head p {
  padding: 0 30px 8px;
  border-bottom: 1px solid #707070;
  color: #647202;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}
.ws-table__head h3 {
  margin-top: 8px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 700;
  width: 100%;
  height: 68px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-table__txt {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #222;
  font-weight: 500;
}

.workstyle-contents {
  padding-top: 26.6666666667vw;
  background-color: #101010;
}
@media (min-width: 768px) {
  .workstyle-contents {
    padding-top: 155px;
  }
}
.workstyle-contents__container {
  padding: 0 5.1282051282vw;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .workstyle-contents__container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: content-box;
  }
}
.workstyle-contents__item {
  position: relative;
}
.workstyle-contents__item.item1 {
  margin-bottom: 27.1794871795vw;
}
@media (min-width: 768px) {
  .workstyle-contents__item.item1 {
    margin-bottom: 198px;
  }
}
.workstyle-contents__item.item3 .workstyle-contents__ttl {
  top: 55px;
  font-size: 38px;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .workstyle-contents__item.item3 .workstyle-contents__ttl {
    left: auto;
    transform: none;
  }
  .workstyle-contents__item.item3 .workstyle-contents__ttl span {
    position: relative;
    left: auto;
    transform: none;
    height: auto;
    padding: 0;
    margin: 0 11px;
  }
}
@media (max-width: 767px) {
  .workstyle-contents__item.item3 .workstyle-contents__ttl {
    top: 19.128205vw;
    font-size: 6vw;
  }
  .workstyle-contents__item.item3 .workstyle-contents__ttl span {
    margin-right: 2vw;
  }
}
.workstyle-contents__item.item3 .workstyle-contents_tit {
  margin-bottom: 140px;
}
@media (max-width: 767px) {
  .workstyle-contents__item.item3 .workstyle-contents_tit {
    margin-bottom: 35vw;
  }
}
.workstyle-contents__item.item2 .workstyle-contents__ttl {
  top: -14.1025641026vw;
  text-align: center;
}
@media (min-width: 768px) {
  .workstyle-contents__item.item2 .workstyle-contents__ttl {
    top: -117px;
  }
}
.workstyle-contents__item.item2 .workstyle-contents__ttl span {
  width: fit-content;
  padding: 0 0 0 2.0512820513vw;
}
@media (min-width: 768px) {
  .workstyle-contents__item.item2 .workstyle-contents__ttl span {
    font-size: 50px;
    height: 79px;
    margin: 9px 15px 0px;
    padding: 15px 5px 13px;
  }
}
.workstyle-contents__ttl {
  position: absolute;
  top: -4.8717948718vw;
  left: 50%;
  width: 100%;
  transform: translate(-50%);
  font-size: 23px;
  font-size: 5.8974358974vw;
  font-weight: 700;
  color: #CAE10E;
}
@media (min-width: 768px) {
  .workstyle-contents__ttl {
    top: -30px;
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .workstyle-contents__ttl {
    line-height: 1.3;
    text-align: center;
  }
}
.workstyle-contents__ttl span {
  background-color: #CAE10E;
  font-size: 23px;
  font-size: 5.8974358974vw;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 2.0512820513vw;
  height: 9.2307692308vw;
  align-items: center;
  justify-content: center;
  color: #222;
  display: inline;
}
@media (min-width: 768px) {
  .workstyle-contents__ttl span {
    font-size: 40px;
    height: 63px;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    /* display: flex; */
    left: 50%;
    transform: translate(-50%, 0%);
    position: relative;
  }
}
@media (max-width: 767px) {
  .workstyle-contents__ttl span {
    padding: 1vw;
    text-align: center;
    display: inline-table;
  }
}
.workstyle-contents__img img {
  height: auto;
}
.workstyle-contents__txt {
  margin-top: 7.6923076923vw;
  font-size: 15px;
  font-size: 3.8461538462vw;
  color: #fff;
  line-height: 2;
  text-align: center;
  font-weight: 400;
}
@media (min-width: 768px) {
  .workstyle-contents__txt {
    font-size: 19px;
    line-height: 2.1;
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .workstyle-contents__txt {
    text-align: left;
  }
}
.workstyle-contents__lead {
  margin-top: 2.5641025641vw;
  font-size: 20px;
  font-size: 5.1282051282vw;
  font-weight: 700;
  color: #CAE10E;
  line-height: 1.45;
  text-align: center;
}
@media (min-width: 768px) {
  .workstyle-contents__lead {
    font-size: 34px;
    margin-top: 40px;
  }
}

.growth-mv {
  margin-bottom: 120px;
  position: relative;
}
@media (max-width: 767px) {
  .growth-mv {
    margin-bottom: 10.2564102564vw;
  }
}
.growth-mv__img img {
  height: auto;
}
.growth-mv__txt {
  position: absolute;
  margin: auto;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  text-align: center;
  color: #fff;
}
.growth-mv__txt .sub {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .growth-mv__txt .sub {
    font-size: 5.38vw;
  }
}
.growth-mv__txt .main {
  font-size: 74px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .growth-mv__txt .main {
    font-size: 12vw;
  }
}

.workstyle-contents_tit {
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 67px;
  text-decoration: line-through #D60347;
}
@media (max-width: 767px) {
  .workstyle-contents_tit {
    font-size: 5.38vw;
    margin-bottom: 8vw;
  }
}
.workstyle-contents_tit span {
  color: #FFFF03;
}

.workstyle-nav {
  max-width: 1200px;
  margin: 0 auto 68px;
}
@media (min-width: 768px) {
  .workstyle-nav {
    padding: 0 20px;
    box-sizing: content-box;
  }
}
@media (max-width: 767px) {
  .workstyle-nav {
    margin: 0 5.1282051282vw 15.3846153846vw;
  }
}
.workstyle-nav ol {
  display: grid;
  column-gap: 12px;
  grid-template-columns: repeat(6, 1fr);
}
@media print, screen and (max-width: 1200px) {
  .workstyle-nav ol {
    row-gap: 80px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .workstyle-nav ol {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5641025641vw;
    row-gap: 11.0256410256vw;
  }
}
.workstyle-nav li {
  counter-increment: num;
}
.workstyle-nav a {
  position: relative;
  text-align: center;
  display: block;
  border: 2px solid #CAE10E;
  padding-top: 36px;
  min-height: 102px;
  font-size: 1.6rem;
  line-height: 1.4375;
}
@media (max-width: 767px) {
  .workstyle-nav a {
    min-height: 23.0769230769vw;
    padding-top: 6.6666666667vw;
    border: 0.5128205128vw solid #CAE10E;
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.workstyle-nav a::before, .workstyle-nav a::after {
  z-index: 2;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  content: "";
}
.workstyle-nav a::before {
  top: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  color: #fff;
  background-color: #CAE10E;
  border-radius: 50%;
  font-weight: 300;
  line-height: 1;
  font-size: 2rem;
  font-family: "din-condensed", sans-serif;
  content: counter(num);
}
@media (max-width: 767px) {
  .workstyle-nav a::before {
    top: -4.8717948718vw;
    width: 8.4615384615vw;
    height: 8.4615384615vw;
    font-size: 20px;
    font-size: 5.1282051282vw;
  }
}
.workstyle-nav a::after {
  bottom: -22px;
  display: block;
  width: 16px;
  height: 8px;
  background-color: #d6d6d6;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media (max-width: 767px) {
  .workstyle-nav a::after {
    bottom: -4.1025641026vw;
    width: 4.1025641026vw;
    height: 2.0512820513vw;
  }
}

.workstyle-anc {
  margin-top: -80px;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .workstyle-anc {
    margin-top: -20vw;
    padding-top: 20vw;
  }
}

.workstyle-section-wrap {
  width: 1200px;
  margin: 0 auto 110px;
  display: flex;
  flex-flow: column;
  row-gap: 62px;
}
@media (max-width: 767px) {
  .workstyle-section-wrap {
    width: 100%;
    row-gap: 10.2564102564vw;
    margin-bottom: 33.3333333333vw;
  }
}

.workstyle-section {
  background-color: #BDC2C3;
  padding: 64px 82px 86px;
  counter-increment: num;
  position: relative;
}
@media (max-width: 767px) {
  .workstyle-section {
    padding: 14.8717948718vw 5.1282051282vw;
  }
}
.workstyle-section::before {
  position: absolute;
  top: -35px;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #CAE10E;
  color: #fff;
  font-family: "din-condensed", sans-serif;
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1;
  content: counter(num);
}
@media (max-width: 767px) {
  .workstyle-section::before {
    top: -6.9230769231vw;
    width: 13.8461538462vw;
    height: 13.8461538462vw;
    font-size: 27px;
    font-size: 6.9230769231vw;
  }
}
.workstyle-section img {
  height: auto;
}
.workstyle-section__ttl {
  margin-bottom: 0.8em;
  text-align: center;
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 1.3846153846;
}
@media (max-width: 767px) {
  .workstyle-section__ttl {
    font-size: 26px;
    font-size: 6.6666666667vw;
  }
}
.workstyle-section__txt {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .workstyle-section__txt {
    margin-bottom: 7.6923076923vw;
  }
}
.workstyle-section__txt p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 3vw;
}
@media (min-width: 768px) {
  .workstyle-section__txt p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .workstyle-section__txt p {
    font-size: 15px;
    font-size: 3.8461538462vw;
    line-height: 1.7333333333;
  }
}
@media (max-width: 767px) {
  .workstyle-section__sub {
    margin-bottom: 2.5641025641vw;
  }
}
.workstyle-section__sub p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .workstyle-section__sub p {
    font-size: 15px;
    font-size: 3.8461538462vw;
    line-height: 1.7333333333;
  }
}
.workstyle-section__img__text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .workstyle-section__img__text {
    text-align: left;
    font-size: 15px;
    font-size: 3.8461538462vw;
    line-height: 1.7333333333;
  }
}

.workstyle-topclass {
  background-color: #fff;
  padding: 20px 69px 94px;
}
@media (max-width: 767px) {
  .workstyle-topclass {
    padding: 2.8205128205vw 5.3846153846vw 13.3333333333vw;
  }
}
.workstyle-topclass__section {
  position: relative;
  overflow: hidden;
}
.workstyle-topclass__section:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .workstyle-topclass__section:not(:last-child) {
    margin-bottom: 7.6923076923vw;
  }
}
.workstyle-topclass__section:not(:last-child)::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 96.6%;
  height: 1px;
  background-color: #d6d6d6;
  display: block;
  margin: auto;
  content: "";
}
@media (max-width: 767px) {
  .workstyle-topclass__section:not(:last-child)::before {
    width: 100%;
  }
}
.workstyle-topclass__ttl {
  margin: 0 auto 28px;
}
@media (min-width: 768px) {
  .workstyle-topclass__ttl {
    max-width: 481px;
  }
}
@media (max-width: 767px) {
  .workstyle-topclass__ttl {
    margin: 0 auto 3.5897435897vw;
  }
}
.workstyle-topclass__subttl {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .workstyle-topclass__subttl {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.workstyle-topclass__txt {
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .workstyle-topclass__txt {
    margin-bottom: 6.1538461538vw;
  }
}
.workstyle-topclass__txt p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .workstyle-topclass__txt p {
    text-align: center;
  }
}
.workstyle-topclass__photo {
  margin-bottom: 57px;
}
@media (max-width: 767px) {
  .workstyle-topclass__photo {
    margin-bottom: 14.1025641026vw;
  }
}

.workstyle-holiday {
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .workstyle-holiday {
    margin-bottom: 6.6666666667vw;
  }
}
.workstyle-holiday__ttl {
  margin-bottom: 0.8em;
  margin-top: -0.4em;
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .workstyle-holiday__ttl {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.workstyle-holiday ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) {
  .workstyle-holiday ul {
    margin: 0 auto;
    max-width: 769px;
    column-gap: 42px;
  }
}
@media (max-width: 767px) {
  .workstyle-holiday ul {
    grid-template-columns: 1fr;
    row-gap: 5.3846153846vw;
  }
}
.workstyle-holiday li {
  border: 3px solid #CAE10E;
  border-radius: 10px;
  min-height: 144px;
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}
@media (max-width: 767px) {
  .workstyle-holiday li {
    border: 0.5128205128vw solid #CAE10E;
    border-radius: 2.5641025641vw;
    min-height: 12.5641025641vw;
    font-size: 14px;
    font-size: 3.5897435897vw;
  }
}
@media (max-width: 767px) {
  .workstyle-holiday li p {
    display: flex;
    align-items: center;
    column-gap: 0.5em;
  }
}
.workstyle-holiday li b {
  display: block;
  font-size: 3.3rem;
  line-height: 1.3333333333;
  color: #D60347;
}
@media (max-width: 767px) {
  .workstyle-holiday li b {
    font-size: 21px;
    font-size: 5.3846153846vw;
    line-height: 1.3333333333;
  }
}
.workstyle-holiday li:not(:first-child)::before, .workstyle-holiday li:not(:first-child)::after {
  position: absolute;
  top: 0;
  left: -37px;
  display: block;
  margin: auto;
  height: 4px;
  width: 25px;
  content: "";
  background-color: #101010;
}
@media (min-width: 768px) {
  .workstyle-holiday li:not(:first-child)::before, .workstyle-holiday li:not(:first-child)::after {
    bottom: 0;
  }
}
@media (max-width: 767px) {
  .workstyle-holiday li:not(:first-child)::before, .workstyle-holiday li:not(:first-child)::after {
    top: -3.5897435897vw;
    left: 0;
    right: 0;
    width: 3.3333333333vw;
    height: 0.5128205128vw;
  }
}
.workstyle-holiday li:not(:first-child)::after {
  transform: rotate(90deg);
}

.workstyle-welfare {
  max-width: 814px;
  margin: 0 auto;
}

.workstyle-welfare-col {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}
@media (max-width: 767px) {
  .workstyle-welfare-col {
    margin-bottom: 2.8205128205vw;
    grid-template-columns: 1fr;
    row-gap: 3.8461538462vw;
  }
}
.workstyle-welfare-col__item {
  padding: 25px 30px;
  border: 1px solid #4a4a4a;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .workstyle-welfare-col__item {
    padding: 4.6153846154vw;
    border-radius: 2.0512820513vw;
  }
}
.workstyle-welfare-col__img {
  margin-bottom: 14px;
  display: flex;
}
.workstyle-welfare-col__img img {
  width: 39.53%;
}
.workstyle-welfare-col__img p {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.3333333333;
  color: #fff;
  background-color: #D60347;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .workstyle-welfare-col__img p {
    font-size: 17px;
    font-size: 4.358974359vw;
    line-height: 1.3529411765;
  }
}
.workstyle-welfare-col__txt p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .workstyle-welfare-col__txt p {
    font-size: 15px;
    font-size: 3.8461538462vw;
    line-height: 1.4666666667;
  }
}

.workstyle-welfare-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 18px;
}
@media (max-width: 767px) {
  .workstyle-welfare-list {
    column-gap: 2.5641025641vw;
    row-gap: 2.5641025641vw;
    grid-template-columns: 1fr 1fr;
  }
}
.workstyle-welfare-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  border: 1px solid #4a4a4a;
  border-radius: 10px;
  font-size: 1.9rem;
  font-weight: bold;
  color: #D60347;
  text-align: center;
}
@media (max-width: 767px) {
  .workstyle-welfare-list li {
    font-size: 17px;
    font-size: 4.358974359vw;
    line-height: 1.2941176471;
  }
}
.workstyle-welfare-list li:last-child {
  border: none;
  color: #101010;
  font-size: 2.2rem;
  font-weight: 500;
  align-items: flex-end;
  justify-content: left;
}
@media (max-width: 767px) {
  .workstyle-welfare-list li:last-child {
    min-height: inherit;
    align-items: flex-start;
    justify-content: center;
    grid-column: 1/3;
  }
}

.workstyle-backup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media (max-width: 767px) {
  .workstyle-backup {
    gap: 3.8461538462vw;
    grid-template-columns: 1fr;
  }
}
.workstyle-backup__item {
  background-color: #fff;
  box-sizing: border-box;
  padding: 72px 53px;
}
@media (min-width: 768px) {
  .workstyle-backup__item {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .workstyle-backup__item {
    padding: 8.7179487179vw 7.9487179487vw 10.2564102564vw;
  }
}
.workstyle-backup__item p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9375;
}
@media (max-width: 767px) {
  .workstyle-backup__item p {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.workstyle-backup__ttl {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .workstyle-backup__ttl {
    font-size: 18px;
    font-size: 4.6153846154vw;
  }
}
.workstyle-backup__ttl b {
  display: block;
  font-size: 5.5rem;
  color: #D60347;
}
@media (max-width: 767px) {
  .workstyle-backup__ttl b {
    font-size: 35px;
    font-size: 8.9743589744vw;
  }
}

.workstyle-designers {
  max-width: 1035px;
  margin: 0 auto;
}

.workstyle-experience {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 25px;
}
.workstyle-experience__item {
  padding: 38px 50px 54px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .workstyle-experience__item {
    padding: 7.6923076923vw 5.1282051282vw 8.9743589744vw;
  }
}
.workstyle-experience__item p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .workstyle-experience__item p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .workstyle-experience__item p {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.workstyle-experience__ttl {
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 0.3em;
}
@media (max-width: 767px) {
  .workstyle-experience__ttl {
    font-size: 22px;
    font-size: 5.641025641vw;
  }
}
.workstyle-experience__img {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
}
@media (max-width: 767px) {
  .workstyle-experience__img {
    gap: 5.8974358974vw;
    margin-top: 6.6666666667vw;
    grid-template-columns: 1fr;
  }
}
.workstyle-experience__img img {
  display: block;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .workstyle-experience__img img {
    margin-bottom: 2.0512820513vw;
  }
}
.workstyle-experience__img figcaption {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .workstyle-experience__img figcaption {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}

.workstyle-evaluation {
  max-width: 1035px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .workstyle-evaluation {
    background: #fff;
    padding: 3vw 3vw 5vw;
    overflow-y: hidden;
  }
  .workstyle-evaluation img {
    width: 764px;
  }
}

.workstyle-point {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 106px;
}
@media (max-width: 767px) {
  .workstyle-point {
    row-gap: 17.1794871795vw;
  }
}
.workstyle-point__item {
  overflow: hidden;
  padding: 125px 82px 86px;
  background-color: #BDC2C3;
  counter-increment: num;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .workstyle-point__item {
    padding: 26.6666666667vw 5.1282051282vw 15.3846153846vw;
  }
}
.workstyle-point__item::before {
  z-index: -1;
  position: absolute;
  top: 5px;
  right: 20px;
  display: block;
  font-size: 27.3rem;
  font-weight: 300;
  font-family: "din-condensed", sans-serif;
  color: #fff;
  line-height: 1;
  content: counter(num, decimal-leading-zero);
}
@media (max-width: 767px) {
  .workstyle-point__item::before {
    top: 1.2820512821vw;
    right: 2.5641025641vw;
    font-size: 130px;
    font-size: 33.3333333333vw;
  }
}
.workstyle-point__item::after {
  position: absolute;
  top: 57px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 31px;
  min-width: 94px;
  width: fit-content;
  border-radius: 5px;
  background-color: #D60347;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  content: "POINT " counter(num);
}
@media (max-width: 767px) {
  .workstyle-point__item::after {
    top: 11.2820512821vw;
    font-size: 18px;
    font-size: 4.6153846154vw;
    height: 7.9487179487vw;
    min-width: 24.1025641026vw;
    border-radius: 1.2820512821vw;
  }
}
.workstyle-point__ttl {
  margin-bottom: 0.5em;
  text-align: center;
  font-weight: bold;
  font-size: 4rem;
  line-height: 1.4615384615;
}
@media (max-width: 767px) {
  .workstyle-point__ttl {
    font-size: 26px;
    font-size: 6.6666666667vw;
  }
}
.workstyle-point p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .workstyle-point p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .workstyle-point p {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}
.workstyle-point__img {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .workstyle-point__img {
    margin-top: 10.2564102564vw;
  }
}
.workstyle-point__img img {
  height: auto;
}
.workstyle-point__img.scroll p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 3vw;
}
@media (max-width: 767px) {
  .workstyle-point__img.scroll p {
    font-size: 15px;
    font-size: 3.8461538462vw;
    line-height: 1.7333333333;
  }
}
@media (max-width: 767px) {
  .workstyle-point__img.scroll .workstyle-point__img__inner {
    background: #fff;
    padding: 5vw;
    overflow-y: hidden;
  }
  .workstyle-point__img.scroll .workstyle-point__img__inner img {
    width: 754px;
  }
}

.workstyle-point-slide {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .workstyle-point-slide {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .workstyle-point-slide {
    margin-top: 10.2564102564vw;
  }
}
.workstyle-point-slide img {
  height: auto;
}
.workstyle-point-slide .slick-dots {
  margin: 30px auto 0 !important;
  position: relative;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 3.3333333333vw;
}
.workstyle-point-slide .slick-dots li {
  width: 3.8461538462vw;
  height: 3.8461538462vw;
  margin: 0;
}

.career-mv {
  position: relative;
  background-color: #101010;
  padding-top: 23.0769230769vw;
}
@media (min-width: 768px) {
  .career-mv {
    padding-top: 126px;
  }
}
.career-mv__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 0.7692307692vw;
  margin-bottom: 2.5641025641vw;
}
@media (min-width: 768px) {
  .career-mv__header {
    gap: 7px;
    margin-bottom: 0;
  }
}
.career-mv__ttl {
  font-size: 15px;
  font-size: 3.8461538462vw;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media print, screen and (min-width: 761px) {
  .career-mv__ttl {
    font-size: 15px;
  }
}
.career-mv__sub {
  font-size: 61px;
  font-size: 15.641025641vw;
  font-weight: 500;
  line-height: 1;
  font-family: "din-condensed", sans-serif;
  text-transform: uppercase;
  color: #CAE10E;
  text-align: center;
}
@media print, screen and (min-width: 761px) {
  .career-mv__sub {
    font-size: 78px;
  }
}
@media (min-width: 768px) {
  .career-mv__img {
    margin-top: -50px;
  }
}
.career-mv__img img {
  height: auto;
}
.career-mv__wrap {
  position: absolute;
  bottom: 11.2820512821vw;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .career-mv__wrap {
    bottom: min(172px, 11.9444vw);
  }
}
.career-mv__txt {
  font-size: 31px;
  font-size: 7.9487179487vw;
  font-weight: 700;
  color: #4D6A72;
  line-height: 1;
  background-color: #fff;
  padding: 2.3076923077vw 5.3846153846vw;
}
@media (min-width: 768px) {
  .career-mv__txt {
    font-size: min(5.36vw, 75px);
    padding: 21px 44px;
  }
}

.career-lead {
  padding-top: 10.7692307692vw;
  padding-bottom: 30.7692307692vw;
  background-color: #101010;
  color: #fff;
}
@media (min-width: 768px) {
  .career-lead {
    padding-top: 59px;
    padding-bottom: 130px;
  }
}
.career-lead__container {
  padding: 0 3.8461538462vw;
}
@media (min-width: 768px) {
  .career-lead__container {
    padding: 0 20px;
    word-break: keep-all;
  }
}
.career-lead__txt {
  font-size: 16px;
  font-size: 4.1025641026vw;
  font-weight: 700;
  line-height: 2.18;
  text-align: center;
  margin-bottom: 9.4871794872vw;
}
@media (min-width: 768px) {
  .career-lead__txt {
    font-size: 20px;
    line-height: 2.25;
    margin-bottom: 45px;
  }
}
.career-lead__ttl {
  font-family: "a-otf-ryumin-pr6n", serif;
  color: #CAE10E;
  font-size: 26px;
  font-size: 6.6666666667vw;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.153;
  text-align: center;
  margin-bottom: 8.2051282051vw;
}
@media (min-width: 768px) {
  .career-lead__ttl {
    font-size: 34px;
    line-height: 1.17;
    margin-bottom: 53px;
  }
}
.career-lead__btn {
  margin: 13.5897435897vw auto 0;
  display: block;
  background-color: #CAE10E;
  background-image: url(../images/cmn/icon_arrow_05.svg);
  background-repeat: no-repeat;
  background-position: right 35px center;
  color: #222;
  width: 89.7435897436vw;
  height: 22.0512820513vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-size: 4.8717948718vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  .career-lead__btn {
    width: 383px;
    height: 86px;
    font-size: 19px;
    margin: 76px auto 0;
    background-position: right 30px center;
  }
}

.career-recommend {
  margin: 0 auto;
  padding: 14.358974359vw 5.1282051282vw 0;
  position: relative;
  background-color: #2C4248;
}
@media (min-width: 768px) {
  .career-recommend {
    padding: 0 0;
  }
}
@media (min-width: 768px) {
  .career-recommend__container {
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: content-box;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0;
  }
}
@media (min-width: 768px) {
  .career-recommend__txt {
    padding-top: 62px;
    width: 100%;
  }
}
.career-recommend__ttl {
  position: relative;
  font-size: 29px;
  font-size: 7.4358974359vw;
  line-height: 1.34;
  color: #fff;
  text-align: center;
  padding-bottom: 4.1025641026vw;
  margin-bottom: 5.8974358974vw;
  border-bottom: 3px solid #fff;
  font-weight: 700;
}
@media (min-width: 768px) {
  .career-recommend__ttl {
    font-size: 37px;
    margin-bottom: 38px;
    padding-bottom: 17px;
    text-align: left;
    border-bottom: 2px solid #fff;
    padding-left: 33px;
  }
}
.career-recommend__ttl span {
  font-weight: bold;
  display: block;
  line-height: 1;
}
.career-recommend__ttl span:nth-of-type(1) {
  font-size: 12rem;
  font-weight: 300;
  font-family: "din-condensed", sans-serif;
  color: #fff;
}
@media (max-width: 767px) {
  .career-recommend__ttl span:nth-of-type(1) {
    margin-left: -0.2em;
    font-size: 62px;
    font-size: 15.8974358974vw;
  }
}
.career-recommend__ttl span:nth-of-type(2) {
  width: fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 21px;
  bottom: 0;
  margin: auto;
  font-weight: bold;
}
@media (max-width: 767px) {
  .career-recommend__ttl span:nth-of-type(2) {
    left: 0;
    right: 0;
  }
}
.career-recommend__list {
  position: relative;
  z-index: 2;
  padding-left: 3.5897435897vw;
  margin-bottom: 4.8717948718vw;
}
@media (min-width: 768px) {
  .career-recommend__list {
    margin-bottom: 20px;
    padding: 0 0 45px 33px;
    word-break: keep-all;
  }
}
.career-recommend__list li {
  font-size: 16px;
  font-size: 4.1025641026vw;
  line-height: 1.43;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-left: 8.4615384615vw;
  text-align: left;
}
@media (min-width: 768px) {
  .career-recommend__list li {
    font-size: 22px;
    padding-left: 33px;
  }
}
.career-recommend__list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 27px;
  height: 26px;
  display: block;
  content: "";
  background: url("../career/images/icon_check.svg") center/contain no-repeat;
}
@media (max-width: 767px) {
  .career-recommend__list li::before {
    top: 0.26em;
    width: 5.1282051282vw;
    height: 4.8717948718vw;
  }
}
.career-recommend__list li + li {
  margin-top: 4.6153846154vw;
}
@media (min-width: 768px) {
  .career-recommend__list li + li {
    margin-top: 21px;
  }
}
.career-recommend__img {
  margin: 0 -5.1282051282vw;
}
@media (min-width: 768px) {
  .career-recommend__img {
    margin: 0;
    width: min(41%, 488px);
    flex-shrink: 0;
  }
}
.career-recommend__img img {
  height: auto;
}

.career-entry {
  padding-top: 14.358974359vw;
  padding-bottom: 27.6923076923vw;
  background-color: #101010;
  color: #fff;
}
@media (min-width: 768px) {
  .career-entry {
    padding: 75px 20px 123px;
  }
}
.career-entry__txt {
  font-size: 23px;
  font-size: 5.8974358974vw;
  line-height: 1.78;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.8461538462vw;
}
@media (min-width: 768px) {
  .career-entry__txt {
    font-size: 29px;
    margin-bottom: 16px;
    word-break: keep-all;
  }
}
.career-entry__ttl {
  font-size: 32px;
  font-size: 8.2051282051vw;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .career-entry__ttl {
    font-size: 39px;
  }
}

.career-reason {
  padding-top: 18.4615384615vw;
  background-color: #133575;
  color: #fff;
}
@media (min-width: 768px) {
  .career-reason {
    padding-top: 128px;
  }
}
.career-reason__container {
  padding: 0 5.1282051282vw;
}
@media (min-width: 768px) {
  .career-reason__container {
    padding: 0 20px;
    max-width: 1176px;
    box-sizing: content-box;
    margin: 0 auto;
  }
}
.career-reason__head {
  position: relative;
  margin-bottom: 14.358974359vw;
}
@media (min-width: 768px) {
  .career-reason__head {
    margin-bottom: 60px;
  }
}
.career-reason__ttl-en {
  font-family: "din-condensed", sans-serif;
  font-size: 100px;
  font-size: 25.641025641vw;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
  text-align: center;
  font-weight: 600;
}
@media (min-width: 768px) {
  .career-reason__ttl-en {
    font-size: 160px;
  }
}
.career-reason__ttl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  font-size: 21px;
  font-size: 5.3846153846vw;
  line-height: 1.47;
  font-weight: 700;
}
@media (min-width: 768px) {
  .career-reason__ttl {
    font-size: 28px;
  }
}

.career-reason-col {
  margin-bottom: 21.2820512821vw;
  display: flex;
  flex-flow: column;
  gap: 16.9230769231vw;
}
@media (min-width: 768px) {
  .career-reason-col {
    gap: 66px;
    margin-bottom: 78px;
  }
}
.career-reason-col__item {
  display: flex;
  flex-direction: column-reverse;
  gap: 6.4102564103vw;
}
@media (min-width: 768px) {
  .career-reason-col__item {
    flex-direction: row;
    gap: 42px;
  }
}
@media (min-width: 768px) {
  .career-reason-col__item:nth-of-type(even) {
    flex-flow: row-reverse;
    gap: 97px;
  }
}
@media (min-width: 768px) {
  .career-reason-col__img {
    width: min(39.7%, 476px);
    flex-shrink: 0;
  }
}
.career-reason-col__img img {
  height: auto;
}
@media (min-width: 768px) {
  .career-reason-col__body {
    padding-top: 28px;
  }
}
.career-reason-col__ttl {
  font-size: 26px;
  font-size: 6.6666666667vw;
  font-weight: 600;
  line-height: 1;
  font-family: "din-condensed", sans-serif;
  margin-bottom: 1.2820512821vw;
}
@media (min-width: 768px) {
  .career-reason-col__ttl {
    font-size: 26px;
    margin-bottom: 13px;
  }
}
.career-reason-col__catch {
  font-size: 32px;
  font-size: 8.2051282051vw;
  line-height: 1.4;
  font-weight: bold;
  display: block;
  text-align: left;
  white-space: nowrap;
  margin-bottom: 3.3333333333vw;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .career-reason-col__catch {
    font-size: 39px;
    margin-bottom: 13px;
    white-space: wrap;
  }
}
.career-reason-col__txt {
  font-size: 15px;
  font-size: 3.8461538462vw;
  line-height: 2;
}
@media (min-width: 768px) {
  .career-reason-col__txt {
    font-size: 15px;
  }
}

.page-reason .list-page {
  background-color: #101010;
}
.page-reason .list-page__header__subtitle {
  color: #CAE10E;
}

.page-reason .list-page__main {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 761px) {
  .page-reason .list-page__main {
    width: 100%;
  }
}
@media print, screen and (max-width: 760px) {
  .page-reason .list-page__main {
    width: 100%;
  }
}

.page-reason .list-page__anc {
  padding: 0 7.1794871795vw 16.6666666667vw;
  margin-bottom: 34.8717948718vw;
}
@media (min-width: 768px) {
  .page-reason .list-page__anc {
    padding: 0;
    margin-bottom: 194px;
  }
}
.page-reason .list-page__anc ul.l-anc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16.1538461538vw 3.8461538462vw;
  counter-reset: nav;
}
@media (min-width: 768px) {
  .page-reason .list-page__anc ul.l-anc-list {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1050px;
    margin: 0 auto;
    gap: 28px;
  }
}
.page-reason .list-page__anc ul.l-anc-list li {
  counter-increment: nav;
}
.page-reason .list-page__anc ul.l-anc-list li a {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  font-size: 3.5897435897vw;
  font-weight: 700;
  line-height: 1.57;
  position: relative;
  padding-top: 6.9230769231vw;
  color: #fff;
}
@media (min-width: 768px) {
  .page-reason .list-page__anc ul.l-anc-list li a {
    font-size: 16px;
    padding-top: 90px;
  }
  .page-reason .list-page__anc ul.l-anc-list li a img {
    transition: opacity 300ms;
  }
  .page-reason .list-page__anc ul.l-anc-list li a:hover {
    opacity: 1;
  }
  .page-reason .list-page__anc ul.l-anc-list li a:hover img {
    opacity: 0.8;
  }
}
.page-reason .list-page__anc ul.l-anc-list li a::before {
  z-index: 1000;
  position: absolute;
  top: -1.2820512821vw;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  margin: auto;
  content: counter(nav, decimal-leading-zero);
  color: #CAE10E;
  font-family: "din-condensed", sans-serif;
  font-size: 55px;
  font-size: 14.1025641026vw;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-reason .list-page__anc ul.l-anc-list li a::before {
    font-size: 82px;
    top: 43px;
  }
}
.page-reason .list-page__anc ul.l-anc-list .p-item__photo {
  margin-bottom: 1.2820512821vw;
}
@media (min-width: 768px) {
  .page-reason .list-page__anc ul.l-anc-list .p-item__photo {
    margin-bottom: 12px;
  }
}
.page-reason .list-page__anc ul.l-anc-list .p-item__photo img {
  height: auto;
}
.page-reason .list-page__anc ul.l-anc-list .p-item__text {
  position: relative;
  font-feature-settings: "palt";
}
.page-reason .list-page__anc ul.l-anc-list .p-item__text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -7.6923076923vw;
  width: 6.1538461538vw;
  height: 6.1538461538vw;
  background: url(../reason/images/icon_nav.svg) no-repeat left top/cover;
}
@media (min-width: 768px) {
  .page-reason .list-page__anc ul.l-anc-list .p-item__text::after {
    width: 24px;
    height: 24px;
    bottom: -25px;
  }
}

.page-reason .l-reason {
  counter-reset: number;
  background-color: #101010;
}
.page-reason .l-reason__container {
  padding: 0 5.1282051282vw;
  display: flex;
  flex-direction: column;
  gap: 34.8717948718vw;
  margin-bottom: 32.0512820513vw;
}
@media (min-width: 768px) {
  .page-reason .l-reason__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    gap: 183px 0;
  }
}
.page-reason .l-reason .p-item {
  position: relative;
  counter-increment: number;
  background-color: #fff;
  padding: 14.1025641026vw 3.8461538462vw 17.9487179487vw;
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item {
    padding: 76px 59px 85px;
  }
}
.page-reason .l-reason .p-item::before {
  z-index: 2;
  position: absolute;
  top: -10.2564102564vw;
  left: 0;
  right: 0;
  margin: auto;
  content: counter(number, decimal-leading-zero);
  width: 16.4102564103vw;
  height: 16.4102564103vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #CAE10E;
  font-family: "din-condensed", sans-serif;
  font-weight: 600;
  font-size: 43px;
  font-size: 11.0256410256vw;
  color: #222;
  line-height: 1;
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item::before {
    top: -46px;
    width: 92px;
    height: 92px;
    font-size: 63px;
  }
}
.page-reason .l-reason .p-item__subtitle {
  font-size: 23px;
  font-size: 5.8974358974vw;
  font-weight: 700;
  text-align: center;
  margin-top: -1.2820512821vw;
  margin-bottom: 1.7948717949vw;
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item__subtitle {
    font-size: 38px;
    margin-top: -10px;
    margin-bottom: 3px;
  }
}
.page-reason .l-reason .p-item__title {
  margin-bottom: 5.641025641vw;
  text-align: center;
  font-size: 23px;
  font-size: 5.8974358974vw;
  line-height: 1.34;
  color: #222;
  font-weight: 700;
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item__title {
    font-size: 38px;
    margin-bottom: 26px;
  }
}
.page-reason .l-reason .p-item__title-en {
  font-size: 75px;
  font-size: 19.2307692308vw;
  font-weight: 600;
  font-family: "din-condensed", sans-serif;
  display: flex;
  justify-content: center;
  line-height: 1;
  gap: 0 4.6153846154vw;
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item__title-en {
    font-size: 160px;
    gap: 0 43px;
  }
}
.page-reason .l-reason .p-item__title-en1 span {
  color: #1249DF;
}
.page-reason .l-reason .p-item__title-en1 span:first-child {
  color: #133575;
}
.page-reason .l-reason .p-item__title-en2 {
  margin-top: 17.1794871795vw;
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item__title-en2 {
    margin-top: 70px;
  }
}
.page-reason .l-reason .p-item__title-en2 span {
  color: #CAE10E;
}
.page-reason .l-reason .p-item__title-en2 span:first-child {
  color: #647202;
}
.page-reason .l-reason .p-item__text {
  font-size: 15px;
  font-size: 3.8461538462vw;
  line-height: 2;
  font-weight: 400;
  margin-bottom: 10.2564102564vw;
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item__text {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.page-reason .l-reason .p-item__text:last-child {
  margin-bottom: 0;
}
.page-reason .l-reason .p-item__text span {
  padding: 5px 1px 5px 5px;
  background-color: #CAE10E;
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item__text span {
    padding: 7px 1px 7px 7px;
  }
}
.page-reason .l-reason .p-item__fig2 {
  margin-top: 13.0769230769vw;
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item__fig2 {
    margin-top: 5px;
  }
}
.page-reason .l-reason .p-item__fig3 {
  margin-top: 7.1794871795vw;
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item__fig3 {
    margin-top: 34px;
  }
}
.page-reason .l-reason .p-item__img {
  margin-bottom: 3.3333333333vw;
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item__img {
    margin-bottom: 23px;
  }
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item1 .p-item__title {
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .page-reason .l-reason .p-item1 .p-item__text {
    font-size: 15px;
    text-align: center;
    font-weight: 400;
  }
}

.reason__list {
  margin-top: 2.3076923077vw;
}
@media (min-width: 768px) {
  .reason__list {
    max-width: 1100px;
    margin: 41px auto 0;
  }
}
.reason__list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5641025641vw;
  border-bottom: 1px solid #868686;
  padding-bottom: 6.4102564103vw;
  padding-top: 7.1794871795vw;
}
@media (min-width: 768px) {
  .reason__list li {
    flex-direction: row;
    padding-top: 0;
    padding-left: 46px;
    gap: 0 17px;
    padding-bottom: 37px;
    margin-bottom: 20px;
  }
}
.reason__list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.reason__list-num {
  font-family: "din-condensed", sans-serif;
  font-size: 85px;
  font-size: 21.7948717949vw;
  line-height: 1;
  color: rgba(100, 114, 2, 0.29);
}
@media (min-width: 768px) {
  .reason__list-num {
    font-size: 109px;
  }
}
.reason__list-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .reason__list-body {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 26px;
    padding-top: 17px;
  }
}
.reason__list-ttl {
  font-size: 23px;
  font-size: 5.8974358974vw;
  font-weight: 700;
  background-color: #647202;
  color: #fff;
  padding: 0 3.8461538462vw;
  margin-bottom: 1.5384615385vw;
}
@media (min-width: 768px) {
  .reason__list-ttl {
    font-size: 28px;
    padding: 0 10px;
    margin-bottom: 0;
  }
}
.reason__list-ttl-en {
  font-family: "din-condensed", sans-serif;
  font-size: 23px;
  font-size: 5.8974358974vw;
  margin-bottom: 3.3333333333vw;
}
@media (min-width: 768px) {
  .reason__list-ttl-en {
    font-size: 28px;
    margin-bottom: 0;
  }
}
.reason__list-txt {
  font-size: 17px;
  font-size: 4.358974359vw;
  line-height: 1.82;
}
@media (min-width: 768px) {
  .reason__list-txt {
    font-size: 17px;
  }
}

.education-mv {
  position: relative;
}
.education-mv__img img {
  height: auto;
}
.education-mv__body {
  position: absolute;
  bottom: 13.5897435897vw;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .education-mv__body {
    bottom: 41px;
  }
}
.education-mv__title {
  font-size: 20px;
  font-size: 5.1282051282vw;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.5641025641vw;
}
@media (min-width: 768px) {
  .education-mv__title {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
.education-mv__subtitle {
  font-size: 121px;
  font-size: 31.0256410256vw;
  font-weight: 600;
  line-height: 0.8;
  font-family: "din-condensed", sans-serif;
  color: #D60347;
}
@media (min-width: 768px) {
  .education-mv__subtitle {
    font-size: 187px;
    margin-bottom: 32px;
  }
}
.education-mv__lead {
  margin-top: -1.2820512821vw;
  font-size: 20px;
  font-size: 5.1282051282vw;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
@media (min-width: 768px) {
  .education-mv__lead {
    font-size: 31px;
  }
}

.education-contents {
  background-color: #101010;
  color: #fff;
  padding-top: 4.6153846154vw;
}
@media (min-width: 768px) {
  .education-contents {
    padding-top: 47px;
  }
}
.education-contents__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: 500;
  font-size: 38px;
  font-size: 9.7435897436vw;
  line-height: 1.2;
  text-align: center;
  color: #D60347;
  margin-bottom: 4.1025641026vw;
}
@media (min-width: 768px) {
  .education-contents__ttl {
    font-size: 56px;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 19px;
  }
}
.education-contents__ttl .font {
  font-size: 37px;
  font-size: 9.4871794872vw;
}
@media (min-width: 768px) {
  .education-contents__ttl .font {
    font-size: 55px;
  }
}
.education-contents__ttl .lt {
  font-feature-settings: "palt";
}
.education-contents__top-txt {
  font-size: 16px;
  font-size: 4.1025641026vw;
  font-weight: 700;
  line-height: 1.937;
  text-align: center;
  margin-bottom: 22.5641025641vw;
}
@media (min-width: 768px) {
  .education-contents__top-txt {
    font-size: 16px;
    margin-bottom: 113px;
  }
}
.education-contents__top-txt span {
  color: #D60347;
}
.education-contents__item {
  padding: 0 5.1282051282vw;
  margin-bottom: 28.7179487179vw;
}
@media (min-width: 768px) {
  .education-contents__item {
    max-width: 1200px;
    box-sizing: content-box;
    margin: 0 auto 90px;
    padding: 0 20px;
  }
}
.education-contents__item-ttl {
  text-align: center;
  margin-top: -4.6153846154vw;
  margin-bottom: 4.1025641026vw;
}
@media (min-width: 768px) {
  .education-contents__item-ttl {
    margin-top: -57px;
    margin-bottom: 19px;
  }
}
.education-contents__item-ttl span {
  font-size: 33px;
  font-size: 8.4615384615vw;
  font-weight: 700;
  background: #D60347;
  color: #fff;
  padding: 7px 12px;
  line-height: 1.9;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  text-align: center;
}
@media (min-width: 768px) {
  .education-contents__item-ttl span {
    font-size: 54px;
    line-height: 1.8;
    padding: 14px 18px;
  }
}
.education-contents__item-txt {
  font-size: 16px;
  font-size: 4.1025641026vw;
  font-weight: 500;
  line-height: 2.5;
  text-align: center;
  margin-bottom: 3.8461538462vw;
}
@media (min-width: 768px) {
  .education-contents__item-txt {
    font-size: 19px;
    line-height: 2.1;
    margin-bottom: 40px;
  }
}
.education-contents__item-lead {
  color: #D60347;
  font-size: 25px;
  font-size: 6.4102564103vw;
  font-weight: 700;
  line-height: 1.56;
  text-align: center;
}
@media (min-width: 768px) {
  .education-contents__item-lead {
    font-size: 34px;
  }
}

.education-col {
  display: flex;
  flex-direction: column;
  margin-bottom: 32.0512820513vw;
  gap: 20.5128205128vw;
}
@media (min-width: 768px) {
  .education-col {
    gap: 94px;
    margin-bottom: 88px;
  }
}
.education-col__item {
  padding: 0 5.1282051282vw;
}
@media (min-width: 768px) {
  .education-col__item {
    width: min(1200px, 100%);
    padding: 0 20px;
    box-sizing: content-box;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .education-col__item.item1 .education-col__img {
    position: relative;
    padding-bottom: 270px;
  }
}
@media (min-width: 768px) {
  .education-col__item.item1 .education-col__body {
    padding-right: 20px;
    padding-top: min(12.5vw, 180px);
  }
}
.education-col__item.item2 {
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .education-col__item.item2 .education-col__img {
    position: relative;
    padding-bottom: 38px;
  }
}
@media (min-width: 768px) {
  .education-col__item.item2 .education-col__body {
    padding-top: min(2.78vw, 40px);
  }
}
.education-col__img {
  display: flex;
  flex-direction: column;
  margin-bottom: 15.3846153846vw;
}
@media (min-width: 768px) {
  .education-col__img {
    position: relative;
    z-index: 5;
    flex: 0 0 50%;
    min-width: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .education-col__img .img1 {
    order: 2;
    width: 89.7435897436vw;
    margin-left: -5.1282051282vw;
    margin-bottom: 8.9743589744vw;
  }
}
@media (min-width: 768px) {
  .education-col__img .img1 {
    margin-bottom: 33px;
    position: relative;
    width: calc(50vw - 90px);
    margin-left: min((100vw - 1200px) / -2, 0px);
  }
}
.education-col__img .img2 {
  width: 198px;
}
@media (max-width: 767px) {
  .education-col__img .img2 {
    order: 1;
    margin-left: 4.358974359vw;
    width: 50.7692307692vw;
    margin-bottom: 9.7435897436vw;
  }
}
@media (min-width: 768px) {
  .education-col__img .img2 {
    position: absolute;
    bottom: 130px;
    right: 400px;
  }
}
.education-col__img .img3 {
  width: 332px;
}
@media (max-width: 767px) {
  .education-col__img .img3 {
    order: 3;
    width: 62.8205128205vw;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .education-col__img .img3 {
    position: absolute;
    bottom: 0;
    right: 40px;
  }
}
@media (max-width: 767px) {
  .education-col__img .img4 {
    order: 2;
    width: 89.7435897436vw;
    margin-right: -5.1282051282vw;
    margin-left: auto;
    margin-bottom: 8.7179487179vw;
  }
}
@media (min-width: 768px) {
  .education-col__img .img4 {
    position: relative;
    margin-left: 32px;
    margin-bottom: 41px;
    position: relative;
    width: calc(50vw - 32px);
    margin-right: min((100vw - 1200px) / -2, 0px);
  }
}
.education-col__img .img5 {
  width: 333px;
}
@media (max-width: 767px) {
  .education-col__img .img5 {
    order: 1;
    margin-left: auto;
    width: 65.3846153846vw;
    margin-bottom: 8.7179487179vw;
  }
}
@media (min-width: 768px) {
  .education-col__img .img5 {
    margin-left: -154px;
  }
}
.education-col__img .img6 {
  width: 244px;
}
@media (max-width: 767px) {
  .education-col__img .img6 {
    order: 3;
    width: 55.3846153846vw;
    margin-left: 5.641025641vw;
  }
}
@media (min-width: 768px) {
  .education-col__img .img6 {
    position: absolute;
    left: 219px;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .education-col__body {
    flex: 0 0 50%;
    position: relative;
    z-index: 10;
    min-width: 0;
  }
}
.education-col__ttl {
  font-size: 34px;
  font-size: 8.7179487179vw;
  color: #D60347;
  line-height: 1.2;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 4.8717948718vw;
}
@media (min-width: 768px) {
  .education-col__ttl {
    font-size: 60px;
    margin-bottom: 52px;
    text-align: left;
  }
}
.education-col__txt {
  font-size: 16px;
  font-size: 4.1025641026vw;
  text-align: center;
  line-height: 2.125;
  color: #fff;
  font-weight: 500;
}
@media (min-width: 768px) {
  .education-col__txt {
    font-size: 16px;
    line-height: 2.125;
    text-align: left;
  }
}

/*# sourceMappingURL=page02.css.map */
