@charset "UTF-8";
body {
  background-image: url(../img/top/main_bg_pc.png);
}
@media screen and (max-width: 767px) {
  body {
    background-image: url(../img/top/main_bg_sp.png);
  }
}

section {
  padding: 64px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 48px 0 0;
  }
}
section .section_inner {
  background: var(--Background-Secondary);
  border-radius: 4px;
  width: 100%;
  width: min(100%, 1288px);
  padding: 64px 24px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  section .section_inner {
    padding: 48px 24px;
  }
}

/* ▼▼▼ MV ▼▼▼ */
.mv {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .mv {
    padding-top: 64px;
    padding-bottom: 48px;
  }
}
.mv_inner {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .mv_inner {
    margin-bottom: 40px;
  }
}
.mv_title {
  height: 100%;
  font-weight: 200;
  font-size: min(11vw, 144px);
  font-family: var(--font-family-en);
  margin-bottom: 32px;
}
.mv_title span {
  display: block;
  background: linear-gradient(137.5deg, #0F52D9 12.12%, #36373B 52.29%, #0F52D9 86.54%), #36363B;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1.1;
}
.mv_title span:nth-of-type(2) {
  text-align: right;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv_title {
    font-size: 12.8vw;
    margin-bottom: 16px;
  }
}
.mv_lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .mv_lead {
    gap: 16px;
    font-size: 14px;
  }
}
.mv_lead span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mv_lead::before {
  content: "";
  border-top: 1px solid currentColor;
  width: 100%;
}

.mv_slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee 30s linear infinite;
          animation: marquee 30s linear infinite;
  will-change: transform;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv_slide {
    -webkit-animation: marquee 20s linear infinite;
            animation: marquee 20s linear infinite;
  }
}
.mv_slide_wrap {
  position: relative;
}
.mv_slide.track_01 {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .mv_slide.track_01 {
    margin-bottom: 16px;
  }
}
.mv_slide.track_01 img {
  max-width: 2608px;
  width: 2608px;
}
@media screen and (max-width: 767px) {
  .mv_slide.track_01 img {
    max-width: 1072px;
    width: 1072px;
  }
}
.mv_slide.track_02 {
  -webkit-animation-duration: 45s;
          animation-duration: 45s;
  animation-direction: reverse;
}
@media screen and (max-width: 767px) {
  .mv_slide.track_02 {
    -webkit-animation-duration: 35s;
            animation-duration: 35s;
  }
}
.mv_slide.track_02 img {
  max-width: 3516px;
  width: 3516px;
}
@media screen and (max-width: 767px) {
  .mv_slide.track_02 img {
    max-width: 1312px;
    width: 1312px;
  }
}
.mv_slide.track_03 {
  -webkit-animation-duration: 45s;
          animation-duration: 45s;
}
@media screen and (max-width: 767px) {
  .mv_slide.track_03 {
    -webkit-animation-duration: 35s;
            animation-duration: 35s;
  }
}
.mv_slide.track_03 {
  top: -20px;
  left: 0;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .mv_slide.track_03 {
    top: 0;
  }
}
.mv_slide.track_03 img {
  max-width: 3018px;
  width: 3018px;
}
@media screen and (max-width: 767px) {
  .mv_slide.track_03 img {
    max-width: 1407px;
    width: 1407px;
  }
}
.mv_slide .slide_img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mv_slide .slide_img img {
  display: block;
  max-width: none;
}

@-webkit-keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
/* ▼▼▼ Important News ▼▼▼ */
.important_news_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: min(100%, 1112px);
  margin: 0 auto 16px;
  padding: 24px 0;
  color: var(--Object-News-Attention);
  font-weight: 500;
  text-align: center;
  border-bottom: 2px solid currentColor;
}
.important_news_title::before {
  content: "";
  background: url(../img/icon_important.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
}

/* ▼▼▼ News ▼▼▼ */
.news_inner.section_inner {
  width: min(100%, 1224px);
}
.news .heading_title {
  width: min(100%, 1112px);
  margin: 0 auto 32px;
}
@media screen and (max-width: 767px) {
  .news .heading_title {
    margin-bottom: 16px;
  }
}
.news_list {
  margin-bottom: var(--Padding-Layout-SectionInnermedium);
  width: min(100%, 1112px);
  margin: 0 auto 32px;
}
.news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 0;
  color: inherit;
  border-bottom: 1px solid var(--Line-Primary);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .news_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 16px 0;
    gap: 8px 0;
  }
}
.news_item[target=_blank] .news_item_title {
  padding-right: 24px;
  position: relative;
}
.news_item[target=_blank] .news_item_title::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../img/icon_arrow_external.svg") no-repeat center/contain;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 0;
}
@media (hover: hover) {
  .news_item:hover {
    opacity: 1;
    background: #DCDEE0;
  }
  .news_item:hover .news_item_title {
    color: #8F9197;
  }
}
.news_item.icon_new .news_item_title::before {
  content: "NEW";
  display: inline-block;
  vertical-align: middle;
  margin-right: 24px;
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: var(--News-New-Size);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--Brand-color-Primary);
}
@media screen and (max-width: 767px) {
  .news_item.icon_new .news_item_title::before {
    display: block;
    margin-bottom: 8px;
  }
}
.news_item_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .news_item_meta {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.news_item_date {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: var(--News-Item-Date-Size);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--Object-News-Date);
}
.news_item_category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--Background-Tertiary);
  border-radius: 4px;
  width: var(--News-Category-Width);
  padding: 3px 5px;
  font-size: var(--News-Category-Size);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.news_item_category.important {
  background: var(--Background-Tag-Attention);
}
.news_item_title {
  padding-left: 24px;
  border-left: 1px solid var(--Line-Primary);
  color: var(--Object-Primary);
  font-weight: 400;
  font-size: var(--News-Item-Title-Size);
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news_item_title {
    padding: 0;
    border: none;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-decoration: none;
  }
}
.news_item_arrow {
  width: 24px;
  height: 24px;
  background: url("../img/icon_arrow.svg") no-repeat center/16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.tab_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(100%, 1112px);
  margin: 0 auto 21px;
}
.tab_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid var(--Line-News);
  height: 70px;
  text-align: center;
  position: relative;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tab_list li {
    height: 56px;
  }
}
.tab_list li.active {
  color: var(--Brand-color-Primary);
}
.tab_list li.active:before, .tab_list li.active::after {
  content: "";
  position: absolute;
}
.tab_list li.active:before {
  width: 100%;
  bottom: -1px;
  left: 0;
  border-bottom: 2px solid currentColor;
}
.tab_list li.active::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #1976D2 transparent transparent transparent;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -5px;
  left: 50%;
}

