@charset "UTF-8";
@import url(../css/sub.css);
@import url(../css/header.css);

:root {
  --main-bg-color: #1f4685;
  --main-bg-color2: #e60012;
  --window-padding: 50px;
  --vertical-window-padding: 100px;
  --font-family: "Noto Sans";
  --font-family2: "Inter";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.sub .subttl {
  font-family: var(--font-family2);
}

html {
  scroll-behavior: smooth;
}

#top {
  padding-top: 90px;
  position: relative;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}

body p {
  line-height: 1.5;
}

.pd-tb {
  padding-top: var(--vertical-window-padding);
  padding-bottom: var(--vertical-window-padding);
}

.pd-b {
  padding-bottom: var(--vertical-window-padding);
}

.pd-lr {
  padding-left: var(--window-padding);
  padding-right: var(--window-padding);
}

.w100 {
  width: 100%;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.center {
  text-align: center;
}

.btn01 {
  background-color: #373636;
  color: #fff;
  width: 100%;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  padding: 10px 3%;
  border-radius: 10px;
  font-weight: 600;
  border: solid #373636;
}

.btn01.white {
  background-color: #fff;
  color: #000;
  border: solid 1px #fff;
}

.btn01.center {
  margin: 0 auto;
}

.btn02 {
  border: solid #fff;
  border-radius: 10px;
  color: #fff;
  display: flex;
  width: 100%;
  max-width: 200px;
  padding: 0 15px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.btn02.white {
  background-color: #fff;
  color: #000;
  border: solid 1px #fff;
}

.btn02.center {
  margin: 0 auto;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
}

.hv {
  transition: 0.5s ease;
}

.hv:hover {
  background-color: #3736367c;
  border: solid #373636;
  color: #fff;
}

.hv.white:hover {
  background-color: var(--main-bg-color);
  color: #fff;
}

.hv2 {
  transition: 0.5s ease;
}

.hv2:hover {
  background-color: #373636;
  border: solid #373636;
  color: #fff;
}

.hv2.white:hover {
  background-color: var(--main-bg-color);
  color: #fff;
}

/* header-end */

.section_ttl {
  font-size: 80px;
  color: var(--main-bg-color);
  font-family: unset;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  width: fit-content;
  font-weight: 700;
  line-height: 55px;
  font-family: var(--font-family2);
}

.section_ttl.center {
  text-align: center;
  margin: 0 auto 50px;
}

.section_ttl span {
  font-size: 25px;
  color: #000;
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-family);
}

.section_ttl span.white {
  color: #fff;
}

.section_ttl.white {
  color: #fff;
}

.section_ttl.redtxt {
  color: #be3737;
}

.mv {
  height: 100%;
  min-height: 855px;
  position: relative;
}

.mv .mv_wrap {
  width: 100%;
  max-width: 800px;
  background-color: #ffffffb2;
  border-radius: 22px;
  padding: 100px 50px 70px;
  position: absolute;
  bottom: 10%;
  left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.mv .mv_wrap .section_ttl {
  align-items: start;
  font-size: 45px;
  line-height: 40px;
}

.mv .mv_wrap p {
  margin-bottom: 50px;
  font-weight: 600;
  line-height: 1.6;
}

.mv .mv_wrap .btn_box {
  display: flex;
  gap: 20px;
}

.mv .mv_wrap .btn_box .btn01:nth-child(1) {
  background-color: #fff;
  border: solid #000 1px;
  color: #000;
}

.mv .mv_wrap .btn_box .btn01:nth-child(1):hover {
  background-color: #000;
  border: solid #000 1px;
  color: #fff;
}

.mv .mv_wrap .btn_box .btn01:nth-child(2) {
  background-color: #000;
  border: solid #000 1px;
  color: #fff;
}

.mv .mv_wrap .btn_box .btn01:nth-child(2):hover {
  border: solid #373636 1px;
  background-color: #fff;
  color: #000;
}

.mv #mv_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp {
  display: none;
}

#page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 69;
  border-radius: 50%;
  background-color: var(--main-bg-color);
  border: 2px solid white;
}

#page_top a::before {
  font-weight: 900;
  content: ">";
  font-size: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(270deg);
}

