@charset "utf-8";
/*************************************************************
CSS information
style info :  TOPページ限定のスタイル
**************************************************************/

/* 
====================
↓ボタンを切り出して管理
====================
*/

.mv .button_wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 24px;
}

.button_blue {
  box-sizing: border-box;
  display: grid;
  place-items: center;

  width: 220px;
  height: 64px;
  border-radius: 4px;
  background: #0C59BE;

  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 16px;

  transition: .3s;
}

.button_white {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  width: 220px;
  height: 64px;
  border-radius: 4px;
  background: #fff;

  text-decoration: none;
  text-align: center;
  font-size: 16px;
  color: #0C59BE;

  transition: .3s;
}

.service .button_wrapper,
.case_study .button_wrapper,
.news .button_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 64px;
}

.service .button_wrapper > .button_more,
.news .button_wrapper > .button_more {
  position: relative;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  width: 220px;
  height: 64px;
  border-radius: 4px;
  border: 1.5px solid #0C59BE;
  background: #fff;

  text-decoration: none;
  text-align: center;
  color: #0C59BE;
  font-size: 16px;
  transition: .3s;
}

.service .button_wrapper > .button_more::after,
.news .button_wrapper > .button_more::after {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #0C59BE;
  border-right: 1.5px solid #0C59BE;
  transform: rotate(45deg);
}

.service_banner_1 .button_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: space-between;
    width: 70%;
    margin: 0 auto;
    margin-top: 24px;
    margin-bottom: 10px;
    gap: 12px 24px;
}

.service_banner_1 .button_grid > a {
    box-sizing: border-box;
    display: grid;
    place-items: center;
    width: 100%;
    height: 64px;
    border-radius: 4px;
    background: #FF3D00;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-size: 16px;
    transition: .3s;
}
.service_banner_1 .button_grid > a.button_orange {
    display: block;
}

.service_banner_1 .button_grid > a.button_blue {
  background: #0C59BE;
}

.service_banner_1 a.button_wide_white {
    place-items: center;
    height: 64px;
    border-radius: 4px;
    margin: 20px auto 0;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    transition: .3s;
    display: grid;
    grid-column: 1/4;
    grid-row: 2/2;
    width: 70%;
    background: #F9F9F9;
    color: #0C59BE;
}

.service_banner_1 .button_orange {
    box-sizing: border-box;
    display: block;
    place-items: center;
    width: 100%;
    max-width: 285px;
    height: 64px;
    border-radius: 4px;
    background: #FF3D00;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-size: 16px;
    transition: .3s;
    padding-top: 7px;
}
.service_banner_1 .button_orange span {
    font-size: 14px;
    display: block;
}
.service_banner_2 .button_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 24px;
  width: 100%;
  margin: 0 auto;
  margin-top: 40px;
}

.service_banner_2 .button_white {
  background: #fff;
  border: 1px solid #fff;
  color: #0C59BE;
}

.case_study .button_more_transparent {
  position: relative;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  width: 220px;
  height: 64px;
  border-radius: 4px;

  border: 1.5px solid #fff;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  transition: .3s;
}

.case_study .button_more_transparent::after {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  bottom: 0;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: rotate(45deg);
}

/* マウスホバー darken */
.button_white:hover,
.button_blue:hover,
.button_grid > a:hover,
.service_banner_1 .button_orange:hover {
  filter: brightness(0.9);
}

/* マウスホバー 色逆転 */
.button_wrapper > .button_more:hover {
  border: 2px solid #0C59BE;
  background: #0C59BE;
  color: #fff;
}

.button_wrapper > .button_more:hover::after {
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
}

/* マウスホバー 色逆転 */
.case_study .button_more_transparent:hover {
  background: #fff;
  text-decoration: none;
  text-align: center;
  color: #012E83;
}

.case_study .button_more_transparent:hover::after {
  border-top: 1.5px solid #012E83;
  border-right: 1.5px solid #012E83;
}

@media screen and (max-width: 1024px) { 

  /* 
  ====================
  ↓ボタンを切り出して管理
  ====================
  */

  .mv .button_wrapper {
    display: block;
  }

  .mv .button_wrapper a:last-child {
    margin-top: 12px;
  }

  .button_blue,
  .button_white {
    width: 210px;
    height: 56px;
    margin: 0 auto;
    font-size: 14px;
  }

  .service .button_wrapper,
  .case_study .button_wrapper,
  .news .button_wrapper {
    margin-top: 32px;
  }

  .service .button_wrapper > .button_more,
  .news .button_wrapper > .button_more {
    width: 210px;
    height: 56px;
    margin: 0 auto;
    font-size: 14px;
  }

  .service .button_wrapper > .button_more::after,
  .news .button_wrapper > .button_more::after {
    right: 16px;
    width: 6px;
    height: 6px;
  }

  .service_banner_1 .button_grid {
    display: flex;
    flex-wrap: wrap;
    width: 210px;
    margin: 0 auto;
    margin-top: 10px;
    gap: 12px 24px;
  }
  

  .service_banner_1 .button_grid > a,
  .service_banner_1 a.button_wide_white {
    box-sizing: border-box;
    display: grid;
    place-items: center;

    width: 100%;
    height: 56px;
    border-radius: 4px;
    font-size: 14px;
  }
  .service_banner_1 a.button_wide_white {
    width: 62%;
  }

  .service_banner_2 .button_wrapper {
    display: block;
    width: 100%;
    margin-top: 40px;
  }

  .service_banner_1 .button_wide {
    width: 210px;
    height: 56px;
    margin: 0 auto;
    margin-top: 8px;
    border-radius: 4px;

    font-size: 14px;
    transition: .3s;
  }

  .service_banner_1 .button_wide:first-child {
    margin-top: 0;
  }

  .service_banner_1 .text_clump {
    height: auto;
    padding: 10.5px 0px;

    font-size: 14px;
    line-height: 1.25;
  }

  .service_banner_1 .button_orange {
    background: #FF3D00;
    color: #fff;
  }

  .case_study .button_more_transparent {
    width: 210px;
    height: 56px;
    margin: 0 auto;
    font-size: 14px;
  }

  .case_study .button_more_transparent::after {
    position: absolute;
    content: "";
    margin: auto;
    top: 0;
    bottom: 0;
    right: 12px;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
  }
}

