body {
  background-image: linear-gradient(90deg, #0064bb, #074097);
}

.main {
  line-height: 1.7;
}

.wrapper {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}
@media only screen and (max-width: 767px) {
  .wrapper {
    width: 92%;
  }
}

.under-section {
  background: #E6ECF5;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  overflow: clip;
}

.titleType01 {
  font-size: 3rem;
  font-weight: bold;
  color: #074097;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .titleType01 {
    font-size: 4.8rem;
  }
}

.titleType02 {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.titleType02 .en {
  writing-mode: vertical-rl;
  font-size: 4rem;
  font-weight: bold;
  color: #074097;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .titleType02 .en {
    font-size: 6rem;
  }
}
.titleType02 .ja {
  writing-mode: vertical-rl;
  font-size: 2rem;
  color: #074097;
  line-height: 1;
  margin-right: 1rem;
  letter-spacing: 0.4rem;
}
@media only screen and (max-width: 767px) {
  .titleType02 .ja {
    font-size: 2.8rem;
    margin-right: 1.5rem;
    letter-spacing: 0.6rem;
  }
}

.titleType03 {
  display: flex;
  align-items: center;
  gap: 7rem;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .titleType03 {
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 5rem;
  }
}
.titleType03__en {
  font-size: 8rem;
  font-weight: bold;
  color: #000;
  line-height: 1;
  color: #074097;
}
@media only screen and (max-width: 767px) {
  .titleType03__en {
    font-size: 6.8rem;
    width: 100%;
  }
}
.titleType03__ja {
  position: relative;
  color: #074097;
  margin-top: 2rem;
  padding-left: 12rem;
}
@media only screen and (max-width: 767px) {
  .titleType03__ja {
    padding-left: 18rem;
  }
}
.titleType03__ja::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 2px;
  width: 10rem;
  background-color: #074097;
}
@media only screen and (max-width: 767px) {
  .titleType03__ja::before {
    width: 15rem;
  }
}

.linkType01 {
  position: relative;
  cursor: pointer;
}
.linkType01.white .linkType01__icon::before {
  background-color: #074097;
}
.linkType01.white .linkType01__icon span {
  background-color: #fff;
}
.linkType01.white .linkType01__icon span::after {
  background-image: url("../img/common/icon_arrow_blue.svg");
}
.linkType01.white .linkType01__icon span::before {
  background-image: url("../img/common/icon_arrow_white.svg");
}
.linkType01:hover .linkType01__icon::before {
  opacity: 1;
  transform: scale(1);
}
.linkType01:hover .linkType01__icon span::before {
  left: 0;
  opacity: 1;
}
.linkType01:hover .linkType01__icon span::after {
  right: -2rem;
  opacity: 0;
}
.linkType01__icon {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .linkType01__icon {
    right: 3rem;
    bottom: 3rem;
    width: 5rem;
    height: 5rem;
  }
}
.linkType01__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: auto;
  z-index: 2;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
  transform: scale(0);
}
.linkType01__icon span {
  position: relative;
  display: block;
  width: inherit;
  height: inherit;
  background-color: #074097;
  border-radius: 50%;
}
.linkType01__icon span::before, .linkType01__icon span::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.1rem;
  height: 1rem;
  background-image: url("../img/common/icon_arrow_white.svg");
  background-size: cover;
  z-index: 4;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .linkType01__icon span::before, .linkType01__icon span::after {
    width: 2rem;
    height: 1.8rem;
  }
}
.linkType01__icon span::before {
  background-image: url("../img/common/icon_arrow_blue.svg");
  opacity: 0;
  left: -2rem;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.mvType01 {
  position: relative;
  height: 61rem;
  background-image: url("../img/common/under_mv_bg.png");
  background-position: center 0;
  background-size: cover;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
}
@media only screen and (max-width: 767px) {
  .mvType01 {
    background-image: url("../img/common/under_mv_bg_sp.png");
    height: unset;
    margin-bottom: 7rem;
  }
}
.mvType01__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 15rem 0 2rem;
}
@media only screen and (max-width: 767px) {
  .mvType01__inner {
    padding: 18rem 0 8rem;
  }
}
.mvType01__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .mvType01__heading {
    align-items: center;
    flex-direction: column;
  }
}
.mvType01__img {
  width: 36rem;
  animation: zoomIn 1s ease 0.8s 1 alternate forwards;
  opacity: 0;
}
.mvType01__texts {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .mvType01__texts {
    text-align: left;
    width: 100%;
    gap: 5rem;
    order: -1;
    margin-bottom: 10rem;
  }
}
.mvType01__texts .en {
  font-size: 8rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
.mvType01__texts .sub {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .mvType01__texts .sub {
    gap: 2rem;
  }
}
.mvType01__texts .line {
  display: block;
  flex-shrink: 0;
  width: 10rem;
  height: 1px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .mvType01__texts .line {
    width: 15rem;
  }
}
.mvType01__texts .ja {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .mvType01__texts .ja {
    font-size: 3rem;
  }
}
.mvType01__breadcrumb {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .mvType01__breadcrumb {
    position: absolute;
    bottom: -8rem;
  }
}
.mvType01__breadcrumb .parent, .mvType01__breadcrumb .current {
  font-size: 1.2rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .mvType01__breadcrumb .parent, .mvType01__breadcrumb .current {
    color: #074097;
    font-size: 2.4rem;
  }
}
.mvType01__breadcrumb .sep {
  display: block;
  width: 1px;
  height: 1.5rem;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .mvType01__breadcrumb .sep {
    background-color: #074097;
  }
}

.mvType02 {
  position: relative;
  background-color: #074097;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  padding: 15rem 1.5rem 1.5rem;
}
@media only screen and (max-width: 767px) {
  .mvType02 {
    padding: 20rem 4% 4%;
    margin-bottom: 7rem;
  }
}
.mvType02__inner {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 0 10rem;
  gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .mvType02__inner {
    padding: 0 0 8rem;
    max-width: unset;
    width: 100%;
  }
}
.mvType02__texts {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .mvType02__texts {
    display: block;
  }
}
.mvType02__texts .en {
  font-size: 8rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
.mvType02__texts .sub {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .mvType02__texts .sub {
    justify-content: flex-end;
    gap: 2rem;
    margin-top: 6rem;
  }
}
.mvType02__texts .line {
  display: block;
  flex-shrink: 0;
  width: 10rem;
  height: 1px;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .mvType02__texts .line {
    width: 15rem;
  }
}
.mvType02__texts .ja {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .mvType02__texts .ja {
    font-size: 3rem;
  }
}
.mvType02__breadcrumb {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .mvType02__breadcrumb {
    position: absolute;
    bottom: -8rem;
  }
}
.mvType02__breadcrumb .parent, .mvType02__breadcrumb .current {
  font-size: 1.2rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .mvType02__breadcrumb .parent, .mvType02__breadcrumb .current {
    color: #074097;
    font-size: 2.4rem;
  }
}
.mvType02__breadcrumb .parent .text01, .mvType02__breadcrumb .current .text01 {
  display: none;
}
.mvType02__breadcrumb .sep {
  display: block;
  width: 1px;
  height: 1.5rem;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .mvType02__breadcrumb .sep {
    background-color: #074097;
  }
}
.mvType02__img {
  overflow: hidden;
  border-radius: 3rem;
}
@media only screen and (max-width: 767px) {
  .mvType02__img {
    height: 72rem;
  }
  .mvType02__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
  }
}
.mvType02__interviewDetail {
  position: absolute;
  bottom: 14rem;
  left: 6rem;
}
@media only screen and (max-width: 767px) {
  .mvType02__interviewDetail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6rem 0 2rem 0;
    height: 72rem;
    bottom: 20rem;
    left: 3rem;
  }
}
.mvType02__interviewDetail.right {
  left: auto;
  right: 6rem;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .mvType02__interviewDetail.right {
    right: 3rem;
  }
}
.mvType02__interviewDetail.right .nmb {
  margin-right: 2rem;
}
@media only screen and (max-width: 767px) {
  .mvType02__interviewDetail.right .nmb {
    margin-right: 4rem;
  }
}
.mvType02__interviewDetail .nmb {
  font-weight: bold;
  font-size: 18rem;
  color: #074097;
  line-height: 0.8;
  font-style: italic;
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 768px) {
  .mvType02__interviewDetail .title_wrap {
    display: table-cell;
    vertical-align: middle;
    height: 19rem;
  }
}
.mvType02__interviewDetail .title {
  display: inline;
  font-weight: bold;
  font-size: 4rem;
  color: #fff;
  padding: 0.7rem;
  background-image: linear-gradient(90deg, #0064bb, #074097);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .mvType02__interviewDetail .title {
    font-size: 5.2rem;
    letter-spacing: -1.5px;
    padding: 1rem 0.5rem 1rem 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .mvType02__interviewDetail .title.small {
    line-height: 1.9;
    font-size: 4rem;
  }
}
.mvType02__interviewDetail__info {
  position: absolute;
  bottom: 4rem;
  left: 6rem;
}
@media only screen and (max-width: 767px) {
  .mvType02__interviewDetail__info {
    position: static;
  }
}
.mvType02__interviewDetail__info.right {
  left: auto;
  right: 6rem;
}
.mvType02__interviewDetail__info .inner {
  display: inline-flex;
  padding: 1rem 8rem 1rem 2rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #074097;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .mvType02__interviewDetail__info .inner {
    display: block;
    border-radius: 2rem;
    padding: 2rem 3rem;
  }
}
.mvType02__interviewDetail__info .year {
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .mvType02__interviewDetail__info .year {
    font-size: 2.8rem;
  }
}
.mvType02__interviewDetail__info .text {
  font-size: 1.8rem;
  margin-top: 0.8rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .mvType02__interviewDetail__info .text {
    font-size: 2.6rem;
  }
}
.mvType02__interviewDetail__info .text .text02 {
  display: none;
}