/* top news */
.top_news {
  background-image: url(../img/top/news/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.top_news .inner {
  display: flex;
  gap: 50px;
  max-width: 900px;
}

.top_news .inner .news__list {
  width: 100%;
}

.top_news .inner .news_yt {
  width: 100%;
  padding: 30px 30px 50px;
  background-color: #fff;
  filter: drop-shadow(3px 3px 6px #0005);
}

.top_news .inner .news_yt h3 {
  font-size: 32px;
}

.top_news .inner .news__list ul li a {
  color: #000;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  background-color: #fff;
  padding: 20px;
}

.top_news .inner .news__list ul li a .img_box {
  width: 15%;
}

.top_news .inner .news__list ul li a .img_box img {
  width: 100%;
}

.top_news .inner .news__list ul li a .txt_box {
  display: flex;
  flex-direction: column;
}

.top_news .inner .news__list ul li a .txt_box .ttl {
  font-size: 18px;
}

.top_news .inner .news__list ul li a .txt_box .date {
  font-size: 16px;
  margin-bottom: 20px;
}

.top_news .inner .news__list ul li a .txt_box .category {
  padding: 5px 10px;
  background-color: #adadad7d;
  border: solid 1px #3333;
  width: fit-content;
  font-size: 12px;
}
/* top news */
/* top interview */
.top_interview {
  position: relative;
  background-image: url(../img/top/interview/bg.png);
  background-size: cover;
  background-position: center;
}

.top_interview .section_ttl {
  color: #be3737;
}

[class^="slider_interview"] .slick-slide {
  margin: 0 10px;
}

[class^="slider_interview"] a .img_box {
  position: relative;
  margin-bottom: 20px;
}

[class^="slider_interview"] a .img_box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

[class^="slider_interview"] a .img_box span {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 5px 20px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

[class^="slider_interview"] a h3 {
  display: flex;
  flex-direction: column;
  color: #000;
}

.top_interview .slick-arrow {
  top: -100px;
  position: absolute;
}

.top_interview .slick-arrow img {
  width: 50px;
}

.top_interview .slick-next {
  right: 10%;
}

.top_interview .slick-prev {
  right: 15%;
}
/* top interview */
/* property_info */
.top_infograph {
  background-image: url(../img/top/infograph/bg.png);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.top_infograph .section_ttl {
  margin-bottom: 50px;
}
/* top_links */
.top_links .inner {
  max-width: unset;
}

.top_links .inner .wrap {
  display: flex;
}

.top_links .inner .wrap .card {
  width: 100%;
  padding: 80px 3% 100px;
}

.top_links .inner .wrap .card:nth-child(1) {
  background-color: #ffd9d9;
}

.top_links .inner .wrap .card:nth-child(2) {
  background-color: #d9ddf0;
}

.top_links .inner .wrap .card:nth-child(1) .section_ttl {
  color: #7a0b0b;
}
/* entry */
.entrybnr {
  position: relative;
}

.entrybnr .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.entrybnr,
.entrybnr .inner {
  height: 100%;
  min-height: 700px;
}

.entrybnr .section_ttl,
.entrybnr p,
.entrybnr .btn02 {
  z-index: 2;
}

.slider_bg {
  position: absolute !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slider_bg .slider {
  height: 100%;
}

.slider_bg .slick-list,
.slider_bg .slick-track,
.slider_bg .slick-slide,
.slider_bg .slick-slide div {
  height: 100%;
}

.slider_bg .slider.slider01 {
  background-image: url(../img/top/entry/slider01.png);
  background-position: center;
  background-size: cover;
}

.slider_bg .slider.slider02 {
  background-image: url(../img/top/entry/slider02.png);
  background-position: center;
  background-size: cover;
}

.slider_bg .slider.slider03 {
  background-image: url(../img/top/entry/slider03.png);
  background-position: center;
  background-size: cover;
}

.slider_bg .slick-dots {
  bottom: 20px;
  display: flex;
  position: absolute;
  justify-content: center;
  gap: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.slider_bg .slick-dots li {
  width: 10px;
  height: 10px;
}

.slider_bg .slick-dots li button {
  appearance: none;
  padding: 0;
  color: transparent;
  margin: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background-color: #1f4685;
  border-radius: 100vh;
}

.slider_bg .slick-dots li.slick-active button {
  background-color: #be3737;
}

.access {
  background-image: url(../img/top/access/bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.access iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
}

.access p {
  font-weight: 600;
}
/* contactbnr */
.contactbnr {
  background-color: var(--main-bg-color);
}

.contactbnr .section_ttl {
  color: #fff;
}

.contactbnr .section_ttl span {
  color: #fff;
}

.contactbnr .wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.contactbnr .wrap .contact_btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.contactbnr .wrap .contact_btn:nth-child(1) {
  border-right: solid 2px #fff;
}

.contactbnr .wrap .contact_btn img {
  width: 150px;
  margin: 0 auto;
}

.contactbnr .wrap .contact_btn .btncontact {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 10px;
  transition: all 0.5s;
}

.contactbnr .wrap .contact_btn .btncontact:hover {
  color: #000;
  transition: all 0.5s;
}

.contactbnr .wrap .contact_btn .btn01 {
  max-width: 400px;
  padding: 20px 50px 20px 25px;
  transition: all 0.5s;
}

.contactbnr .wrap .contact_btn .btn01::after {
  right: 10%;
}

/* footer */
.footer {
  border-top: solid 1px #3333;
  background-color: #0b367a;
  padding-bottom: 50px;
  padding-top: 50px;
}

.footer .inner {
  margin-bottom: 50px;
  max-width: 900px;
}

.footer_nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer_nav.sp {
  display: none;
}

.footer_nav-sp {
  padding-top: 0;
}

.footer_nav ul {
  width: fit-content;
}

.footer_nav ul li {
  width: 100%;
  padding: 0 0 10px;
}

.footer_nav ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

.footer_nav ul li a::before {
  content: "";
  border-bottom: solid 2px #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.5s;
}

.footer_nav ul li a:hover::before {
  width: 100%;
  transition: all 0.5s;
}

.copyright {
  text-align: center;
  color: #fff;
  font-size: 15px;
}

.footer .footer_btns {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.footer .footer_btns a {
  display: flex;
  width: 100%;
  background-color: var(--main-bg-color);
  color: #fff;
  padding: 20px;
  justify-content: center;
  font-weight: 600;
  border: solid 1px var(--main-bg-color);
  transition: all 0.5s;
}

.footer .footer_btns a:hover {
  border: solid 1px #000;
  transition: all 0.5s;
  opacity: 0.7;
}

.birthday-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.birth-select {
  width: 90px;
  padding: 6px;
  font-size: 16px;
}

.birthday-row .unit {
  font-size: 16px;
  margin-right: 8px;
  color: #333;
}

select[name="応募職種"] {
  width: 100%;
  max-width: 220px; /* 好みで調整 */
  padding: 6px;
  font-size: 16px;
}

td select {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  font-size: 16px;
}

/* footer */
@media screen and (max-width: 1400px) {
  :root {
    --vertical-window-padding: 80px;
  }

  .btn01 {
    height: 50px;
    max-width: 200px;
    padding: 0 3%;
  }

  .btn01::after {
    right: 8%;
  }

  .inner {
    max-width: 1000px;
  }

  .mv {
    height: 100%;
    min-height: 628px;
  }

  .section_ttl {
    font-size: 80px;
  }

  .top_news .inner {
    max-width: 700px;
  }

  .top_news .inner .news_yt video {
    height: auto;
    aspect-ratio: 1.7 / 1;
    object-fit: fill;
    object-position: center;
  }

  .top_news .inner .news__list ul li a .img_box {
    width: 15%;
  }

  .top_news .inner .news_yt {
    padding: 20px 20px 40px;
  }

  .mv .mv_wrap {
    max-width: 570px;
    padding: 50px 50px 50px;
  }

  .entrybnr,
  .entrybnr .inner {
    height: 100%;
    min-height: 500px;
  }
}

@media (max-width: 1400px) and (min-height: 628px) {
  .mv {
    height: 100%;
    min-height: 540px;
  }
}

/* @media (max-width: 1250px) and (min-height: 519px) {
    .mv {
        height: 100%;
        min-height: 519px;
        background-size: cover;
        background-position: center;
    }
} */

@media screen and (max-width: 1250px) {
}

@media screen and (max-width: 1100px) {
  #top {
    padding-top: 60px;
  }
}