/* 
====================
↓メインビジュアル
====================
*/

.mv {
  box-sizing: border-box;
  position: relative;
  height: 530px;  
  margin-top: 80px;
  background: #fafafa;
  overflow: hidden;
}

.mv > .mv_inner {
  position: absolute;
  top: 50%;
  left: 11.5%;
  height: auto;

  max-width: 1108px;
  margin: 0 auto;

  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 10;
}

.mv_inner > .mv_title {
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 56px;
  line-height: 1.25;
  color: #F2F2F2;
}

.mv_inner > .mv_caption {
  margin-bottom: 48px;
  font-size: 18px;
  line-height: 1;
  color: #f0f0f0;
}

/* PC｜1440pxより広い  */
@media screen and (min-width: 1441px) {

  .mv > .mv_inner {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    
    max-width: 1108px;
    margin: 0 auto;
  
    height: auto;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 10;
  }
}

@media screen and (max-width: 1024px) { 

  /* 
  ====================
  ↓メインビジュアル
  ====================
  */
  .mv {
    width: 100%;
    height: 510px;
    margin-top: 0px;
  }

  .mv::after {
    height: 440px;
    background: rgba(0, 0, 0, 0.2);
  }

  .mv > .mv_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90vw;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
  }

  .mv_inner > .mv_title {
    text-align: center;
    font-weight: bold;
    font-size: 26px;
  }

  .mv_inner > .mv_caption {
    margin-bottom: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 1.25;
  }

}


/* 
====================
↓サービス
====================
*/

/* MEMO: 命名の競合を避ける [container]  */
.section_container {
  box-sizing: border-box;
  padding: 64px 5% 80px;
}

.background_gray {
  background: #F9F9F9;
}

.section_title > h2 {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  color: #012E83;
}

.section_title > hr {
  margin: 0 auto;
  margin-top: 24px;
  border-top: 3px solid #012E83;
  width: 48px;
}

.service_list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 24px;
  margin-top: 56px;
}

.service_item {
  position: relative;
  width: 306px;
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
}

.service_item .service_1,
.service_item .service_2,
.service_item .service_3,
.service_item .service_4 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 480px;
  background: url(/2019/images/pc/top/dammy.jpg) no-repeat center top;
	background-size: cover;
}

.service_item .service_1 {
  background: url(/top/images/service_1.webp) no-repeat center top;
	background-size: cover;
}

.service_item .service_2 {
  background: url(/top/images/service_2.webp) no-repeat center top;
	background-size: cover;
}

.service_item .service_3 {
  background: url(/top/images/service_3.webp) no-repeat center top;
	background-size: cover;
}

.service_item .service_4 {
  background: url(/top/images/service_4.webp) no-repeat center top;
	background-size: cover;
}

.service_item .image_background::after{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 480px;
  /* background: rgba(1, 46, 131, 0.76); */
  background: rgba(19, 59, 136, 0.76);
  z-index: 0;
}

.service_item:hover .image_background {
  transition-duration: .3s;
  transform: scale(1.2);
}

.service_item .service_inner {
  position: absolute;
  top: 120px;
  left: 0;
  padding: 0 8%;
  height: auto;
  z-index: 10;
}

.service_item .service_name {
  text-align: left;
  font-weight: bold;
  font-size: clamp(22px, 2vw, 32px);
  font-size: 28px;
  line-height: 1.25;
  color: #eee;
  z-index: 10;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
}

.service_item .service_inner > hr {
  margin-top: 32px;
  border-top: 2px solid #f0f0f0;
  width: 80px;
  transition: .3s;
}

.service_item:hover .service_inner > hr {
  border-top: 2px solid #FF3D00;
}

.service_inner .service_caption {
  margin-top: 24px;
  text-align: left;
  /* font-weight: 700; */
  font-size: 14px;
  line-height: 1.5;
  color: #F0F0F0;
}

.service_item .more {
  position: absolute;
  bottom: 10px;
  right: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 94px;
  font-size: 12px;
  color: #fff;
  text-decoration: none;
}

.service_item .more::after {
  position: absolute;
  content: '';
	display: inline-block;
  top: 50%;
  right: -18px;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: .3s;
}

.service_item:hover .more::after {
  width: 8px;
  height: 8px;
}