.listType01 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .listType01 {
    gap: 4rem;
  }
}
.listType01__item {
  display: flex;
  background: #fff;
  border-radius: 2rem;
}
@media only screen and (max-width: 767px) {
  .listType01__item {
    display: block;
  }
}
.listType01__num {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
  width: 6rem;
  font-weight: bold;
  color: #074097;
  border-right: 1px solid #074097;
}
@media only screen and (max-width: 767px) {
  .listType01__num {
    width: 100%;
    font-size: 3.2rem;
    padding: 1rem 3.5rem;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid #074097;
  }
}
.listType01__content {
  flex: 1;
  display: flex;
  align-items: stretch;
  gap: 6rem;
  padding: 2rem 2rem 2rem 6rem;
}
@media only screen and (max-width: 767px) {
  .listType01__content {
    flex-direction: column;
    padding: 3.5rem;
    gap: 4rem;
  }
}
.listType01__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .listType01__body {
    gap: 1rem;
  }
}
.listType01__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .listType01__title {
    font-size: 3.6rem;
  }
}
.listType01__img {
  flex-shrink: 0;
  width: 42rem;
  border-radius: 2rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .listType01__img {
    width: 100%;
  }
}
.listType01__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.34;
}

.interviewList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 8rem;
}
@media only screen and (max-width: 767px) {
  .interviewList {
    display: flex;
    gap: 6rem;
    flex-direction: column;
  }
}
.interviewList__item {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .interviewList__item:nth-of-type(3n-1) {
    margin-top: 5rem;
  }
  .interviewList__item:nth-of-type(3n) {
    margin-top: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .interviewList__item {
    width: 84%;
  }
  .interviewList__item:nth-child(even) {
    margin-left: auto;
  }
}
.interviewList__item a {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .interviewList__item a:hover .interviewList__img img {
    transform: scale(1.1);
  }
}
.interviewList__num {
  position: absolute;
  top: 0.5rem;
  left: 0;
  font-size: 8rem;
  font-style: italic;
  font-weight: bold;
  color: #074097;
  line-height: 1;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .interviewList__num {
    font-size: 12rem;
    top: 1rem;
  }
}
.interviewList__img {
  overflow: hidden;
  border-radius: 2rem;
}
.interviewList__img img {
  transition: all ease-in-out 0.3s;
  transform-origin: center 8rem;
}
.interviewList__detail {
  padding: 2.5rem;
  background-image: linear-gradient(26deg, #0029b0, #0047b5 48%, #0064bb 85%, #0029b0);
  color: #fff;
  border-radius: 2rem;
}
.interviewList__tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: #074097;
  margin-bottom: 2rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .interviewList__tag {
    font-size: 3.5rem;
    gap: 2rem;
  }
}
.interviewList__tag span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: normal;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .interviewList__tag span {
    font-size: 2.4rem;
    padding: 0.8rem 1.2rem;
  }
}
.interviewList__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .interviewList__dept {
    margin-top: 0.2rem;
  }
}

