@charset "UTF-8";
/* ズーム（scale1 → 1.1） */
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.top_kv_inner {
  width: 100vw;
  height: 100vh;
  position: relative;
}
.top_kv_img-wrapper {
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
  position: relative;
}
.top_kv_img-wrapper picture {
  position: absolute;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: zoom 5s linear forwards;
  /* スライド1枚のズーム動作 */
  transform-origin: center;
}
.top_kv_img-wrapper picture:first-child {
  opacity: 1;
}
.top_kv_img-wrapper picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_kv_main {
  position: absolute;
  bottom: 3%;
  left: 5%;
  color: #fff !important;
  display: none;
}
@media screen and (max-width: 768px) {
  .top_kv_main {
    bottom: 40%;
  }
}
.top_kv_main-ja {
  font-size: clamp(36px, 1.765rem + 2.07vw, 68px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.4);
}
.top_kv_main-en {
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.4);
  margin-top: 15px;
}
.top_kv_news {
  position: absolute;
  width: 45%;
  max-width: 600px;
  bottom: 3%;
  right: 0;
  background-color: #fff;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transform: translateX(100%);
  transition: all 0.4s;
}
@media screen and (max-width: 1024px) {
  .top_kv_news {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .top_kv_news {
    width: 90%;
    max-width: 500px;
  }
}
.top_kv_news-title {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #15268B;
  color: #fff;
  font-size: clamp(18px, 1rem + 0.3vw, 26px);
  font-weight: 600;
  text-align: center;
  padding: 10px 28px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .top_kv_news-title {
    padding: 8px 15px;
  }
}
.top_kv_news_item {
  flex-grow: 1;
  font-size: clamp(14px, 0.845rem + 0.13vw, 16px);
  font-weight: 600;
  padding: 15px 25px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .top_kv_news_item {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 768px) {
  .top_kv_news_item {
    padding: 8px 15px;
  }
}
.top_kv_news_item a {
  transition: all 0.4s;
}
.top_kv_news_item a:hover {
  color: #15268B;
}
.top_kv_news_item-date {
  font-size: clamp(12px, 0.72rem + 0.13vw, 14px);
  line-height: 1.3;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .top_kv_news_item-date {
    margin-bottom: 3px;
  }
}
.top_kv_news_item-title {
  min-width: 0;
  line-height: 1.3;
  /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top_kv_news.slidein {
  transform: translateX(0);
}
.top_about {
  padding: 110px 0 0;
}
@media screen and (max-width: 1024px) {
  .top_about {
    padding: 50px 0 0;
  }
}
.top_about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .top_about-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.top_about-text {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top_about-text {
    flex: none;
    width: 100%;
  }
}
.top_about-img {
  width: 34%;
}
@media screen and (max-width: 768px) {
  .top_about-img {
    width: 100%;
  }
}
.top_about-img img {
  border-radius: 10px;
}
.top_about-img-text {
  text-align: right;
  font-size: clamp(14px, 0.845rem + 0.13vw, 16px);
  margin-top: 5px;
}
.top_about-member {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .top_about-member {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .top_about-member {
    justify-content: center;
    margin: 0 auto;
    margin-top: 50px;
    max-width: 500px;
  }
}
.top_about-member img {
  width: calc((100% - 80px) / 5);
}
@media screen and (max-width: 768px) {
  .top_about-member img {
    width: calc((100% - 20px) / 3);
  }
}
.top_business {
  padding: 110px 0;
  background-color: #15268B;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .top_business {
    padding: 50px 0;
  }
}
.top_business_scaffolding-link {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: #fff;
  color: #15268B;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top_business_scaffolding-link {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top_business_scaffolding-link {
    display: block;
    border-radius: 5px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}
.top_business_scaffolding-link:hover .circle-arrow {
  background-color: #15268B;
}
.top_business_scaffolding-link:hover .circle-arrow::before, .top_business_scaffolding-link:hover .circle-arrow::after {
  background-color: #fff;
}
.top_business_scaffolding-img {
  display: block;
  width: 40%;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .top_business_scaffolding-img {
    width: 100%;
  }
}
.top_business_scaffolding-text {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .top_business_scaffolding-text {
    padding: 15px 10px;
  }
}
.top_business_scaffolding-text span {
  display: block;
}
.top_business_scaffolding-text-en {
  font-size: clamp(14px, 0.784rem + 0.39vw, 20px);
  line-height: 1.3;
  font-weight: 500;
}
.top_business_scaffolding-text-ja {
  font-size: clamp(18px, 0.943rem + 0.78vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 5px;
}
.top_business_scaffolding-text .circle-arrow {
  max-width: 75px;
}
@media screen and (max-width: 1024px) {
  .top_business_scaffolding-text .circle-arrow {
    width: 13%;
  }
}
@media screen and (max-width: 768px) {
  .top_business_scaffolding-text .circle-arrow {
    max-width: 55px;
  }
}
.top_business_scaffolding-text .circle-arrow::before, .top_business_scaffolding-text .circle-arrow::after {
  max-width: 16px;
  height: 2px;
}
@media screen and (max-width: 1024px) {
  .top_business_scaffolding-text .circle-arrow::before, .top_business_scaffolding-text .circle-arrow::after {
    width: 24%;
  }
}
@media screen and (max-width: 768px) {
  .top_business_scaffolding-text .circle-arrow::before, .top_business_scaffolding-text .circle-arrow::after {
    height: 1.5px;
  }
}
.top_sns {
  padding: 110px 0 0;
}
@media screen and (max-width: 1024px) {
  .top_sns {
    padding: 50px 0 0;
  }
}
.top_sns .section_title {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top_sns .section_title {
    margin-bottom: 20px;
  }
}
.top_sns_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .top_sns_inner {
    display: block;
  }
}
.top_sns_info {
  width: 35%;
  min-width: 370px;
}
@media screen and (max-width: 768px) {
  .top_sns_info {
    width: 100%;
    min-width: auto;
  }
}
.top_sns_list {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .top_sns_list {
    width: 100%;
    margin-top: 40px;
  }
}
.top_sns_list_item-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #B8BBCC;
  padding: 25px 10px;
  font-size: clamp(20px, 0.977rem + 1.17vw, 38px);
  font-weight: 600;
  transition: all 0.4s;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .top_sns_list_item-link {
    padding: 20px 10px;
  }
}
.top_sns_list_item-link:hover {
  color: #15268B;
}
.top_sns_list_item-link:hover .circle-arrow {
  background-color: #15268B;
}
.top_sns_list_item-link:hover .circle-arrow::after, .top_sns_list_item-link:hover .circle-arrow::before {
  background-color: #fff;
}
.top_sns_list_item:first-child .top_sns_list_item-link {
  padding-top: 0;
}
.top_recruit {
  margin-top: 30px;
  margin-bottom: 30px;
}
.top_recruit_inner {
  max-width: 1240px;
  width: 75%;
}
@media screen and (max-width: 768px) {
  .top_recruit_inner {
    max-width: 600px;
    width: 90%;
  }
}
.top_recruit_item {
  display: flex;
  align-items: stretch;
  gap: 40px;
  background-color: #E63C66;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top_recruit_item {
    gap: 25px;
  }
}
@media screen and (max-width: 768px) {
  .top_recruit_item {
    display: block;
    border-radius: 5px;
  }
}
.top_recruit_item:hover .top_recruit_btn {
  background-color: #fff !important;
  color: #E63C66 !important;
}
.top_recruit_img {
  width: 38%;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .top_recruit_img {
    width: 100%;
  }
}
.top_recruit_img picture {
  width: 100%;
  height: 100%;
}
.top_recruit_text {
  flex: 1;
  padding: 40px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .top_recruit_text {
    padding: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .top_recruit_text {
    flex: none;
    padding: 15px 10px 20px;
  }
}
.top_recruit_text-main {
  font-size: clamp(22px, 1.102rem + 1.17vw, 40px);
  font-weight: 700;
  line-height: 1.4;
}
.top_recruit_btn {
  width: 100%;
  max-width: 300px;
  margin-top: 40px;
  margin-left: 0;
  margin-right: auto;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .top_recruit_btn {
    margin-top: 25px;
    max-width: none;
  }
}
.top_news {
  padding: 110px 0;
}
@media screen and (max-width: 1024px) {
  .top_news {
    padding: 50px 0;
  }
}
.top_news_inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .top_news_inner {
    display: block;
  }
}
.top_news .section_title {
  flex: 1;
}
.top_news .section_title-en {
  line-height: 1;
  margin-bottom: 10px;
}
.top_news_list {
  width: 75%;
}
@media screen and (max-width: 1024px) {
  .top_news_list {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .top_news_list {
    width: 100%;
  }
}
.top_news_list_item {
  border-top: 1px solid #B8BBCC;
}
.top_news_list_item:last-child {
  border-bottom: 1px solid #B8BBCC;
}
.top_news_list_item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  padding: 30px 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .top_news_list_item-link {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 768px) {
  .top_news_list_item-link {
    padding: 15px 5px;
  }
}
.top_news_list_item-link:hover .top_news_list_item-title,
.top_news_list_item-link:hover .top_news_list_item-date {
  color: #15268B;
}
.top_news_list_item-link:hover .circle-arrow {
  background-color: #15268B;
}
.top_news_list_item-link:hover .circle-arrow::before, .top_news_list_item-link:hover .circle-arrow::after {
  background-color: #fff;
}
.top_news_list_item-text {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .top_news_list_item-text {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .top_news_list_item-text {
    gap: 5px 8px;
  }
}
.top_news_list_item-date {
  transition: all 0.4s;
}
.top_news_list_item-cat {
  display: block;
  min-width: -moz-fit-content;
  min-width: fit-content;
  background-color: #E4E6F2;
  color: #15268B;
  font-size: clamp(12px, 0.689rem + 0.26vw, 16px);
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .top_news_list_item-cat {
    border-radius: 3px;
  }
}
.top_news_list_item-title {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.4s;
}
@media screen and (max-width: 1024px) {
  .top_news_list_item-title {
    flex-grow: 0;
    width: 100%;
  }
}
.top_news_list_item .circle-arrow {
  min-width: 40px;
}
@media screen and (max-width: 768px) {
  .top_news_list_item .circle-arrow {
    min-width: 30px;
  }
}
.top_news_btn {
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .top_news_btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .top_news_btn {
    margin-right: auto;
  }
}