/*============================================================================

		top

============================================================================*/
.mv_area {
  position: relative;
  padding-top: 130%;
  background: #002986;
  background: linear-gradient(60deg, rgb(0, 41, 134) 0%, rgb(2, 51, 159) 100%);
}
@media print, screen and (min-width: 920px) {
  .mv_area {
    padding-top: 200px;
  }
}

.mv_line_area {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.mv_line {
  display: block;
  width: 2000px;
  height: 200px;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  opacity: 0.7;
  overflow: hidden;
}
.mv_line::before, .mv_line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  animation: lineGrow 0.7s forwards;
  animation-delay: 0.7s;
}
.mv_line::before {
  top: 0;
}
.mv_line::after {
  bottom: 0;
}
.mv_line:nth-child(1) {
  top: 50%;
  left: calc(50% - 150px);
}
@media print, screen and (min-width: 920px) {
  .mv_line:nth-child(1) {
    left: calc(50% - 300px);
  }
}
.mv_line:nth-child(2) {
  left: calc(50% + 150px);
  bottom: 50%;
}
@media print, screen and (min-width: 920px) {
  .mv_line:nth-child(2) {
    left: calc(50% + 300px);
  }
}

@keyframes lineGrow {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.mv_catch {
  transform: scale(1.1) rotate(-41deg);
  width: 100%;
  position: absolute;
  top: 25%;
  left: 0px;
}
@media print, screen and (min-width: 920px) {
  .mv_catch {
    position: static;
    transform: none;
    width: 100%;
    padding-bottom: 40px;
  }
}
.mv_catch img {
  width: 100%;
}

@keyframes mv_sliderAnimation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.autoplay-slider {
  display: flex;
  width: 1066.6666666667%;
  animation: mv_sliderAnimation 30s linear infinite;
}
@media print, screen and (min-width: 920px) {
  .autoplay-slider {
    width: 320%;
  }
}
.autoplay-slider .slide {
  flex-shrink: 0;
  width: 6.25%;
  position: relative;
}
@media print, screen and (min-width: 920px) {
  .autoplay-slider .slide {
    width: 6.25%;
  }
}
.autoplay-slider .slide img {
  width: 100%;
}

.mv_human_area {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media print, screen and (min-width: 920px) {
  .mv_human_area {
    width: 789px;
  }
}

.mv_band {
  width: 200%;
  height: 19%;
  position: absolute;
  top: calc(50% + 240px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media print, screen and (min-width: 920px) {
  .mv_band {
    height: 200px;
    top: calc(50% + 182px);
  }
}
.mv_band img {
  width: 100%;
}
.mv_band .bg_white {
  display: block;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right top;
  animation: bgExpand 0.7s forwards;
  animation-delay: 1.4s;
}
@keyframes bgExpand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes bandExpand {
  from {
    width: 0;
  }
  to {
    width: 3000px;
  }
}
.mv_band_text {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: bold;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 3.3s;
}
@media print, screen and (min-width: 920px) {
  .mv_band_text {
    top: 50%;
    left: calc(50% - 140px);
  }
}
.mv_band_text::before {
  content: "";
  display: block;
  width: 1000px;
  height: 1px;
  background-color: #002986;
  position: absolute;
  left: -1010px;
  top: 50%;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .mv_band_text {
    font-size: 1.3rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mv_human {
  width: 40%;
  max-width: 175px;
  position: absolute;
  top: calc(21% + 240px);
  left: 80%;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 2.4s;
}
@media print, screen and (min-width: 920px) {
  .mv_human {
    transform: translate(-50%, calc(-50% - 20px));
    width: 231px;
    max-width: none;
    top: calc(50% + 50px);
    left: 50%;
  }
}
.mv_human img {
  width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 20px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.top_section_title {
  line-height: 1.2;
  font-weight: bold;
}
.top_section_title .en {
  display: block;
  line-height: 1;
  font-size: clamp(5rem, 15.6vw, 6rem);
}
@media print, screen and (min-width: 768px) {
  .top_section_title .en {
    font-size: 7rem;
  }
}
@media print, screen and (min-width: 920px) {
  .top_section_title .en {
    font-size: 8rem;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_section_title .en {
    font-size: 10rem;
  }
}
.top_section_title .ja {
  display: inline-block;
  font-size: 1.6rem;
  margin-top: 10px;
  position: relative;
  padding-left: 1.1em;
}
@media print, screen and (min-width: 768px) {
  .top_section_title .ja {
    font-size: 1.8rem;
  }
}
.top_section_title .ja::before {
  content: "";
  display: block;
  width: 4px;
  height: 80%;
  background-color: #002986;
  transform: translateY(-50%) skewX(-35deg);
  transform-origin: bottom left;
  position: absolute;
  top: 50%;
  left: 0;
}
.top_section_title.top_news_title {
  margin-bottom: 60px;
}
.top_section_title.white {
  color: #fff;
}
.top_section_title.white .ja::before {
  background-color: #fff;
}

.top_h3_title {
  font-weight: bold;
  line-height: 1.2;
}
.top_h3_title .ja {
  display: block;
  font-size: 3.2rem;
}
@media print, screen and (min-width: 920px) {
  .top_h3_title .ja {
    font-size: 3.6rem;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_h3_title .ja {
    font-size: 4rem;
  }
}
.top_h3_title .en {
  display: block;
  font-size: 1.5rem;
  margin-top: 10px;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .top_h3_title .en {
    font-size: 2rem;
  }
}
.top_h3_title.white {
  color: #fff;
}

.top_news {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .top_news {
    padding: 150px 0;
  }
}

.top_news_wrap {
  overflow: visible;
  position: relative;
}
.top_news_wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.top_news_area {
  position: relative;
}

.top_news_child.swiper-slide {
  height: auto;
}
.top_news_child a:hover .img img {
  transform: scale(1.1);
}
.top_news_child a:hover .text_area {
  opacity: 0.5;
}
.top_news_child .text_area {
  margin-top: 20px;
  padding: 0 20px;
  transition: 0.2s;
}
@media print, screen and (min-width: 768px) {
  .top_news_child .text_area {
    margin-top: 24px;
  }
}
.top_news_child .data {
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.top_news_child .day {
  flex-shrink: 0;
  display: inline-block;
  opacity: 0.4;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
}
.top_news_child .cat {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  padding: 5px;
  width: 72px;
  margin-left: auto;
  background-color: #ccc;
}
.top_news_child .cat.info {
  background-color: #002986;
}
.top_news_child .cat.csr {
  background-color: #61a065;
}
.top_news_child .cat.construction {
  background-color: #ac783a;
}
.top_news_child .cat.award {
  background-color: #b4a66c;
}
.top_news_child .cat.sdgs {
  background-color: #66a3e0;
}
.top_news_child .cat.recruit {
  background-color: #0967c3;
}
.top_news_child .cat.anniv-50th {
  background-color: #e0c141;
}
.top_news_child .title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 6rem;
  margin-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .top_news_child .title {
    margin-top: 20px;
  }
}
.top_news_child .img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.top_news_child .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}

.top_news_bottom {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  .top_news_bottom {
    justify-content: flex-start;
    align-items: center;
    margin-top: 70px;
  }
}
.top_news_bottom .swiper-navigation-button {
  display: flex;
  column-gap: 20px;
  position: absolute;
  top: 70px;
  right: 0;
}
@media print, screen and (min-width: 768px) {
  .top_news_bottom .swiper-navigation-button {
    column-gap: 32px;
    position: static;
  }
}
.top_news_bottom .swiper-button-prev,
.top_news_bottom .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #002986;
  border-radius: 50%;
  background-color: #fff;
  position: static;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  transition: 0.2s;
}
@media print, screen and (min-width: 768px) {
  .top_news_bottom .swiper-button-prev,
  .top_news_bottom .swiper-button-next {
    width: 80px;
    height: 80px;
  }
}
.top_news_bottom .swiper-button-prev::after,
.top_news_bottom .swiper-button-next::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  color: #002986;
}
.top_news_bottom .swiper-button-prev:hover,
.top_news_bottom .swiper-button-next:hover {
  opacity: 0.5;
}
.top_news_bottom .swiper-button-prev::after {
  content: "\e90a";
}
.top_news_bottom .swiper-button-next::after {
  content: "\e90b";
}

@media print, screen and (min-width: 768px) {
  .top_news_past_btn {
    margin-left: auto;
  }
}

.top_official_sns_box {
  margin-top: 80px;
  display: flex;
  column-gap: 50px;
  row-gap: 40px;
  align-items: center;
  padding-bottom: 60px;
  border-top: 1px solid #002986;
  border-bottom: 1px solid #002986;
  flex-direction: column;
}
@media print, screen and (min-width: 1180px) {
  .top_official_sns_box {
    flex-direction: row;
    padding-bottom: 0;
  }
}
.top_official_sns_box .img {
  aspect-ratio: 452/240;
  background-color: #ddd;
  flex-shrink: 0;
  width: 100%;
}
@media print, screen and (min-width: 920px) {
  .top_official_sns_box .img {
    max-width: 452px;
    width: 36%;
  }
}
.top_official_sns_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_official_sns_box .text_flex {
  display: flex;
  align-items: center;
  column-gap: 50px;
  row-gap: 40px;
  flex-grow: 1;
  flex-direction: column;
}
@media print, screen and (min-width: 920px) {
  .top_official_sns_box .text_flex {
    flex-direction: row;
  }
}
.top_official_sns_box .title {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.025em;
}
.top_official_sns_box .text {
  margin-top: 5px;
  text-align: center;
}
@media print, screen and (min-width: 1180px) {
  .top_official_sns_box .text {
    text-align: left;
  }
}
@media print, screen and (min-width: 768px) {
  .top_official_sns_box .default_btn {
    margin-left: auto;
  }
}

.top_about {
  padding: 88% 0 100px;
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .top_about {
    padding: 150px 0;
  }
}

.top_about_column {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
}
@media print, screen and (min-width: 768px) {
  .top_about_column {
    flex-direction: row;
    column-gap: 2%;
    align-items: flex-end;
  }
}
@media print, screen and (min-width: 920px) {
  .top_about_column {
    column-gap: 5%;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_about_column {
    column-gap: 10%;
  }
}

.top_about_text_area {
  flex-shrink: 0;
}

.top_about_title {
  margin-bottom: 60px;
}
@media print, screen and (min-width: 920px) {
  .top_about_title {
    margin-bottom: 80px;
  }
}

.top_about_text {
  font-weight: bold;
  letter-spacing: 0;
}
.top_about_text:not(:first-of-type) {
  margin-top: 2em;
}

@media print, screen and (min-width: 768px) {
  .top_about_btn {
    margin-top: 60px;
  }
}
.top_about_btn a {
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .top_about_btn a {
    margin: 0;
  }
}

.top_about_policy_area {
  flex-grow: 1;
}

.top_about_policy_img {
  width: 118%;
  position: absolute;
  top: -104vw;
  right: -24%;
}
@media print, screen and (min-width: 768px) {
  .top_about_policy_img {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
  }
}
.top_about_policy_img .img {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .top_about_policy_img .img {
    bottom: 0;
    width: 128%;
    position: absolute;
  }
}
@media print, screen and (min-width: 920px) {
  .top_about_policy_img .img {
    bottom: -40px;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_about_policy_img .img {
    bottom: -76px;
  }
}
.top_about_policy_img img {
  width: 100%;
}

.top_about_policy_title {
  margin-bottom: 25px;
}

.top_about_policy_listarea {
  display: flex;
  column-gap: 22px;
}
@media print, screen and (min-width: 768px) {
  .top_about_policy_listarea {
    column-gap: 6px;
  }
}
@media print, screen and (min-width: 920px) {
  .top_about_policy_listarea {
    column-gap: 4%;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_about_policy_listarea {
    column-gap: 9%;
  }
}

.top_about_policy_list {
  width: calc((100% - 22px) / 2);
}
@media print, screen and (min-width: 920px) {
  .top_about_policy_list {
    width: 48%;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_about_policy_list {
    width: 45.5%;
  }
}

.top_about_policy_listitem {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #002986;
  padding: 15px 0;
  height: 70px;
}
@media print, screen and (min-width: 768px) {
  .top_about_policy_listitem {
    height: auto;
  }
}
.top_about_policy_listitem .number {
  font-size: 2.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  width: 40px;
  flex-shrink: 0;
}
@media print, screen and (min-width: 360px) {
  .top_about_policy_listitem .number {
    font-size: 3.2rem;
    width: 50px;
  }
}
@media print, screen and (min-width: 768px) {
  .top_about_policy_listitem .number {
    font-size: 2.2rem;
    width: 34px;
  }
}
@media print, screen and (min-width: 920px) {
  .top_about_policy_listitem .number {
    font-size: clamp(3rem, 3.26vw, 4rem);
    font-size: 3rem;
    width: 50px;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_about_policy_listitem .number {
    width: 75px;
    font-size: 4rem;
  }
}
.top_about_policy_listitem .text {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  flex-grow: 1;
}
@media print, screen and (min-width: 768px) {
  .top_about_policy_listitem .text {
    font-size: 1.3rem;
  }
}
@media print, screen and (min-width: 920px) {
  .top_about_policy_listitem .text {
    font-size: clamp(1.4rem, 1.5vw, 2rem);
  }
}

.top_business {
  background-image: url(../img/top/top_business_bg_last_sp.png), url(../img/top/top_business_bg_sp.jpg?250613);
  background-repeat: no-repeat, no-repeat;
  background-position: right -10% bottom 0, center top;
  background-size: 95%, cover;
  padding: 180px 0 110px;
}
@media print, screen and (min-width: 920px) {
  .top_business {
    background-image: url(../img/top/top_business_bg_last.png), url(../img/top/top_business_bg.jpg);
    background-size: 80%, cover;
    background-position: right -20% bottom 0, center top;
    padding: 370px 0 120px;
  }
}

.top_business_genre {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
@media print, screen and (min-width: 920px) {
  .top_business_genre {
    flex-direction: row;
    margin-top: 40px;
    column-gap: 5%;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_business_genre {
    column-gap: 10%;
  }
}

.top_business_genre_text_area {
  flex-shrink: 0;
}
.top_business_genre_text_area .text {
  color: #fff;
  font-weight: bold;
}

.top_business_btn {
  margin: 60px auto 0;
}
@media print, screen and (min-width: 920px) {
  .top_business_btn {
    margin: 80px 0 0;
  }
}

.genre_img_area {
  flex-grow: 1;
  margin-top: 60px;
  margin-right: calc(-50vw + 50%);
}
@media print, screen and (min-width: 920px) {
  .genre_img_area {
    margin-top: 0;
  }
}

.genre_img_list {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 920px) {
  .genre_img_list {
    flex-direction: row;
  }
}

.genre_img_listitem {
  flex-shrink: 0;
  height: 180px;
}
@media print, screen and (min-width: 768px) {
  .genre_img_listitem {
    height: 240px;
  }
}
@media print, screen and (min-width: 920px) {
  .genre_img_listitem {
    width: 16%;
    height: 470px;
    transition: width 0.6s 0s cubic-bezier(0.44, 0.14, 0.09, 1.02);
  }
}
@media print, screen and (min-width: 1180px) {
  .genre_img_listitem {
    height: 612px;
  }
}
@media print, screen and (min-width: 920px) {
  .genre_img_listitem.is_hover {
    width: 52%;
  }
}
.genre_img_listitem.is_hover .genre_link .text_area .text {
  display: block;
}

.genre_link {
  display: block;
  height: 100%;
  position: relative;
}
.genre_link:hover .img img {
  transform: scale(1.1);
}
.genre_link .img {
  height: 100%;
  overflow: hidden;
}
.genre_link .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.genre_link .img::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  opacity: 0.6;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.genre_link .text_area {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  width: calc(100% - 30px);
}
.genre_link .text_area .number {
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0;
  width: 80px;
  max-width: 100%;
}
@media print, screen and (min-width: 1180px) {
  .genre_link .text_area .number {
    font-size: 6rem;
    width: 100px;
  }
}
@media print, screen and (min-width: 1280px) {
  .genre_link .text_area .number {
    font-size: 8rem;
    width: 112px;
  }
}
.genre_link .text_area .text {
  font-size: 2rem;
  font-weight: bold;
  flex-grow: 1;
  line-height: 1.4;
  white-space: nowrap;
  padding-right: 40px;
}
@media print, screen and (min-width: 920px) {
  .genre_link .text_area .text {
    display: none;
  }
}
.genre_link .text_area .text::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  display: block;
  color: #fff;
  font-size: 3.2rem;
  position: absolute;
  bottom: 2px;
  right: 0;
  z-index: 1;
}
@media print, screen and (min-width: 920px) {
  .genre_link .text_area .text::after {
    bottom: 16px;
  }
}

.top_business_situation {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 30px;
  margin-top: 100px;
  padding: 0 20px;
}
@media print, screen and (min-width: 920px) {
  .top_business_situation {
    padding: 0;
    margin-top: 112px;
    column-gap: 4%;
    flex-direction: row;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_business_situation {
    column-gap: 9%;
  }
}

.top_business_situation_textarea {
  flex-shrink: 0;
}

.top_business_situation_text {
  color: #fff;
  margin-top: 30px;
}

.inst_list {
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 920px) {
  .inst_list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.inst_list__item {
  border: 1px solid #fff;
}
@media print, screen and (min-width: 920px) {
  .inst_list__item {
    width: 50%;
  }
}
@media print, screen and (min-width: 1180px) {
  .inst_list__item {
    width: 33.3333333333%;
  }
}
.inst_list__item a {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.inst_list__item a:hover img {
  transform: scale(1.1);
}
.inst_list__item a::before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  display: block;
  color: #fff;
  font-size: 3.2rem;
  position: absolute;
  bottom: 27px;
  right: 35px;
  z-index: 1;
}
.inst_list__item a .img {
  display: block;
  overflow: hidden;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  margin: auto;
  position: relative;
}
.inst_list__item a .img::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  opacity: 0.6;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.inst_list__item a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.inst_list__item .user_name {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  position: absolute;
  bottom: 35px;
  left: 30px;
  z-index: 1;
  width: calc(100% - 70px);
  padding-right: 40px;
}
@media print, screen and (min-width: 768px) {
  .inst_list__item .user_name {
    font-size: 1.8rem;
  }
}

.top_csr_area {
  padding-top: 41%;
  position: relative;
}
@media print, screen and (min-width: 920px) {
  .top_csr_area {
    padding-top: 150px;
  }
}

.top_csr_deco {
  position: absolute;
  aspect-ratio: 458/460;
  width: 66.6%;
  position: absolute;
  top: calc(16% - 101px);
  right: 0;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 920px) {
  .top_csr_deco {
    width: 26.8%;
    top: 0;
    right: 80px;
  }
}

.top_csr_flex {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
@media print, screen and (min-width: 920px) {
  .top_csr_flex {
    flex-direction: row;
    column-gap: 4%;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_csr_flex {
    column-gap: 8%;
  }
}

.csr_leftimage {
  flex-shrink: 0;
  margin-left: calc(-50vw + 50%);
}
@media print, screen and (min-width: 920px) {
  .csr_leftimage {
    width: 35%;
  }
}
@media print, screen and (min-width: 1180px) {
  .csr_leftimage {
    width: 41%;
  }
}
.csr_leftimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_csr_content_area {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.top_csr_text_area {
  display: flex;
  column-gap: 40px;
  margin-top: 60px;
  flex-direction: column;
}
@media print, screen and (min-width: 920px) {
  .top_csr_text_area {
    flex-direction: row;
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_csr_text_area {
    margin-bottom: 60px;
  }
}
.top_csr_text_area .text {
  flex-grow: 1;
  font-weight: bold;
}

.top_csr_btn {
  margin: 60px auto 0;
}
@media print, screen and (min-width: 920px) {
  .top_csr_btn {
    margin: 0 0 0 auto;
  }
}

.top_csr_button_area {
  margin-top: 40px;
}
@media print, screen and (min-width: 768px) {
  .top_csr_button_area {
    margin-top: 80px;
  }
}
@media print, screen and (min-width: 920px) {
  .top_csr_button_area {
    margin-top: auto;
  }
}

.top_csr_buttonitem:not(:first-child) {
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .top_csr_buttonitem:not(:first-child) {
    margin-top: 20px;
  }
}

.top_csr_link {
  display: flex;
  column-gap: 4%;
}
@media print, screen and (min-width: 1180px) {
  .top_csr_link {
    column-gap: 7%;
  }
}
@media print, screen and (min-width: 1550px) {
  .top_csr_link {
    column-gap: 10%;
  }
}
.top_csr_link .img {
  flex-shrink: 0;
  width: 38.2%;
  max-width: 200px;
  min-width: 120px;
  aspect-ratio: 1/1;
}
@media print, screen and (min-width: 920px) {
  .top_csr_link .img {
    width: 40%;
    max-width: none;
    min-width: auto;
    aspect-ratio: auto;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_csr_link .img {
    width: 45%;
  }
}
@media print, screen and (min-width: 1280px) {
  .top_csr_link .img {
    width: 50%;
  }
}
@media print, screen and (min-width: 1550px) {
  .top_csr_link .img {
    width: 55%;
  }
}
.top_csr_link .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_csr_link:hover {
  opacity: 0.5;
}

.top_csr_linktext {
  display: flex;
  align-items: center;
  flex-grow: 1;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: 1px solid #002986;
  position: relative;
  padding-left: 10px;
}
@media print, screen and (min-width: 920px) {
  .top_csr_linktext {
    padding-left: 18px;
  }
}
.top_csr_linktext::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #002986;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .top_csr_linktext::before {
    width: 48px;
    height: 48px;
  }
}
.top_csr_linktext::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  color: #fff;
  font-size: 3.2rem;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 768px) {
  .top_csr_linktext::after {
    right: 10px;
  }
}

.top_special_area {
  padding: 140px 0 100px;
}
@media print, screen and (min-width: 768px) {
  .top_special_area {
    padding: 150px 0;
  }
}

.top_special_link_area {
  display: flex;
  column-gap: 40px;
  row-gap: 40px;
  flex-direction: column;
  margin-top: 60px;
}
@media print, screen and (min-width: 768px) {
  .top_special_link_area {
    flex-direction: row;
    margin-top: 80px;
  }
}

@media print, screen and (min-width: 768px) {
  .top_special_link_item {
    width: calc((100% - 80px) / 3);
  }
}
.top_special_link_item:hover .img img {
  transform: scale(1.1);
}
.top_special_link_item:hover .text {
  opacity: 0.5;
}
.top_special_link_item .img {
  overflow: hidden;
  position: relative;
}
.top_special_link_item .img::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #002986;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .top_special_link_item .img::before {
    width: 48px;
    height: 48px;
  }
}
.top_special_link_item .img::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90b";
  color: #fff;
  font-size: 3.2rem;
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 2;
}
.top_special_link_item .img img {
  width: 100%;
  transition: 0.2s;
}
.top_special_link_item .text {
  margin-top: 20px;
  font-weight: bold;
  line-height: 1.4;
  transition: 0.2s;
}
@media print, screen and (min-width: 768px) {
  .top_special_link_item .text {
    margin-top: 24px;
  }
}

.top_recruit_area {
  background-color: #0062c1;
  position: relative;
  z-index: 1;
  padding: 100px 0 80px;
}
@media print, screen and (min-width: 768px) {
  .top_recruit_area {
    padding: 100px 0 120px;
  }
}

.top_recruit_inner {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
}
@media print, screen and (min-width: 768px) {
  .top_recruit_inner {
    justify-content: flex-start;
    flex-direction: row;
  }
}

.top_recruit_text_area {
  display: flex;
  flex-direction: column;
}

.top_recruit_title {
  text-align: left;
}
.top_recruit_text {
  color: #fff;
  margin-top: 40px;
  text-align: center;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .top_recruit_text {
    text-align: left;
    margin-top: 80px;
  }
}

.top_recruit_btn {
  margin: 40px auto 0;
}
@media print, screen and (min-width: 768px) {
  .top_recruit_btn {
    margin: 60px 0 0;
  }
}

.default_btn.white.top_recruit_btn a {
  color: #0062c1;
}
.default_btn.white.top_recruit_btn a:hover {
  color: #fff;
  background-color: #0062c1;
}

.top_recruit_img {
  position: relative;
  margin-top: 60px;
}
@media print, screen and (min-width: 768px) {
  .top_recruit_img {
    width: 71%;
    margin-top: 0;
    margin-right: calc(-50vw + 50%);
  }
}
.top_recruit_img span {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .top_recruit_img span {
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media print, screen and (min-width: 920px) {
  .top_recruit_img span {
    width: 105%;
  }
}
@media print, screen and (min-width: 1180px) {
  .top_recruit_img span {
    width: 113%;
  }
}
.top_recruit_img img {
  width: 100%;
}/*# sourceMappingURL=top.css.map */