@charset "UTF-8";
.c-site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16rem;
  background: #373737;
  z-index: 1000;
  transition: box-shadow 0.6s, height 0.6s;
}
@media screen and (min-width: 768px), print {
  .c-site-header {
    height: 112rem;
    padding: 0 34rem;
  }
  .is-scrolled .c-site-header {
    height: 80rem;
  }
}
.l-body--black .c-site-header {
  background: #373737;
}
.l-body--black .c-site-header .c-site-header__logo--black {
  display: none;
}
.l-body--white .c-site-header {
  background: #F4F4F4;
}
.l-body--white .c-site-header .c-site-header__logo--white {
  display: none;
}
.is-scrolled .c-site-header {
  box-shadow: 0px 3rem 6rem rgba(0, 0, 0, 0.16);
}
.c-site-header__logo {
  width: 123rem;
}
@media screen and (min-width: 768px), print {
  .c-site-header__logo {
    width: 163rem;
  }
}
.c-site-header__logo img {
  width: 100%;
  height: auto;
}
.c-site-header__menu-btn {
  width: 40rem;
  aspect-ratio: 1;
  text-align: center;
  background-color: #373737;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  order: 3;
}
.l-body--black .c-site-header__menu-btn {
  color: #fff;
}
.l-body--white .c-site-header__menu-btn {
  color: #000;
}
.c-site-header__menu-btn svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.c-site-header__menu-btn path {
  transform-origin: center;
  transition: transform 0.3s, opacity 0.3s;
}
.c-site-header__menu-btn.is-active path:nth-of-type(1) {
  animation: burger1 0.3s linear;
  transform: rotate(45deg) translate(0%, 19%);
}
.c-site-header__menu-btn.is-active path:nth-of-type(2) {
  opacity: 0;
}
.c-site-header__menu-btn.is-active path:nth-of-type(3) {
  animation: burger2 0.3s linear;
  transform: rotate(-45deg) translate(0%, -19%);
}
.c-site-header__menu-btn.is-close path:nth-of-type(1) {
  animation: burger1-rev 0.3s linear;
  transform: rotate(0) translate(0%, 0%);
}
.c-site-header__menu-btn.is-close path:nth-of-type(3) {
  animation: burger2-rev 0.3s linear;
  transform: rotate(0) translate(0%, 0%);
}