.contentType01__wrapper {
  display: flex;
  gap: 6rem;
}
@media only screen and (max-width: 767px) {
  .contentType01__wrapper {
    flex-direction: column;
    gap: 10rem;
  }
}
.contentType01 .sidebar {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 24rem;
  padding: 3rem;
  background-image: linear-gradient(90deg, #0064bb, #074097);
  align-self: flex-start;
  position: sticky;
  border-radius: 1rem;
  top: 10rem;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .contentType01 .sidebar {
    position: static;
    width: 100%;
    padding: 3rem;
    gap: 0;
  }
}
.contentType01 .sidebar__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.5rem 2rem;
  border: none;
  cursor: pointer;
  color: #fff;
  text-align: left;
  transition: background ease-in-out 0.3s, color ease-in-out 0.3s;
  border-radius: 1rem;
  border: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
  .contentType01 .sidebar__item {
    border-radius: 0;
    padding: 2rem 4rem;
  }
}
.contentType01 .sidebar__item::before {
  content: "";
}
@media print, screen and (min-width: 768px) {
  .contentType01 .sidebar__item::before {
    display: block;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #fff;
    transition: background ease-in-out 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  .contentType01 .sidebar__item::before {
    position: absolute;
    top: 0;
    right: 4rem;
    bottom: 0;
    margin: auto;
    background-image: url("../img/common/icon_arrow01.svg");
    width: 4rem;
    height: 4rem;
    background-size: cover;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.contentType01 .sidebar__item.is-active {
  background: #fff;
  color: #000;
}
@media print, screen and (min-width: 768px) {
  .contentType01 .sidebar__item.is-active::before {
    background: #074097;
  }
}
@media only screen and (max-width: 767px) {
  .contentType01 .sidebar__item.is-active::before {
    opacity: 1;
  }
}
.contentType01 .sidebar__item:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.15);
}
.contentType01 .mainContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: calc(100% - 30rem);
}
@media only screen and (max-width: 767px) {
  .contentType01 .mainContent {
    width: 100%;
  }
}

#page-recruitment .recruitment {
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment {
    padding-bottom: 18rem;
  }
}
#page-recruitment .recruitment__section:not(:first-child) {
  margin-top: 10rem;
}
#page-recruitment .recruitment__table {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
#page-recruitment .recruitment__row {
  display: flex;
}
#page-recruitment .recruitment__th {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding: 2rem;
  width: 18rem;
  line-height: 1.6;
  border-bottom: 1px solid #074097;
  border-right: 1px solid #074097;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__th {
    width: 27%;
    padding: 2.5rem;
    background: #f5f7fb;
    font-weight: bold;
    white-space: nowrap;
  }
}
#page-recruitment .recruitment__td {
  flex: 1;
  padding: 2rem;
  border-bottom: 1px solid #074097;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__td {
    padding: 4rem 2.5rem;
    font-size: 2.6rem;
  }
}
#page-recruitment .recruitment__td p {
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__td p {
    margin-top: 2.8rem;
  }
}
#page-recruitment .recruitment__td p:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__td p .ml {
    margin-left: -1rem;
  }
}
#page-recruitment .recruitment__item:not(:first-child) {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__item:not(:first-child) {
    margin-top: 2.8rem;
  }
}
#page-recruitment .recruitment__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  line-height: 1;
  background-color: #E6ECF5;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__badge {
    font-size: 2.6rem;
    padding: 1rem 1.5rem;
  }
}
#page-recruitment .recruitment__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
#page-recruitment .recruitment__head .btn {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 30rem;
  height: 10rem;
  background: #074097;
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
  font-size: 1.6rem;
  border: 1px solid #074097;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__head .btn {
    width: 100%;
    height: 12rem;
    padding: 0 4rem;
    font-size: 3.2rem;
  }
}
#page-recruitment .recruitment__head .btn:hover {
  background-color: #fff;
  color: #074097;
}
#page-recruitment .recruitment__head .btn .linkType01__icon {
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__head .btn .linkType01__icon {
    right: 4rem;
  }
}
#page-recruitment .recruitment__steps {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__steps {
    flex-wrap: wrap;
    gap: 3rem;
  }
}
#page-recruitment .recruitment__steps::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #074097;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__steps::before {
    width: 100%;
    width: 2px;
    height: 100%;
  }
}
#page-recruitment .recruitment__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 12rem;
  height: 12rem;
  background: #fff;
  border: 1px solid #074097;
  text-align: center;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__step {
    width: calc(100% - 2rem);
    border-radius: 2rem;
    margin-left: 2rem;
    align-items: flex-start;
    padding-left: 7rem;
  }
}
#page-recruitment .recruitment__step.final {
  background: #074097;
  border-color: #074097;
}
#page-recruitment .recruitment__step.final .name {
  color: #fff;
}
#page-recruitment .recruitment__step.final .num {
  border: 1px solid #fff;
}
#page-recruitment .recruitment__step .num {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #074097;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #page-recruitment .recruitment__step .num {
    top: 0;
    left: -2rem;
    bottom: 0;
    margin: auto;
    width: 6rem;
    height: 6rem;
    line-height: 6rem;
    font-size: 2.4rem;
    padding-right: 0.5rem;
  }
}
#page-recruitment .recruitment__step .name {
  font-weight: bold;
  color: #074097;
  line-height: 1.4;
}