.service_banner_1 {
  position: relative;
  width: 100%;
  max-width: 1296px;
  height: 360px;
  background: url(/top/images/bnr_1.webp) no-repeat center;
	background-size: cover;
  margin: 0 auto;
  margin-top: 80px;
}

.service_banner_1::after{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 360px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.service_banner_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  width: 100%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 10;
}

.service_banner_inner_cs {
  position: absolute;
  top: 45%;
  left: 50%;
  height: auto;
  width: 100%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 10;
}

.service_banner_inner_cs img {
  display: block;
  width: 50%;
  padding: 40px 0 0 ;
  margin: 0 auto;
}
.service_banner_title {
  text-align: center;
  font-weight: bold;
  /* Memo: デザイン調整 */
  font-size: 36px;
  line-height: 1.25;
  color: #F2F2F2;
}

.service_banner_title_cs {
  font-weight: bold;
  /* Memo: デザイン調整 */
  font-size: 36px;
  line-height: 1.25;
  color: #000;
  margin-top: 12px;
  text-align: center;
}

.service_banner_caption {
  max-width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  color: #F2F2F2;
}

.service_banner_caption_cs {
  max-width: 95%;
  margin-top: 30px;
  font-size: 28px;
  line-height: 1.5;
  color: #000;
  font-weight: 700;
  padding-left: 30px;
}

.service_banner_2 {
  position: relative;
  width: 100%;
  max-width: 1296px;
  height: 360px;
  background: url(/top/images/bnr_2.webp) no-repeat center;
	background-size: cover;
  margin: 0 auto;
  margin-top: 40px;
}

.service_banner_2::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 360px;
  background: rgba(1, 46, 131, 0.8);
  z-index: 0;
}

a.service_banner_cs {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1296px;
  height: 310px;
  background: url(/top/images/cyberstar_banner_bg1.webp) no-repeat center;
	background-size: cover;
  margin: 0 auto;
  margin-top: 40px;
}

a.service_banner_cs:hover:after {
  background: rgba(255, 255, 255, 0.7);
  transition: 0.3s 0s ease;
}

a.service_banner_cs::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 310px;
  background: rgba(255, 255, 255, 0.55);
  z-index: 0;
}