@keyframes burger1 {
  0% {
    transform: rotate(0) translate(0%, 0%);
  }
  50% {
    transform: rotate(0) translate(0%, 19%);
  }
  100% {
    transform: rotate(45deg) translate(0%, 19%);
  }
}
@keyframes burger2 {
  0% {
    transform: rotate(0) translate(0%, 0%);
  }
  50% {
    transform: rotate(0) translate(0%, -19%);
  }
  100% {
    transform: rotate(-45deg) translate(0%, -19%);
  }
}
@keyframes burger1-rev {
  0% {
    transform: rotate(45deg) translate(0%, 19%);
  }
  50% {
    transform: rotate(0) translate(0%, 19%);
  }
  100% {
    transform: rotate(0) translate(0%, 0%);
  }
}
@keyframes burger2-rev {
  0% {
    transform: rotate(-45deg) translate(0%, -19%);
  }
  50% {
    transform: rotate(0) translate(0%, -19%);
  }
  100% {
    transform: rotate(0) translate(0%, 0%);
  }
}
@media screen and (max-width: 767.98px) {
  .c-global-nav {
    display: none;
    position: fixed;
    inset: 80rem 0 0;
    background-color: #373737;
    z-index: 1000;
    overflow: auto;
  }
}
@media screen and (min-width: 768px), print {
  .c-global-nav {
    display: grid !important;
    align-items: end;
    align-self: stretch;
    gap: 50rem;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 768px), print {
  .c-global-nav__list {
    display: flex;
    align-items: center;
    gap: 40rem;
  }
}
.c-global-nav__item {
  line-height: 1;
}
@media screen and (min-width: 768px), print {
  .c-global-nav__item {
    padding: 0 0 50rem;
    transition: padding 0.6s;
  }
  .is-scrolled .c-global-nav__item {
    padding-bottom: 34rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-global-nav__item--has-mega {
    transition: color 0.3s, padding 0.6s;
  }
}
.c-global-nav__item--has-mega.is-open {
  color: #EA9900;
}
.c-global-nav__item--separater {
  width: 1px;
  position: relative;
  margin: 0 -10rem;
}
.c-global-nav__item--separater::before {
  content: "";
  height: 78rem;
  width: 1px;
  opacity: 0.2;
  background: #fff;
  display: block;
  position: absolute;
  bottom: 10rem;
  left: 0;
}
.l-body--white .c-global-nav__item--separater::before {
  background: #373737;
}
@media screen and (min-width: 768px), print {
  .c-global-nav__item--separater::before {
    transition: height 0.6s;
  }
  .is-scrolled .c-global-nav__item--separater::before {
    height: 42rem;
  }
}
.c-global-nav__label {
  display: grid;
  gap: 10rem;
}
.c-global-nav__label-en {
  font-size: 11rem;
}
.c-global-nav__label-ja {
  font-size: 14rem;
}
@media screen and (max-width: 767.98px) {
  .c-global-nav__mega {
    background: #373737;
    color: #ffffff;
    display: block !important;
    padding: 0 36rem 0;
  }
}
@media screen and (min-width: 768px), print {
  .c-global-nav__mega {
    display: none;
    background: #EA9900;
    color: #171717;
    position: absolute;
    top: 112rem;
    left: 0;
    right: 0;
    box-shadow: 0px 3rem 6rem rgba(0, 0, 0, 0.16);
    transition: top 0.6s;
  }
  .is-scrolled .c-global-nav__mega {
    top: 80rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-global-nav__mega-inner {
    max-width: 1308rem;
    margin: 0 auto;
    padding: 59rem 0 73rem;
    display: grid;
    grid-template-columns: 316rem 1fr;
    align-items: start;
  }
}
.c-global-nav__mega-title {
  display: grid;
  gap: 16rem;
}
@media screen and (max-width: 767.98px) {
  .c-global-nav__mega-title {
    margin: 40rem 0 20rem 0;
  }
}
.c-global-nav__mega-title-en {
  font-size: 18rem;
}
@media screen and (min-width: 768px), print {
  .c-global-nav__mega-title-en {
    font-size: 20rem;
  }
}
.c-global-nav__mega-title-ja {
  font-size: 14rem;
}
@media screen and (min-width: 768px), print {
  .c-global-nav__mega-title-ja {
    font-size: 18rem;
  }
}
.c-global-nav__mega-subtitle {
  margin: 60rem 0 20rem;
  font-weight: 500;
  font-size: 15rem;
}
@media screen and (max-width: 767.98px) {
  .c-global-nav__mega-subtitle + .c-global-nav__mega-list {
    border-top: 0;
  }
}
.c-global-nav__mega-list {
  display: grid;
}
@media screen and (max-width: 767.98px) {
  .c-global-nav__mega-list {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media screen and (min-width: 768px), print {
  .c-global-nav__mega-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 49rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-global-nav__mega-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media screen and (min-width: 768px), print {
  .c-global-nav__mega-item {
    border-top: 1px solid rgba(23, 23, 23, 0.2);
    border-bottom: 1px solid rgba(23, 23, 23, 0.2);
  }
  .c-global-nav__mega-item:nth-of-type(n+4) {
    border-top: 0;
  }
}
.c-global-nav__mega-link {
  display: grid;
  grid-template-columns: 1fr 5rem;
  align-items: center;
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  .c-global-nav__mega-link {
    padding-right: 10rem;
  }
}
.c-global-nav__mega-text {
  display: flex;
  align-items: center;
  padding: 0 10rem;
  font-size: 13rem;
  height: 39rem;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (min-width: 768px), print {
  .c-global-nav__mega-text {
    font-size: 15rem;
    height: 53rem;
    font-weight: 500;
  }
}

.c-global-sub {
  padding: 40rem 36rem;
  color: #fff;
}
.c-global-sub__faq {
  border: 1px solid #fff;
  display: grid;
  place-content: center;
  height: 44rem;
  border-radius: 4rem;
  text-decoration: none;
}
.c-global-sub__entry {
  border: 1px solid #fff;
  border-radius: 4rem;
  padding: 16rem;
  margin-top: 20rem;
}
.c-global-sub__entry-label {
  text-align: center;
  display: block;
  margin-bottom: 16rem;
}
.c-global-sub__entry-list {
  display: grid;
}
@media screen and (max-width: 767.98px) {
  .c-global-sub__entry-list {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media screen and (min-width: 768px), print {
  .c-global-sub__entry-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 49rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-global-sub__entry-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media screen and (min-width: 768px), print {
  .c-global-sub__entry-item {
    border-top: 1px solid rgba(23, 23, 23, 0.2);
    border-bottom: 1px solid rgba(23, 23, 23, 0.2);
  }
  .c-global-sub__entry-item:nth-of-type(n+4) {
    border-top: 0;
  }
}
.c-global-sub__entry-link {
  display: grid;
  grid-template-columns: 1fr 5rem;
  align-items: center;
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  .c-global-sub__entry-link {
    padding-right: 10rem;
  }
}
.c-global-sub__entry-text {
  display: flex;
  align-items: center;
  padding: 0 10rem;
  font-size: 13rem;
  height: 39rem;
  font-weight: 400;
}
@media screen and (min-width: 768px), print {
  .c-global-sub__entry-text {
    font-size: 15rem;
    height: 53rem;
    font-weight: 500;
  }
}

.c-global-btns {
  display: grid;
  align-items: start;
  align-self: start;
  padding: 25rem 0 0;
  margin: 0 16rem 0 auto;
  z-index: 1000;
}
@media screen and (min-width: 768px), print {
  .c-global-btns {
    grid-template-columns: repeat(2, 120rem);
    gap: 19rem;
    padding: 30rem 0 0 40rem;
    margin: 0;
    transition: padding 0.6s;
  }
  .is-scrolled .c-global-btns {
    padding-top: 14rem;
  }
}
.c-global-btns__faq {
  border-radius: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 120rem;
  height: 52rem;
  display: grid;
  place-content: center;
  text-decoration: none;
  font-size: 14rem;
}
.l-body--white .c-global-btns__faq {
  border-color: rgba(55, 55, 55, 0.2);
}
.c-global-btns__entry-list {
  display: grid;
  gap: 5rem;
  height: 0;
  overflow: hidden;
  transition: height 0.3s, padding 0.3s;
  padding: 0 5rem;
}
.c-global-btns__entry-list.is-open {
  height: 122rem;
  padding: 5rem;
}
.c-global-btns__entry:hover .c-global-btns__entry-list {
  height: 122rem;
  padding: 5rem;
}
.c-global-btns__entry {
  border-radius: 4rem;
  border: 1px solid #EA9900;
  background: #EA9900;
  color: #373737;
  transition: color 0.3s, background-color 0.3s;
  position: relative;
}
.c-global-btns__entry:has(.is-open), .c-global-btns__entry:hover {
  background: #373737;
  color: #EA9900;
}
.l-body--white .c-global-btns__entry:has(.is-open), .l-body--white .c-global-btns__entry:hover {
  background: #F4F4F4;
}
.c-global-btns__entry-label {
  width: 118rem;
  height: 30rem;
  display: grid;
  place-content: center;
  text-decoration: none;
  font-size: 11rem;
  font-family: "Krona One", "Noto Sans JP", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
}
@media screen and (min-width: 768px), print {
  .c-global-btns__entry-label {
    width: 118rem;
    height: 50rem;
    font-size: 12rem;
  }
}
.c-global-btns__entry-link {
  display: grid;
  place-items: center;
  color: #171717;
  text-align: center;
  text-decoration: none;
  font-size: 11rem;
  border-radius: 4rem;
  color: #373737;
  font-weight: 500;
  font-family: "Krona One", "Noto Sans JP", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  background: #EA9900;
  height: 34rem;
}
@media screen and (min-width: 768px), print {
  .c-global-btns__entry-link {
    font-size: 12rem;
  }
}

.c-site-footer {
  background: #373737;
  color: #ffffff;
}
@media screen and (max-width: 767.98px) {
  .c-site-footer {
    padding: 64rem 0 80rem;
    font-size: 12rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-site-footer {
    padding: 86rem 0 58rem;
    font-size: 12rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-site-footer__heading {
    font-size: 14rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-site-footer__heading {
    margin: 0 0 86rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-site-footer__copyright {
    margin-top: 40rem;
  }
}

@media screen and (max-width: 767.98px) {
  .c-footer-nav {
    margin: 64rem 0 24rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-footer-nav {
    margin: 58rem 0;
  }
}
.c-footer-nav__list {
  display: grid;
}
@media screen and (max-width: 767.98px) {
  .c-footer-nav__list {
    gap: 8rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-footer-nav__list {
    gap: 0;
    grid-template-areas: "a c d e" "b . . f";
  }
}
@media screen and (min-width: 768px), print {
  .c-footer-nav__item:nth-of-type(1) {
    grid-area: a;
  }
  .c-footer-nav__item:nth-of-type(2) {
    grid-area: b;
  }
  .c-footer-nav__item:nth-of-type(3) {
    grid-area: c;
  }
  .c-footer-nav__item:nth-of-type(4) {
    grid-area: d;
  }
  .c-footer-nav__item:nth-of-type(5) {
    grid-area: e;
  }
  .c-footer-nav__item:nth-of-type(6) {
    grid-area: f;
  }
}
.c-footer-nav__label {
  display: grid;
}
@media screen and (max-width: 767.98px) {
  .c-footer-nav__label {
    grid-template-columns: 1fr 1em;
    align-items: center;
    border-bottom: 1px solid rgba(112, 112, 112, 0.4);
    padding: 8rem 0;
  }
  .c-footer-nav__label::after {
    content: "┼";
  }
  .c-footer-nav__label.is-active::after {
    content: "─";
  }
}
@media screen and (min-width: 768px), print {
  .c-footer-nav__label {
    margin-bottom: 30rem;
  }
}
.c-footer-nav__label-en {
  font-size: 14rem;
}
@media screen and (min-width: 768px), print {
  .c-footer-nav__label-en {
    font-size: 20rem;
  }
}
.c-footer-nav__label-ja {
  font-size: 15rem;
}
@media screen and (max-width: 767.98px) {
  .c-footer-nav__links {
    display: none;
    padding: 10rem 0;
  }
}
@media screen and (min-width: 768px), print {
  .c-footer-nav__links {
    display: block !important;
    height: auto !important;
  }
}
.c-footer-nav__sublist {
  display: grid;
  gap: 10rem;
}
.c-footer-nav__link {
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-footer-nav__link:hover {
    opacity: 0.6;
  }
}

.c-footer-sns {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 0 64rem 0;
}
@media screen and (min-width: 768px), print {
  .c-footer-sns {
    padding: 58rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.c-footer-sns__list {
  display: flex;
  gap: 24rem;
  line-height: 1;
}
@media screen and (max-width: 767.98px) {
  .c-footer-sns__list {
    justify-content: center;
  }
}
.c-footer-sns__link {
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-footer-sns__link:hover {
    opacity: 0.6;
  }
}
.c-footer-sns__icon {
  width: 19rem;
}

@media screen and (max-width: 767.98px) {
  .c-footer-terms {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40rem 0;
    font-size: 12rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-footer-terms {
    padding: 58rem 0;
  }
}
@media screen and (max-width: 767.98px) {
  .c-footer-terms__list {
    display: grid;
    gap: 8rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-footer-terms__list {
    display: flex;
    gap: 46rem;
  }
}
.c-footer-terms__link {
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-footer-terms__link:hover {
    opacity: 0.6;
  }
}

.c-fixed-entry {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 1000;
  backdrop-filter: blur(50px);
  --webkit-backdrop-filter: blur(50px);
  background-color: rgba(55, 55, 55, 0.15);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem;
  padding: 7rem;
}
.c-fixed-entry__link {
  display: grid;
  place-items: center;
  color: #171717;
  text-align: center;
  text-decoration: none;
  font-size: 13rem;
  height: 34rem;
}
.c-fixed-entry__link--newgraduate {
  background: #EA9900;
}
.c-fixed-entry__link--career {
  background: #EF7C03;
}

.c-button {
  display: inline-block;
}

.c-grid {
  display: grid;
}
@media screen and (min-width: 768px), print {
  .c-grid--half {
    grid-template-columns: repeat(2, 1fr);
    gap: 15rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-grid__col--pc-left {
    order: 1;
  }
  .c-grid__col--pc-right {
    order: 2;
  }
}

.c-number-list {
  display: grid;
  gap: 20rem;
}
@media screen and (min-width: 768px), print {
  .c-number-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 38rem;
  }
}
.c-number-list__item {
  background: #EA9900;
  padding: 20rem 16rem;
}
@media screen and (min-width: 768px), print {
  .c-number-list__item {
    padding: 32rem;
  }
}
.c-number-list__item:nth-of-type(2n) {
  background-color: #EF7C03;
}
.c-number-list__label {
  text-align: center;
  font-size: 12rem;
  display: block;
}
@media screen and (min-width: 768px), print {
  .c-number-list__label {
    text-align: left;
  }
}
.c-number-list__heading {
  font-size: 20rem;
  font-weight: 500;
  margin: 16rem 0;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .c-number-list__heading {
    text-align: left;
    margin: 20rem 0 32rem;
  }
}
.c-photo-grid {
  display: grid;
  gap: 40rem;
  align-items: start;
}
@media screen and (min-width: 768px), print {
  .c-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56rem 40rem;
  }
}
.c-photo-grid__item {
  display: grid;
}
.c-photo-grid__figure {
  order: -1;
}
.c-photo-grid__heading {
  font-size: 20rem;
  font-weight: 500;
  margin: 16rem 0;
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .c-photo-grid__heading {
    margin: 24rem 0 20rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-photo-grid__text {
    padding-right: 100rem;
  }
}

.c-mark-grid {
  display: grid;
  gap: 40rem;
}
@media screen and (min-width: 768px), print {
  .c-mark-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 56rem 42rem;
    align-items: start;
  }
}
.c-mark-grid__item {
  display: grid;
}
.c-mark-grid__figure {
  order: -1;
}
@media screen and (max-width: 767.98px) {
  .c-mark-grid__figure {
    padding: 0 32rem;
  }
}
.c-mark-grid__heading {
  font-size: 16rem;
  font-weight: 500;
  margin: 8rem 0 16rem;
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .c-mark-grid__heading {
    font-size: 17rem;
    margin: 24rem 0 20rem;
  }
}
.c-divider {
  margin: 40rem 0;
  display: block;
  border: none;
  background: rgba(112, 112, 112, 0.4);
  height: 1px;
  padding: 0;
}
@media screen and (min-width: 768px), print {
  .c-divider {
    margin: 76rem 0;
  }
}
@media screen and (max-width: 767.98px) {
  .c-divider--pc-only {
    background: none;
    margin-top: 0;
    height: 0;
  }
}
.c-divider:first-child {
  margin-top: 0;
}

.c-ja-en-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
.c-ja-en-title--border-top {
  border-top: 1px solid rgba(112, 112, 112, 0.4);
  padding-top: 40rem;
}
@media screen and (min-width: 768px), print {
  .c-ja-en-title--border-top {
    padding-top: 60rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-ja-en-title--spbr {
    flex-wrap: wrap;
    gap: 16rem;
  }
  .c-ja-en-title--spbr .c-ja-en-title-en {
    font-size: 30rem;
    line-height: 1.3;
  }
}
.c-ja-en-title-ja {
  font-size: 20rem;
  font-weight: 500;
  color: #EF7C03;
  line-height: 1.4;
}
@media screen and (min-width: 768px), print {
  .c-ja-en-title-ja {
    font-size: 28rem;
  }
}
.c-ja-en-title-ja--black {
  color: #373737;
}
.c-ja-en-title-en {
  font-size: 20rem;
}
@media screen and (min-width: 768px), print {
  .c-ja-en-title-en {
    font-size: 48rem;
  }
}

.c-photo-text {
  display: grid;
  gap: 40rem;
}
@media screen and (min-width: 768px), print {
  .c-photo-text {
    gap: 103rem;
  }
}
.c-photo-text + .c-photo-text {
  margin-top: 56rem;
}
@media screen and (min-width: 768px), print {
  .c-photo-text + .c-photo-text {
    margin-top: 100rem;
  }
}
.c-photo-text__photo {
  margin: 0 -24rem;
}
@media screen and (min-width: 768px), print {
  .c-photo-text__photo {
    margin: 0;
  }
}
.c-photo-text__img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px), print {
  .c-photo-text--photo-left {
    grid-template-columns: 548rem 1fr;
  }
  .c-photo-text--photo-left .c-photo-text__photo {
    order: 1;
  }
  .c-photo-text--photo-left .c-photo-text__body {
    order: 2;
  }
}
@media screen and (min-width: 768px), print {
  .c-photo-text--photo-right {
    grid-template-columns: 1fr 548rem;
  }
  .c-photo-text--photo-right .c-photo-text__photo {
    order: 2;
  }
  .c-photo-text--photo-right .c-photo-text__body {
    order: 1;
  }
}

.p-page-hero {
  padding: 30rem 0 60rem;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px), print {
  .p-page-hero {
    padding-top: 55rem;
  }
}
.p-page-hero:not(:has(figure)) {
  padding-bottom: 40rem;
}
@media screen and (min-width: 768px), print {
  .p-page-hero:not(:has(figure)) {
    padding-bottom: 120rem;
  }
}
.p-page-hero__heading {
  font-family: "Krona One", "Noto Sans JP", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  font-size: 12rem;
  margin: 0 0 27rem;
}
@media screen and (min-width: 768px), print {
  .p-page-hero__heading {
    font-size: 20rem;
    margin-bottom: 50rem;
  }
}
.p-career-whyigp .p-page-hero .l-inner {
  display: grid;
}
.p-page-hero__title {
  font-size: 26rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 30rem;
}
@media screen and (min-width: 768px), print {
  .p-page-hero__title {
    font-size: 54rem;
    margin-bottom: 40rem;
  }
}
@media screen and (max-width: 767.98px) {
  .p-page-hero__title .u-en {
    display: block;
    margin-bottom: 8rem;
  }
}
.p-page-hero__text {
  font-size: 16rem;
}
@media screen and (min-width: 768px), print {
  .p-page-hero__text {
    font-size: 17rem;
    max-width: 870rem;
  }
}
.p-page-hero__image {
  margin: 30rem 0 0;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-page-hero__image {
    margin: 60rem 0 0;
  }
}
.p-project .p-page-hero__image, .p-hr-message .p-page-hero__image {
  margin-left: 0;
  margin-right: 0;
}
.p-ceo-message .p-page-hero__image {
  margin-left: 24rem;
  margin-right: 24rem;
}
@media screen and (min-width: 768px), print {
  .p-ceo-message .p-page-hero__image {
    margin: 94rem 0 0;
  }
}
@media screen and (max-width: 767.98px) {
  .p-page-hero__image--sp-square .p-page-hero__caption {
    bottom: 0;
    transform: translateY(50%);
  }
  .p-page-hero__image--sp-square .p-page-hero__caption.u-en {
    bottom: 0;
  }
  .p-page-hero__image--sp-square .p-page-hero__img {
    height: auto;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 767.98px) {
  .p-page-hero .l-inner .p-page-hero__image {
    margin: 30rem -24rem 0;
  }
}
.p-page-hero__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767.98px) {
  .p-page-hero__img {
    aspect-ratio: 355/180;
  }
  .p-project .p-page-hero__img {
    aspect-ratio: 376/240;
  }
}
@media screen and (min-width: 768px), print {
  .p-page-hero__img {
    height: 600rem;
  }
}
.p-page-hero__caption {
  font-size: 26rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 24rem;
  color: #ffffff;
  font-weight: 500;
}
.p-page-hero__caption.u-en {
  bottom: 10rem;
}
@media screen and (min-width: 768px), print {
  .p-page-hero__caption {
    font-size: 100rem;
    padding: 0 16rem;
    bottom: 50rem;
  }
  .p-page-hero__caption--2line {
    line-height: 1.1;
    bottom: 40rem !important;
  }
  .p-project .p-page-hero__caption {
    font-size: 42rem;
  }
  .p-project .p-page-hero__caption, .p-ceo-message .p-page-hero__caption {
    padding: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .p-page-hero__caption .l-inner {
    padding: 0;
  }
  .p-page-hero__caption--2line {
    line-height: 1.1;
    bottom: 15rem !important;
  }
  .p-project .p-page-hero__caption {
    position: static;
    padding: 0;
    margin: 32rem 24rem 0;
    font-size: 16rem;
    color: #171717;
  }
  .p-hr-message .p-page-hero__caption, .p-ceo-message .p-page-hero__caption {
    position: static;
    padding: 0;
    margin-top: 5rem;
    color: #ffffff;
  }
  .p-hr-message .p-page-hero__caption .l-inner, .p-ceo-message .p-page-hero__caption .l-inner {
    padding: 0;
  }
  .p-hr-message .p-page-hero__caption {
    padding: 0 24rem;
  }
}
.p-page-hero__caption--text-only {
  position: static;
  padding: 0;
}
.p-career-whyigp .p-page-hero__caption--text-only {
  order: 4;
}
.p-page-hero__tag-list {
  font-size: 12rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 20rem;
  margin: 0 0 30rem;
}
@media screen and (min-width: 768px), print {
  .p-page-hero__tag-list {
    margin: -20rem 0 40rem;
  }
}
.p-page-hero__meta {
  background: #EA9900;
  border-radius: 4rem;
  padding: 8rem 16rem;
}
@media screen and (min-width: 768px), print {
  .p-page-hero__meta {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-page-hero__meta-item {
  display: flex;
  align-items: center;
}
.p-page-hero__meta-term {
  border-right: 1px solid #171717;
  margin: 0 16rem 0 0;
  padding: 0 16rem 0 0;
  font-size: 12rem;
}
.p-page-hero__meta-desc {
  flex: 1;
}
.p-page-hero__position {
  background: #EA9900;
  border-radius: 4rem;
  padding: 8rem 16rem;
  margin: 0 0 16rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.98px) {
  .p-page-hero__position {
    order: 3;
    margin-top: 20rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-page-hero__position {
    margin-bottom: 40rem;
  }
}
.p-page-hero--sidephoto .l-inner {
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-page-hero--sidephoto .l-inner {
    min-height: 611rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-page-hero--sidephoto .p-page-hero__text {
    max-width: 560rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-page-hero--sidephoto .p-page-hero__image {
    margin: 0;
    width: 696rem;
    position: absolute;
    top: 0;
    right: -32rem;
  }
}
.p-page-hero--sidephoto .p-page-hero__img {
  height: auto;
  aspect-ratio: auto;
}
@media screen and (max-width: 767.98px) {
  .p-page-hero--sidephoto .p-page-hero__caption {
    bottom: 0;
    transform: translateY(50%);
  }
}
@media screen and (min-width: 768px), print {
  .p-page-hero--sidephoto .p-page-hero__caption {
    white-space: nowrap;
    margin-left: -644rem;
    padding: 0;
    bottom: 20rem;
  }
}

.c-voicelist {
  margin: 24rem 0 0;
  padding: 32rem 20rem;
  border: 1px solid #EF7C03;
  background: #fff;
  display: grid;
  gap: 40rem;
}
@media screen and (min-width: 768px), print {
  .c-voicelist {
    grid-template-columns: repeat(2, 1fr);
    gap: 32rem 88rem;
    padding: 32rem 64rem 40rem;
  }
}
.c-voicelist__heading {
  color: #EF7C03;
  font-size: 16rem;
  font-weight: 500;
  margin: 0;
}
@media screen and (min-width: 768px), print {
  .c-voicelist__heading {
    font-size: 20rem;
    display: flex;
    gap: 52rem;
    align-items: center;
    grid-column: span 2;
  }
}
.c-voicelist__heading-label {
  font-size: 12rem;
  font-weight: 400;
  display: block;
  margin-bottom: 8rem;
}
@media screen and (min-width: 768px), print {
  .c-voicelist__heading-label {
    margin: 0;
  }
}
.c-voicelist__body {
  display: grid;
  gap: 30rem;
}
@media screen and (min-width: 768px), print {
  .c-voicelist__body {
    grid-template-columns: 94rem 1fr;
    position: relative;
  }
  .c-voicelist__body:nth-of-type(2n+1)::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: -44rem;
    top: 0;
    background: #EF7C03;
  }
}
.c-voicelist__icon {
  text-align: center;
}
.c-voicelist__icon-img {
  width: 73rem;
}
@media screen and (min-width: 768px), print {
  .c-voicelist__icon-img {
    width: 100%;
  }
}
.c-voicelist__text {
  font-size: 15rem;
}

.c-growth__figure {
  margin-top: 25rem;
}
@media screen and (min-width: 768px), print {
  .c-growth__figure {
    margin: 90rem 0 0 64rem;
    position: relative;
  }
}
@media screen and (min-width: 768px), print {
  .c-growth__img {
    width: 675rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-growth__caption {
    position: absolute;
    left: 690rem;
    bottom: 15rem;
    right: 0;
    top: 0;
  }
}
.c-growth__list {
  margin-top: 35rem;
  display: grid;
  gap: 20rem;
}
@media screen and (min-width: 768px), print {
  .c-growth__list {
    display: block;
  }
}
@media screen and (min-width: 768px), print {
  .c-growth__col {
    position: absolute;
    width: 100%;
  }
  .c-growth__col:nth-of-type(1) {
    left: 0;
    top: 151rem;
  }
  .c-growth__col:nth-of-type(2) {
    left: 0;
    top: 282rem;
  }
  .c-growth__col:nth-of-type(3) {
    left: 0;
    top: 414rem;
  }
}
.c-growth__term {
  font-size: 16rem;
  font-weight: 500;
  margin-bottom: 10rem;
  color: #EF7C03;
}
@media screen and (min-width: 768px), print {
  .c-growth__term {
    font-size: 28rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px), print {
  .c-growth__desc {
    line-height: 1.7;
  }
}/*# sourceMappingURL=common.css.map */