#page-personality .personality {
  background: #E6ECF5;
}
#page-personality .personality .wrapper {
  display: flex;
  gap: 9rem;
  padding: 10rem 0 16rem;
}
@media only screen and (max-width: 767px) {
  #page-personality .personality .wrapper {
    gap: 4rem;
  }
}
#page-personality .personality .titleType02 {
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  #page-personality .personality .titleType02 {
    display: none;
  }
}
#page-personality .personality__list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12rem 6rem;
}
@media only screen and (max-width: 767px) {
  #page-personality .personality__list {
    grid-template-columns: 1fr;
    gap: 11rem;
  }
}
#page-personality .personality__item {
  display: flex;
}
#page-personality .personality__label {
  flex-shrink: 0;
  width: 12rem;
  background: #074097;
  display: flex;
  justify-content: center;
  padding: 3rem 4rem 0 0;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  #page-personality .personality__label {
    width: 20rem;
    padding: 6rem 7rem 0 0;
    border-radius: 2rem;
  }
}
#page-personality .personality__label p {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.4rem;
}
@media only screen and (max-width: 767px) {
  #page-personality .personality__label p {
    font-size: 3.4rem;
    letter-spacing: 0.6rem;
  }
}
@media only screen and (max-width: 767px) {
  #page-personality .personality__label p br {
    display: none;
  }
}
#page-personality .personality__content {
  position: relative;
  top: 6rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  margin-left: -4rem;
}
@media only screen and (max-width: 767px) {
  #page-personality .personality__content {
    margin-left: -8rem;
    padding: 4rem;
    border-radius: 2rem;
  }
}
#page-personality .personality__img {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  #page-personality .personality__img {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
#page-personality .personality__img img {
  width: 78%;
}
@media only screen and (max-width: 767px) {
  #page-personality .personality__img img {
    width: 100%;
  }
}
#page-personality .personality__num {
  font-size: 5rem;
  color: rgba(7, 64, 151, 0.2);
  margin: -1rem -1rem 0 0;
}
@media only screen and (max-width: 767px) {
  #page-personality .personality__num {
    font-size: 10rem;
    width: 100%;
    text-align: right;
    order: -1;
    line-height: 1;
    margin-bottom: 1.5rem;
  }
}
#page-personality .message {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background-color: #074097;
  padding: 15rem 0;
  border-radius: 3rem;
}
#page-personality .message__title {
  display: flex;
  align-items: flex-end;
  gap: 4rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  #page-personality .message__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}
#page-personality .message__ja {
  font-size: 6rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  #page-personality .message__ja {
    font-size: 5.2rem;
  }
}
#page-personality .message__sub {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  padding-bottom: 0.8rem;
}
@media only screen and (max-width: 767px) {
  #page-personality .message__sub {
    width: 100%;
    padding-bottom: 0;
    justify-content: flex-end;
    margin-top: 2rem;
  }
}
#page-personality .message__line {
  width: 10rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 767px) {
  #page-personality .message__line {
    width: 15rem;
  }
}
#page-personality .message__en {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #page-personality .message__en {
    font-size: 3rem;
  }
}
#page-personality .message__lead {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #page-personality .message__lead {
    font-size: 3.4rem;
  }
}
#page-personality .message__texts {
  margin-top: 8rem;
}
@media only screen and (max-width: 767px) {
  #page-personality .message__texts {
    margin-top: 10rem;
  }
}
#page-personality .message__text {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  #page-personality .message__text {
    margin-top: 4rem;
  }
}

#page-interview .interview__body {
  padding: 10rem 0 18rem;
}
#page-interview .interview__container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media only screen and (max-width: 767px) {
  #page-interview .interview__container {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 767px) {
  #page-interview .interview__container .interviewList:nth-child(even) .interviewList__item:nth-child(odd) {
    margin-left: auto;
  }
  #page-interview .interview__container .interviewList:nth-child(even) .interviewList__item:nth-child(even) {
    margin-left: 0;
  }
}

#page-interview-detail .mvType02__breadcrumb {
  position: absolute;
  bottom: -4rem;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .mvType02__breadcrumb {
    bottom: -8rem;
  }
}
#page-interview-detail .mvType02__breadcrumb .parent, #page-interview-detail .mvType02__breadcrumb .current {
  color: #074097;
}
#page-interview-detail .mvType02__breadcrumb .sep {
  background: #074097;
}
@media print, screen and (min-width: 768px) {
  #page-interview-detail .sidebar {
    gap: 1.5rem;
    padding: 5rem 3rem;
  }
  #page-interview-detail .sidebar .sidebar__item {
    padding: 0;
    background-color: unset;
    border: none;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
  }
  #page-interview-detail .sidebar .sidebar__item::before {
    opacity: 0;
  }
  #page-interview-detail .sidebar .sidebar__item:hover, #page-interview-detail .sidebar .sidebar__item.is-active {
    color: #fff;
  }
  #page-interview-detail .sidebar .sidebar__item:hover::before, #page-interview-detail .sidebar .sidebar__item.is-active::before {
    opacity: 1;
    background: #fff;
  }
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .sidebar {
    display: none;
  }
}
#page-interview-detail .interview-detail__content {
  padding: 10rem 0 20rem;
}
#page-interview-detail .interview-detail__body > *:first-child {
  margin-top: 0 !important;
}
#page-interview-detail .interview-detail__body .title {
  font-size: 2rem;
  font-weight: bold;
  color: #074097;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__body .title {
    font-size: 3.6rem;
    margin-top: 7rem;
  }
}
#page-interview-detail .interview-detail__body .text {
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__body .text {
    margin-top: 4rem;
  }
}
#page-interview-detail .interview-detail__body .photo {
  margin: 6rem 0 5rem;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__body .photo {
    margin: 9rem 0 8rem;
  }
}
#page-interview-detail .interview-detail__message {
  position: relative;
  background: #E6ECF5;
  margin-top: 8rem;
  padding-bottom: 12rem;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__message {
    padding-bottom: 0;
  }
}
#page-interview-detail .interview-detail__message .inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
#page-interview-detail .interview-detail__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
#page-interview-detail .interview-detail__heading .en {
  font-size: 8rem;
  font-weight: bold;
  color: #074097;
}
#page-interview-detail .interview-detail__heading .sub {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__heading .sub {
    justify-content: flex-end;
    gap: 2rem;
    width: 100%;
    margin-top: 2rem;
  }
}
#page-interview-detail .interview-detail__heading .line {
  display: block;
  flex-shrink: 0;
  width: 10rem;
  height: 1px;
  background: #074097;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__heading .line {
    width: 15rem;
  }
}
#page-interview-detail .interview-detail__heading .ja {
  font-size: 2rem;
  color: #074097;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__heading .ja {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__info figure img {
    height: 58rem;
    object-fit: cover;
    border-radius: 3rem;
  }
}
#page-interview-detail .interview-detail__texts {
  position: absolute;
  left: 4rem;
  bottom: 0;
  width: 65%;
  padding: 3rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #074097;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__texts {
    width: calc(100% - 8rem);
    padding: 4rem;
    position: relative;
    left: auto;
    margin: -16rem 4rem 0 4rem;
  }
}
#page-interview-detail .interview-detail__texts .sub {
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__texts .sub {
    font-size: 3.6rem;
  }
}
#page-interview-detail .interview-detail__texts .text {
  font-size: 1.8rem;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__texts .text {
    font-size: 2.8rem;
  }
}
#page-interview-detail .interview-detail__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  margin-top: 6rem;
}
#page-interview-detail .interview-detail__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__pagination {
    gap: 1rem;
  }
}
#page-interview-detail .interview-detail__pagination .item {
  height: 3rem;
  line-height: 3rem;
  width: 3rem;
  text-align: center;
  color: #fff;
  border-radius: 0.5rem;
  background-color: rgba(7, 64, 151, 0.4);
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__pagination .item {
    width: 6rem;
    height: 6rem;
    line-height: 6rem;
  }
}
#page-interview-detail .interview-detail__pagination .item.current {
  background-color: #074097;
}
#page-interview-detail .interview-detail__back {
  padding: 1.5rem 5rem 1.5rem 1.5rem;
  border-radius: 0.5rem;
  background-color: #fff;
  border: 1px solid #074097;
  font-weight: bold;
  color: #074097;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__back {
    padding: 3rem 8rem 3rem 3rem;
  }
}
#page-interview-detail .interview-detail__back .linkType01__icon {
  top: 0;
  right: 1rem;
  bottom: 0;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #page-interview-detail .interview-detail__back .linkType01__icon {
    right: 2rem;
  }
}

