@charset "UTF-8";

@import url(./loader.css);
@import url(./header.css);

.container-video {
  width: 100%;
  height: 100vh;
}

.container-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.text-gradient {
  background-color: #42DD73;
  background-image: linear-gradient(to right, #42DD73, #179470);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lp, .lp.visible, .animate-chars.lp,
.animate-text.lp,
.animate-chars.lp.visible,
.animate-text.lp.visible {
  display:flex;
}

.sp,.sp.visible, .animate-chars.sp,
.animate-text.sp,
.animate-chars.sp.visible,
.animate-text.sp.visible  {
  display: none;
}


.f-40 {
  font-size: 40px;
}

.is-bg-black::after {
  content: "";
  width: 100vw;
  height: 100vh;
  background-color: #00000088;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 98;
}

.breadcrumb {
  padding: 30px 25px;
  border-bottom: 1px solid #00000021;
  border-top: 1px solid #00000021;
}

.breadcrumb .inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb span {
  width: 15px;
  height: 1px;
  background-color: var(--main-accent-color);
  display: block;
}

.breadcrumb a {
  color: var(--main-dark-color);
}

.breadcrumb a:hover {
  color: var(--main-accent-color);
}

footer {
  overflow: hidden;
}

.ft-main.ft-sub {
  padding: 0;
}

.ft-main {
  background: url(../img/bg-footer.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.ft-main .img-box {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 50px;
}

.ft-main .img-box img {
  max-width: 250px;
}

.ft-main .img-box p {
  font-size: 22px;
  font-weight: 600;
}

.ft_nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
}

.ft_nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.ft_nav-wrap ul a {
  padding: 5px;
  font-weight: 500;
}

.ft_nav-wrap .ft-sns {
  display: flex;
  align-items: center;
  gap: 30px;
}

.is-body-scrolled .mv-txtbox {
  background-color: #000000a3;
}

.mv-txtbox h1 {
  font-weight: 600;
  font-size: 64px;
  z-index: 3;
}

.mv-txtbox h1.visible {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@property --my-border {
  syntax: "<percentage>"; /* its type */
  inherits: false;
  initial-value: 0%; /* the initial value */
}

.round-box {
  z-index: 999;
  position: absolute;
  bottom: 0;
}

.round img {
  transform: rotate(90deg);
}

.round {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #000;
  width: 70px;
  aspect-ratio: 1 /1;
  border-radius: 50%;
  margin: 20px;
}
.round:after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  background: repeating-conic-gradient(var(--main-accent-color) 0%, var(--main-accent-color) var(--my-border), transparent var(--my-border), transparent 100%);
  transform: rotate(-180deg) scale(-1, 1);
  transition: --my-border 1s ease;
}
.round:hover:after {
  --my-border: 100%;
}

/* sections */
.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.scroll-down img {
  width: 100%;
}

p.jigyou_paragraf {
  font-size: 16px!important;
}

.mv_bg ~ main {
  background: #fff;
}

.mv_bg img, .mv_bg video {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}

.main_mv {
  background: #00000046;

}

.main_mv .mv-textbox {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 3%;
}

ul.half {
  gap: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

li.row_li {
  border-top: 1px solid var(--main-dark-color);
  border-bottom: 1px solid var(--main-dark-color);
}


/* about Section */
.about {
  display: flex;
  flex-direction: column;
  height: 100vh;
  align-items: center;
  justify-content: center;
  row-gap: 25px;
  padding: 20px;
}

.about .txtbox {
  text-align: center;
}

.about .txtbox .animate-text {
 display: block;
 margin-bottom: 10px;
}

.about::before {
  content: unset;
}

.about .f-40.animate-text {
  font-size: 25px;
  text-align: center;
}

.about h2 {
  font-size: 40px;
  text-align: center;
}

.about .btn01 {
  color: #fff;
  border: 1px solid #fff;
  max-width: 200px;
  transition: 0.8s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about .btn01:hover {
  border: 1px solid transparent;
}

.about .btn01 i {
  transition: 0.8s;
}

.about .btn01:hover i {
  color: var(--main-accent-color);
}

/* Services Section */
.services {
  width: 100%;
  background-color: #fff;
  max-height: 800vh;
  overflow: hidden;
}

.services-inner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.5s ease;
}

.is-body-scrolled .about {
  background: #000000a3;
}

.services-inner.about::before {
  content: unset;
}

.services-inner.about p {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.services-inner.about h2 {
  font-size: 40px;
  text-align: center;
}

.services-inner .txt_box {
  position: absolute;
  z-index: 1;
  width: 60%;
  text-align: start;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.services-inner .txt_box h1 {
  font-size: 100px;
  margin-bottom: 30px;
  color:var(--main-accent-color);
}

.services-inner .txt_box h2 {
  font-size: 30px;
  margin-bottom: 30px;
}

.services-inner .txt_box p {
  font-size: 16px;
  margin-bottom: 20px;
}

.services-inner::before {
  content: "";
  background-color: #fff;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.services-inner:nth-child(1) {
  background: url(../img/network/main.png);
  background-size: cover;
}

.services-inner:nth-child(2) {
  background: url(../img/entertainment/main.png);
  background-size: 100%;
}

.services-inner:nth-child(3) {
  background: url(../img/bg3.jpg);
  background-size: 100%;
}

.services-inner {
  height: 100vh;
}

/* -- */
.services-inner {
  opacity: 0;
  transform: translateY(0);
  transition: all 0.5s ease-in-out;
  pointer-events: none;
}

.services-inner.active {
  opacity: 1;
  transform: translateY(-50px);
  pointer-events: auto;
}

.services.scroll-lock {
  overflow: hidden;
}

.btn-hv::before,
.btn-hv::after {
  transition-delay: 0s;
  border: 0;
}
.btn-hv span::before,
.btn-hv span::after {
  transition-delay: 0.2s;
  border: 0;
}
.btn-hv::before {
  right: 0;
  top: 0;
  border: 0;
}
.btn-hv::after {
  left: 0;
  bottom: 0;
}
.btn-hv span::before {
  left: 0;
  top: 0;
}
.btn-hv span::after {
  right: 0;
  bottom: 0;
}
.btn-hv:hover::before,
.btn-hv:hover::after {
  transition-delay: 0.2s;
}
.btn-hv:hover span::before,
.btn-hv:hover span::after {
  transition-delay: 0s;
}

/* -- */

/* products */
.products {
  text-align: center;
  padding: 50px 0;
}

.products-banner h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.slider {
  display: flex !important;
  width: 100%;
  height: 500px;
}

.slide.slide01 {
  background: url(../img/bg1.jpg) no-repeat;
}

.slide.slide02 {
  background: url(../img/bg2.jpg) no-repeat;
}

.slide.slide03 {
  background: url(../img/bg3.jpg) no-repeat;
}

.slider .slick-dots {
  position: relative !important;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  gap: 20px;
}

.slider .slick-dots li {
  width: 100px;
  height: 100px;
}

.slider .slick-dots li button {
  width: 100%;
  height: 100%;
  border: solid 1px #00000038;
  border-radius: 100vh;
  position: relative;
}

.slider .slick-dots li button:before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slider .slick-track {
  height: 100%;
}

.slider .slide .txt_box {
  position: sticky;
  left: 0;
  top: 50%;
  width: 100%;
  max-width: 600px;
  transform: translateY(-50%);
  color: #fff;
  text-align: start;
  padding-left: 3%;
}

.slider .slide .txt_box .btn01 {
  color: #fff;
}

.slider .slide .txt_box h2 {
  font-size: 100px;
  margin-bottom: 20px;
}

.slider .slide .txt_box p {
  font-size: 20px;
  margin-bottom: 30px;
}

.news .inner {
  display: flex;
  align-items: flex-start;
}

.news .ttl {
  width: 30%;
}

.news .txt-box {
  width: 70%;
}

.news .news-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  width: 90%;
}

.news .news-box .news-date {
  display: flex;
  align-items: center;
  gap: 15px;
}

.news ul li {
  padding: 20px 0px;
  /* border-top: 1px solid #8e8e8e; */
  width: 100%;
}

.news ul li:last-of-type {
  /* border-bottom: 1px solid #8e8e8e; */
}

.news ul li:hover p {
  color: var(--main-accent-color);
}

.news ul li:hover i {
  color: var(--main-accent-color);
  animation: slideI 1s ease forwards;
  position: relative;
}

.news ul li i {
  color: var(--main-dark-color);
}

.news ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  color: var(--main-dark-color);
}

@keyframes slideI {
  from {
    left: -20px;
    opacity: 0;
  }

  to {
    left: 0;
    opacity: 1;
  }
}

.news .news-box .date {
  font-size: 16px;
  color: #8e8e8e;
}

.news .news-box .release {
  padding: 2px 12px;
  font-size: 12px;
  color: #8e8e8e;
  border: 1px solid #8e8e8e;
  border-radius: 50vw;
}

.news .news-box p {
  color: var(--main-dark-color);
  font-size: 16px;
  width: 100%;
}

.news .viewall {
  padding: 30px 0 0 0;
  display: flex;
  justify-content: flex-end;
  color: var(--main-dark-color);
}

.news .viewall:hover {
  color: var(--main-accent-color);
}

.news .viewall span {
  display: block;
  width: fit-content;
  border-bottom: 1px solid var(--main-dark-color);
  padding-bottom: 5px;
}

/* SDG */

/* HRM */

/* recruit */

.sect_global_style {
  overflow: hidden;
}

.sect_global_style h2 {
  font-size: 46px;
}

.sect_global_style .inner-wrap {
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 1.56 / 1;
}

.sect_global_style .inner-wrap--1 {
  margin-left: unset;
  position: relative;
}

.sect_global_style .inner-wrap--2 {
  margin-right: unset;
  position: relative;
}

.sect_global_style .inner-wrap--3{
  margin-left: unset;
  position: relative;
}


.sect_global_style .inner-wrap--1 .block,
.sect_global_style .inner-wrap--3 .block {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.sect_global_style .inner-wrap--2 .block {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.sect_global_style .inner-wrap--1 .block img,
.sect_global_style .inner-wrap--2 .block img,
.sect_global_style .inner-wrap--3 .block img {
  width: 100%;
  height: 100%;
}

.sect_global_style .inner-wrap--3 .block img {
  object-fit: cover;
  object-position: right bottom;
}

.sect_global_style .box-wrap {
  height: 100%;
  position: relative;
  z-index: 2;
}

.sect_global_style--1 .box-wrap,
.sect_global_style--3 .box-wrap {
  margin-right: auto;
}

.sect_global_style--2 .box-wrap {
  margin-left: auto;
}

.sect_global_style .career-box {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.sect_global_style .inner-wrap--2 .career-box{
  justify-content: flex-end;
}

.sect_global_style .txt-wrap {
  justify-content: space-around;
  background-image: linear-gradient(rgba(66, 221, 115, 0.521), rgb(23, 148, 112, 0.521));
  height: 100%;
  max-height: 500px;
  width: 100%;
  max-width: 706px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  padding: 20px 3%;
}

.sect_global_style h3 {
  font-size: 32px;
}

.sect_global_style .btn01 {
  color: #fff;
  border: 1px solid #fff;
  max-width: 200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: 0.8s;
}

.sect_global_style .btn01:hover {
  border: 1px solid transparent;
}
/* recruit end */

.wantedly {
  background-color: #fff;
  padding-bottom: 80px;
  padding-left: 25px;
  padding-right: 25px;
}

.wantedly .inner-wrap {
  max-width: calc(100% - 260px);
  width: 100%;
  margin-left: auto;
}

.wantedly .box-wrap {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: flex-end;
}

.wantedly a {
  max-width: 500px;
  width: 100%;
  height: 100px;
  background-color:var(--main-accent-color);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.wantedly i {
  color: #fff;
  position: absolute;
  right: 25px;
}

/* ================ new */
.p-wrap {
  width: 55vw;
  height: 100vh;
  margin-left: auto;
}

.panel {
  width: 100%;
  height: 100%;
  will-change: transform, opacity, height;
}

.panel-content {
  width: 40vw;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: -42vw;
  overflow: hidden;
  /* padding-top: 15%; */
  will-change: opacity, transform;
}

.panel .ttl {
  font-size: 40px;
  font-weight: 900;
  font-style: normal;
  margin-bottom: 16px;
  line-height: 1;
  background: linear-gradient(90deg, #179470, #31e269);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
}

.panel .sub-ttl {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
}

.panel .desc {
  font-size: 18px;
  margin-bottom: 16px;
}

.panel.panel--01 {
  position: relative;
  z-index: auto;
  /* background: url(../img/network/top_business_01.png);
  background-repeat: no-repeat;
  background-size: auto 100vh;
  background-position: center center; */
  /*background-color:rgba(255,255,255,0.8);*/
  /* background-blend-mode:lighten; */
}

.panel.panel--01 .block {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.panel.panel--01 .block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.panel.panel--02 {
  z-index: auto;
  background: url(../img/network/top_business_02.png);
  background-repeat: no-repeat;
  background-size: auto 100vh;
  background-position: center center;
  /*background-color:rgba(255,255,255,0.8);*/
  background-blend-mode:lighten;
}

.panel.panel--03 {
  z-index: auto;
 /* background: url(../img/network/main.png);*/
  background-repeat: no-repeat;
  background-size: auto 100vh;
  background-position: center center;
  /*background-color:rgba(255,255,255,0.8);*/
  background-blend-mode:lighten;
}

.panel.panel--04 {
  z-index: auto;
  background: url(../img/network/top_business_03.png);
  background-repeat: no-repeat;
  background-size: auto 100vh;
  background-position: center center;
   /*background-color:rgba(255,255,255,0.8);*/
  background-blend-mode:lighten;
}

.panel.panel--05 {
  z-index: auto;
  background: url(../img/network/top_business_04.png);
  background-repeat: no-repeat;
  background-size: auto 100vh;
  background-position: center center;
  /*background-color:rgba(255,255,255,0.8);*/
  background-blend-mode:lighten;
}

.panel.panel--06 {
  z-index: auto;
 /* background: url(../img/network/main.png);*/
  background-repeat: no-repeat;
  background-size: auto 100vh;
  background-position: center center;
  /*background-color:rgba(255,255,255,0.8);*/
  background-blend-mode:lighten;
}

.panel.panel--07 {
  z-index: auto;
  background: url(../img/network/top_business_05.png);
  background-repeat: no-repeat;
  background-size: auto 100vh;
  background-position: center center;
  /*background-color:rgba(255,255,255,0.8);*/
  background-blend-mode:lighten;
}
/* ================ new end*/

.news .news-box p {
  position: relative;
  padding-left: 20px;
}

.news .news-box p::before {
  content: "●";
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: var(--main-accent-color);
  font-size: 10px;
}

.main_mv .mv-textbox .banner-text {
  font-size: 55px;
}

.ft_page-end {
  font-size: 14px;
}

@media (max-width: 1600px) {
  .sect_global_style .inner-wrap {
    max-width: 1200px;
  }
}

@media (max-width: 1400px) {
  .main_mv .mv-textbox .banner-text {
    font-size: 40px;
  }

  .sect_global_style .inner-wrap {
    max-width: 1000px;
  }
}

@media (max-width: 1200px) {
  .mv-txtbox h1 {
    font-size: 60px;
  }

  .about p {
    font-size: 25px;
  }

  .about h2 {
    font-size: 30px;
  }

  .sect_global_style .inner-wrap {
    max-width: 800px;
  }

.sect_global_style .txt-wrap {
  height: 70%;
  width: 60%;
  max-height: unset;
}

  .careers .inner {
    max-width: calc(100% - 80px);
  }

  .ft_nav-wrap.py-60.mb-60 {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .ft_nav-wrap ul {
    flex-wrap: wrap;
    gap: 4px;
  }

  .ft_nav-wrap ul li {
    width: 45%;
  }
}

@media (max-width: 1000px) {

  .main_mv .mv-textbox .banner-text {
    font-size: 32px;
  }

  .about p {
    font-size: 20px;
  }

  .about h2 {
    font-size: 25px;
  }

  .services-inner .txt_box h1 {
    font-size: 40px;
  }

  .careers .inner {
    max-width: 100%;
  }

}

@media (max-width: 850px) {

}

@media (max-width: 769px) {

.round-box.scrolled.active {
  display: none;
}

.is-body-scrolled .mv-txtbox {
  background-color: #00000000;
}

.mv {
  filter: brightness(0.5);
}

h1.banner-text.sp.scrolled.active {
  display: none;
}

}


@media (max-width: 769px) {
.panel.panel--01 {
  background-color:rgba(255,255,255,0.5);
  }

.panel.panel--02 {
  background-color:rgba(255,255,255,0.5);
  }
.panel.panel--03 {
  background-color:rgba(255,255,255,0.5);
  }

.panel.panel--04 {
  background-color:rgba(255,255,255,0.5);
  }

.panel.panel--05 {
  background-color:rgba(255,255,255,0.5);
  }

.panel.panel--06 {
background-color:rgba(255,255,255,0.5);
}

.panel.panel--07 {
  background-color:rgba(255,255,255,0.5);
  }

  .loader-main img {
    max-width: 200px!important;
}

}

@media (max-width: 768px) {

  .lp, .lp.visible, .animate-chars.lp,
  .animate-text.lp,
  .animate-chars.lp.visible,
  .animate-text.lp.visible {
    display: none;
  }
  
  .sp, .sp.visible, .animate-chars.sp,
  .animate-text.sp,
  .animate-chars.sp.visible,
  .animate-text.sp.visible  {
    display: block;
  }

  .banner-text.sp .animate-chars {
    font-size: 33px;
    display: block;
    margin-bottom: 10px;
  }

  .panel .ttl {
    font-size: 30px;
  }

  .panel .sub-ttl {
    font-size: 20px;
  }

  .panel .desc {
    font-size: 16px;
  }

  .news .inner {
    flex-direction: column;
  }

  .news .txt-box {
    width: 100%;
  }

  .careers h2 {
    margin-bottom: 20px;
  }

  .careers .inner-wrap {
    flex-direction: column;
  }

  .careers .career-box {
    height: 100%;
  }

  
  .ft_nav-wrap ul li {
    width: 100%;
    text-align: center;
  }

  .ft-main .img-box,
  .ft_page-end {
    display: flex;
    align-items: center;
    justify-content: center;
  }


  .about p {
    font-size: 16px;
  }
}

@media (max-width: 620px) {

  .sect_global_style .txt-wrap {
    height: 80%;
    width: 100%;
  }
}

@media (max-width: 576px) {
.main_mv .mv-textbox, .about {
  height: 60vh;
  min-height: 400px;
}

  .about {
    background: #000000a3;
  }

  .p-wrap {
    height: 55vh;
    min-height: 500px;
    width: 100%;
  }

  .panel-content {
    background: #ffffff8a;
    padding-left: 10px;
    padding-right: 10px;
    width: 94%;
    height: 94%;
    left: 3%;
    top: 3%;
  }

  .sect_global_style .inner-wrap {
    height: auto;
  }

  .sect_global_style .inner-wrap--1 .block, .sect_global_style .inner-wrap--2 .block, .sect_global_style .inner-wrap--3 .block {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
  }

    .sect_global_style .inner-wrap--1 .block img, .sect_global_style .inner-wrap--2 .block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
  }

  .sect_global_style .inner-wrap--1 .block img {
    object-position: top;
  }

  .sect_global_style .inner-wrap--3 .block img {
    object-position: right bottom;
  }


  .sect_global_style .career-box.pl-3pct {
    padding-left: unset;
  }

  .sect_global_style .career-box.pr-3pct {
    padding-right: unset;
  }

  .sect_global_style .txt-wrap {
    background: #62606073;
    height: 100%;
  }

  .sect_global_style .box-wrap .border.border-white {
    border: 1px solid var(--main-dark-color);
    background-color: var(--main-dark-color);
    color: #fff;
  }
}

@media (max-width: 500px) {

  .sect_global_style .box-wrap {
    min-height: 260px;
  }

  .sect_global_style .inner-wrap {
    background-size: cover;
  }

  .sect_global_style .inner-wrap--1 {
    background-position: top center;
  }

  .sect_global_style .inner-wrap--2 {
    background-size: 100% auto;
    background-position: bottom;
    background-color: #e8e8e8;
  }

  .sect_global_style .inner-wrap--3 {
  background-position: top right;
  }

   .sect_global_style .txt-wrap {
    width: 100%;
  }

  .sect_global_style .txt-wrap .btn {
    padding: 12px;
  }

  .about .txtbox {
    text-align: left;
  }
  
  .about .txtbox .animate-text {
    display: inline;
    font-size: 13px;
  }

  .services-inner .txt_box {
    position: absolute;
    z-index: 1;
    /* width: 60%; */
    text-align: start;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
  }

  .services-inner .txt_box h1 {
    font-size: 25px;
  }

  
.main_mv .mv-textbox .banner-text {
  font-size: 24px;
}

ul.half {
  gap: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--main-dark-color);
}

.news ul li {
  width: 100%;
}

li.row_li {
  border-bottom: none;
  padding: 25px 5px;
}

.careers .inner {
  background: url(../img/career/main_sp.png) no-repeat;
  background-position: top;
}
}

@media (max-width: 500px) {

  .sect_global_style .inner-wrap {
    background-size: cover;
  }
}