@media screen and (max-width: 1065px) { 
.service_item .service_inner {
  top: 90px;
}
}
@media screen and (max-width: 1024px) { 

  /* 
  ====================
  ↓サービス
  ====================
  */

  .section_container {
    padding: 40px 5%;
  }

  .section_title > h2 {
    font-size: 28px;
    line-height: 1.5;
  }

  .section_title > hr {
    margin-top: 16px;
    width: 40px;
  }

  .service .service_list {
    display: block;
    margin-top: 32px;
  }

  .service_item {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    border-radius: 4px;
    margin-top: 16px;
  }

  .service_item:first-child {
    margin-top: 0;
  }

  .service_item .image_background {
    height: 190px;
  }

  .service_item .image_background::after{
    height: 190px;
  }

  .service_item .service_inner {
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0px 16px;
    width: 100%;
    height: auto;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .service_item .service_name {
    position: relative;
    text-align: left;
    /* font-weight: bold; */
    font-size: 20px;
    line-height: 1.25;
    z-index: 10;
  }

  .service_inner .arrow {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  .service_inner .arrow::after {
    position: absolute;
    content: '';
    display: inline-block;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #f2f2f2;
    border-right: 1.5px solid #f2f2f2;
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: .3s;
  }

  .service_item .service_inner > hr {
    margin-top: 16px;
    border-top: 1px solid #f2f2f2;
    width: 80px;
  }

  .service_inner .service_caption {
    margin-top: 16px;
    text-align: left;
    /* font-weight: 700; */
    font-size: 13px;
    line-height: 1.5;
    color: #F0F0F0;
  }

  .service_banner_1 {
    margin-top: 40px;
    height: 440px;
  }
  
  .service_banner_1::after{
    height: 440px;
  }

  .service_banner_1 .service_banner_title,
  .service_banner_2 .service_banner_title {
    font-size: 20px;
  }

  .service_banner_1 .service_banner_caption {
    margin: 12px 24px 0px;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: #F2F2F2;
  }

  .service_banner_2 .service_banner_caption {
    margin: 12px 24px 0px;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: #F2F2F2;
  }

  .service_banner_2 {
    height: 320px;
    margin-top: 20px;
  }


  .service_banner_2::after {
    height: 320px;
  }

  .service_banner_inner_cs {
    top: 50%;
  }

  .service_banner_inner_cs img {
    padding: 20px 0 0 30px;
  }

  a.service_banner_cs {
    height: 320px;
  }

  .service_banner_title_cs {
    font-size: 22px;
  }

  .service_banner_caption_cs {
    max-width: 90%;
    margin-top: 30px;
    font-size: 18px;
  }

  .service_banner_remarks {
    font-size: 16px;
  }

}

/* 
====================
↓GSXの実績
====================
*/

.background_blue {
  background: #012E83;
  /* background: #133B88; */
}

.section_title_white > h2 {
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: #f2f2f2;
}

.section_title_white > hr {
  margin: 0 auto;
  margin-top: 24px;
  border-top: 3px solid #f2f2f2;
  width: 48px;
}

.achievement_list {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 0 5%;
  max-width: 1108px;
  margin: 0 auto;
  margin-top: 56px;
}

.achievement_item {
  width: 30%;
  text-align: center;
}

.achievement_icon_1,
.achievement_icon_2,
.achievement_icon_3 {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background-color: #f2f2f2;
  -webkit-mask-image: url(../images/icn_5.png);
  mask-image: url(../images/icn_5.png);
  -webkit-mask-size: 56px 56px;
  mask-size: 56px 56px;
}

.achievement_icon_2 {
  -webkit-mask-image: url(../images/icn_6.png);
  mask-image: url(../images/icn_6.png);
}

.achievement_icon_3 {
  -webkit-mask-image: url(../images/icn_7.png);
  mask-image: url(../images/icn_7.png);
}

.achievement_category {
  display: table;
  width: 217px;
  height: 61px;
  margin: 0 auto;
  margin-top: 24px;
  border-radius: 30px;
  background: #f2f2f2;
}

.achievement_category > h3 {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  color: #012E83;
}

.achievement_value {
  position: relative;
  margin: 0 auto;
  margin-top: 40px;
  font-size: 100px;
  line-height: 1;
  font-weight: bold;
  color: #f2f2f2;
  text-align: center;
}

.achievement_item .unit {
  position: absolute;
  bottom: 10px;
  font-size: 20px;
  line-height: 1;
  color: #f2f2f2;
}

.achievement_caption {
  width: 100%;
  margin-top: 40px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #f2f2f2;
}

@media screen and (max-width: 1024px) {

  /* 
  ====================
  ↓GSXの実績
  ====================
  */

  .section_title_white > h2 {
    font-size: 28px;
  }

  .section_title_white > hr {
    margin-top: 16px;
    border-top: 2px solid #f2f2f2;
    width: 40px;
  }

  .achievement_list {
    display: block;
    margin-top: 32px;
  }

  .achievement_list hr {
    width: 100%;
    margin: 40px auto;
    border-top: 1px solid rgba(216, 216, 216, 0.3);
  }

  .achievement_item {
    width: 309px;
    margin: 0 auto;
  }

  .achievement_icon {
    display: block;
    width: 24px;
    height: 24px;
    -webkit-mask-size: 24px 24px;
    mask-size: 24px 24px;
  }

  .achievement_category {
    display: table;
    width: 309px;
    height: auto;
    margin: 0 auto;
    margin-top: 12px;
    border-radius: 30px;
    background: none;
  }

  .achievement_category > h3 {
    font-size: 18px;
    color: #f2f2f2;
  }

  .achievement_value {
    margin-top: 32px;
    font-size: 80px;
  }

  .achievement_caption {
    margin-top: 32px;
    font-size: 13px;
  }

}

/* 
====================
↓GSXの特長
====================
*/

.feature_list {
  max-width: 1108px;
  margin: 0 auto;
  margin-top: 56px;
}

.feature_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* gap: 0 80px; */
  margin-top: 56px;
}

.feature_item:first-child {
  margin-top: 0;
}

.feature_item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.feature_image {
  width: 50%;
  height: auto;
  vertical-align: bottom;
}

.feature_image > img {
  width: 100%;
  height: 100%;
  min-height: 291px;
  object-fit: cover;
} 

.feature_caption {
  width: 50%;
  padding-left: 64px;
}

.feature_item:nth-of-type(even) .feature_caption {
  padding-left: 0px;
  padding-right: 64px;
}

.feature_caption > .index {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #012E83;
}

.feature_caption > hr {
  width: 80px;
  margin-top: 24px;
  border-top: 2px solid #012E83;
}

.feature_item_title {
  margin-top: 12px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  color: #012E83;
}

.feature_item_text {
  margin-top: 24px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: #222;
}

@media screen and (max-width: 1024px) {

  /* 
  ====================
  ↓GSXの特長
  ====================
  */

  .feature_list {
    max-width: 100%;
    margin-top: 32px;
  }

  .feature_item {
    display: block;
    width: 100%;
    margin-top: 40px;
  }

  .feature_image {
    width: 100%;
  }
  
  .feature_image > img {
    min-height: 188px;
  } 

  .feature_caption {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }

  .feature_item:nth-of-type(even) .feature_caption {
    padding-right: 0;
  }

  .feature_caption > .index {
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    color: #012E83;
  }

  .feature_caption > hr {
    margin-top: 12px;
  }

  .feature_item_title {
    margin-top: 8px;
    font-weight: 700;
    font-size: 20px;
  }

  .feature_item_text {
    margin-top: 12px;
    font-weight: 300;
    font-size: 14px;
  }

}

/* 
====================
↓GSXのアプローチとサービス提供方針
====================
*/

.approach_caption {
  max-width: 1108px;
  margin: 0 auto;
  margin-top: 56px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #222;
}

.approach_guide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1108px;
  margin: 0 auto;
  gap: 0 8px;
  margin-top: 40px;
}

.approach_guide > img {
  width: 55%;
  max-width: 653px;
  height: auto;
}

.approach_guide > .approach_list {
  width: 450px;
}

.approach_list .approach_item {
  width: 100%;
  height: 136px;
  position: relative;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid rgba(216, 216, 216, 0.5);
  box-sizing: border-box;
  border-radius: 4px;
  transition: .3s;
}

.approach_list > a {
  display: block;
  margin-top: 12px;
  text-decoration: none;
}

.approach_list > a:first-child {
  margin-top: 0px;
}

