section.kv {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}
section.kv .text_box {
  width: 100%;
  height: 100%;
  background: url(/index/img/pattern_KV.png);
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
section.kv .text_box h1 {
  position: absolute;
  width: max-content;
  top: 50%;
  left: calc(50% + 0.6rem);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2.26vw;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 768px) {
  section.kv .text_box h1 {
    font-size: 26px;
    letter-spacing: 0.3em;
    line-height: 3rem;
    font-feature-settings: "palt";
  }
}
section.kv .text_box h1 .sp_br {
  display: none;
}
@media screen and (max-width: 768px) {
  section.kv .text_box h1 .sp_br {
    display: block;
  }
}
section.kv .video_box {
  position: absolute;
  z-index: -1;
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
section.kv .video_box video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
section.kv .scroll {
  position: absolute;
  top: 60%;
  right: 30px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
section.kv .scroll span.scroll_text {
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: -160px;
  transform: translateX(10%);
  writing-mode: vertical-rl;
}
section.kv .scroll span.scroll_line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #20459e;
  overflow: hidden;
}
section.kv .scroll span.scroll_line::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: scrolldown 1.4s ease-in-out infinite;
}
@keyframes scrolldown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

section.news {
  width: 100%;
}
section.news .inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
section.news .inner .bg_area {
  position: absolute;
  top: -3.33vw;
  right: 0;
  z-index: 2;
  color: #000;
  width: 17.75%;
  z-index: -2;
}
section.news .inner .bg_area img {
  width: 100%;
}
section.news .inner .content_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  section.news .inner .content_inner {
    padding-top: 50px;
  }
}
section.news .inner .content_inner .news_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  section.news .inner .content_inner .news_box {
    flex-direction: column;
    gap: 20px;
  }
}
section.news .inner .content_inner .news_box .news_title {
  width: 160px;
  flex-shrink: 0;
}
section.news .inner .content_inner .news_box .news_list {
  width: auto;
  padding-right: 15%;
}
@media screen and (max-width: 768px) {
  section.news .inner .content_inner .news_box .news_list {
    padding-right: 0;
  }
}
section.news .inner .content_inner .news_box .news_list ul {
  display: flex;
  flex-direction: column;
}
section.news .inner .content_inner .news_box .news_list ul li {
  display: flex;
  flex-direction: row;
  padding: 20px 0;
  border-bottom: 1px dashed #20459e;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  section.news .inner .content_inner .news_box .news_list ul li {
    gap: 10px;
    flex-direction: column;
  }
}
section.news .inner .content_inner .news_box .news_list ul li .date {
  width: 95px;
  font-size: 18px;
  font-weight: 500;
  color: #20459e;
}
@media screen and (max-width: 768px) {
  section.news .inner .content_inner .news_box .news_list ul li .date {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
section.news .inner .content_inner .news_box .news_list ul li .text {
  width: calc(100% - 95px);
}
@media screen and (max-width: 768px) {
  section.news .inner .content_inner .news_box .news_list ul li .text {
    width: 100%;
  }
}
section.news .inner .content_inner .news_box .news_list ul li .text a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  section.news .inner .content_inner .news_box .news_list ul li .text a {
    font-size: 14px;
  }
}
section.news .inner .content_inner .news_box .news_list .viewAll {
  display: flex;
  justify-content: flex-end;
  padding-top: 30px;
}
section.news .inner .content_inner .news_box .news_list .viewAll a.button_arrow {
  color: #20459e;
  background: none;
  padding: 0;
  border: none;
  transition: 0.3s;
}
@media (hover) {
  section.news .inner .content_inner .news_box .news_list .viewAll a.button_arrow:hover {
    opacity: 0.7;
  }
}
section.news .inner .content_inner .news_box .news_list .viewAll a.button_arrow p {
  margin-right: 20px;
  color: #20459e;
}
@media screen and (max-width: 768px) {
  section.news .inner .content_inner .news_box .news_list .viewAll a.button_arrow p {
    font-size: 14px;
    margin-right: 12px;
  }
}
section.news .inner .content_inner .news_box .news_list .viewAll a.button_arrow .arrow_right {
  margin-right: 13.5px;
  color: #20459e;
}
section.news .inner .content_inner .news_box .news_list .viewAll a.button_arrow .arrow_right::after {
  content: "";
  border: 1px solid #20459e;
}

section.intro {
  width: 100%;
  margin-top: 90px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  section.intro {
    padding-bottom: 50px;
  }
}
section.intro .inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
section.intro .inner .bg_area {
  width: 18.75%;
  position: absolute;
  transform: translateY(-50%);
  top: 21vw;
  left: 0;
  color: #000;
  z-index: -2;
}
section.intro .inner .bg_area img {
  width: 100%;
}
section.intro .inner .content_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
section.intro .inner .content_inner .img_box {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  padding-left: 100px;
  height: 500px;
  display: flex;
  justify-content: flex-end;
}
section.intro .inner .content_inner .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
section.intro .inner .content_inner .intro_box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;
  background: #f6f6f8;
  padding: 45px;
}
@media screen and (max-width: 600px) {
  section.intro .inner .content_inner .intro_box {
    padding: 20px;
  }
}
section.intro .inner .content_inner .intro_box .text_box {
  width: 400px;
}
@media screen and (max-width: 600px) {
  section.intro .inner .content_inner .intro_box .text_box {
    width: 100%;
  }
}
section.intro .inner .content_inner .intro_box .text_box p {
  font-size: 16px;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  section.intro .inner .content_inner .intro_box .text_box p {
    font-size: 14px;
    line-height: 1.8571428571;
  }
}
section.intro .inner .content_inner .intro_box .button_box {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  section.intro .inner .content_inner .intro_box .button_box {
    flex-direction: column;
  }
}
section.intro .inner .content_inner .intro_box .button_box a.button_arrow:first-child {
  width: 57.5%;
}
section.intro .inner .content_inner .intro_box .button_box a.button_arrow:last-child {
  width: 42.5%;
}
@media screen and (max-width: 600px) {
  section.intro .inner .content_inner .intro_box .button_box a.button_arrow:first-child {
    width: 100%;
  }
  section.intro .inner .content_inner .intro_box .button_box a.button_arrow:last-child {
    width: 100%;
  }
}

