html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.8rem;
  line-height: 1.75;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  position: relative;
  text-align: justify;
}
@media screen and (max-width: 840px) {
  body {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
}
body.open {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

p {
  text-align: justify;
  position: relative;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  width: 95%;
}

.detail {
  font-size: 1.2rem;
  letter-spacing: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 77, 160, 0.25);
  border-color: #004da0 !important;
}

select:focus {
  color: #004da0;
}

select option:checked {
  background-color: #004da0;
  color: #fff;
}

main {
  overflow-x: clip;
}

section {
  padding: 50px 0;
}
@media screen and (max-width: 540px) {
  section {
    padding: 25px 0;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 540px) {
  .sp-only {
    display: block;
  }
}

/*-------------------------*/
body {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #3f5665;
}

body,
main {
  z-index: -1;
  position: relative;
}

header {
  padding: 25px;
  background-color: #fff;
}
@media screen and (max-width: 840px) {
  header {
    padding-right: 90px;
  }
}
header .inner {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  max-width: 95%;
  align-items: center;
}

.main_logo {
  width: 240px;
}

.menu {
  flex: 1;
  margin-right: 30px;
}
@media screen and (max-width: 840px) {
  .menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(66, 123, 185, 0.9);
    z-index: 100;
    flex: none;
    margin: 0;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all ease 0.3s;
    padding: 50px;
  }
  .menu.open {
    pointer-events: all;
    opacity: 1;
  }
}
@media screen and (max-width: 540px) {
  .menu {
    padding: 20px;
  }
}
.menu .ft_bottom {
  display: none;
}
@media screen and (max-width: 840px) {
  .menu .ft_bottom {
    display: flex;
  }
}

.menu_wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
  justify-content: end;
  align-items: center;
}
.menu_wrap > a,
.menu_wrap > .has_children > .parent_link {
  color: #333333;
  font-size: 1.5rem;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  transition: color 0.2s ease, border-color 0.2s ease;
}
@media screen and (min-width: 841px) {
  .menu_wrap > a:hover,
  .menu_wrap > .has_children > .parent_link:hover {
    color: #004da0;
  }
}
.menu_wrap .has_children {
  position: relative;
}
.menu_wrap .has_children > .parent_link {
  display: block;
  position: relative;
  padding-right: 16px;
}
.menu_wrap .has_children > .parent_link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}
.menu_wrap .child_menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 21;
}
.menu_wrap .child_menu a {
  color: #333333;
  font-size: 1.4rem;
  border: 0;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.menu_wrap .child_menu a:hover, .menu_wrap .child_menu a:focus-visible {
  color: #004da0;
}
@media screen and (min-width: 841px) {
  .menu_wrap .has_children {
    position: static;
  }
  .menu_wrap .has_children.open > .parent_link {
    color: #004da0;
    border-bottom-color: transparent;
  }
  .menu_wrap .has_children.open > .parent_link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 16px;
    height: 4px;
    bottom: -35px;
    background-color: #004da0;
    pointer-events: none;
  }
  .menu_wrap .child_menu {
    position: absolute;
    left: 50%;
    right: auto;
    top: calc(100% + 23px);
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-50%);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    align-items: flex-end;
    gap: clamp(12px, 2vw, 40px);
    box-sizing: border-box;
    margin: 0;
    padding: 22px clamp(20px, 4vw, 48px) 26px;
    background-color: #fff;
    border: 0;
    border-top: 1px solid #e5edf5;
    box-shadow: 0 8px 24px rgba(1, 42, 63, 0.08);
  }
  .menu_wrap .child_menu a {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    white-space: normal;
    padding: 0 8px 0 0;
    text-decoration: none;
  }
  .menu_wrap .child_menu a::after {
    content: "";
    align-self: stretch;
    height: 2px;
    margin-top: 10px;
    background: linear-gradient(to right, #004da0 0%, #004da0 10%, #ac8e4b 10%, #ac8e4b 100%);
  }
  .menu_wrap .child_menu a:hover::after, .menu_wrap .child_menu a:focus-visible::after {
    background: #004da0;
  }
  .menu_wrap .has_children.open .child_menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 840px) {
  .menu_wrap {
    flex-flow: column;
    gap: 30px;
    justify-content: start;
    width: 100%;
    padding-top: 80px;
  }
  .menu_wrap > a,
  .menu_wrap > .has_children > .parent_link {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 3rem;
    font-weight: normal;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
  }
  .menu_wrap .has_children {
    width: 100%;
  }
  .menu_wrap .has_children > .parent_link::after {
    transition: transform 0.2s ease;
  }
  .menu_wrap .has_children.open > .parent_link::after {
    transform: translateY(-35%) rotate(-135deg);
  }
  .menu_wrap .child_menu {
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: static;
    flex-flow: column;
    gap: 12px;
    padding: 16px 0 0;
  }
  .menu_wrap .child_menu a {
    color: #fff;
    font-size: 2rem;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .menu_wrap .has_children.open .child_menu {
    display: flex;
  }
}
@media screen and (max-width: 540px) {
  .menu_wrap {
    gap: 10px;
  }
  .menu_wrap > a,
  .menu_wrap > .has_children > .parent_link {
    font-size: 1.8rem;
  }
  .menu_wrap .child_menu a {
    font-size: 1.5rem;
  }
}

.menu_btn {
  padding: 11px 24px;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.menu_btn.recruit {
  background-color: #1a3666;
  border-color: #1a3666;
}
@media screen and (min-width: 841px) {
  .menu_btn.recruit:hover {
    background-color: #fff;
    color: #004da0;
  }
}
@media screen and (max-width: 840px) {
  .menu_btn.recruit {
    margin-left: auto;
  }
}
.menu_btn.contact {
  background-color: #ac8e4b;
  border-color: #ac8e4b;
}
@media screen and (min-width: 841px) {
  .menu_btn.contact:hover {
    background-color: #fff;
    color: #ac8e4b;
  }
}

.menu_btn_wrap {
  display: none;
  gap: 10px;
  margin: 20px 0;
}
.menu_btn_wrap .menu_btn.recruit {
  margin-left: 0;
}
@media screen and (max-width: 540px) {
  .menu_btn_wrap.sp {
    display: flex;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 840px) {
  .hamburger {
    display: flex;
    gap: 10px;
    flex-flow: column;
    justify-content: center;
    /* height: 100%; */
    aspect-ratio: 1/1;
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    padding: 20px;
    z-index: 101;
  }
  .hamburger span {
    height: 2px;
    width: 100%;
    background-color: #004b8e;
    transform-origin: center;
    transition: all 0.3s ease;
  }
}
.hamburger.open span {
  background-color: #fff;
}
.hamburger.open span:nth-of-type(1) {
  transform: translateY(620%) rotate(15deg);
}
.hamburger.open span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(-100%);
}
.hamburger.open span:nth-of-type(3) {
  transform: translateY(-620%) rotate(-15deg);
}

@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 540px) {
  .sp {
    display: block;
  }
}

.m_sp {
  display: none;
}
@media screen and (max-width: 840px) {
  .m_sp {
    display: block;
  }
}

.rec_banner_wrap {
  max-width: 1156px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  transform: translateY(-30%);
  display: block;
  position: relative;
}
.rec_banner_wrap:hover .rec_banner {
  transform: scale(1.05);
}
.rec_banner_wrap .rec_banner {
  display: flex;
  flex-flow: row wrap;
  text-decoration: none;
  position: relative;
  transition: all ease 0.3s;
}
.rec_banner_wrap .rec_banner [class*=rec_img] {
  width: 33.3333333333%;
  z-index: 0;
  overflow: hidden;
}
.rec_banner_wrap .rec_banner [class*=rec_img] img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.34, 1.15, 0.64, 1);
}
@media (prefers-reduced-motion: reduce) {
  .rec_banner_wrap .rec_banner [class*=rec_img] img {
    transition: none;
  }
  .rec_banner_wrap .rec_banner:hover [class*=rec_img] img {
    transform: none;
  }
  .rec_banner_wrap .rec_banner:hover .banner_btn:after {
    transform: none;
  }
}
.rec_banner_wrap .rec_banner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #004da0);
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0.6;
  z-index: 1;
}
.rec_banner_wrap h2 {
  font-size: 9.6rem;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  position: relative;
  color: #fff;
  line-height: 1;
}
.rec_banner_wrap h2 span {
  font-size: 2.7rem;
  color: #333333;
  display: block;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 540px) {
  .rec_banner_wrap h2 span {
    font-size: 1.7rem;
  }
}
.rec_banner_wrap h2::before {
  content: none;
}
@media screen and (max-width: 540px) {
  .rec_banner_wrap h2 {
    font-size: 4.6rem;
  }
}
.rec_banner_wrap .h2_wrap {
  position: absolute;
  left: 3%;
  bottom: 6%;
  z-index: 2;
  display: flex;
  flex-flow: row wrap;
  gap: 0 20px;
  align-items: end;
}
.rec_banner_wrap .banner_btn {
  font-size: 3.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  letter-spacing: 0;
}
.rec_banner_wrap .banner_btn:after {
  content: "";
  width: 33px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #ac8e4b;
  background-image: url(images/arrow.webp);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
  margin-left: 15px;
  flex-shrink: 0;
  transform-origin: center center;
  transition: transform 0.38s cubic-bezier(0.34, 1.15, 0.64, 1);
}
@media (prefers-reduced-motion: reduce) {
  .rec_banner_wrap .banner_btn:after {
    transition: none;
  }
  .rec_banner_wrap .banner_btn:hover:after, .rec_banner_wrap .banner_btn:focus-visible:after {
    transform: none;
  }
}
@media screen and (max-width: 540px) {
  .rec_banner_wrap .banner_btn {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 540px) {
  .rec_banner_wrap {
    border-radius: 15px;
  }
}

footer {
  border-radius: 50px 50px 0 0;
  background-color: #004da0;
  position: relative;
  z-index: 1;
  margin-top: 110px;
  padding-bottom: 30px;
}
@media screen and (max-width: 540px) {
  footer {
    border-radius: 30px 30px 0 0;
    margin-top: 70px;
  }
}

.footer_logo {
  width: 124px;
  margin-bottom: 60px;
  margin-top: -60px;
}
@media screen and (max-width: 540px) {
  .footer_logo {
    margin: 0 auto;
    margin-bottom: 60px;
    margin-top: 20px;
    width: 100px;
  }
}

.ft_menu {
  display: flex;
  gap: 60px;
  flex-flow: row wrap;
}
@media screen and (max-width: 840px) {
  .ft_menu {
    gap: 30px;
    margin: 0 auto;
    width: 90%;
  }
}
.ft_menu [class*=col] {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-flow: column;
  gap: 5px;
}
.ft_menu [class*=col] a {
  font-size: 1.6rem;
  color: #b2cae2;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 540px) {
  .ft_menu [class*=col] a {
    font-size: 1.4rem;
  }
}
.ft_menu [class*=col] .menu_child {
  font-size: 1.4rem;
  padding-left: 1.6rem;
  font-weight: 100;
}
.ft_menu [class*=col] h4 a {
  font-size: 2rem;
  color: #fff;
  border-bottom: 0.5px solid #6aacff;
  padding-bottom: 8px;
  margin-bottom: 15px;
  display: block;
}
@media screen and (max-width: 540px) {
  .ft_menu [class*=col] h4 a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 840px) {
  .ft_menu [class*=col] {
    flex: none;
    width: calc((100% - 30px) / 2);
  }
}

.ft_bottom {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 840px) {
  .ft_bottom {
    margin: 30px auto 0;
    width: 90%;
    justify-content: center;
    text-align: center;
  }
}

.ft_sns {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.ft_sns a {
  width: 26px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
}
.ft_sns a img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.sub_menu {
  font-size: 1rem;
  color: #fff;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.sub_menu a {
  padding: 7px 14px;
}
.sub_menu a:nth-of-type(1) {
  border-right: 0.5px solid #fff;
}
@media screen and (max-width: 540px) {
  .sub_menu a:nth-of-type(1) {
    padding-left: 0;
  }
}

.link_btn {
  font-size: 2.4rem;
  color: #fff;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  align-items: center;
  letter-spacing: 0;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s ease;
}
.link_btn:after {
  content: "";
  width: 46px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #ac8e4b;
  background-image: url(images/arrow.webp);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
  margin-left: 20px;
  flex-shrink: 0;
}
.link_btn:hover::after {
  background-color: #fff;
  border: #ac8e4b 1px solid;
  animation: arrow ease 0.5s forwards;
  background-image: url(images/arrow_rv.webp);
  transform: scale(-1, 1);
}

@keyframes arrow {
  0% {
    background-position-x: 200%;
  }
  100% {
    background-position-x: 50%;
  }
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
}

#mv {
  position: relative;
  padding: 0;
  overflow: hidden;
  height: calc(100svh - 100px);
}
@media screen and (max-width: 540px) {
  #mv {
    height: calc(100svh - 93px);
  }
}
#mv .mv {
  border-radius: 50px 50px 0 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 540px) {
  #mv .mv {
    border-radius: 30px 30px 0 0;
  }
}
#mv .main_copy {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  filter: drop-shadow(0 0 9px rgba(1, 42, 63, 0.9));
  position: absolute;
  left: 2.5%;
  top: 12%;
  line-height: 1.2;
  letter-spacing: 0.8rem;
  width: 95%;
  padding: 25px;
}
@media screen and (max-width: 840px) {
  #mv .main_copy {
    top: initial;
    bottom: 80px;
  }
}
@media screen and (max-width: 540px) {
  #mv .main_copy {
    line-height: 1.2;
    bottom: 30px;
  }
}
#mv .main_copy span {
  display: block;
}
#mv .main_copy .copy_large {
  font-size: clamp(5rem, -1.9rem + 9.2vw, 7.3rem);
}
@media screen and (max-width: 1600px) {
  #mv .main_copy .copy_large {
    font-size: clamp(3rem, 1.364rem + 4.85vw, 5rem);
  }
}
@media screen and (max-width: 540px) {
  #mv .main_copy .copy_large {
    font-size: 4rem;
    letter-spacing: 0.3rem;
  }
}
#mv .main_copy .copy_small {
  font-size: clamp(4.5rem, 2.4rem + 2.8vw, 5.2rem);
}
@media screen and (max-width: 1600px) {
  #mv .main_copy .copy_small {
    font-size: clamp(2rem, 1.182rem + 2.42vw, 3rem);
  }
}
@media screen and (max-width: 540px) {
  #mv .main_copy .copy_small {
    font-size: 2rem;
    letter-spacing: 0;
  }
}