.approach_item:hover {
  filter: brightness(0.9);
}

.approach_item > h3 {
  position: relative;
  font-size: 20px;
  line-height: 1.25;
  color: #012E83;
  font-weight: bold;
}

.approach_item > h3::after {
  position: absolute;
  content: '';
	display: inline-block;
  top: 50%;
  right: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #012E83;
  border-right: 2px solid #012E83;
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.approach_item > ul {
  display: grid;
  width: 90%;
  grid-template-columns: auto auto;
  row-gap: 8px;
  /* column-gap: 10px; */
  text-align: left;
  margin-top: 20px;
}

.approach_item > ul > li {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: #222222;
}

.approach_item .approach_item_icon_1,
.approach_item .approach_item_icon_2,
.approach_item .approach_item_icon_3,
.approach_item .approach_item_icon_4 {
  position: absolute;
  display: block;
  bottom: 12px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #111;
  -webkit-mask-image: url(../images/icn_1.webp);
  mask-image: url(../images/icn_1.webp);
  -webkit-mask-size: 40px 40px;
  mask-size: 40px 40px;
}

.approach_item .approach_item_icon_2 {
  -webkit-mask-image: url(../images/icn_2.webp) ;
  mask-image: url(../images/icn_2.webp) ;
}

.approach_item .approach_item_icon_3 {
  -webkit-mask-image: url(../images/icn_3.webp) ;
  mask-image: url(../images/icn_3.webp) ;
}

.approach_item .approach_item_icon_4 {
  -webkit-mask-image: url(../images/icn_4.webp) ;
  mask-image: url(../images/icn_4.webp) ;
}

@media screen and (max-width: 1024px) {

  /* 
  ====================
  ↓GSXのアプローチとサービス提供方針
  ====================
  */

  .approach_caption {
    max-width: 100%;
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.75;
  }

  .approach_guide {
    display: block;
    margin-top: 40px;
  }

  .approach_guide > img {
    width: 100%;
    height: auto;
    
    display: block;
    margin: 0 auto;
  }

  .approach_guide > .approach_list {
    width: 100%;
    margin-top: 24px;
  }

  .approach_list .approach_item {
    height: auto;
    position: relative;
    padding: 24px 12px;
  }

  .approach_list > a {
    margin-top: 16px;
  }

  .approach_item > h3::after {
    right: 8px;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #012E83;
    border-right: 1.5px solid #012E83;
  }

  .approach_item > ul {
    display: block;
    text-align: left;
    margin-top: 12px;
  }

  .approach_item > ul > li {
    margin-top: 8px;
  }

  .approach_item .approach_item_icon {
    position: absolute;
    display: block;
    bottom: 24px;
    right: 20px;
    width: 32px;
    height: 32px;
    -webkit-mask-size: 32px 32px;
    mask-size: 32px 32px;
  }

}

/* 
====================
↓導入事例
====================
*/

.casestudy_list {
  display: flex;
  justify-content: center;
  gap: 0 24px;
  max-width: 1108px;
  margin: 0 auto;
  margin-top: 56px;
}

.casestudy_item {
  width: 32%;
  max-width: 353px;  
}

.casestudy_item > h3 {
  width: 100%;
  height: 40px;
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 40px;
  color: #012E83;
  text-align: center;
}

.casestudy_item > h4 {
  margin: 24px auto;
  width: 93%;
  height: 60px;
  font-size: 16px;
  line-height: 1.25;
  color: #f2f2f2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.casestudy_card {
  background: #fff;
  text-align: center;
  border-radius: 4px;
}

.casestudy_card > a {
  display: block;
  height: 380px;
  padding: 7%;
  text-decoration: none;
}

.casestudy_card .thumbnail_area {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.casestudy_card .thumbnail_area::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.casestudy_card img {
  position: absolute;
  top: 50%;
  left: 50%;

  max-height: 200px;
  min-height: 120px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: .3s;
}

.casestudy_card:hover .thumbnail_area img {
  transform: translate(-50%, -50%) scale(1.1);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
}

.casestudy_card .card_title {
  position: relative;
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #012E83;
  line-height: 1.25;
  text-align: left;
  padding-right: 10px;
}

.casestudy_card .card_title::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #012E83;
  border-right: 2px solid #012E83;
  transform: rotate(45deg);
}

.casestudy_card .card_caption {
  margin-top: 20px;
  font-size: 14px;
  color: #222;
  line-height: 1.5;
  text-align: left;
}

.card_tags {
  margin-top: 32px;
  text-align: left;
}

.card_tags > span {
  display: inline-block;
  background: #012E83;
  padding: 5px 12px;
  margin: 0px 4px 8px;
  margin-left: 0;
  font-size: 12px;
  line-height: 1;
  color: #f2f2f2;
}

@media screen and (max-width: 1024px) {
  
  /* 
  ====================
  ↓導入事例
  ====================
  */
  .case_study > .section_title_white {
    width: calc(100vw - 5%);
  }

  .scroll_container {
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .casestudy_list {
    display: flex;
    justify-content: flex-start;
    gap: 0 16px;
    margin-top: 32px;
    padding-left: 5%;
    padding-right: 5%;
    overflow: auto;
  }

  .casestudy_item {
    width: 321px !important;
  }

  .casestudy_item > h3 {
    height: 32px;
    background: #fff;
    line-height: 32px;
  }

  .casestudy_item > h4 {
    height: 68px;
    margin: 12px;
    font-size: 13px;
  }

  .casestudy_card {
    height: 391px;
    background: #fff;
    text-align: center;
    border-radius: 4px;
  }

  .casestudy_card > a {
    display: block;
    padding: 16px;
    text-decoration: none;
  }

  .casestudy_card .thumbnail_area {
    width: 276px;
    height: 156px;
  }

  .casestudy_card .card_title {
    margin-top: 16px;
    font-size: 18px;
  }

  .casestudy_card .card_title::after {
    right: 4px;
    border-top: 1.5px solid #012E83;
    border-right: 1.5px solid #012E83;
  }

  .casestudy_card .card_caption {
    margin-top: 16px;
    font-size: 14px;
    color: #222;
  }

  .card_tags {
    margin-top: 32px;
    text-align: left;
  }

  .card_tags > span {
    display: inline-block;
    background: #012E83;
    margin-right: 8px;
    margin-bottom: 0;
  }

}

/* 
====================
↓パートナー企業募集
====================
*/

.section_banner {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 1296px;
  height: 400px;
  margin: 80px auto;
  overflow: hidden;
}

.section_banner > a {
  display: block;
  width: 100%;
  text-decoration: none;
  outline: none;
}

.partner_banner_bg_image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  background: url(/top/images/bnr_3.webp) no-repeat center;
	background-size: cover;
  transition: .3s;
}

.partner_banner_bg_image::after{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(90deg, #000 0%, rgba(75, 75, 75, 0) 100%);
  z-index: 0;
}

.section_banner:hover .partner_banner_bg_image {
  filter: brightness(0.9);
  transform: scale(1.1);
}

.partner_banner_inner {
  position: absolute;
  top: 64px;
  left: 7%;
  height: auto;
  width: 598px;
  z-index: 10;
  text-align: left;
}

.partner_banner_title {
  font-weight: 700;
  /* Memo: デザイン調整 */
  font-size: 40px;
  line-height: 1;
  color: #F2F2F2;
}

.partner_banner_subtitle {
  margin-top: 56px;
  font-size: 20px;
  line-height: 1.5;
  color: #F2F2F2;
}

.partner_banner_caption {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #F2F2F2;
}

.section_banner .more {
  position: relative;
  display: block;
  width: fit-content;
  margin-top: 94px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

.section_banner .more::after {
  position: absolute;
  content: '';
	display: inline-block;
  top: 50%;
  right: -28px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: .3s;
}

.section_banner:hover .more::after {
  width: 12px;
  height: 12px;
}

@media screen and (max-width: 1024px) {

  /* 
  ====================
  ↓パートナー企業募集
  ====================
  */

  .section_banner {
    max-width: 90%;
    margin: 40px 5%;
  }

  .partner_banner_bg_image {
    background: url(/top/images/bnr_3.webp) no-repeat 68% 50%;
  }


  .partner_banner_bg_image::after{
    background: rgba(0, 0, 0, 0.5);
  }

  .partner_banner_inner {
    top: 48px;
    left: 5%;
    width: calc(100% - 32px);
  }

  .partner_banner_title {
    font-size: 28px;
  }

  .partner_banner_subtitle {
    margin-top: 110px;
    font-size: 18px;
  }

  .partner_banner_caption {
    max-width: 500px;
    margin-top: 16px;
    font-size: 14px;
  }

  .section_banner .more {
    position: relative;
    margin-top: 53px;
    font-size: 12px;
  }

  .section_banner .more::after {
    position: absolute;
    content: '';
    display: inline-block;
    top: 49%;
    right: -20px;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: .3s;
  }

}

/* 
====================
↓ニュース
====================
*/

.news_category_wrapper {
  display: block;
  gap: 0 64px;
  max-width: 1108px;
  margin: 0 auto;
  margin-top: 56px;
}

.news_category {
  width: 100%;
  margin-top: 40px;
}

.news_category a {
  text-decoration: none;
  outline: none;
}

.news_category a:hover {
  text-decoration: none;
  color: #fff;
}

.news_category_title {  
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 4px solid #D8D8D8;
}

.news_category_title::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -4px;
  width: 64px;
  height: inherit;

  border-image: linear-gradient(90deg, #012E83 0%, #0C59BE 100%) 1/0 0 4px 0;
  border-style: solid;

  transition: .3s;
}

.news_category_title:hover::before {
  width: 128px;
}

.news_category_title p {  
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: #012E83;
  text-align: left;
}

.news_category_title p::after {
  position: absolute;
  content: '';
	display: inline-block;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #012E83;
  border-right: 1.5px solid #012E83;
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: .3s;
}

.news_category_title p:hover::after {
  right: 16px;
  width: 10px;
  height: 10px;
}

/* 
.news_category_label {
  display: block;
  position: relative;
  width: 100%;
  height: 44px;
  background: #012E83;
  text-align: center;
  font-size: 16px;
  line-height: 44px;
  color: #fff;
  text-decoration: none;
}

.news_category_label > .circle-arrow {
  position: absolute;
  display: inline-block;
  top: 10px;
  right: 16px;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.news_category_label > .circle-arrow::after {
  position: absolute;
  content: '';
	display: inline-block;
  top: 50%;
  right: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.news_category_label:hover .circle-arrow {
  background: #fff;
}

.news_category_label:hover .circle-arrow::after {
  border-top: 2px solid #012E83;
  border-right: 2px solid #012E83;
} */

.news_category > .news_list {
  list-style: none;
  margin-top: 40px;
}

.news_list_item {
  position: relative;
  padding: 0 16px 24px 16px;
  margin-top: 24px;

  border-bottom: 1px solid #D8D8D8;
}

.news_list_item::before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -1px;
  width: 40px;
  height: inherit;
  
  border-image: linear-gradient(90deg, #012E83 0%, #0C59BE 100%) 1/0 0 1px 0;
  border-style: solid;

  transition: .3s;
}

.news_list_item:hover::before {
  width: 80px;
}

.news_list a {
  text-decoration: none;
  outline: none;
}

.news_meta .date {
  font-weight: 500;
  font-size: 13px;
  color: #222;
}

.news_meta .tag {
  display: inline-block;
  padding: 5px 12px;
  margin-left: 12px;

  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #fff;
}

.news_list_item h3 {
  margin-top: 16px;
  font-size: 16px;
  color: #222;
  line-height: 1.75;
  /* font-weight: bold; */
}

@media screen and (max-width: 1024px) {

  /* 
  ====================
  ↓ニュース
  ====================
  */

  .news_category_wrapper {
    display: block;
    margin-top: 32px;
  }

  .news_category {
    width: 100%;
    margin-top: 40px;
  }

  .news_category_title {  
    font-size: 20px;
    font-weight: bold;
  }

  .news_category_title p::after {
    right: 0;
  }

  .news_list {
    margin-top: 32px;
  }

  .news_list_item {
    position: relative;
    padding: 0 0 24px 0;
    margin-top: 24px;
  
    border-bottom: 1px solid #D8D8D8;
  }

  .news_list_item::before {
    left: 16px;
  }

  .news_list_item::after {
    content: none;
  }

  .news_meta .tag {
    font-size: 10px;
  }

  .news_list_item h3 {
    margin-top: 12px;
    font-size: 13px;
  }

  /* 
  ====================
  ↓ニュース
  ====================
  */
/* 
  .news_category_wrapper {
    display: block;
    margin-top: 32px;
  }

  .news_category {
    width: 100%;
    margin-top: 40px;
  }

  .news_category:first-child {
    margin-top: 0;
  }

  .news_category_label {
    box-sizing: border-box;
    display: block;
    position: relative;
    width: 100%;
    height: 32px;
    padding-left: 12px;
    background: #012E83;
    text-align: left;
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    text-decoration: none;
  }

  .news_category_label > .circle-arrow {
    position: absolute;
    display: inline-block;
    top: 6px;
    right: 8px;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
  }

  .news_category_label > .circle-arrow::after {
    position: absolute;
    content: '';
    display: inline-block;
    top: 50%;
    right: 50%;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .news_category > .news_list {
    list-style: none;
    margin-top: 24px;
  }

  .news_category .news_item {
    margin-top: 24px;
  }

  .news_category .news_item:first-child {
    margin-top: 0;
  }

  .news_category .news_item a {
    text-decoration: none;
  }

  .news_category .yyyymmdd {
    font-size: 12px;
    color: #222; 
  }

  .news_category .news_tag {
    background: #162649;
    padding: 5px 12px;
    margin-left: 8px;
    font-size: 12px;
    line-height: 22px;
    color: #f2f2f2;
  }

  .news_category .headline {
    margin-top: 10px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.25;
    color: #222;
  }

  .news_category hr {
    margin-top: 24px;
    border-top: 1px solid #d8d8d8;
  } */


}

/* 
====================
↓採用情報
====================
*/

.recruit_banner_bg_image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  background: url(/top/images/bnr_4_2.webp) no-repeat center;
	background-size: cover;
  transition: .3s;
}

.recruit_banner_bg_image::after{
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(90deg, #16468f 0%, rgba(75, 75, 75, 0) 100%);
  z-index: 0;
}

.section_banner:hover .recruit_banner_bg_image {
  filter: brightness(0.9);
  transform: scale(1.1);
}

.recruit_banner_inner {
  position: absolute;
  top: 64px;
  left: 7%;
  height: auto;
  width: 465px;
  z-index: 10;
  text-align: left;
}

.recruit_banner_title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: #F2F2F2;
}

.recruit_banner_caption {
  margin-top: 48px;
  font-size: 18px;
  line-height: 1.5;
  color: #F2F2F2;
}

.recruit_banner_inner > .more {
  display: block;
  width: fit-content;
  margin-top: 121px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}
.pc_only {
  display: block!important;
}
.sp_only {
  display: none!important;
}
section.section_container.infolink {
    display: block;
    padding: 0;
}
section.section_container.infolink .topic_wrapper {
  gap: 15px;
}
.section_container.infolink .background_white {
    width: 50%;
    margin: 40px auto;
    background: #ffffff;
    flex: 1;
}
.section_container.infolink .background_white li .tag {
    display: inline-block;
    padding: 5px 12px;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    width: 90px;
    text-align: center;
    margin-right: 25px;
    height: 13px;
    margin-top: 2px;
}
.section_container.infolink .background_white li {
    font-weight: 500;
    font-size: 13px;
    color: #222;
    margin-top: 20px;
    line-height: 30px;
    display: flex;
    gap: 10px;
}
.section_container.infolink .background_white li a {
    margin-top: 0;
    flex: 1;
    font-size: 16px;
    color: #222;
    line-height: 1.75;
    width: 100%;
    padding-right: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}
.section_container.infolink .background_white li a:hover {
    opacity: 0.7;
}
.section_container.infolink .background_white li a p {
    display: inline;
}
.section_container.infolink .background_white > a {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 4px solid #D8D8D8;
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
}
.section_container.infolink .background_white > a::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -4px;
    width: 64px;
    height: inherit;
    border-image: linear-gradient(90deg, #012E83 0%, #0C59BE 100%) 1/0 0 4px 0;
    border-style: solid;
    transition: .3s;
}
.section_container.infolink .background_white > a::after {
    position: absolute;
    content: '一覧へ';
    display: inline-block;
    top: 16px;
    right: 10px;
    width: 46px;
    font-size: 13px;
    line-height: 24px;
    color: #012E83;
}
.section_container.infolink .background_white > a:hover::before {
  width: 128px;
}

.section_container.infolink .background_white .infolink_title {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    color: #012E83;
    text-align: left;
}

  /* 
  ====================
  ↓トピックス分割
  ====================
  */

.topic_wrapper {
    display: flex;
    align-items: flex-start;
    max-width: 1108px;
    margin: 0 auto;
    justify-content: space-around;
    }

.topic_date {
    display: inline-block;
    width: 106px;
    text-wrap: nowrap;
   }

.section_container.infolink .background_white > a:hover::after {
    text-decoration: underline;
   }

#company_movie {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .topic_date {
    margin-right: 5px;
  }

  /*
  ====================
  ↓採用情報
  ====================
  */

  .recruit_banner_bg_image {
    background: url(/recruit/images/mv_bg.webp) no-repeat center center;
  }

  .recruit_banner_bg_image::after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 400px;
    background: rgba(22, 70, 143, 0.5);
    z-index: 0;
  }

  .recruit_banner_inner {
    position: absolute;
    top: 48px;
    left: 5%;
    height: auto;
    width: calc(100% - 32px);
    z-index: 10;
    text-align: left;
  }

  .recruit_banner_title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    color: #F2F2F2;
  }

  .recruit_banner_caption {
    margin-top: 168px;
    font-size: 14px;
    line-height: 1.5;
    color: #F2F2F2;
  }

  .section_banner .circle-arrow {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    margin-left: 8px;
    transition: .3s;
  }

  .section_banner .circle-arrow::after {
    position: absolute;
    content: '';
    display: inline-block;
    top: 50%;
    left: 41%;
    width: 4px;
    height: 4px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: .3s;
  }

  .recruit_banner_inner > .more {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 60px;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
  }

  .pc_only {
    display: none!important;
  }
  .sp_only {
    display: block!important;
  }
  .section_container.infolink .background_white {
    padding: 0px 5px;
    margin: 30px auto;
    max-width: 100%;
    width: calc(100% - 40px);
  }
  .section_container.infolink .background_white li a p {
      display: block;
      margin-bottom: 20px;
  }
}