.tab_article {
  display: none;
}
.tab_article.active {
  display: block;
}

/* ▼▼▼ Group ▼▼▼ */
.group_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .group_list {
    grid-template-columns: 100%;
    gap: 0 16px;
    margin-bottom: 24px;
  }
}
.group_item {
  border-bottom: 1px solid var(--Line-Primary);
  border-top: 1px solid var(--Line-Primary);
  font-size: var(--Heading-H3);
  padding: 24px;
  position: relative;
}
@media (hover: hover) {
  .group_item:hover {
    opacity: 1;
  }
  .group_item:hover::before {
    content: "";
    background: var(--Background-Secondary);
    width: 100%;
    height: calc(100% - 16px);
    position: absolute;
    top: 8px;
    left: 0;
    z-index: -1;
    border-radius: 4px;
  }
}
@media screen and (max-width: 767px) {
  .group_item {
    padding: 16px 0;
  }
  .group_item:first-child {
    border-top: 1px solid var(--Line-Primary);
  }
}
.group_item.arrow::after {
  margin-left: auto;
}
.group_item_icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 64px;
  height: 64px;
  margin-right: 16px;
}
.group_item_history .item_box {
  padding: 24px;
}
.group_item_history .item_box::after {
  margin-left: auto;
}
.group_item_history_img {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .group_item_history_img {
    width: 100%;
  }
}
.group_item_history_title {
  font-size: var(--Heading-H2);
  margin-bottom: 16px;
}
.group_item_history_text {
  line-height: 1.6;
}
.group .item_box {
  background: var(--Background-Secondary);
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px 32px;
}
@media screen and (max-width: 767px) {
  .group .item_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.group .corporate {
  margin-top: 64px;
  padding: 64px 0 56px;
  border-top: 1px solid var(--Line-Primary);
  position: relative;
}
.group .corporate::before {
  content: "";
  border-top: 2px solid var(--Brand-color-Primary);
  width: 60px;
  position: absolute;
  top: -1.5px;
  left: 0;
}
.group .corporate_item_sp {
  display: contents;
}
@media screen and (max-width: 767px) {
  .group .corporate_item {
    display: contents;
  }
  .group .corporate_item_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .group .corporate {
    border: none;
    margin-top: 48px;
    padding: 16px 0 48px;
  }
  .group .corporate::before {
    display: none;
  }
}
.group .corporate .item_box {
  padding: 32px 24px 32px 32px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .group .corporate .item_box {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 32px 24px;
  }
}
.group .corporate_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px 32px;
}
@media screen and (max-width: 767px) {
  .group .corporate_logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.group .corporate_title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.group .corporate .sp_arrow {
  display: none;
}
@media screen and (max-width: 767px) {
  .group .corporate .sp_arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .group .corporate a.btn {
    display: none;
  }
}

/* ▼▼▼ Recruit ▼▼▼ */
.recruit {
  background-color: var(--Background-Primary);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .recruit {
    padding-bottom: 32px;
  }
}
.recruit:before, .recruit::after {
  content: "";
  opacity: 0.1;
  -webkit-filter: blur(60px);
          filter: blur(60px);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .recruit:before, .recruit::after {
    -webkit-filter: blur(40px);
            filter: blur(40px);
  }
}
.recruit:before {
  background: #F2E30C;
  width: 603px;
  height: 603px;
  position: absolute;
  left: -349px;
  top: -315px;
}
@media screen and (max-width: 767px) {
  .recruit:before {
    width: 310px;
    height: 310px;
    left: 171px;
    top: -65px;
  }
}
.recruit::after {
  background: #0CA6F2;
  width: 387px;
  height: 387px;
  position: absolute;
  right: -70px;
  bottom: -165px;
}
@media screen and (max-width: 767px) {
  .recruit::after {
    width: 310px;
    height: 310px;
    left: -111px;
    right: auto;
    bottom: -145px;
  }
}
.recruit_inner::before {
  content: "";
  background-image: url(../img/top/recruit_bg_pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .recruit_inner::before {
    display: none;
  }
}
.recruit .heading_title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .recruit .heading_title {
    margin-bottom: 0;
  }
}
.recruit_textblock {
  width: min(100%, 496px);
  margin-bottom: 48px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit_textblock {
    width: 100%;
    margin-bottom: 24px;
  }
}
.recruit_lead {
  font-size: var(--Heading-H3);
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .recruit_lead {
    margin-bottom: 8px;
  }
  .recruit_lead::before {
    content: "";
    display: block;
    background-image: url(../img/top/recruit_bg_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    width: calc(100% + 48px);
    aspect-ratio: 375/254;
    margin: 0 0 16px -24px;
  }
}

/* 印刷用設定
--------------------------------------- */
@media print {
  .mv_title {
    font-size: 144px;
  }
}