#history {
  padding: 80px 0;
  position: relative;
}
#history .inner {
  max-width: 720px;
}
#history .copy {
  font-size: 4.3rem;
  color: #1a3666;
  margin-bottom: 30px;
  letter-spacing: 0.8rem;
  text-align: center;
}
@media screen and (max-width: 540px) {
  #history .copy {
    font-size: 2.3rem;
  }
}
#history .lead {
  color: #333;
  line-height: 2.5;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 650px) {
  #history .lead .nowrap-650 {
    white-space: nowrap;
  }
}
#history .mv_center_arrow {
  position: absolute;
  left: 50%;
  top: -38px;
  width: 1px;
  height: 76px;
  background-color: #6f8197;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
}
#history .mv_center_arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 1px;
  background-color: #6f8197;
  transform: rotate(-50deg);
  transform-origin: left center;
}
@media screen and (max-width: 540px) {
  #history .mv_center_arrow {
    bottom: -28px;
    height: 56px;
  }
  #history .mv_center_arrow::after {
    width: 14px;
  }
}

#slide {
  z-index: -1;
  position: relative;
  margin-bottom: 100px;
}
#slide .blur {
  aspect-ratio: 1/1;
  border-radius: 38px;
  background-color: #e5edf5;
  filter: blur(16px);
  width: 15vw;
  position: absolute;
  left: 10%;
  top: 0%;
}
#slide .blur:nth-of-type(2) {
  left: initial;
  right: 10%;
  bottom: 0;
  top: initial;
}
#slide .swiper-wrapper {
  transition-timing-function: linear;
}
#slide .swiper-slide {
  margin-top: 0;
}
#slide .swiper-slide img {
  width: 100%;
  display: block;
  margin: 0;
}
#slide .swiper-slide.slide1 {
  transform: translateY(50%);
}
#slide .swiper-slide.slide2 {
  transform: translateY(10%);
}
#slide .swiper-slide.slide2 img:nth-of-type(2) {
  width: 50%;
  margin-left: auto;
  margin-top: 30px;
}
#slide .swiper-slide.slide4 {
  transform: translateY(25%);
}
#slide .swiper-slide.slide4 img:nth-of-type(1) {
  width: 50%;
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  #slide {
    margin-top: -45px;
    margin-bottom: 10px;
  }
  #slide .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  #slide .swiper-slide.slide1 {
    transform: translateY(22%);
  }
  #slide .swiper-slide.slide2 {
    transform: translateY(0);
  }
  #slide .swiper-slide.slide4 {
    transform: translateY(12%);
  }
  #slide .swiper-slide img {
    height: auto;
  }
  #slide .swiper-slide.slide2 img:nth-of-type(2) {
    margin-top: 10px;
  }
  #slide .swiper-slide.slide4 img:nth-of-type(1) {
    margin-bottom: 10px;
  }
}