@media screen and (max-width: 1120px) {
  .section_container.infolink .background_white li {
      display: flex;
      margin-top: 0px;
  }
  .section_container.infolink .background_white li a {
      max-width: 100%;
  }
  .topic_wrapper {
    display: block;
  }
}
@media screen and (min-width: 801px) {
  .display_pc2 {
    display: block!important;
  }
  .display_sp2 {
    display: none!important;
  }
}
@media screen and (max-width: 800px) {
  .display_pc2 {
    display: none!important;
  }
  .display_sp2 {
    display: block!important;
  }
}

.section_container.notification {
	max-width: 1108px;
	margin: 0 auto;
	justify-content: space-around;
  padding: 40px 0;
}
.section_container.notification h2 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  color: #012E83;
  text-align: left;
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 4px solid #D8D8D8;
  display: block;
  text-decoration: none;
  margin-bottom: 20px;
}
.section_container.notification h2::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -4px;
  width: 64px;
  height: inherit;
  border-image: linear-gradient(90deg, #012E83 0%, #0C59BE 100%) 1/0 0 4px 0;
  border-style: solid;
  transition: .3s;
}
.section_container.notification h2:hover::before {
width: 128px;
}
.section_container.notification ul li{
  font-weight: 500;
  font-size: 13px;
  color: #222;
  line-height: 30px;
}
.section_container.notification ul li:not(:last-child) {
  margin-bottom: 10px;
}
.section_container.notification ul li a {
  font-size: 16px;
  color: #222;
  line-height: 1.75;
}
.section_container.notification ul li .date {
  margin-right: 20px;
  display: inline-block;
  width: 106px;
  text-wrap: nowrap;
}

/* cyberstar & cyseek バナーエリア */
.cy_banner_area {
  display: flex;
  gap: 20px;
  max-width: 1296px;
  margin: 80px auto 0 auto;
}
.cy_banner_area .item {
  width: 50%;
}
.cy_banner_area .item img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .cy_banner_area {
    flex-direction: column;
    max-width: 90%;
    margin: 40px 5%;
    gap: 10px;
  }
  .cy_banner_area .item {
    width: 100%;
  }
}