@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:700,500,900|Oswald:700,500|Zen+Old+Mincho:400,500,700|Cinzel:400,500,600,700|EB+Garamond:400,500,600,700|Niconne:400");
.recruit-news-section {
  width: 100%;
  padding: 40px min(245px, 17.5%) 80px;
}
@media (max-width: 768px) {
  .recruit-news-section {
    padding: 77px min(40px, 10%) 64px;
  }
}
.recruit-news-section .recruit-news-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 60px min(95px, 8vw);
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .recruit-news-section .recruit-news-card {
    padding: 56px min(20px, 5%);
  }
}
.recruit-news-section .recruit-news-card .recruit-news-header {
  text-align: center;
}
.recruit-news-section .recruit-news-card .recruit-news-header .section-title {
  font-size: 40px;
  line-height: 65px;
  font-family: "Zen Old Mincho";
  font-weight: 600;
  color: #333333;
}
@media (max-width: 768px) {
  .recruit-news-section .recruit-news-card .recruit-news-header .section-title {
    font-size: 28px;
    line-height: 48px;
  }
}
.recruit-news-section .recruit-news-card .news-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .recruit-news-section .recruit-news-card .news-list {
    margin-top: 32px;
  }
}
.recruit-news-section .recruit-news-card .news-list .news-item {
  border-bottom: 1px solid #d5deef;
  padding: 0 0 16px 0;
  transition: background-color 0.3s ease;
}
.recruit-news-section .recruit-news-card .news-list .news-item:hover {
  background-color: #eef4ff;
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .recruit-news-section .recruit-news-card .news-list .news-item .news-meta {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-meta .news-date {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  font-family: "Zen Old Mincho";
  font-weight: 600;
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-meta .news-category {
  font-size: 12px;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 2px;
  color: #ffffff;
  font-family: "Noto Sans JP";
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-meta .news-category.company {
  background-color: #3381CE;
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-meta .news-category.recruitment {
  background-color: #e1ebf9;
  color: #333333;
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-meta .news-category.new {
  background-color: #ffd800;
  color: #333333;
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-title .title-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-title .title-text:hover {
  opacity: 0.7;
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-title .arrow-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #333333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-title .arrow-btn::after {
  content: "→";
  color: #333333;
  font-size: 12px;
  transition: color 0.3s ease;
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-title .arrow-btn:hover {
  background-color: #3381CE;
  border-color: #3381CE;
}
.recruit-news-section .recruit-news-card .news-list .news-item .news-title .arrow-btn:hover::after {
  color: #ffffff;
}
@media (max-width: 768px) {
  .recruit-news-section .recruit-news-card .news-list .news-item .news-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .recruit-news-section .recruit-news-card .news-list .news-item .news-title .arrow-btn {
    margin-top: 8px;
  }
}
.recruit-news-section .recruit-news-card .news-link {
  margin-left: auto;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .recruit-news-section .recruit-news-card .news-link {
    margin-left: 0;
    align-self: flex-end;
  }
}
.recruit-news-section .recruit-news-card .view-more-button-white {
  font-family: "Noto Sans JP";
  color: #00479D;
  display: flex;
  align-items: center;
  gap: min(8px, 1vw);
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  color: #333333;
}
@media (max-width: 768px) {
  .recruit-news-section .recruit-news-card .view-more-button-white {
    gap: 8px;
  }
}
.recruit-news-section .recruit-news-card .view-more-button-white::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #00479D;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
.recruit-news-section .recruit-news-card .view-more-button-white:hover {
  opacity: 0.7;
}
.recruit-news-section .recruit-news-card .view-more-button-white:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.recruit-news-section .recruit-news-card .view-more-button-white span {
  width: 24px;
  height: 24px;
  border: 1px solid #00479D;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  background-color: #00479D;
}
.recruit-news-section .recruit-news-card .view-more-button-white span::after {
  content: "→";
  font-size: 12px;
  color: #ffffff;
}
.recruit-news-section .recruit-news-card .view-more-button-white::before {
  background: #ffffff;
}
.recruit-news-section .recruit-news-card .view-more-button-white span {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
.recruit-news-section .recruit-news-card .view-more-button-white span::after {
  color: #333333;
}
.recruit-news-section .recruit-news-card .view-more-button-white::before {
  background: #3381CE;
}
.recruit-news-section .recruit-news-card .view-more-button-white span {
  border: 1px solid #3381CE;
  background-color: #3381CE;
}
.recruit-news-section .recruit-news-card .view-more-button-white span::after {
  color: #ffffff;
}

body {
  min-width: unset;
}

main {
  font-family: "Noto Sans JP";
  position: relative;
  color: #333333;
}
main .view-more-button {
  font-family: "Noto Sans JP";
  color: #00479D;
  display: flex;
  align-items: center;
  gap: min(8px, 1vw);
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  main .view-more-button {
    gap: 8px;
  }
}
main .view-more-button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #00479D;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
main .view-more-button:hover {
  opacity: 0.7;
}
main .view-more-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
main .view-more-button span {
  width: 24px;
  height: 24px;
  border: 1px solid #00479D;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  background-color: #00479D;
}
main .view-more-button span::after {
  content: "→";
  font-size: 12px;
  color: #ffffff;
}
@media (max-width: 768px) {
  main .sp-hide {
    display: none;
  }
}
main .sp-show {
  display: none;
}
@media (max-width: 768px) {
  main .sp-show {
    display: initial;
  }
}
main section:first-of-type {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 768px) {
  main section:first-of-type {
    padding: 0;
    min-height: unset;
    isolation: isolate;
  }
  main section:first-of-type::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
  }
}
main section:first-of-type .section-content {
  position: relative;
  z-index: 40;
}
@media (max-width: 768px) {
  main section:first-of-type .section-content {
    padding: 0 20px;
  }
}
main section:first-of-type .recruit-hero-title {
  padding: 150px min(327px, 23%) 0;
  margin-top: 0;
  text-align: center;
  z-index: 40;
  position: relative;
  isolation: isolate;
  background: linear-gradient(to bottom, #ffffff 80%, rgba(255, 255, 255, 0));
}
@media (max-width: 768px) {
  main section:first-of-type .recruit-hero-title {
    padding: 93px 20px 0;
    margin-top: 0;
  }
}
main section:first-of-type .recruit-hero-title img {
  width: 100%;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  main section:first-of-type .recruit-hero-title img {
    width: 100%;
    height: 72px;
  }
}
main section:first-of-type .recruit-hero-title p {
  margin-top: 40px;
  font-size: 24px;
  font-family: "Zen Old Mincho";
  font-weight: 600;
  color: #333333;
}
@media (max-width: 768px) {
  main section:first-of-type .recruit-hero-title p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.5;
  }
}
main section:first-of-type .recruit-hero-bg-rt {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
  opacity: 0.16;
  width: 700px;
  height: 754px;
  background-image: url("../../images/recruit/recruit-hero-bg-rt.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
}
@media (max-width: 768px) {
  main section:first-of-type .recruit-hero-bg-rt {
    width: max(160px, 41%);
    height: 170px;
    top: 190px;
    right: 0;
    background-image: url("../../images/recruit/recruit-hero-bg-rt.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
    z-index: 100;
    opacity: 0.75;
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
  }
}
main section:first-of-type .swiper {
  overflow: visible !important;
}
main section:first-of-type .swiper.recruit-hero-carousel {
  margin-top: 32px;
  z-index: 20;
  width: 100%;
}
@media (max-width: 768px) {
  main section:first-of-type .swiper.recruit-hero-carousel {
    margin-top: 15px;
    position: relative;
    z-index: 35;
    padding: 0 20px;
  }
  main section:first-of-type .swiper.recruit-hero-carousel::before {
    display: none;
  }
}
main section:first-of-type .swiper.recruit-hero-carousel .swiper-wrapper {
  align-items: center;
}
main section:first-of-type .swiper.recruit-hero-carousel .swiper-slide {
  max-height: 620px;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  main section:first-of-type .swiper.recruit-hero-carousel .swiper-slide {
    min-height: 220px;
    overflow: visible;
  }
  main section:first-of-type .swiper.recruit-hero-carousel .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: transparent;
    z-index: -1;
  }
}
main section:first-of-type .swiper.recruit-hero-carousel .swiper-slide-active {
  opacity: 1;
}
main section:first-of-type .swiper.recruit-hero-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
main section:first-of-type .recruit-hero-bg-b {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
  background-image: url("../../images/recruit/recruit-hero-bg-b.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: height 0.3s ease, top 0.3s ease;
}
@media (max-width: 768px) {
  main section:first-of-type .recruit-hero-bg-b {
    height: 320px;
  }
}
main section:nth-of-type(2) {
  padding: 160px 0;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  main section:nth-of-type(2) {
    padding: 56px 20px;
  }
}
main section:nth-of-type(2) .recruit-section2-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
  mix-blend-mode: multiply;
  background-color: rgba(51, 129, 206, 0.8);
  border-radius: 20px;
}
main section:nth-of-type(2) .recruit-section2-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/recruit/recruit-section2-bg-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 5;
  border-radius: 20px;
  opacity: 32%;
}
main section:nth-of-type(2) .recruit-section2-title {
  position: relative;
  z-index: 20;
  text-align: center;
  color: #ffffff;
}
main section:nth-of-type(2) .recruit-section2-title p:first-child {
  font-size: 24px;
  line-height: 36px;
  font-family: "Zen Old Mincho";
  font-weight: 600;
}
@media (max-width: 768px) {
  main section:nth-of-type(2) .recruit-section2-title p:first-child {
    font-size: 18px;
    line-height: 32px;
  }
}
main section:nth-of-type(2) .recruit-section2-title h1 {
  font-size: 80px;
  line-height: 112px;
  font-family: "Zen Old Mincho";
  font-weight: 600;
  margin: 16px 0;
}
@media (max-width: 768px) {
  main section:nth-of-type(2) .recruit-section2-title h1 {
    font-size: 50px;
    line-height: 72px;
    margin: 4px 0 24px;
  }
}
main section:nth-of-type(2) .recruit-section2-title p:last-child {
  font-size: 24px;
  line-height: 36px;
  font-family: "Zen Old Mincho";
  font-weight: 600;
}
@media (max-width: 768px) {
  main section:nth-of-type(2) .recruit-section2-title p:last-child {
    font-size: 16px;
    line-height: 26px;
  }
}
main section:nth-of-type(2) .recruit-section2-content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 80px;
  padding: 0 min(245px, 17.5%);
}
@media (max-width: 768px) {
  main section:nth-of-type(2) .recruit-section2-content {
    margin-top: 64px;
    padding: 0;
  }
}
main section:nth-of-type(2) .recruit-section2-content-card {
  min-height: 356px;
  display: flex;
  position: relative;
  background-color: #ffffff;
}
@media (max-width: 1024px) {
  main section:nth-of-type(2) .recruit-section2-content-card {
    flex-direction: column;
    padding: 0;
    gap: 0;
    min-height: 494px;
  }
}
main section:nth-of-type(2) .recruit-section2-content-card img {
  width: 356px;
  height: 356px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  main section:nth-of-type(2) .recruit-section2-content-card img {
    width: 100%;
    min-height: 200px;
  }
}
@media (max-width: 768px) {
  main section:nth-of-type(2) .recruit-section2-content-card img {
    height: 200px;
    min-height: unset;
  }
}
main section:nth-of-type(2) .recruit-section2-content-card img.card-icon {
  position: absolute;
  bottom: -56px;
  right: 0;
  width: 190px;
  height: 130px;
  border-radius: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  main section:nth-of-type(2) .recruit-section2-content-card img.card-icon {
    width: 130px;
    height: 110px;
    bottom: -42px;
  }
}
main section:nth-of-type(2) .recruit-section2-content-card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 58px 40px;
}
@media (max-width: 1024px) {
  main section:nth-of-type(2) .recruit-section2-content-card__text {
    padding: 40px 20px 87px 20px;
  }
}
main section:nth-of-type(2) .recruit-section2-content-card__text p:first-child {
  font-size: 16px;
  line-height: 19px;
  color: #3381CE;
  font-family: "EB Garamond", serif;
  text-transform: uppercase;
}
main section:nth-of-type(2) .recruit-section2-content-card__text h3 {
  font-size: 32px;
  line-height: 48px;
  color: #333333;
  font-family: "Zen Old Mincho";
  font-weight: 600;
  margin: 16px 0 24px;
}
main section:nth-of-type(2) .recruit-section2-content-card__text p:last-child {
  font-size: 16px;
  line-height: 29px;
  color: #333333;
}
main section:nth-of-type(2) .recruit-section2-content-card:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  main section:nth-of-type(2) .recruit-section2-content-card:nth-child(even) {
    flex-direction: column;
  }
}
main section:nth-of-type(2) .recruit-section2-content-card:nth-child(even) .card-icon {
  right: auto;
  left: 40px;
}
@media (max-width: 1024px) {
  main section:nth-of-type(2) .recruit-section2-content-card:nth-child(even) .card-icon {
    left: auto;
    bottom: -42px;
    right: 0;
  }
}
main section:nth-of-type(3) {
  padding: 80px 0;
  position: relative;
}
@media (max-width: 768px) {
  main section:nth-of-type(3) {
    padding: 64px min(20px, 5%);
  }
}
main section:nth-of-type(3) .recruit-section-title {
  text-align: center;
  font-family: "Zen Old Mincho";
  font-weight: 600;
  font-size: 80px;
  color: #333333;
  font-size: 40px;
  line-height: 65px;
}
@media (max-width: 768px) {
  main section:nth-of-type(3) .recruit-section-title {
    font-size: 28px;
    line-height: 48px;
  }
}
main section:nth-of-type(3) .recruit-section-title p {
  font-family: "EB Garamond", serif;
  font-size: 16px;
  line-height: 19px;
  color: #3381CE;
  margin-top: 16px;
}
main section:nth-of-type(3) > p {
  text-align: center;
  font-size: 16px;
  line-height: 29px;
  color: #333333;
  margin-top: 56px;
}
@media (max-width: 768px) {
  main section:nth-of-type(3) > p {
    margin-top: 40px;
  }
}
main section:nth-of-type(3) .recruit-interview-content {
  margin-top: 80px;
  display: flex;
  gap: max(40px, 4%);
  padding: 0 min(150px, 10%);
}
@media (max-width: 768px) {
  main section:nth-of-type(3) .recruit-interview-content {
    margin-top: 43px;
    padding: 0;
    display: none;
  }
  main section:nth-of-type(3) .recruit-interview-content.pc-only {
    display: none;
  }
}
main section:nth-of-type(3) .recruit-interview-content.sp-only {
  display: none;
}
@media (max-width: 768px) {
  main section:nth-of-type(3) .recruit-interview-content.sp-only {
    display: block;
  }
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper {
    padding: 0 min(20px, 5%);
    margin: 0 -20px;
    padding-bottom: 50px;
  }
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-slide {
    height: auto;
    flex: 0 0 100%;
    width: 100%;
  }
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-slide .recruit-interview-content-card {
    width: 100%;
    height: 100%;
    flex: none;
  }
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-pagination {
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Zen Old Mincho";
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
  }
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-pagination-current {
    font-size: 24px;
    color: #3381CE;
    line-height: 36px;
    margin-right: 0.5rem;
  }
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-pagination-total {
    transform: translateY(15%);
    margin-left: 0.5rem;
  }
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-button-prev,
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #3381CE;
    border-radius: 50%;
  }
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-button-prev::after,
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-button-next::after {
    content: "→";
    font-size: 12px;
    color: #ffffff;
    transform: none;
  }
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-button-prev {
    transform: translateX(-20%);
  }
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-button-prev::after {
    transform: rotate(180deg);
  }
  main section:nth-of-type(3) .recruit-interview-content.sp-only .swiper-button-next {
    transform: translateX(20%);
  }
}
main section:nth-of-type(3) .recruit-interview-content-card {
  min-height: 356px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 16px 32px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 0px 15px rgba(51, 51, 51, 0.25);
  flex: 1;
}
main section:nth-of-type(3) .recruit-interview-content-card:first-child {
  margin-left: 0;
}
main section:nth-of-type(3) .recruit-interview-content-card:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  main section:nth-of-type(3) .recruit-interview-content-card {
    margin: 0;
  }
}
main section:nth-of-type(3) .recruit-interview-content-card img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  main section:nth-of-type(3) .recruit-interview-content-card img {
    max-height: unset;
    border-radius: 2px;
  }
}
main section:nth-of-type(3) .recruit-interview-content-card h3 {
  font-family: "Zen Old Mincho";
  font-weight: 600;
  font-size: 20px;
  line-height: 29px;
  color: #333333;
}
@media (max-width: 768px) {
  main section:nth-of-type(3) .recruit-interview-content-card h3 {
    padding: 0 min(20px, 5%);
  }
}
main section:nth-of-type(3) .recruit-interview-content-card p {
  font-size: 16px;
  line-height: 29px;
  color: #333333;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  main section:nth-of-type(3) .recruit-interview-content-card p {
    padding: 0 min(20px, 5%);
  }
}
main section:nth-of-type(3) .recruit-interview-content-card .view-more-button {
  margin-top: auto;
  color: #3381CE;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  main section:nth-of-type(3) .recruit-interview-content-card .view-more-button {
    padding: 0 min(20px, 5%);
  }
}
main section:nth-of-type(3) .recruit-interview-content-card .view-more-button span {
  border: 1px solid #3381CE;
  background-color: #3381CE;
}
main section:nth-of-type(4) {
  padding-bottom: 120px;
  position: relative;
}
@media (max-width: 768px) {
  main section:nth-of-type(4) {
    padding-bottom: 80px;
  }
}
main section:nth-of-type(4) .recruit-section4-message {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 400px 247px;
  gap: 20px;
  padding: 0 min(150px, 10%);
}
@media (max-width: 768px) {
  main section:nth-of-type(4) .recruit-section4-message {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 min(20px, 5%);
  }
}
main section:nth-of-type(4) .recruit-section4-message-container {
  position: relative;
  overflow: hidden;
  padding: 90px 0 90px 56px;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  main section:nth-of-type(4) .recruit-section4-message-container {
    padding: 0;
  }
}
main section:nth-of-type(4) .recruit-section4-message-container:nth-child(1), main section:nth-of-type(4) .recruit-section4-message-container:nth-child(2) {
  height: 400px;
}
@media (max-width: 768px) {
  main section:nth-of-type(4) .recruit-section4-message-container:nth-child(1), main section:nth-of-type(4) .recruit-section4-message-container:nth-child(2) {
    height: 280px;
  }
}
main section:nth-of-type(4) .recruit-section4-message-container:nth-child(3), main section:nth-of-type(4) .recruit-section4-message-container:nth-child(4) {
  height: 247px;
}
@media (max-width: 768px) {
  main section:nth-of-type(4) .recruit-section4-message-container:nth-child(3), main section:nth-of-type(4) .recruit-section4-message-container:nth-child(4) {
    height: 130px;
  }
}
main section:nth-of-type(4) .recruit-section4-message-container .bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/recruit/recruit-section4-message-bg-layer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
  mix-blend-mode: multiply;
}
main section:nth-of-type(4) .recruit-section4-message-container .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../images/recruit/recruit-section4-message-bg1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 5;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  main section:nth-of-type(4) .recruit-section4-message-container .text-container {
    padding-left: 40px;
    text-align: left;
  }
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container h3 {
  font-family: "Zen Old Mincho";
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  text-align: left;
}
@media (max-width: 768px) {
  main section:nth-of-type(4) .recruit-section4-message-container .text-container h3 {
    font-size: 28px;
    line-height: 42px;
  }
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container p.recruit-section4-message-container__sub-title {
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.1em;
  margin-top: 16px;
  text-align: left;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container p.recruit-section4-message-container__text {
  font-size: 16px;
  line-height: 21px;
  color: #ffffff;
  margin-top: 24px;
  text-align: left;
}
@media (max-width: 768px) {
  main section:nth-of-type(4) .recruit-section4-message-container .text-container p.recruit-section4-message-container__text {
    line-height: 19px;
  }
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white {
  font-family: "Noto Sans JP";
  color: #00479D;
  display: flex;
  align-items: center;
  gap: min(8px, 1vw);
  text-decoration: none;
  transition: opacity 0.3s ease;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
  margin-top: 25px;
}
@media (max-width: 768px) {
  main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white {
    gap: 8px;
  }
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #00479D;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white:hover {
  opacity: 0.7;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white span {
  width: 24px;
  height: 24px;
  border: 1px solid #00479D;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  background-color: #00479D;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white span::after {
  content: "→";
  font-size: 12px;
  color: #ffffff;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white::before {
  background: #ffffff;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white span {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white span::after {
  color: #333333;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white.mt-14px {
  margin-top: 14px;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white::before {
  background: #ffffff;
}
main section:nth-of-type(4) .recruit-section4-message-container .text-container .view-more-button-white span::after {
  color: #3381CE;
}
main section:nth-of-type(4) .recruit-section4-message-container:nth-child(2) .bg-img {
  background-image: url("../../images/recruit/recruit-section4-message-bg2.png");
}
main section:nth-of-type(4) .recruit-section4-message-container:nth-child(3) .bg-img {
  background-image: url("../../images/recruit/recruit-section4-message-bg3.png");
}
main section:nth-of-type(4) .recruit-section4-message-container:nth-child(4) .bg-img {
  background-image: url("../../images/recruit/recruit-section4-message-bg4.png");
}/*# sourceMappingURL=recruit.css.map */