#page-qa .qa__body {
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  #page-qa .qa__body {
    padding: 10rem 0 18rem;
  }
}
#page-qa .qa__container {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media only screen and (max-width: 767px) {
  #page-qa .qa__container {
    gap: 5rem;
  }
}
#page-qa .qa__item {
  margin-top: 1rem;
}
#page-qa .qa__item.is-open .qa__toggle {
  background-color: #888888;
}
#page-qa .qa__item.is-open .qa__toggle::before {
  opacity: 0;
  transform: rotate(-90deg);
}
#page-qa .qa__item.is-open .qa__toggle::after {
  transform: rotate(-90deg);
}
#page-qa .qa__question {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  padding: 0;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid #074097;
  min-height: 7rem;
  transition: background ease-in-out 0.3s;
}
#page-qa .qa__question:hover {
  background: #f5f7fb;
}
.qa__item.is-open #page-qa .qa__question {
  background: #f5f7fb;
}
#page-qa .qa__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 6.5rem;
  background: #074097;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  #page-qa .qa__icon {
    width: 5rem;
    font-size: 3rem;
    width: 8rem;
  }
}
#page-qa .qa__text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 5rem 2rem 2.5rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  #page-qa .qa__text {
    padding: 5rem 8rem 5rem 3rem;
    font-size: 2.8rem;
  }
}
#page-qa .qa__toggle {
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 3rem;
  width: 3rem;
  background: #074097;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  #page-qa .qa__toggle {
    width: 5rem;
    height: 5rem;
  }
}
#page-qa .qa__toggle::before, #page-qa .qa__toggle::after {
  content: "";
  position: absolute;
  background: #fff;
  transition: all ease-in-out 0.3s;
}
#page-qa .qa__toggle::before {
  width: 1.5rem;
  height: 2px;
}
@media only screen and (max-width: 767px) {
  #page-qa .qa__toggle::before {
    width: 2.5rem;
  }
}
#page-qa .qa__toggle::after {
  width: 2px;
  height: 1.5rem;
}
@media only screen and (max-width: 767px) {
  #page-qa .qa__toggle::after {
    height: 2.5rem;
  }
}
#page-qa .qa__answer {
  display: none;
}
#page-qa .qa__answer .qa__icon {
  background: #000000;
}
#page-qa .qa__answer .qa__text {
  padding: 2rem 2.5rem;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  #page-qa .qa__answer .qa__text {
    padding: 5rem 3rem;
  }
}
#page-qa .qa__inner {
  display: flex;
  align-items: stretch;
  min-height: 7rem;
  background: #fff;
}

#page-benefits .benefits-inner {
  display: flex;
  gap: 9rem;
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  #page-benefits .benefits-inner {
    gap: 4rem;
  }
}
#page-benefits .titleType02 {
  flex-shrink: 0;
}
#page-benefits .benefits {
  background: #E6ECF5;
}
#page-benefits .benefits__cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
@media only screen and (max-width: 767px) {
  #page-benefits .benefits__cards {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
#page-benefits .benefits__card {
  background: #fff;
  padding: 2rem 0;
  border-radius: 1rem;
}
@media only screen and (max-width: 767px) {
  #page-benefits .benefits__card {
    padding: 0;
  }
}
#page-benefits .benefits__card.explain {
  padding: 0;
}
#page-benefits .benefits__img {
  width: 70%;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #page-benefits .benefits__img {
    width: 16rem;
    margin: 0;
  }
}
#page-benefits .benefits__head {
  border-bottom: 1px solid #074097;
}
@media only screen and (max-width: 767px) {
  #page-benefits .benefits__head {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem;
  }
}
#page-benefits .benefits__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
  padding: 0 2rem 2rem;
  margin-top: 2rem;
  height: 7rem;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #page-benefits .benefits__title {
    font-size: 3.6rem;
    padding: 0;
    margin: 0;
  }
}
#page-benefits .benefits__title small {
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  #page-benefits .benefits__title small {
    font-size: 2.6rem;
    letter-spacing: -1px;
  }
}
#page-benefits .benefits__text {
  margin-top: 2rem;
  color: #000;
  padding: 0 2rem;
}
@media only screen and (max-width: 767px) {
  #page-benefits .benefits__text {
    font-size: 2.6rem;
    padding: 4rem;
    margin-top: 0;
  }
}
#page-benefits .event {
  border-radius: 3rem;
  background-image: url("../img/benefits/event_bg.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #page-benefits .event {
    border-radius: 8rem;
    background-image: url("../img/benefits/event_bg_sp.png");
    gap: 4rem;
  }
}
#page-benefits .event .titleType02 .en, #page-benefits .event .titleType02 .ja {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #page-benefits .event .benefits-inner {
    padding-top: 20rem;
  }
}
#page-benefits .event__text {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  #page-benefits .event__img {
    width: 127%;
    margin-left: -22%;
  }
}
@media only screen and (max-width: 767px) {
  #page-benefits .training .benefits-inner {
    padding-bottom: 22rem;
  }
}

@keyframes floatRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(110vw);
  }
}
@keyframes floatRightSp {
  from {
    transform: translateX(-180%);
  }
  to {
    transform: translateX(150vw);
  }
}
#page-philosophy .philosophy__inner {
  position: relative;
  display: flex;
  gap: 6rem;
  padding: 10rem 0;
  z-index: 3;
}
#page-philosophy .philosophy__content {
  position: relative;
  display: flex;
  flex: 1;
  margin-top: -2rem;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__content {
    margin-top: 0;
    padding-bottom: 90rem;
  }
  #page-philosophy .philosophy__content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -30vw;
    width: 30rem;
    height: 90rem;
    background-image: linear-gradient(90deg, #E6ECF5 45%, transparent);
    z-index: 2;
  }
}
#page-philosophy .philosophy__inner .titleType02 {
  position: relative;
  z-index: 3;
}
#page-philosophy .philosophy__content {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #page-philosophy .philosophy__content::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    left: -50vw;
    width: 80vw;
    background-color: #E6ECF5;
    z-index: 2;
  }
}
#page-philosophy .philosophy__info {
  position: relative;
  z-index: 2;
  padding-right: 10rem;
  background-image: linear-gradient(90deg, #E6ECF5 84%, transparent);
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__info {
    padding-right: 0;
  }
}
#page-philosophy .philosophy__title {
  font-size: 4.2rem;
  font-weight: bold;
  color: #074097;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__title {
    font-size: 4.8rem;
    margin-bottom: 7rem;
  }
}
#page-philosophy .philosophy__texts {
  font-size: 1.7rem;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__texts {
    line-height: 1.7;
    font-size: 3.2rem;
  }
}
#page-philosophy .philosophy__photos {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__photos {
    top: unset;
    right: unset;
    left: unset;
    bottom: 93rem;
  }
}
#page-philosophy .philosophy__photos figure {
  position: absolute;
  left: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  will-change: transform;
}
#page-philosophy .philosophy__photos .item01 {
  top: 32rem;
  width: 18rem;
  animation: floatRight 36s -10s linear infinite;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__photos .item01 {
    animation: floatRightSp 36s -2s linear infinite;
  }
}
#page-philosophy .philosophy__photos .item06 {
  top: 32rem;
  width: 18rem;
  animation: floatRight 36s -28s linear infinite;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__photos .item06 {
    animation: floatRightSp 36s -18s linear infinite;
  }
}
#page-philosophy .philosophy__photos .item02 {
  top: 10rem;
  width: 40rem;
  animation: floatRight 38s -20s linear infinite;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__photos .item02 {
    animation: floatRightSp 38s -15s linear infinite;
  }
}
#page-philosophy .philosophy__photos .item07 {
  top: 10rem;
  width: 40rem;
  animation: floatRight 38s -40s linear infinite;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__photos .item07 {
    animation: floatRightSp 38s -32s linear infinite;
  }
}
#page-philosophy .philosophy__photos .item03 {
  top: 46rem;
  width: 25rem;
  animation: floatRight 35s -15s linear infinite;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__photos .item03 {
    animation: floatRightSp 35s -8s linear infinite;
  }
}
#page-philosophy .philosophy__photos .item08 {
  top: 46rem;
  width: 25rem;
  animation: floatRight 35s -33s linear infinite;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__photos .item08 {
    animation: floatRightSp 35s -24s linear infinite;
  }
}
#page-philosophy .philosophy__photos .item04 {
  top: 62rem;
  width: 28rem;
  animation: floatRight 35s -9s linear infinite;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__photos .item04 {
    animation: floatRightSp 34s -2s linear infinite;
  }
}
#page-philosophy .philosophy__photos .item09 {
  top: 62rem;
  width: 28rem;
  animation: floatRight 35s 9s linear infinite;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__photos .item09 {
    animation: floatRightSp 33s -18s linear infinite;
  }
}
#page-philosophy .philosophy__photos .item05 {
  top: 65rem;
  width: 30rem;
  animation: floatRight 36s -20s linear infinite;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__photos .item05 {
    animation: floatRightSp 36s -15s linear infinite;
  }
}
#page-philosophy .philosophy__photos .item10 {
  top: 65rem;
  width: 30rem;
  animation: floatRight 36s -38s linear infinite;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .philosophy__photos .item10 {
    animation: floatRightSp 36s -30s linear infinite;
  }
}
#page-philosophy .message {
  background: #fff;
  padding: 15rem 0;
  border-radius: 3rem;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .message {
    padding-bottom: 18rem;
  }
}
#page-philosophy .message__inner .titleType03 {
  margin-bottom: 20rem;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .message__inner .titleType03 {
    margin-bottom: 12rem;
  }
}
#page-philosophy .message__body {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .message__body {
    flex-direction: column;
    gap: 6rem;
  }
}
#page-philosophy .message__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
#page-philosophy .message__lead {
  font-size: 3rem;
  font-weight: bold;
  color: #074097;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .message__lead {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}
#page-philosophy .message__text {
  color: #000;
}
#page-philosophy .message__ceo {
  flex-shrink: 0;
  width: 45rem;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .message__ceo {
    width: 75%;
    margin: auto;
  }
}
#page-philosophy .message__photo {
  overflow: hidden;
  border-radius: 1rem;
}
#page-philosophy .message__photo img {
  width: 100%;
  height: auto;
  display: block;
}
#page-philosophy .message__name {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .message__name {
    margin-top: 5rem;
  }
}
#page-philosophy .message__name .position {
  display: block;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .message__name .position {
    font-size: 2.5rem;
  }
}
#page-philosophy .message__name .name {
  display: block;
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  #page-philosophy .message__name .name {
    font-size: 3.6rem;
  }
}

@media only screen and (max-width: 767px) {
  #page-business .mvType02__img {
    height: auto;
  }
}
#page-business .business {
  padding: 10rem 0;
}
#page-business .business__section {
  padding: 15rem 0;
  position: relative;
}
#page-business .business__section.margin {
  padding: 20rem 0;
}
@media only screen and (max-width: 767px) {
  #page-business .business__section.margin {
    padding: 8rem 0;
  }
}
@media only screen and (max-width: 767px) {
  #page-business .business__section {
    padding: 8rem 0;
  }
}
#page-business .business__section:first-child {
  padding-top: 0;
}
#page-business .business__section:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  height: 100%;
  width: 200vw;
  background: #fff;
}
#page-business .business__section:nth-child(even) .feature__item, #page-business .business__section:nth-child(even) .listType01__item {
  background-color: #E6ECF5;
}
#page-business .business__section:last-child {
  padding-bottom: 0;
}
#page-business .business__section:last-child::before {
  height: calc(100% + 10rem);
}
#page-business .intro__img {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}
#page-business .intro__img figcaption {
  position: absolute;
  top: 0;
  left: 7rem;
  bottom: 0;
  margin: auto;
  font-weight: bold;
  color: #074097;
  font-size: 3rem;
  height: 6.5rem;
  line-height: 6.5rem;
  padding: 0 2rem;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #page-business .intro__img figcaption {
    font-size: 4.8rem;
    height: 10rem;
    line-height: 10rem;
    padding: 0 3rem;
  }
}
#page-business .intro__text {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  #page-business .intro__text {
    margin-top: 5rem;
  }
}
#page-business .feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  #page-business .feature {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
#page-business .feature__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #page-business .feature__item {
    flex-direction: row;
  }
}
@media only screen and (max-width: 767px) {
  #page-business .feature__img {
    width: 34%;
    height: 100%;
  }
  #page-business .feature__img.position90 img {
    object-position: 90% 50%;
  }
  #page-business .feature__img.position70 img {
    object-position: 70% 50%;
  }
  #page-business .feature__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% 50%;
  }
}
#page-business .feature__body {
  display: flex;
  align-items: center;
  padding: 2rem;
  position: relative;
  padding-right: 4rem;
  flex-grow: 2;
}
@media only screen and (max-width: 767px) {
  #page-business .feature__body {
    height: 24rem;
    padding: 4rem;
  }
}
#page-business .feature__text {
  font-weight: bold;
}
#page-business .featureModal {
  display: none;
}
#page-business .schedule {
  margin-top: 6rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule {
    margin-top: 10rem;
  }
}
#page-business .schedule__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem 3rem;
  background-color: #fff;
  border-bottom: 1px solid #074097;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 3rem 5rem;
  }
}
#page-business .schedule__title {
  font-weight: bold;
  color: #074097;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__title {
    font-size: 3.2rem;
  }
}
#page-business .schedule__label {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__label {
    width: 100%;
    justify-content: flex-end;
    gap: 2rem;
  }
}
#page-business .schedule__line {
  display: block;
  width: 10rem;
  height: 1px;
  background-color: #074097;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__line {
    width: 15rem;
  }
}
#page-business .schedule__en {
  font-size: 1.2rem;
  color: #074097;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__en {
    font-size: 2.8rem;
  }
}
#page-business .schedule__info {
  background: #fff;
  padding: 5rem;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__info {
    padding: 3rem 5rem;
  }
}
#page-business .schedule__info .attention {
  margin: 2rem 0 0 2rem;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__info .attention {
    font-size: 2.4rem;
    padding-left: 2.4rem;
    text-indent: -2.4rem;
    margin-top: 4rem;
  }
}
#page-business .schedule__item {
  display: grid;
  grid-template-columns: 5.5rem 1.4rem 1fr;
  align-items: flex-start;
  gap: 0 2rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__item {
    grid-template-columns: 9.5rem 2.4rem 1fr;
  }
}
#page-business .schedule__item:not(:last-child) {
  padding-bottom: 3rem;
}
#page-business .schedule__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 8.2rem;
  top: 2.6rem;
  bottom: 0.4rem;
  width: 1px;
  background: repeating-linear-gradient(to bottom, #074097 0, #074097 4px, transparent 3px, transparent 7px);
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__item:not(:last-child)::after {
    left: 12.7rem;
    top: 5.6rem;
    bottom: 1.4rem;
  }
}
#page-business .schedule__time {
  font-size: 1.3rem;
  font-weight: bold;
  color: #074097;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__time {
    font-size: 2.8rem;
  }
}
#page-business .schedule__dot {
  width: 1.4rem;
  height: 1.4rem;
  background: #074097;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__dot {
    width: 2.4rem;
    height: 2.4rem;
    margin-top: 1rem;
  }
}
#page-business .schedule__dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.6rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__dot::after {
    width: 1rem;
    height: 1rem;
  }
}
#page-business .schedule__text b {
  font-weight: bold;
  margin-right: 1em;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__text b {
    display: block;
  }
}
#page-business .schedule__close {
  position: relative;
  height: 5rem;
  background-color: #074097;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__close {
    height: 7rem;
  }
}
#page-business .schedule__close.is-active::after {
  transform: rotate(-45deg);
}
#page-business .schedule__close::after {
  content: "";
  position: absolute;
  inset: 0.5rem 0 0 0;
  margin: auto;
  width: 1.8rem;
  height: 1.8rem;
  border-top: 0.4rem solid #fff;
  border-right: 0.4rem solid #fff;
  transform: rotate(-225deg);
}
@media only screen and (max-width: 767px) {
  #page-business .schedule__close::after {
    width: 2rem;
    height: 2rem;
  }
}
#page-business .listType01 {
  margin-top: 6rem;
}
#page-business .businessInterviewListSwiper {
  position: relative;
  margin-top: 6rem;
}
#page-business .businessInterviewListSwiper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  height: 100%;
  width: 100vw;
  background-color: #E6ECF5;
  z-index: 2;
}
#page-business .interviewList {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 6rem;
}
@media only screen and (max-width: 767px) {
  #page-business .interviewList {
    gap: 6rem;
  }
}
#page-business .interviewList__item {
  margin-top: 0 !important;
  width: 38%;
}
@media only screen and (max-width: 767px) {
  #page-business .interviewList__item {
    width: 80%;
    margin: auto;
  }
}