h2 {
  color: #1a3666;
  font-size: 9.6rem;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  position: relative;
}
h2 span {
  font-size: 2.7rem;
  color: #333333;
  display: block;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 540px) {
  h2 span {
    font-size: 1.7rem;
  }
}
h2:before {
  content: "";
  background-color: #ac8e4b;
  width: 46px;
  height: 5px;
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 540px) {
  h2 {
    font-size: 4.6rem;
  }
  h2::before {
    width: 36px;
    height: 3px;
    top: 64%;
  }
}

.busi_inner {
  margin-top: 50px;
}
.busi_inner article {
  border-radius: 50px 50px 0 0;
  background-color: #004da0;
  padding: 80px;
  padding-bottom: 160px;
  position: sticky;
  top: 100px;
}
.busi_inner article:nth-of-type(2) {
  background-color: #2768af;
}
.busi_inner article:nth-of-type(2) .wrap .num {
  color: #1c61aa;
}
.busi_inner article:nth-of-type(3) {
  background-color: #4a80bc;
}
.busi_inner article:nth-of-type(3) .wrap .num {
  color: #427bb9;
}
.busi_inner article:nth-of-type(4) {
  background-color: #6a98c8;
}
.busi_inner article:nth-of-type(4) .wrap .num {
  color: #598bc1;
}
.busi_inner article:nth-of-type(5) {
  background-color: #87acd3;
}
.busi_inner article:nth-of-type(5) .wrap .num {
  color: #78a1cd;
}
.busi_inner article:nth-of-type(n + 2) {
  margin-top: -80px;
}
@media screen and (max-width: 540px) {
  .busi_inner article {
    border-radius: 30px 30px 0 0;
    padding: 25px;
    padding-bottom: 160px;
  }
}
.busi_inner .wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 60px;
}
.busi_inner .wrap .busi_img {
  width: 52%;
  aspect-ratio: 1/0.73;
  background-color: #ddd;
  border-radius: 45px;
  overflow: hidden;
}
.busi_inner .wrap .busi_img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 840px) {
  .busi_inner .wrap .busi_img {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .busi_inner .wrap .busi_img {
    border-radius: 18px;
    aspect-ratio: 16/9;
  }
  .busi_inner .wrap .busi_img img {
    -o-object-position: top;
       object-position: top;
  }
}
.busi_inner .wrap .txt {
  flex: 1;
  position: relative;
}
.busi_inner .wrap .txt .heading {
  font-size: 2rem;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
}
@media screen and (max-width: 540px) {
  .busi_inner .wrap .txt .heading {
    font-size: 1.2rem;
  }
}
.busi_inner .wrap .txt h3 {
  font-size: 4.3rem;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
@media screen and (max-width: 540px) {
  .busi_inner .wrap .txt h3 {
    font-size: 2.4rem;
  }
}
.busi_inner .wrap .txt p {
  color: #fff;
  margin: 20px 0;
}
.busi_inner .wrap .num {
  color: #004b8e;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14.5rem;
  position: absolute;
  right: -3%;
  bottom: -7%;
  line-height: 1;
  z-index: -1;
}
.busi_inner .wrap .link_btn {
  margin-top: 60px;
}
@media screen and (max-width: 540px) {
  .busi_inner .wrap .link_btn {
    margin-top: 20px;
  }
}
@media screen and (max-width: 540px) {
  .busi_inner .wrap {
    gap: 20px;
  }
}

#news .inner {
  display: flex;
  flex-flow: row wrap;
  gap: 100px;
}
@media screen and (max-width: 840px) {
  #news .inner {
    gap: 50px;
  }
}
#news .h2_wrap {
  width: -moz-fit-content;
  width: fit-content;
}
#news .h2_wrap h2 {
  margin-top: -18%;
  text-align: left;
}
#news .h2_wrap h2:before {
  left: 0;
  transform: none;
}
@media screen and (max-width: 540px) {
  #news .h2_wrap {
    width: 100%;
  }
  #news .h2_wrap h2 {
    margin-top: 0;
    text-align: center;
  }
  #news .h2_wrap h2:before {
    left: 50%;
    transform: translateX(-50%);
  }
}
#news .news_wrap {
  flex: 1;
}
#news .news_wrap .item {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  transition: all 0.3s ease;
  padding: 0 10px;
}
#news .news_wrap .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ac8e4b 0, #ac8e4b 120px, #494949 120px, #494949 100%);
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 540px) {
  #news .news_wrap .item::before {
    background: #ac8e4b;
  }
}
#news .news_wrap .item .date,
#news .news_wrap .item .title,
#news .news_wrap .item .ns_btn {
  padding: 8px 0;
}
#news .news_wrap .item .date {
  width: 120px;
  font-family: "niveau-grotesk", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ac8e4b;
  letter-spacing: 0;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 540px) {
  #news .news_wrap .item .date {
    width: 100%;
    padding-bottom: 0;
  }
  #news .news_wrap .item .date::after {
    content: none !important;
  }
}
@media screen and (max-width: 540px) {
  #news .news_wrap .item .title,
  #news .news_wrap .item .ns_btn {
    border-top: none;
  }
}
#news .news_wrap .item .title {
  flex: 1;
  font-size: 1.6rem;
  color: #3f5665;
  padding-right: 60px;
  line-height: 1.75;
  min-height: 4.25em;
  padding-block: 6px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 540px) {
  #news .news_wrap .item .title {
    padding-top: 6px;
    font-size: 1.5rem;
    padding-right: 15px;
  }
}
#news .news_wrap .item .ns_btn {
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#news .news_wrap .item .ns_btn:after {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #ac8e4b;
  background-image: url(images/arrow.webp);
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: center;
  flex-shrink: 0;
  transform-origin: center center;
  transition: transform 0.38s cubic-bezier(0.34, 1.15, 0.64, 1);
}
@media screen and (max-width: 540px) {
  #news .news_wrap .item .ns_btn {
    align-items: start;
  }
}
#news .news_wrap .item.tab_url .ns_btn:after {
  background-image: url(images/tab.webp);
  background-size: 40%;
}
@media (prefers-reduced-motion: reduce) {
  #news .news_wrap .item .ns_btn:after {
    transition: none;
  }
  #news .news_wrap .item:hover .ns_btn:after, #news .news_wrap .item:focus-visible .ns_btn:after {
    transform: none;
  }
}
#news .news_wrap .item:nth-last-of-type(1)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ac8e4b 0, #ac8e4b 120px, #494949 120px, #494949 100%);
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 540px) {
  #news .news_wrap .item:nth-last-of-type(1)::after {
    background: #ac8e4b;
  }
}
#news .news_wrap .item:hover {
  background-color: #e8f1fa;
}
#news .link_btn {
  color: #1a3666;
  margin-top: 50px;
  font-size: 1.8rem;
}
@media screen and (max-width: 840px) {
  #news .link_btn.pc {
    display: none;
  }
}
#news .link_btn.sp {
  display: none;
}
@media screen and (max-width: 840px) {
  #news .link_btn.sp {
    display: flex;
    justify-content: center;
    margin: 50px auto 0;
  }
}

.fix_sns {
  display: flex;
  flex-flow: column;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}
.fix_sns a {
  width: 75px;
  aspect-ratio: 1/1;
  padding: 16.5px;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fix_sns a img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.fix_sns a.insta {
  background-color: #1a3666;
}
.fix_sns a.yt {
  background-color: #ff0033;
}
.fix_sns a.tt {
  background-color: #000;
}
@media screen and (max-width: 540px) {
  .fix_sns {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */