@charset "UTF-8";
/* header
--------------------------------------------------------- */
.is_first_view {
  position: relative;
}

.header-container-wrapper.is_first_view {
  padding: 25px 0;
}

.is_first_view .hdr-content {
  color: var(--color-white);
  background: transparent;
  height: 60px;
  padding: 0 25px 0 35px;
  box-shadow: none;
}

/* hdr-logo */
.is_first_view .hdr-logo img {
  filter: brightness(0) invert(1);
}

.is_first_view .hdr-logo p {
  font-size: 1.1rem;
}

/* hdr-btns */
.is_first_view .hdr-btns .btn {
  color: var(--color-white);
}

/* content
--------------------------------------------------------- */
.body-container-wrapper {
  /* margin-top: -120px; */
  transform: translateY(-120px);
}

/* ----- #mv ----- */
#mv {
  z-index: 1;
  padding: 0;
  margin: 20px;
}

#mv .section-body {
  width: 100%;
  height: calc(100vh - 40px);
  min-height: 728px;
  border-radius: 40px;
  overflow: hidden;
}

.video_wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  border-radius: 39px;
}

.video_wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-contents {
  color: var(--color-white);
  position: absolute;
  left: 70px;
  bottom: 50px;
}

.mv-ttl {
  font-size: 10rem;
  line-height: 1.1;
}

.mv-summary {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 30px;
}

.mv-contents .btn-wrap {
  margin-top: 57px;
}

.mv-contents .btn {
  border-color: var(--color-primary);
}

/* @media
--------------------------------------------------------- */
/* @media only screen and (max-width: 989px) {} */
@media (width <= 989px) {
  /* header
  --------------------------------------------------------- */
  .header-container-wrapper.is_first_view {
    padding: 10px 0;
  }
  .is_first_view .hdr-content {
    height: 50px;
    padding: 0 10px 0 20px;
  }
  /* content
  --------------------------------------------------------- */
  .body-container-wrapper {
    /* margin-top: -70px; */
    transform: translateY(-70px);
  }
  /* ----- #mv ----- */
  #mv {
    margin: 10px;
  }
  #mv .section-body {
    height: calc(100vh - 20px);
    min-height: 648px;
    border-radius: 30px;
  }
  .video_wrapper {
    border-radius: 29px;
  }
  .mv-contents {
    left: 30px;
    right: 30px;
    bottom: 45px;
  }
  .mv-ttl {
    font-size: 4.5rem;
  }
  .mv-summary {
    font-size: 1.3rem;
    margin-top: 20px;
  }
  .mv-contents .btn-wrap {
    margin-top: 40px;
  }
}
/* 2025.07.22追記
--------------------------------------------------------- */
._only-SP {
  display: none;
}
@media (width <= 989px) {
  ._only-SP {
    display: block;
  }
}

.top_section_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin: 0 0 100px;
}
@media (width <= 989px) {
  .top_section_header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 50px;
  }
}
.top_section_header .btn-wrap {
  margin-bottom: 22px;
}
@media (width <= 989px) {
  .top_section_header .btn-wrap {
    margin-bottom: 0;
  }
}

.top_title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (width <= 989px) {
  .top_title {
    gap: 0;
  }
}
.top_title .t_jp {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2307692308;
  color: var(--color-primary);
}
@media (width <= 989px) {
  .top_title .t_jp {
    font-size: 1.4rem;
    line-height: 2.2857142857;
  }
}
.top_title .t_en {
  font-family: var(--font-outfit);
  font-weight: 500;
  font-size: 9rem;
  line-height: 1.1;
}
@media (width <= 989px) {
  .top_title .t_en {
    font-size: 5rem;
    line-height: 1.1;
  }
}

.top_news {
  display: flex;
  align-items: flex-end;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 70px;
  width: 380px;
  height: calc(100vh - 40px - 50px);
}
@media (width <= 989px) {
  .top_news {
    position: static;
    width: auto;
    height: auto;
    margin: 64px 20px 0;
  }
}
.top_news > .title {
  position: absolute;
  top: -999px;
  left: -9999px;
}
.top_news .news_swiper {
  overflow: hidden;
}
.top_news .news_swiper .topNews_swiper-container .swiper-slide {
  height: auto;
}
.top_news .news_swiper .topNews_swiper-container .swiper-slide a {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 15px;
  height: 100%;
  padding: 25px;
  border-radius: 30px;
  background-color: var(--color-white);
}
@media (width <= 989px) {
  .top_news .news_swiper .topNews_swiper-container .swiper-slide a {
    padding-bottom: 30px;
    background-color: var(--color-secondary);
  }
}
.top_news .news_swiper .topNews_swiper-container .swiper-slide a .status {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.top_news .news_swiper .topNews_swiper-container .swiper-slide a .status .date {
  font-family: var(--font-outfit);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
}
.top_news .news_swiper .topNews_swiper-container .swiper-slide a .status .category {
  font-size: 1.2rem;
  line-height: 1.4166666667;
  color: var(--color-primary);
}
.top_news .news_swiper .topNews_swiper-container .swiper-slide a .title {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4285714286;
}

.top_blog {
  position: relative;
  margin-top: -10px;
}
@media (width <= 989px) {
  .top_blog {
    margin-top: 0;
  }
}
.top_blog::before {
  content: "";
  display: block;
  position: absolute;
  top: -280px;
  left: 0;
  width: 50%;
  height: 600px;
  border-radius: 0 267px 267px 0;
  background-color: var(--color-secondary);
}
@media (width <= 989px) {
  .top_blog::before {
    display: none;
  }
}
.top_blog .blog_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}
@media (width <= 989px) {
  .top_blog .blog_list {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
.top_blog .blog_list article a {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}
@media (width <= 989px) {
  .top_blog .blog_list article a {
    gap: 20px;
  }
}
.top_blog .blog_list article a .head .title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.top_blog .blog_list article a .head .name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0 0;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.top_blog .blog_list article a .head .name .icon {
  overflow: hidden;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.top_blog .blog_list article a .head .name .icon img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top_blog .blog_list article a .body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (width <= 989px) {
  .top_blog .blog_list article a .body {
    gap: 20px;
  }
}
.top_blog .blog_list article a .body .date {
  font-family: var(--font-outfit);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
}
.top_blog .blog_list article a .body .category {
  display: flex;
  gap: 5px 8px;
}
.top_blog .blog_list article a .body .category span {
  padding: 7px 10px;
  border-radius: 10px;
  border: solid 1px #7B9AB2;
  font-size: 1.3rem;
  line-height: 1;
}
.top_blog .blog_list article a .body .image {
  overflow: hidden;
  aspect-ratio: 378/214;
  width: 100%;
  border-radius: 20px;
}
.top_blog .blog_list article a .body .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.top_consul {
  margin: 0 20px;
  border-radius: 40px;
  background-color: var(--color-secondary);
  line-height: 1.8;
}
@media (width <= 989px) {
  .top_consul {
    margin: 0;
  }
}
.top_consul .inner {
  padding: 0 50px;
}
@media (width <= 989px) {
  .top_consul .inner {
    padding: 0 20px;
  }
}
.top_consul .inner .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0 20px;
}
@media (width <= 989px) {
  .top_consul .inner .body {
    flex-direction: column-reverse;
    gap: 30px;
    margin-left: 0;
  }
}
.top_consul .inner .body .text {
  width: 52.2885572139%;
}
@media (width <= 989px) {
  .top_consul .inner .body .text {
    width: 100%;
  }
}
.top_consul .inner .body .text .title {
  margin: 0 0 30px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (width <= 989px) {
  .top_consul .inner .body .text .title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
.top_consul .inner .body .text .btn-wrap {
  margin-top: 50px;
}
@media (width <= 989px) {
  .top_consul .inner .body .text .btn-wrap {
    margin-top: 30px;
  }
}
.top_consul .inner .body .image {
  width: 33.9469320066%;
}
@media (width <= 989px) {
  .top_consul .inner .body .image {
    width: 100%;
  }
}
.top_consul .inner .body .image img {
  border-radius: 30px;
}
@media (width <= 989px) {
  .top_consul .inner .body .image img {
    border-radius: 15px;
  }
}
.top_consul .inner .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 100px 0 0 20px;
}
@media (width <= 989px) {
  .top_consul .inner .foot {
    flex-direction: column-reverse;
    gap: 30px;
    margin: 50px 0 0 0;
  }
}
.top_consul .inner .foot .text {
  width: 52.2885572139%;
}
@media (width <= 989px) {
  .top_consul .inner .foot .text {
    width: 100%;
  }
}
.top_consul .inner .foot .text .title {
  margin: 0 0 30px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.0666666667;
}
@media (width <= 989px) {
  .top_consul .inner .foot .text .title {
    margin-bottom: 25px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.top_consul .inner .foot .text .btn-wrap {
  margin-top: 50px;
}
@media (width <= 989px) {
  .top_consul .inner .foot .text .btn-wrap {
    margin-top: 30px;
  }
}
.top_consul .inner .foot .image {
  width: 33.9469320066%;
}
@media (width <= 989px) {
  .top_consul .inner .foot .image {
    width: 100%;
  }
}
.top_consul .inner .foot .image img {
  border-radius: 30px;
}
@media (width <= 989px) {
  .top_consul .inner .foot .image img {
    border-radius: 15px;
  }
}

.top_case .case_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
}
@media (width <= 989px) {
  .top_case .case_list {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
}
.top_case .case_list article a {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (width <= 989px) {
  .top_case .case_list article a {
    gap: 20px;
  }
}
.top_case .case_list article a .image {
  overflow: hidden;
  aspect-ratio: 378/214;
  width: 100%;
  border-radius: 30px;
}
@media (width <= 989px) {
  .top_case .case_list article a .image {
    border-radius: 20px;
  }
}
.top_case .case_list article a .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top_case .case_list article a .text .title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.top_case .case_list article a .text .company {
  margin: 10px 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7142857143;
  color: #7B9AB2;
}
.top_case .case_list article a .foot {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.top_case .case_list article a .foot li {
  font-size: 1.2rem;
  line-height: 2;
}

.top_quollio {
  position: relative;
  min-height: 520px;
  margin: 0 20px;
  padding: 66px 0;
  border-radius: 30px;
  background-image: url("/hubfs/corp/website/assets/renew/images/top/quollio-bg.webp");
  background-size: cover;
}
@media (width <= 989px) {
  .top_quollio {
    padding: 50px 0;
    background-image: url("/hubfs/corp/website/assets/renew/images/top/sp/quollio-bg.webp");
  }
}
.top_quollio .inner {
  position: static;
}
.top_quollio .inner .image {
  position: absolute;
  top: 50%;
  right: 20PX;
  transform: translate(0, -50%);
  width: 800px;
}
@media (width <= 989px) {
  .top_quollio .inner .image {
    display: block;
    position: static;
    transform: translate(0, 0);
    width: 96.7741935484%;
    margin: 0 -13px 20px auto;
    margin-top: -14.1935483871%;
  }
}
.top_quollio .inner .top_section_header {
  margin-bottom: 20px;
}
@media (width <= 989px) {
  .top_quollio .inner .top_section_header {
    margin-bottom: 0;
  }
}
.top_quollio .inner .top_section_header .top_title .t_en {
  font-size: 6rem;
  line-height: 1.1;
  color: rgba(0, 44, 111, 0.8);
}
@media (width <= 989px) {
  .top_quollio .inner .top_section_header .top_title .t_en {
    font-size: 4rem;
    line-height: 1.1;
  }
}
.top_quollio .inner .body {
  max-width: 546px;
  font-size: 1.4rem;
  line-height: 1.8;
}
.top_quollio .inner .btn-wrap {
  margin-top: 40px;
}
@media (width <= 989px) {
  .top_quollio .inner .btn-wrap {
    margin-top: 30px;
  }
}

.top_seminars {
  margin: 150px 20px 0;
  border-radius: 40px;
  background-color: var(--color-secondary);
}
@media (width <= 989px) {
  .top_seminars {
    margin: 100px 0 0;
  }
}
.top_seminars .inner {
  padding: 0 50px;
}
@media (width <= 989px) {
  .top_seminars .inner {
    padding: 0 20px;
  }
}
.top_seminars .inner .body {
  line-height: 1.8;
}
.top_seminars .inner .body > .title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 20px 6px;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2307692308;
}
@media (width <= 989px) {
  .top_seminars .inner .body > .title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
.top_seminars .inner .body > .title::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0.5em 0 0;
  border-radius: 50%;
  background-color: var(--color-primary);
  outline: 6px solid rgba(7, 75, 177, 0.3);
  outline-offset: 0;
}
.top_seminars .inner .body .seminars_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 46px;
  margin: 50px 0 0;
}
@media (width <= 989px) {
  .top_seminars .inner .body .seminars_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.top_seminars .inner .body .seminars_list article {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background-color: var(--color-white);
}
.top_seminars .inner .body .seminars_list article .head {
  overflow: hidden;
  aspect-ratio: 378/253;
  position: relative;
  width: 100%;
}
.top_seminars .inner .body .seminars_list article .head .inner_wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}
.top_seminars .inner .body .seminars_list article .head .inner_wrap .title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
.top_seminars .inner .body .seminars_list article .head .inner_wrap .title span {
  display: inline;
  background: linear-gradient(transparent 0%, var(--color-white) 0%);
  padding: 0 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.top_seminars .inner .body .seminars_list article .body {
  display: flex;
  gap: 20px;
  margin: 20px;
}
.top_seminars .inner .body .seminars_list article .body dt {
  font-size: 1.4rem;
  font-weight: 700;
  color: #7B9AB2;
}
.top_seminars .inner .body .seminars_list article .body dd {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.5;
}
.top_seminars .inner .body .seminars_list article .foot {
  display: flex;
  justify-content: flex-end;
  margin: auto 20px 0;
  padding: 20px 0 30px;
  border-top: solid 1px #DDD;
}
.top_seminars .inner .body .seminars_list article .foot .btn-wrap {
  min-width: 208px;
}

.top_dms .inner > .body {
  line-height: 1.8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 989px) {
  .top_dms .inner > .body {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
.top_dms .inner > .body .text {
  width: 52.0065252855%;
}
@media (width <= 989px) {
  .top_dms .inner > .body .text {
    width: 100%;
  }
}
.top_dms .inner > .body .text .title {
  margin: 0 0 30px;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (width <= 989px) {
  .top_dms .inner > .body .text .title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
.top_dms .inner > .body .text .btn-wrap {
  margin-top: 50px;
}
@media (width <= 989px) {
  .top_dms .inner > .body .text .btn-wrap {
    margin-top: 30px;
  }
}
.top_dms .inner > .body .image {
  width: 33.2300163132%;
}
@media (width <= 989px) {
  .top_dms .inner > .body .image {
    width: 100%;
  }
}
.top_dms .inner > .body .image img {
  border-radius: 30px;
}
@media (width <= 989px) {
  .top_dms .inner > .body .image img {
    border-radius: 15px;
  }
}
.top_dms .dms_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 46px;
  margin: 100px 0 0;
}
@media (width <= 989px) {
  .top_dms .dms_list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
  }
}
.top_dms .dms_list article {
  display: flex;
  flex-direction: column;
}
.top_dms .dms_list article .head {
  overflow: hidden;
  aspect-ratio: 378/214;
  width: 100%;
  border-radius: 20px;
}
.top_dms .dms_list article .head img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.top_dms .dms_list article .body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px 0 20px;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media (width <= 989px) {
  .top_dms .dms_list article .body {
    margin-top: 20px;
  }
}
.top_dms .dms_list article .body .title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.top_dms .dms_list article .foot {
  display: flex;
  justify-content: flex-end;
  margin: auto 0 0;
  padding: 20px 0 0;
  border-top: solid 1px #DDD;
}
.top_dms .dms_list article .foot .btn-wrap {
  min-width: 208px;
}

#notice {
  position: absolute;
  z-index: 99;
  background: #ff4646;
  color: #f1f1f1;
  padding: 5px;
  font-size: 15px;
}
@media (width <= 989px) {
  #notice {
    background: #ff4646;
    color: #f1f1f1;
    padding: 2px 5px;
    font-size: 13px;
  }
}