.featureModalContent .modaal-close {
  display: none;
}
.featureModalContent .modaal-container {
  width: 80vw;
  max-width: 900px;
}
@media only screen and (max-width: 767px) {
  .featureModalContent .modaal-container {
    width: calc(100vw - 50px);
  }
}
.featureModalContent .modaal-content-container {
  padding: 0;
}
.featureModalContent .businessFeatureModal {
  position: relative;
}
.featureModalContent .businessFeatureModal .swiper-slide {
  height: auto;
}
.featureModalContent .businessFeatureModal .swiper-slide .inner {
  display: flex;
  align-items: center;
  background-color: #fff;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .featureModalContent .businessFeatureModal .swiper-slide .inner {
    flex-direction: column;
    justify-content: space-between;
  }
}
.featureModalContent .businessFeatureModal .swiper-button-prev,
.featureModalContent .businessFeatureModal .swiper-button-next {
  height: 4rem;
  width: 4rem;
  right: -8rem;
}
@media only screen and (max-width: 767px) {
  .featureModalContent .businessFeatureModal .swiper-button-prev,
.featureModalContent .businessFeatureModal .swiper-button-next {
    top: auto;
    bottom: -10rem;
    width: 8rem;
    height: 8rem;
    right: 0;
  }
}
.featureModalContent .businessFeatureModal .swiper-button-prev::after,
.featureModalContent .businessFeatureModal .swiper-button-next::after {
  content: "";
  background-size: cover;
  width: 100%;
  height: 100%;
}
.featureModalContent .businessFeatureModal .swiper-button-prev {
  right: unset;
  left: -8rem;
}
@media only screen and (max-width: 767px) {
  .featureModalContent .businessFeatureModal .swiper-button-prev {
    left: 0;
  }
}
.featureModalContent .businessFeatureModal .swiper-button-prev::after {
  background-image: url("../img/business/icon_swiper_arrow.svg");
  transform: scale(-1, -1);
}
.featureModalContent .businessFeatureModal .swiper-button-next::after {
  background-image: url("../img/business/icon_swiper_arrow.svg");
}
.featureModalContent .businessFeatureModal__swiper {
  overflow: hidden;
}
.featureModalContent .businessFeatureModal__label {
  position: absolute;
  top: -6rem;
  left: 0;
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  height: 6rem;
  line-height: 6rem;
  padding: 0 2rem;
  background-color: #074097;
}
@media only screen and (max-width: 767px) {
  .featureModalContent .businessFeatureModal__label {
    font-size: 3.6rem;
    top: -8rem;
    height: 8rem;
    line-height: 8rem;
    padding: 0 3rem;
  }
}
.featureModalContent .businessFeatureModal__info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 56%;
  padding: 0 7rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .featureModalContent .businessFeatureModal__info {
    width: 100%;
    padding: 5rem;
  }
}
.featureModalContent .businessFeatureModal__info .title {
  font-weight: bold;
  color: #074097;
  font-size: 3rem;
  margin-bottom: 6rem;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .featureModalContent .businessFeatureModal__info .title {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}
.featureModalContent .businessFeatureModal__img {
  width: 44%;
}
@media only screen and (max-width: 767px) {
  .featureModalContent .businessFeatureModal__img {
    width: 100%;
  }
}

.modaal-overlay {
  background-color: rgba(0, 20, 50, 0.8) !important;
}

#page-career-path .career-path {
  padding: 10rem 0;
}
@media only screen and (max-width: 767px) {
  #page-career-path .career-path {
    padding-bottom: 18rem;
  }
}
#page-career-path .sidebar__item {
  white-space: nowrap;
}
#page-career-path .title01 {
  font-weight: bold;
  font-size: 2.4rem;
  color: #074097;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  #page-career-path .title01 {
    font-size: 4rem;
    margin-bottom: 3rem;
  }
}
#page-career-path .career__step {
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #page-career-path .career__step {
    flex-direction: column;
    gap: 5rem;
    margin-top: 10rem;
  }
}
#page-career-path .career__step .item {
  position: relative;
  width: 49%;
  background-color: #fff;
  border: 1px solid #074097;
  border-radius: 1rem;
  text-align: center;
  padding: 4rem 0 3rem;
}
@media only screen and (max-width: 767px) {
  #page-career-path .career__step .item {
    width: 100%;
    padding: 4.5rem 0;
  }
}
#page-career-path .career__step .nmb {
  position: absolute;
  top: -1.5rem;
  right: 0;
  left: 0;
  margin: auto;
  font-size: 1.2rem;
  font-weight: bold;
  width: 10rem;
  height: 3rem;
  line-height: 3rem;
  color: #fff;
  background-color: #074097;
  border-radius: 5rem;
}
@media only screen and (max-width: 767px) {
  #page-career-path .career__step .nmb {
    top: -2.5rem;
    font-size: 2rem;
    width: 16rem;
    height: 5.5rem;
    line-height: 5.5rem;
  }
}
#page-career-path .career__step .subtitle {
  font-weight: bold;
  font-size: 2rem;
  color: #074097;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 767px) {
  #page-career-path .career__step .subtitle {
    font-size: 3.6rem;
  }
}
#page-career-path .career__step .text {
  font-weight: bold;
}
#page-career-path .career__img {
  width: 75%;
  margin: 8rem auto 0;
}
@media only screen and (max-width: 767px) {
  #page-career-path .career__img {
    width: 100%;
  }
}
#page-career-path .plan {
  margin-top: 10rem;
}
#page-career-path .plan .title01 {
  margin-bottom: 0;
}
#page-career-path .plan .subtitle {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background-color: #074097;
  font-size: 2.8rem;
  line-height: 1.6;
  padding: 0.5rem 1rem;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  #page-career-path .plan .subtitle {
    font-size: 4.8rem;
    padding: 0.5rem 2rem;
    margin-top: 8rem;
  }
}
#page-career-path .plan .text01 {
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  #page-career-path .plan .text01 {
    margin-top: 4rem;
  }
}
#page-career-path .plan .text01 + .text01 {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  #page-career-path .plan .text01 + .text01 {
    margin-top: 4rem;
  }
}
#page-career-path .plan .text01 span {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(transparent 65%, #FFFF00 0%);
  line-height: 1.4;
  padding: 0.3rem 0;
}
@media only screen and (max-width: 767px) {
  #page-career-path .plan .text01 span {
    font-size: 4rem;
  }
}
#page-career-path .plan figure {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  #page-career-path .plan figure {
    margin-top: 7rem;
  }
}
#page-career-path .step {
  margin-top: 10rem;
}