@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Roboto:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
.recruit-list {
  padding: 0 40px;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .recruit-list {
    padding: 0;
    gap: 40px;
    flex-direction: column;
    margin: 0 -25px;
  }
}
.recruit-list__item {
  width: calc(50% - 40px);
  border-bottom: 1px dashed #223562;
}
@media (max-width: 767px) {
  .recruit-list__item {
    width: 100%;
  }
}
.recruit-list__link {
  display: block;
  position: relative;
  padding-bottom: 40px;
  height: 100%;
}
@media (max-width: 767px) {
  .recruit-list__link {
    padding: 0 25px 65px;
  }
}
@media (min-width: 1024px) {
  .recruit-list__link:hover .recruit-list__img img {
    transform: scale(1.05);
  }
}
.recruit-list__img {
  overflow: hidden;
  position: relative;
}
.recruit-list__img img {
  transition: transform 0.4s ease;
  transform: scale(1);
}
.recruit-list__img::before {
  content: "";
  width: 5px;
  height: 100%;
  display: block;
  background: #3749c2;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.recruit-list__title {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .recruit-list__title {
    margin-top: 25px;
  }
}
.recruit-list__title-main {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (max-width: 767px) {
  .recruit-list__title-main {
    font-size: 1.9rem;
  }
}
.recruit-list__title-sub {
  margin-top: 12px;
  font-weight: 400;
  font-family: "Caveat", cursive;
  line-height: 1;
  letter-spacing: -0.03em;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .recruit-list__title-sub {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}
.recruit-list__description {
  width: calc(100% - 126px);
  margin-top: 20px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .recruit-list__description {
    width: 100%;
    margin-top: 15px;
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.recruit-list .oval {
  position: absolute;
  right: 0;
  bottom: 40px;
}
@media (max-width: 767px) {
  .recruit-list .oval {
    bottom: 25px;
    right: 25px;
  }
}
.recruit-list .oval-icon {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.recruit-list .oval-icon::before, .recruit-list .oval-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 0;
  background-image: url(../../images/common/icon_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.recruit-list .oval-icon::before {
  transform: translate(0, 0);
}
.recruit-list .oval-icon::after {
  transform: translate(-12px, 12px);
}
@media (max-width: 767px) {
  .recruit-list .oval-icon {
    width: 7px;
    height: 7px;
  }
  .recruit-list .oval-icon::before, .recruit-list .oval-icon::after {
    width: 7px;
    height: 7px;
  }
}
@media (min-width: 1024px) {
  .recruit-list__link:hover .oval-icon::before {
    transform: translate(12px, -12px);
  }
  .recruit-list__link:hover .oval-icon::after {
    transform: translate(0, 0);
  }
}

.company-info__item {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px dashed #223562;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .company-info__item {
    padding: 20px 0;
    flex-direction: column;
    font-size: 1.4rem;
  }
}
.company-info__item:first-child {
  padding-top: 0;
}
.company-info__label {
  width: 260px;
  font-weight: 500;
}
.company-info__value {
  flex: 1;
}
@media (max-width: 767px) {
  .company-info__value {
    margin-top: 10px;
  }
}

.company-access__map {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .company-access__map {
    margin-top: 40px;
  }
}
.company-access__map-inner {
  width: 100%;
  height: 600px;
}
@media (max-width: 767px) {
  .company-access__map-inner {
    width: calc(100% + 50px);
    margin: 0 -25px;
    height: 300px;
  }
}
.company-access__map-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-wrap {
  position: relative;
}

.faq-nav {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .faq-nav {
    position: relative;
  }
}
.faq-nav.is-fixed {
  position: fixed;
  top: 130px;
  left: var(--faq-nav-left);
}
.faq-nav.is-bottom {
  position: absolute;
  bottom: 0;
  top: auto;
  left: 0;
}
.faq-nav__item {
  padding-left: 20px;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq-nav__item {
    padding: 0;
    border-bottom: 1px dashed #3749c2;
  }
}
.faq-nav__item + .faq-nav__item {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .faq-nav__item + .faq-nav__item {
    margin-top: 0;
  }
}
.faq-nav__link {
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 0.4s ease;
  position: relative;
}
@media (max-width: 767px) {
  .faq-nav__link {
    color: #3749c2;
    padding: 20px 26px 20px 5px;
    display: block;
  }
}
@media (max-width: 767px) {
  .faq-nav__link::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url(../../images/common/icon_arrow_down.svg) repeat center center;
    background-size: 12px 12px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.faq-nav__link.is-active {
  color: #3749c2;
}
.faq-nav__link.is-active::before {
  content: "";
  width: 12px;
  height: 10px;
  background: url(../../images/common/icon_current.svg) repeat center center;
  background-size: 12px 10px;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .faq-nav__link.is-active::before {
    display: none;
  }
}

.faq-category-blocks {
  width: calc(100% - 200px);
  padding-left: 80px;
  padding-bottom: 40px;
  margin-left: 200px;
  border-left: 1px dashed #3749c2;
}
@media (max-width: 767px) {
  .faq-category-blocks {
    width: calc(100% + 20px);
    padding-left: 0;
    margin: 60px -10px 0;
    border-left: 0;
    padding-bottom: 0;
  }
}

.faq-category-block + .faq-category-block {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .faq-category-block + .faq-category-block {
    margin-top: 80px;
  }
}
.faq-category-block__title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .faq-category-block__title {
    font-size: 2.2rem;
    text-align: center;
  }
}

.faq-list {
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .faq-list {
    margin-top: 20px;
  }
}

.faq-item {
  background: #ebf1fa url(../../images/common/bg_light-blue.png) repeat center center;
  background-size: 100px;
}
.faq-item + .faq-item {
  margin-top: 10px;
}
.faq-item__question {
  width: 100%;
  display: flex;
  gap: 8px;
  font-size: 1.7rem;
  background: none;
  border: none;
  padding: 30px 76px 30px 66px;
  cursor: pointer;
  text-align: left;
  line-height: 1.8;
  font-weight: 500;
  position: relative;
}
@media (max-width: 767px) {
  .faq-item__question {
    font-size: 1.5rem;
    padding: 25px 54px 25px 51px;
    line-height: 1.6;
  }
}
.faq-item__question::after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url(../../images/common/icon_open.svg) no-repeat center center;
  background-size: 16px;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.25s ease;
}
@media (max-width: 767px) {
  .faq-item__question::after {
    background-size: 14px;
    right: 25px;
  }
}
.faq-item__question::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: url(../../images/common/icon_close.svg) no-repeat center center;
  background-size: 16px;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
@media (max-width: 767px) {
  .faq-item__question::before {
    background-size: 14px;
    right: 25px;
  }
}
.faq-item__question span {
  font-size: 2.7rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1;
  position: absolute;
  left: 30px;
  top: 32px;
  color: #3749c2;
}
@media (max-width: 767px) {
  .faq-item__question span {
    font-size: 2.2rem;
    left: 20px;
    top: 25px;
    line-height: 1.4;
  }
}
.faq-item.is-open .faq-item__question::after {
  opacity: 0;
}
.faq-item.is-open .faq-item__question::before {
  opacity: 1;
}
.faq-item__answer {
  display: none;
  font-size: 1.5rem;
  line-height: 1.8;
  padding: 0 30px 30px 30px;
}
@media (max-width: 767px) {
  .faq-item__answer {
    padding: 0 15px 15px 15px;
  }
}
.faq-item__answer-content {
  background: #ffffff;
  padding: 30px 40px 35px;
}
@media (max-width: 767px) {
  .faq-item__answer-content {
    font-size: 1.4rem;
    padding: 25px 30px 30px;
  }
}
.faq-item__images {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .faq-item__images {
    flex-direction: column;
    gap: 15px;
  }
}
.faq-item__image {
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .faq-item__image {
    width: 100%;
  }
}
.faq-item__image img {
  width: 100%;
  height: auto;
}
.faq-item__caption {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 10px;
}
.faq-item .text-link {
  font-weight: 500;
}

.faq-subsection + .faq-subsection {
  margin-top: 30px;
}
.faq-subsection__subtitle {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
.faq-subsection__notes-list {
  margin-top: 30px;
}
.faq-subsection__notes-item {
  font-size: 1.2rem;
  padding-left: 17px;
  position: relative;
}
.faq-subsection__notes-item + .faq-subsection__notes-item {
  margin-top: 5px;
}
.faq-subsection__notes-item::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.message-kv {
  position: relative;
  z-index: 2;
}
.message-kv__image {
  width: 100%;
}

.message-title {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 90px);
  z-index: 1;
}
@media (max-width: 767px) {
  .message-title {
    width: 100%;
    transform: translate(-50%, 55px);
  }
}
.message-title__sub {
  font-weight: 400;
  font-family: "Caveat", cursive;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
  font-size: 16rem;
}
@media (max-width: 767px) {
  .message-title__sub {
    font-size: 8.4rem;
  }
}
.message-title__main {
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-size: 1.6rem;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .message-title__main {
    margin-top: 12px;
    font-size: 1.4rem;
  }
}

.message-header {
  margin-top: -20px;
}
.message-header__inner {
  padding: 144px 40px 280px 80px;
  position: relative;
  width: calc(100% - 40px);
  background: url(../../images/common/bg_dark-blue.png) repeat center center;
  background-size: 100px;
}
@media (max-width: 767px) {
  .message-header__inner {
    padding: 115px 20px 90px;
    width: calc(100% - 10px);
    justify-content: flex-start;
  }
}
.message-header__inner::after {
  content: "";
  width: 40px;
  height: 100%;
  display: block;
  position: absolute;
  top: 19.5px;
  right: -40px;
  background: url(../../images/common/bg_dark-blue_shadow.png) repeat center center;
  background-size: 100px;
  transform-origin: top right;
  transform: skewY(26deg);
}
@media (max-width: 767px) {
  .message-header__inner::after {
    width: 10px;
    right: -10px;
    top: 4.5px;
    z-index: 1;
  }
}
.message-header__lead {
  margin-top: 80px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .message-header__lead {
    margin-top: 60px;
  }
}
.message-header__heading {
  font-weight: 500;
  line-height: 1.7;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .message-header__heading {
    font-size: 1.8rem;
  }
}
.message-header__text {
  margin-top: 40px;
  line-height: 2;
}
@media (max-width: 767px) {
  .message-header__text {
    text-align: left;
    font-size: 1.4rem;
  }
}

.message-breadcrumbs {
  display: flex;
  justify-content: flex-end;
}

.message-contents {
  padding: 0 120px 120px;
}
@media (max-width: 767px) {
  .message-contents {
    padding: 0 0 100px;
  }
}
.message-contents__inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 767px) {
  .message-contents__inner {
    max-width: 100%;
  }
}

.profile {
  margin-top: -140px;
  position: relative;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .profile {
    margin-top: 0;
    padding: 0;
  }
}
.profile__list {
  display: flex;
  background: #ffffff;
  padding: 80px 100px;
}
@media (max-width: 767px) {
  .profile__list {
    padding: 0 25px 60px;
    flex-direction: column;
  }
}
.profile__item {
  flex: 1;
  padding-right: 100px;
}
@media (max-width: 767px) {
  .profile__item {
    padding-right: 0;
  }
}
.profile__item + .profile__item {
  border-left: 1px solid rgba(34, 53, 98, 0.3);
  padding-right: 0;
  padding-left: 100px;
}
@media (max-width: 767px) {
  .profile__item + .profile__item {
    border-left: 0;
    border-top: 1px solid rgba(34, 53, 98, 0.3);
    padding-left: 0;
    margin-top: 40px;
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .profile__item:first-child {
    margin-top: -40px;
  }
}
.profile__photo {
  width: 310px;
  margin: -140px auto 0;
}
@media (max-width: 767px) {
  .profile__photo {
    width: 160px;
    margin-top: 0;
  }
}
.profile__photo img {
  width: 100%;
}
.profile__head {
  margin-top: 30px;
  text-align: center;
}
.profile__name-ja {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 767px) {
  .profile__name-ja {
    font-size: 1.8rem;
  }
}
.profile__name-en {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(34, 53, 98, 0.6);
}
.profile__name-data {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 30px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .profile__name-data {
    margin-top: 20px;
    font-size: 1.2rem;
  }
}
.profile__text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .profile__text {
    margin-top: 20px;
    font-size: 13px;
  }
}

.talk-section {
  padding: 120px 40px 160px;
}
@media (max-width: 767px) {
  .talk-section {
    width: calc(100% - 50px);
    margin: 0 auto;
    padding: 80px 0 60px;
  }
}
.talk-section + .talk-section {
  padding-top: 160px;
  border-top: 1px dashed #223562;
}
@media (max-width: 767px) {
  .talk-section + .talk-section {
    padding-top: 60px;
  }
}
.talk-section__head {
  text-align: center;
}
.talk-section__label {
  padding: 10px 20px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  color: #ffffff;
  background: #3749c2;
  display: inline-block;
}
@media (max-width: 767px) {
  .talk-section__label {
    font-size: 1.3rem;
  }
}
.talk-section__title {
  margin-top: 10px;
  padding-bottom: 25px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
}
@media (max-width: 767px) {
  .talk-section__title {
    font-size: 2.2rem;
  }
}
.talk-section__title::before, .talk-section__title::after {
  content: "";
  width: 20px;
  height: 3px;
  display: block;
  position: absolute;
  left: 50%;
}
@media (max-width: 767px) {
  .talk-section__title::before, .talk-section__title::after {
    height: 5px;
  }
}
.talk-section__title::before {
  background: #3749c2;
  bottom: 0;
  transform: translateX(-20px);
}
.talk-section__title::after {
  background: #a2adf2;
  bottom: 0;
}
.talk-section__images {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .talk-section__images {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
.talk-section__images--2col {
  display: flex;
  gap: 0 20px;
}
@media (max-width: 767px) {
  .talk-section__images--2col {
    gap: 0 10px;
  }
}
.talk-section__images--2col .talk-section__image {
  flex: 1;
}
.talk-section__image img {
  width: 100%;
}

.talk-qa {
  padding: 80px 80px 0;
}
@media (max-width: 767px) {
  .talk-qa {
    padding: 40px 0 0;
  }
}
.talk-qa__question {
  color: #3749c2;
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 500;
}
@media (max-width: 767px) {
  .talk-qa__question {
    font-size: 1.6rem;
  }
}
.talk-qa__answers {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .talk-qa__answers {
    margin-top: 25px;
  }
}
.talk-qa__answer {
  display: flex;
  gap: 0 40px;
}
@media (max-width: 767px) {
  .talk-qa__answer {
    gap: 0 15px;
  }
}
.talk-qa__answer + .talk-qa__answer {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .talk-qa__answer + .talk-qa__answer {
    margin-top: 40px;
  }
}
.talk-qa__person {
  width: 120px;
  flex-shrink: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .talk-qa__person {
    width: 60px;
  }
}
.talk-qa__person-photo img {
  width: 100%;
}
.talk-qa__person-name {
  margin-top: 15px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .talk-qa__person-name {
    font-size: 1.4rem;
  }
}
.talk-qa__text {
  font-size: 1.6rem;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .talk-qa__text {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.talk-qa__notes {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 2;
  padding-left: 17px;
  position: relative;
}
.talk-qa__notes::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.talk-closing__image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow-x: hidden;
}
.talk-closing__image img {
  width: 100%;
}
.talk-closing__body {
  width: calc(100% - 80px);
  padding: 80px 100px;
  margin: -200px auto 0;
  background: #ffffff;
  position: relative;
  line-height: 2.2;
}
@media (max-width: 767px) {
  .talk-closing__body {
    margin-top: 0;
    padding: 40px 25px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    font-size: 1.4rem;
    line-height: 2;
  }
}
.talk-closing__name {
  text-align: right;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .talk-closing__name {
    margin-top: 10px;
  }
}