section.result {
  background: #f8f3ee;
  padding-top: 70px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  section.result {
    padding-top: 35px;
    padding-bottom: 40px;
  }
}
section.result .inner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.result .inner {
    width: 90%;
  }
}
section.result .inner .result_title {
  text-align: center;
}
section.result .inner .result_box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
@media screen and (max-width: 600px) {
  section.result .inner .result_box {
    grid-template-columns: 1fr;
  }
}
section.result .inner .result_box .result_item {
  height: 250px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  section.result .inner .result_box .result_item {
    height: 100px;
  }
}
@media screen and (max-width: 768px) and (max-width: 600px) {
  section.result .inner .result_box .result_item {
    height: 80px;
  }
}
section.result .inner .result_box .result_item a {
  text-decoration: none;
  height: 100%;
  width: 100%;
}
@media (hover) {
  section.result .inner .result_box .result_item a:hover::before {
    background: rgba(35, 52, 94, 0.4);
  }
}
section.result .inner .result_box .result_item a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 52, 94, 0.6);
  z-index: 2;
  transition: background 0.5s;
}
section.result .inner .result_box .result_item a p {
  font-size: 24px;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  section.result .inner .result_box .result_item a p {
    font-size: 16px;
  }
}
section.result .inner .result_box .result_item a img {
  transition: 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
section.result .inner .button_box {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 40px;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  section.result .inner .button_box {
    flex-direction: column;
  }
}
section.result .inner .button_box a.button_arrow {
  width: 250px;
}
@media screen and (max-width: 600px) {
  section.result .inner .button_box a.button_arrow {
    width: 100%;
  }
}

section.recruit {
  width: 100%;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  section.recruit {
    padding-top: 50px;
  }
}
section.recruit .recruit_area {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  section.recruit .recruit_area {
    display: flex;
    flex-direction: column;
  }
}
section.recruit .recruit_area .img_box {
  position: absolute;
  top: 0;
  right: 0;
  width: 52.6%;
}
@media screen and (max-width: 768px) {
  section.recruit .recruit_area .img_box {
    position: relative;
    width: 100%;
  }
}
section.recruit .recruit_area .img_box img {
  width: 100%;
}
section.recruit .inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}
section.recruit .inner .content_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  section.recruit .inner .content_inner {
    display: flex;
    flex-direction: column;
  }
}
section.recruit .inner .content_inner .text_box {
  width: 40%;
}
@media screen and (max-width: 768px) {
  section.recruit .inner .content_inner .text_box {
    width: 100%;
  }
}
section.recruit .inner .content_inner .text_box .text {
  margin-top: 30px;
}
section.recruit .inner .content_inner .text_box .text p {
  font-size: 16px;
  line-height: 1.875;
}
section.recruit .inner .content_inner .text_box .button_box .button_arrow {
  margin-top: 30px;
  width: 166px;
}
section.recruit .inner .bg_area {
  width: 23.25%;
  position: absolute;
  top: -25.83%;
  left: -60px;
  transform: translateY(-50%);
  color: #000;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  section.recruit .inner .bg_area {
    position: relative;
  }
}
section.recruit .inner .bg_area img {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
